diff --git a/parse_odds.py b/parse_odds.py index b96e64b..ef4df3f 100644 --- a/parse_odds.py +++ b/parse_odds.py @@ -4,10 +4,10 @@ import json from tqdm import tqdm import re -def calcPredictedScore(sF,sU,S,O): +def calcPredictedScore(S,O): scoreObj = {} - scoreObj["sU"] = (int(O) - int(S))/2 - scoreObj["sF"] = int(O) - ((int(O)-int(S))/2) + scoreObj["sU"] = (float(O) - float(S))/2 + scoreObj["sF"] = float(O) - ((float(O)-float(S))/2) return scoreObj fullObj = [] @@ -24,6 +24,7 @@ for year in tqdm(range(start_year, 2025)): try: for table in start_pos.find_all_next(class_="soh1"): + week = table.find_previous("h3").string for child in table.find_all("tbody"): for row in child.find_all("tr"): cells = row.find_all("td") @@ -44,22 +45,34 @@ for year in tqdm(range(start_year, 2025)): game["sF"] = actualScore.group(1) game["sU"] = actualScore.group(2) - spreadValSearch = re.search(r'.\s-?(\d+)', spreadText) + spreadValSearch = re.search(r'.\s-?(\d*\.*\d)', spreadText) if spreadValSearch: spreadVal = spreadValSearch.group(1) else: spreadVal = -1 - if cells[cursor+9].length is None: - ouVal = None + ou = [] + for t in cells[cursor+9].string.split(): + try: + ou.append(float(t)) + except ValueError: + pass + if len(ou)>0: + ouVal = ou[0] else: - ouVal = cells[cursor+9].string + ouVal = None game["spread"] = spreadVal game["ou"] = ouVal if spreadVal != -1 and ouVal: - game["pScore"] = calcPredictedScore(game["sF"],game["sU"],spreadVal,ouVal) + game["pScore"] = calcPredictedScore(spreadVal,ouVal) + else: + game["pScore"] = {} + game["pScore"]["sF"] = None + game["pScore"]["sU"] = None + + game["week"] = week fullObj.append(game) except Exception as e: @@ -68,7 +81,7 @@ for year in tqdm(range(start_year, 2025)): objson = json.dumps(fullObj, indent=4) -with open("src/data/odds_data_abbr.json", "w") as odds_file: +with open("src/data/odds_data.json", "w") as odds_file: odds_file.write( objson ) diff --git a/src/data/odds_data.json b/src/data/odds_data.json index 156c5b5..a4fbd45 100644 --- a/src/data/odds_data.json +++ b/src/data/odds_data.json @@ -6,8 +6,13 @@ "und": "Detroit Lions", "sF": "17", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 1" }, { "date": "Oct 3, 1952", @@ -17,7 +22,12 @@ "sF": "17", "sU": "14", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 2" }, { "date": "Oct 4, 1952", @@ -27,7 +37,12 @@ "sF": "21", "sU": "20", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 2" }, { "date": "Oct 5, 1952", @@ -37,7 +52,12 @@ "sF": "10", "sU": "21", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 2" }, { "date": "Oct 5, 1952", @@ -46,8 +66,13 @@ "und": "Dallas Texans", "sF": "37", "sU": "14", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 2" }, { "date": "Oct 12, 1952", @@ -57,7 +82,12 @@ "sF": "38", "sU": "20", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 3" }, { "date": "Oct 12, 1952", @@ -67,7 +97,12 @@ "sF": "9", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 3" }, { "date": "Oct 12, 1952", @@ -77,11 +112,12 @@ "sF": "0", "sU": "28", "spread": "3", - "ou": "49", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 3" }, { "date": "Oct 12, 1952", @@ -91,7 +127,12 @@ "sF": "30", "sU": "28", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 3" }, { "date": "Oct 12, 1952", @@ -101,7 +142,12 @@ "sF": "26", "sU": "21", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 3" }, { "date": "Oct 12, 1952", @@ -111,7 +157,12 @@ "sF": "17", "sU": "6", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 3" }, { "date": "Oct 19, 1952", @@ -120,8 +171,13 @@ "und": "Chicago Bears", "sF": "40", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 4" }, { "date": "Oct 19, 1952", @@ -130,8 +186,13 @@ "und": "Los Angeles Rams", "sF": "24", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 4" }, { "date": "Oct 19, 1952", @@ -141,7 +202,12 @@ "sF": "23", "sU": "24", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 4" }, { "date": "Oct 19, 1952", @@ -151,7 +217,12 @@ "sF": "49", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 4" }, { "date": "Oct 19, 1952", @@ -161,7 +232,12 @@ "sF": "24", "sU": "28", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 4" }, { "date": "Oct 26, 1952", @@ -171,7 +247,12 @@ "sF": "28", "sU": "34", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 5" }, { "date": "Oct 26, 1952", @@ -181,7 +262,12 @@ "sF": "19", "sU": "15", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 5" }, { "date": "Oct 26, 1952", @@ -191,7 +277,12 @@ "sF": "52", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 5" }, { "date": "Oct 26, 1952", @@ -201,7 +292,12 @@ "sF": "31", "sU": "7", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 5" }, { "date": "Oct 26, 1952", @@ -211,7 +307,12 @@ "sF": "10", "sU": "14", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 5" }, { "date": "Oct 26, 1952", @@ -221,7 +322,12 @@ "sF": "48", "sU": "21", "spread": "23", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 5" }, { "date": "Nov 2, 1952", @@ -230,8 +336,13 @@ "und": "Chicago Cardinals", "sF": "28", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 6" }, { "date": "Nov 2, 1952", @@ -240,8 +351,13 @@ "und": "Detroit Lions", "sF": "6", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 6" }, { "date": "Nov 2, 1952", @@ -251,7 +367,12 @@ "sF": "42", "sU": "20", "spread": "23", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 6" }, { "date": "Nov 2, 1952", @@ -261,7 +382,12 @@ "sF": "17", "sU": "20", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 6" }, { "date": "Nov 2, 1952", @@ -270,8 +396,13 @@ "und": "Pittsburgh Steelers", "sF": "23", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 6" }, { "date": "Nov 9, 1952", @@ -281,7 +412,12 @@ "sF": "28", "sU": "41", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 7" }, { "date": "Nov 9, 1952", @@ -291,7 +427,12 @@ "sF": "28", "sU": "13", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 7" }, { "date": "Nov 9, 1952", @@ -301,7 +442,12 @@ "sF": "27", "sU": "6", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 7" }, { "date": "Nov 9, 1952", @@ -311,7 +457,12 @@ "sF": "14", "sU": "23", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 7" }, { "date": "Nov 9, 1952", @@ -321,7 +472,12 @@ "sF": "38", "sU": "20", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 7" }, { "date": "Nov 9, 1952", @@ -331,7 +487,12 @@ "sF": "31", "sU": "6", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 7" }, { "date": "Nov 16, 1952", @@ -341,7 +502,12 @@ "sF": "40", "sU": "24", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 8" }, { "date": "Nov 16, 1952", @@ -351,7 +517,12 @@ "sF": "29", "sU": "28", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 8" }, { "date": "Nov 16, 1952", @@ -360,8 +531,13 @@ "und": "Dallas Texans", "sF": "43", "sU": "13", - "spread": "26", - "ou": -1 + "spread": "26.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 8" }, { "date": "Nov 16, 1952", @@ -371,7 +547,12 @@ "sF": "3", "sU": "17", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 8" }, { "date": "Nov 16, 1952", @@ -381,7 +562,12 @@ "sF": "10", "sU": "7", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 8" }, { "date": "Nov 16, 1952", @@ -390,8 +576,13 @@ "und": "Washington Redskins", "sF": "23", "sU": "17", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 8" }, { "date": "Nov 23, 1952", @@ -401,7 +592,12 @@ "sF": "23", "sU": "24", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 9" }, { "date": "Nov 23, 1952", @@ -410,8 +606,13 @@ "und": "Philadelphia Eagles", "sF": "20", "sU": "28", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 9" }, { "date": "Nov 23, 1952", @@ -421,7 +622,12 @@ "sF": "42", "sU": "14", "spread": "21", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 9" }, { "date": "Nov 23, 1952", @@ -431,11 +637,12 @@ "sF": "35", "sU": "9", "spread": "1", - "ou": "49", + "ou": null, "pScore": { - "sU": 24, - "sF": 25 - } + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 9" }, { "date": "Nov 23, 1952", @@ -445,7 +652,12 @@ "sF": "17", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 9" }, { "date": "Nov 23, 1952", @@ -455,7 +667,12 @@ "sF": "14", "sU": "10", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 9" }, { "date": "Nov 27, 1952", @@ -465,7 +682,12 @@ "sF": "48", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 10" }, { "date": "Nov 30, 1952", @@ -475,7 +697,12 @@ "sF": "22", "sU": "28", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 10" }, { "date": "Nov 30, 1952", @@ -484,8 +711,13 @@ "und": "Pittsburgh Steelers", "sF": "7", "sU": "63", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 10" }, { "date": "Nov 30, 1952", @@ -495,7 +727,12 @@ "sF": "48", "sU": "24", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 10" }, { "date": "Dec 7, 1952", @@ -504,8 +741,13 @@ "und": "Chicago Cardinals", "sF": "10", "sU": "0", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 11" }, { "date": "Dec 7, 1952", @@ -515,7 +757,12 @@ "sF": "45", "sU": "21", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 11" }, { "date": "Dec 7, 1952", @@ -525,7 +772,12 @@ "sF": "45", "sU": "27", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 11" }, { "date": "Dec 7, 1952", @@ -535,7 +787,12 @@ "sF": "17", "sU": "27", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 11" }, { "date": "Dec 7, 1952", @@ -545,7 +802,12 @@ "sF": "38", "sU": "21", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 11" }, { "date": "Dec 7, 1952", @@ -555,7 +817,12 @@ "sF": "7", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 11" }, { "date": "Dec 14, 1952", @@ -565,7 +832,12 @@ "sF": "10", "sU": "7", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 12" }, { "date": "Dec 14, 1952", @@ -575,7 +847,12 @@ "sF": "28", "sU": "14", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 12" }, { "date": "Dec 14, 1952", @@ -585,7 +862,12 @@ "sF": "34", "sU": "37", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 12" }, { "date": "Dec 14, 1952", @@ -595,11 +877,12 @@ "sF": "14", "sU": "24", "spread": "1", - "ou": "49", + "ou": null, "pScore": { - "sU": 24, - "sF": 25 - } + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 12" }, { "date": "Dec 14, 1952", @@ -609,7 +892,12 @@ "sF": "21", "sU": "27", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 12" }, { "date": "Dec 21, 1952", @@ -619,7 +907,12 @@ "sF": "31", "sU": "21", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Regular Season - Week 13" }, { "date": "Dec 28, 1952", @@ -628,8 +921,13 @@ "und": "Cleveland Browns", "sF": "17", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1952 Playoffs" }, { "date": "Sep 27, 1953", @@ -639,7 +937,12 @@ "sF": "9", "sU": "13", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 1" }, { "date": "Sep 27, 1953", @@ -648,8 +951,13 @@ "und": "Washington Redskins", "sF": "13", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 1" }, { "date": "Sep 27, 1953", @@ -659,7 +967,12 @@ "sF": "38", "sU": "21", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 1" }, { "date": "Sep 27, 1953", @@ -668,8 +981,13 @@ "und": "Green Bay Packers", "sF": "27", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 1" }, { "date": "Sep 27, 1953", @@ -679,7 +997,12 @@ "sF": "21", "sU": "7", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 1" }, { "date": "Sep 27, 1953", @@ -688,8 +1011,13 @@ "und": "Philadelphia Eagles", "sF": "31", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 1" }, { "date": "Oct 3, 1953", @@ -699,7 +1027,12 @@ "sF": "27", "sU": "17", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 2" }, { "date": "Oct 4, 1953", @@ -709,7 +1042,12 @@ "sF": "27", "sU": "7", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 2" }, { "date": "Oct 4, 1953", @@ -719,7 +1057,12 @@ "sF": "17", "sU": "13", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 2" }, { "date": "Oct 4, 1953", @@ -729,11 +1072,12 @@ "sF": "30", "sU": "31", "spread": "6", - "ou": "49", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 2" }, { "date": "Oct 11, 1953", @@ -742,8 +1086,13 @@ "und": "Baltimore Colts", "sF": "14", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 3" }, { "date": "Oct 11, 1953", @@ -753,11 +1102,12 @@ "sF": "24", "sU": "21", "spread": "11", - "ou": "49", + "ou": null, "pScore": { - "sU": 19, - "sF": 30 - } + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 3" }, { "date": "Oct 11, 1953", @@ -766,8 +1116,13 @@ "und": "Green Bay Packers", "sF": "38", "sU": "20", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 3" }, { "date": "Oct 11, 1953", @@ -776,8 +1131,13 @@ "und": "Chicago Cardinals", "sF": "31", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 3" }, { "date": "Oct 11, 1953", @@ -787,7 +1147,12 @@ "sF": "13", "sU": "9", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 3" }, { "date": "Oct 17, 1953", @@ -796,8 +1161,13 @@ "und": "Pittsburgh Steelers", "sF": "23", "sU": "7", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 4" }, { "date": "Oct 18, 1953", @@ -807,7 +1177,12 @@ "sF": "35", "sU": "28", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 4" }, { "date": "Oct 18, 1953", @@ -817,7 +1192,12 @@ "sF": "19", "sU": "31", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 4" }, { "date": "Oct 18, 1953", @@ -827,7 +1207,12 @@ "sF": "14", "sU": "37", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 4" }, { "date": "Oct 18, 1953", @@ -836,8 +1221,13 @@ "und": "Chicago Cardinals", "sF": "21", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 4" }, { "date": "Oct 18, 1953", @@ -847,7 +1237,12 @@ "sF": "30", "sU": "14", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 4" }, { "date": "Oct 24, 1953", @@ -857,7 +1252,12 @@ "sF": "31", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 5" }, { "date": "Oct 25, 1953", @@ -866,8 +1266,13 @@ "und": "Baltimore Colts", "sF": "17", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 5" }, { "date": "Oct 25, 1953", @@ -877,7 +1282,12 @@ "sF": "56", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 5" }, { "date": "Oct 25, 1953", @@ -887,7 +1297,12 @@ "sF": "38", "sU": "24", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 5" }, { "date": "Oct 25, 1953", @@ -896,8 +1311,13 @@ "und": "New York Giants", "sF": "7", "sU": "0", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 5" }, { "date": "Oct 25, 1953", @@ -907,11 +1327,12 @@ "sF": "14", "sU": "10", "spread": "5", - "ou": "49", + "ou": null, "pScore": { - "sU": 22, - "sF": 27 - } + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 5" }, { "date": "Oct 31, 1953", @@ -921,7 +1342,12 @@ "sF": "24", "sU": "35", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 6" }, { "date": "Nov 1, 1953", @@ -930,8 +1356,13 @@ "und": "Chicago Cardinals", "sF": "23", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 6" }, { "date": "Nov 1, 1953", @@ -940,8 +1371,13 @@ "und": "Washington Redskins", "sF": "27", "sU": "3", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 6" }, { "date": "Nov 1, 1953", @@ -951,7 +1387,12 @@ "sF": "37", "sU": "24", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 6" }, { "date": "Nov 1, 1953", @@ -961,7 +1402,12 @@ "sF": "7", "sU": "35", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 6" }, { "date": "Nov 1, 1953", @@ -970,8 +1416,13 @@ "und": "Chicago Bears", "sF": "24", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 6" }, { "date": "Nov 7, 1953", @@ -981,7 +1432,12 @@ "sF": "17", "sU": "7", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 7" }, { "date": "Nov 8, 1953", @@ -991,7 +1447,12 @@ "sF": "21", "sU": "21", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 7" }, { "date": "Nov 8, 1953", @@ -1001,7 +1462,12 @@ "sF": "34", "sU": "16", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 7" }, { "date": "Nov 8, 1953", @@ -1011,11 +1477,12 @@ "sF": "27", "sU": "31", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 7" }, { "date": "Nov 8, 1953", @@ -1025,7 +1492,12 @@ "sF": "30", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 7" }, { "date": "Nov 8, 1953", @@ -1035,7 +1507,12 @@ "sF": "28", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 7" }, { "date": "Nov 15, 1953", @@ -1044,8 +1521,13 @@ "und": "Chicago Cardinals", "sF": "24", "sU": "24", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 8" }, { "date": "Nov 15, 1953", @@ -1054,12 +1536,13 @@ "und": "San Francisco 49ers", "sF": "23", "sU": "21", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 8" }, { "date": "Nov 15, 1953", @@ -1068,8 +1551,13 @@ "und": "Green Bay Packers", "sF": "14", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 8" }, { "date": "Nov 15, 1953", @@ -1079,7 +1567,12 @@ "sF": "14", "sU": "10", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 8" }, { "date": "Nov 15, 1953", @@ -1088,8 +1581,13 @@ "und": "Baltimore Colts", "sF": "45", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 8" }, { "date": "Nov 15, 1953", @@ -1098,8 +1596,13 @@ "und": "Chicago Bears", "sF": "24", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 8" }, { "date": "Nov 21, 1953", @@ -1109,7 +1612,12 @@ "sF": "38", "sU": "0", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 9" }, { "date": "Nov 22, 1953", @@ -1119,7 +1627,12 @@ "sF": "21", "sU": "13", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 9" }, { "date": "Nov 22, 1953", @@ -1128,8 +1641,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 9" }, { "date": "Nov 22, 1953", @@ -1139,7 +1657,12 @@ "sF": "37", "sU": "7", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 9" }, { "date": "Nov 22, 1953", @@ -1148,8 +1671,13 @@ "und": "Washington Redskins", "sF": "21", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 9" }, { "date": "Nov 22, 1953", @@ -1159,7 +1687,12 @@ "sF": "20", "sU": "16", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 9" }, { "date": "Nov 26, 1953", @@ -1169,7 +1702,12 @@ "sF": "34", "sU": "15", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 10" }, { "date": "Nov 29, 1953", @@ -1179,7 +1717,12 @@ "sF": "38", "sU": "21", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 10" }, { "date": "Nov 29, 1953", @@ -1189,7 +1732,12 @@ "sF": "21", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 10" }, { "date": "Nov 29, 1953", @@ -1199,7 +1747,12 @@ "sF": "27", "sU": "16", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 10" }, { "date": "Nov 29, 1953", @@ -1209,7 +1762,12 @@ "sF": "28", "sU": "37", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 10" }, { "date": "Nov 29, 1953", @@ -1219,7 +1777,12 @@ "sF": "9", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 10" }, { "date": "Dec 5, 1953", @@ -1229,7 +1792,12 @@ "sF": "45", "sU": "2", "spread": "21", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 11" }, { "date": "Dec 6, 1953", @@ -1239,7 +1807,12 @@ "sF": "21", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 11" }, { "date": "Dec 6, 1953", @@ -1249,7 +1822,12 @@ "sF": "62", "sU": "14", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 11" }, { "date": "Dec 6, 1953", @@ -1258,8 +1836,13 @@ "und": "Chicago Bears", "sF": "13", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 11" }, { "date": "Dec 6, 1953", @@ -1269,7 +1852,12 @@ "sF": "48", "sU": "14", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 11" }, { "date": "Dec 6, 1953", @@ -1279,7 +1867,12 @@ "sF": "0", "sU": "10", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 11" }, { "date": "Dec 12, 1953", @@ -1289,7 +1882,12 @@ "sF": "33", "sU": "17", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 12" }, { "date": "Dec 13, 1953", @@ -1298,8 +1896,13 @@ "und": "Chicago Cardinals", "sF": "17", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 12" }, { "date": "Dec 13, 1953", @@ -1309,7 +1912,12 @@ "sF": "27", "sU": "16", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 12" }, { "date": "Dec 13, 1953", @@ -1319,7 +1927,12 @@ "sF": "27", "sU": "42", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 12" }, { "date": "Dec 13, 1953", @@ -1329,7 +1942,12 @@ "sF": "45", "sU": "14", "spread": "24", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 12" }, { "date": "Dec 13, 1953", @@ -1339,7 +1957,12 @@ "sF": "13", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Regular Season - Week 12" }, { "date": "Dec 27, 1953", @@ -1348,8 +1971,13 @@ "und": "Detroit Lions", "sF": "16", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1953 Playoffs" }, { "date": "Sep 26, 1954", @@ -1359,7 +1987,12 @@ "sF": "48", "sU": "0", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 1" }, { "date": "Sep 26, 1954", @@ -1369,7 +2002,12 @@ "sF": "41", "sU": "10", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 1" }, { "date": "Sep 26, 1954", @@ -1378,8 +2016,13 @@ "und": "Chicago Bears", "sF": "48", "sU": "23", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 1" }, { "date": "Sep 26, 1954", @@ -1389,7 +2032,12 @@ "sF": "20", "sU": "21", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 1" }, { "date": "Sep 26, 1954", @@ -1398,8 +2046,13 @@ "und": "Washington Redskins", "sF": "41", "sU": "7", - "spread": "27", - "ou": -1 + "spread": "27.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 1" }, { "date": "Oct 2, 1954", @@ -1409,7 +2062,12 @@ "sF": "14", "sU": "20", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 2" }, { "date": "Oct 2, 1954", @@ -1418,8 +2076,13 @@ "und": "Washington Redskins", "sF": "37", "sU": "7", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 2" }, { "date": "Oct 3, 1954", @@ -1428,8 +2091,13 @@ "und": "Chicago Cardinals", "sF": "35", "sU": "16", - "spread": "20", - "ou": -1 + "spread": "20.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 2" }, { "date": "Oct 3, 1954", @@ -1439,7 +2107,12 @@ "sF": "10", "sU": "3", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 2" }, { "date": "Oct 3, 1954", @@ -1449,7 +2122,12 @@ "sF": "24", "sU": "24", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 2" }, { "date": "Oct 9, 1954", @@ -1458,8 +2136,13 @@ "und": "Pittsburgh Steelers", "sF": "24", "sU": "22", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 3" }, { "date": "Oct 10, 1954", @@ -1468,8 +2151,13 @@ "und": "Baltimore Colts", "sF": "28", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 3" }, { "date": "Oct 10, 1954", @@ -1478,8 +2166,13 @@ "und": "Chicago Cardinals", "sF": "31", "sU": "7", - "spread": "20", - "ou": -1 + "spread": "20.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 3" }, { "date": "Oct 10, 1954", @@ -1489,7 +2182,12 @@ "sF": "21", "sU": "3", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 3" }, { "date": "Oct 10, 1954", @@ -1499,7 +2197,12 @@ "sF": "23", "sU": "17", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 3" }, { "date": "Oct 10, 1954", @@ -1508,8 +2211,13 @@ "und": "Washington Redskins", "sF": "51", "sU": "21", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 3" }, { "date": "Oct 16, 1954", @@ -1519,7 +2227,12 @@ "sF": "35", "sU": "0", "spread": "18", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 4" }, { "date": "Oct 17, 1954", @@ -1529,7 +2242,12 @@ "sF": "31", "sU": "24", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 4" }, { "date": "Oct 17, 1954", @@ -1539,7 +2257,12 @@ "sF": "17", "sU": "35", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 4" }, { "date": "Oct 17, 1954", @@ -1549,7 +2272,12 @@ "sF": "31", "sU": "17", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 4" }, { "date": "Oct 17, 1954", @@ -1559,7 +2287,12 @@ "sF": "27", "sU": "55", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 4" }, { "date": "Oct 17, 1954", @@ -1569,7 +2302,12 @@ "sF": "49", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 4" }, { "date": "Oct 23, 1954", @@ -1578,8 +2316,13 @@ "und": "Pittsburgh Steelers", "sF": "7", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 5" }, { "date": "Oct 24, 1954", @@ -1589,7 +2332,12 @@ "sF": "7", "sU": "6", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 5" }, { "date": "Oct 24, 1954", @@ -1599,7 +2347,12 @@ "sF": "35", "sU": "3", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 5" }, { "date": "Oct 24, 1954", @@ -1609,7 +2362,12 @@ "sF": "42", "sU": "38", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 5" }, { "date": "Oct 24, 1954", @@ -1619,7 +2377,12 @@ "sF": "24", "sU": "7", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 5" }, { "date": "Oct 24, 1954", @@ -1628,12 +2391,13 @@ "und": "San Francisco 49ers", "sF": "31", "sU": "37", - "spread": "1", - "ou": "49", + "spread": "1.5", + "ou": null, "pScore": { - "sU": 24, - "sF": 25 - } + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 5" }, { "date": "Oct 30, 1954", @@ -1642,8 +2406,13 @@ "und": "Green Bay Packers", "sF": "14", "sU": "37", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 6" }, { "date": "Oct 31, 1954", @@ -1652,8 +2421,13 @@ "und": "Chicago Cardinals", "sF": "14", "sU": "17", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 6" }, { "date": "Oct 31, 1954", @@ -1662,8 +2436,13 @@ "und": "New York Giants", "sF": "24", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 6" }, { "date": "Oct 31, 1954", @@ -1673,7 +2452,12 @@ "sF": "27", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 6" }, { "date": "Oct 31, 1954", @@ -1682,8 +2466,13 @@ "und": "Chicago Bears", "sF": "27", "sU": "31", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 6" }, { "date": "Oct 31, 1954", @@ -1692,8 +2481,13 @@ "und": "Washington Redskins", "sF": "21", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 6" }, { "date": "Nov 6, 1954", @@ -1702,8 +2496,13 @@ "und": "Baltimore Colts", "sF": "27", "sU": "3", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 7" }, { "date": "Nov 7, 1954", @@ -1712,8 +2511,13 @@ "und": "Green Bay Packers", "sF": "28", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 7" }, { "date": "Nov 7, 1954", @@ -1723,7 +2527,12 @@ "sF": "62", "sU": "3", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 7" }, { "date": "Nov 7, 1954", @@ -1733,7 +2542,12 @@ "sF": "30", "sU": "14", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 7" }, { "date": "Nov 7, 1954", @@ -1742,8 +2556,13 @@ "und": "New York Giants", "sF": "6", "sU": "30", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 7" }, { "date": "Nov 7, 1954", @@ -1753,7 +2572,12 @@ "sF": "34", "sU": "42", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 7" }, { "date": "Nov 13, 1954", @@ -1763,7 +2587,12 @@ "sF": "24", "sU": "13", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 8" }, { "date": "Nov 14, 1954", @@ -1772,8 +2601,13 @@ "und": "Chicago Bears", "sF": "39", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 8" }, { "date": "Nov 14, 1954", @@ -1783,11 +2617,12 @@ "sF": "48", "sU": "7", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 8" }, { "date": "Nov 14, 1954", @@ -1797,7 +2632,12 @@ "sF": "28", "sU": "17", "spread": "26", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 8" }, { "date": "Nov 14, 1954", @@ -1807,7 +2647,12 @@ "sF": "27", "sU": "14", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 8" }, { "date": "Nov 14, 1954", @@ -1817,7 +2662,12 @@ "sF": "14", "sU": "17", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 8" }, { "date": "Nov 20, 1954", @@ -1826,8 +2676,13 @@ "und": "Pittsburgh Steelers", "sF": "31", "sU": "3", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 9" }, { "date": "Nov 21, 1954", @@ -1837,7 +2692,12 @@ "sF": "28", "sU": "13", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 9" }, { "date": "Nov 21, 1954", @@ -1847,7 +2707,12 @@ "sF": "38", "sU": "16", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 9" }, { "date": "Nov 21, 1954", @@ -1857,7 +2722,12 @@ "sF": "6", "sU": "0", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 9" }, { "date": "Nov 21, 1954", @@ -1867,7 +2737,12 @@ "sF": "21", "sU": "17", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 9" }, { "date": "Nov 21, 1954", @@ -1877,7 +2752,12 @@ "sF": "16", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 9" }, { "date": "Nov 25, 1954", @@ -1887,7 +2767,12 @@ "sF": "28", "sU": "24", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 10" }, { "date": "Nov 28, 1954", @@ -1897,7 +2782,12 @@ "sF": "13", "sU": "17", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 10" }, { "date": "Nov 28, 1954", @@ -1907,7 +2797,12 @@ "sF": "13", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 10" }, { "date": "Nov 28, 1954", @@ -1916,8 +2811,13 @@ "und": "New York Giants", "sF": "16", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 10" }, { "date": "Nov 28, 1954", @@ -1927,7 +2827,12 @@ "sF": "41", "sU": "33", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 10" }, { "date": "Nov 28, 1954", @@ -1936,8 +2841,13 @@ "und": "Chicago Cardinals", "sF": "20", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 10" }, { "date": "Dec 4, 1954", @@ -1947,7 +2857,12 @@ "sF": "21", "sU": "22", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 11" }, { "date": "Dec 5, 1954", @@ -1957,7 +2872,12 @@ "sF": "29", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 11" }, { "date": "Dec 5, 1954", @@ -1967,7 +2887,12 @@ "sF": "13", "sU": "13", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 11" }, { "date": "Dec 5, 1954", @@ -1976,8 +2901,13 @@ "und": "Pittsburgh Steelers", "sF": "24", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 11" }, { "date": "Dec 5, 1954", @@ -1987,7 +2917,12 @@ "sF": "35", "sU": "0", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 11" }, { "date": "Dec 5, 1954", @@ -1997,7 +2932,12 @@ "sF": "34", "sU": "14", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 11" }, { "date": "Dec 11, 1954", @@ -2007,7 +2947,12 @@ "sF": "10", "sU": "7", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 12" }, { "date": "Dec 12, 1954", @@ -2016,8 +2961,13 @@ "und": "Chicago Bears", "sF": "24", "sU": "28", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 12" }, { "date": "Dec 12, 1954", @@ -2027,7 +2977,12 @@ "sF": "42", "sU": "7", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 12" }, { "date": "Dec 12, 1954", @@ -2037,7 +2992,12 @@ "sF": "35", "sU": "27", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 12" }, { "date": "Dec 12, 1954", @@ -2046,8 +3006,13 @@ "und": "New York Giants", "sF": "29", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 12" }, { "date": "Dec 12, 1954", @@ -2056,8 +3021,13 @@ "und": "Washington Redskins", "sF": "20", "sU": "37", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 12" }, { "date": "Dec 19, 1954", @@ -2067,7 +3037,12 @@ "sF": "10", "sU": "14", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Regular Season - Week 13" }, { "date": "Dec 26, 1954", @@ -2077,7 +3052,12 @@ "sF": "10", "sU": "56", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1954 Playoffs" }, { "date": "Sep 24, 1955", @@ -2087,7 +3067,12 @@ "sF": "27", "sU": "17", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 1" }, { "date": "Sep 25, 1955", @@ -2097,7 +3082,12 @@ "sF": "17", "sU": "23", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 1" }, { "date": "Sep 25, 1955", @@ -2107,7 +3097,12 @@ "sF": "17", "sU": "27", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 1" }, { "date": "Sep 25, 1955", @@ -2117,7 +3112,12 @@ "sF": "17", "sU": "20", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 1" }, { "date": "Sep 25, 1955", @@ -2126,8 +3126,13 @@ "und": "Los Angeles Rams", "sF": "14", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 1" }, { "date": "Oct 1, 1955", @@ -2137,7 +3142,12 @@ "sF": "13", "sU": "28", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 2" }, { "date": "Oct 1, 1955", @@ -2147,7 +3157,12 @@ "sF": "30", "sU": "31", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 2" }, { "date": "Oct 2, 1955", @@ -2157,7 +3172,12 @@ "sF": "17", "sU": "28", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 2" }, { "date": "Oct 2, 1955", @@ -2166,8 +3186,13 @@ "und": "Green Bay Packers", "sF": "3", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 2" }, { "date": "Oct 2, 1955", @@ -2177,7 +3202,12 @@ "sF": "27", "sU": "26", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 2" }, { "date": "Oct 2, 1955", @@ -2186,8 +3216,13 @@ "und": "Cleveland Browns", "sF": "3", "sU": "38", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 2" }, { "date": "Oct 8, 1955", @@ -2197,7 +3232,12 @@ "sF": "20", "sU": "24", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 3" }, { "date": "Oct 9, 1955", @@ -2207,11 +3247,12 @@ "sF": "19", "sU": "20", "spread": "3", - "ou": "49", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 3" }, { "date": "Oct 9, 1955", @@ -2221,7 +3262,12 @@ "sF": "21", "sU": "17", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 3" }, { "date": "Oct 9, 1955", @@ -2231,7 +3277,12 @@ "sF": "10", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 3" }, { "date": "Oct 9, 1955", @@ -2240,8 +3291,13 @@ "und": "Pittsburgh Steelers", "sF": "23", "sU": "30", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 3" }, { "date": "Oct 9, 1955", @@ -2250,8 +3306,13 @@ "und": "Chicago Cardinals", "sF": "10", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 3" }, { "date": "Oct 15, 1955", @@ -2260,8 +3321,13 @@ "und": "Pittsburgh Steelers", "sF": "7", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 4" }, { "date": "Oct 16, 1955", @@ -2270,8 +3336,13 @@ "und": "Baltimore Colts", "sF": "38", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 4" }, { "date": "Oct 16, 1955", @@ -2281,11 +3352,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": "49", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 4" }, { "date": "Oct 16, 1955", @@ -2295,7 +3367,12 @@ "sF": "28", "sU": "30", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 4" }, { "date": "Oct 16, 1955", @@ -2305,7 +3382,12 @@ "sF": "10", "sU": "0", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 4" }, { "date": "Oct 16, 1955", @@ -2315,7 +3397,12 @@ "sF": "24", "sU": "14", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 4" }, { "date": "Oct 23, 1955", @@ -2325,7 +3412,12 @@ "sF": "13", "sU": "14", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 5" }, { "date": "Oct 23, 1955", @@ -2335,7 +3427,12 @@ "sF": "24", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 5" }, { "date": "Oct 23, 1955", @@ -2345,7 +3442,12 @@ "sF": "41", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 5" }, { "date": "Oct 23, 1955", @@ -2355,7 +3457,12 @@ "sF": "24", "sU": "13", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 5" }, { "date": "Oct 23, 1955", @@ -2365,7 +3472,12 @@ "sF": "17", "sU": "19", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 5" }, { "date": "Oct 23, 1955", @@ -2375,7 +3487,12 @@ "sF": "23", "sU": "34", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 5" }, { "date": "Oct 29, 1955", @@ -2385,7 +3502,12 @@ "sF": "14", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 6" }, { "date": "Oct 30, 1955", @@ -2395,7 +3517,12 @@ "sF": "26", "sU": "20", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 6" }, { "date": "Oct 30, 1955", @@ -2405,7 +3532,12 @@ "sF": "20", "sU": "31", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 6" }, { "date": "Oct 30, 1955", @@ -2415,7 +3547,12 @@ "sF": "24", "sU": "0", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 6" }, { "date": "Oct 30, 1955", @@ -2425,7 +3562,12 @@ "sF": "38", "sU": "21", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 6" }, { "date": "Nov 5, 1955", @@ -2434,8 +3576,13 @@ "und": "Pittsburgh Steelers", "sF": "27", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 7" }, { "date": "Nov 5, 1955", @@ -2445,7 +3592,12 @@ "sF": "24", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 7" }, { "date": "Nov 6, 1955", @@ -2454,8 +3606,13 @@ "und": "Green Bay Packers", "sF": "52", "sU": "31", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 7" }, { "date": "Nov 6, 1955", @@ -2464,8 +3621,13 @@ "und": "New York Giants", "sF": "24", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 7" }, { "date": "Nov 6, 1955", @@ -2474,8 +3636,13 @@ "und": "Los Angeles Rams", "sF": "14", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 7" }, { "date": "Nov 6, 1955", @@ -2485,7 +3652,12 @@ "sF": "21", "sU": "34", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 7" }, { "date": "Nov 13, 1955", @@ -2495,7 +3667,12 @@ "sF": "24", "sU": "3", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 8" }, { "date": "Nov 13, 1955", @@ -2505,7 +3682,12 @@ "sF": "31", "sU": "14", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 8" }, { "date": "Nov 13, 1955", @@ -2514,8 +3696,13 @@ "und": "Baltimore Colts", "sF": "17", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 8" }, { "date": "Nov 13, 1955", @@ -2524,8 +3711,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "33", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 8" }, { "date": "Nov 13, 1955", @@ -2534,8 +3726,13 @@ "und": "Pittsburgh Steelers", "sF": "31", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 8" }, { "date": "Nov 13, 1955", @@ -2544,8 +3741,13 @@ "und": "Washington Redskins", "sF": "0", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 8" }, { "date": "Nov 20, 1955", @@ -2555,7 +3757,12 @@ "sF": "17", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 9" }, { "date": "Nov 20, 1955", @@ -2565,7 +3772,12 @@ "sF": "41", "sU": "14", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 9" }, { "date": "Nov 20, 1955", @@ -2574,8 +3786,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "14", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 9" }, { "date": "Nov 20, 1955", @@ -2584,12 +3801,13 @@ "und": "San Francisco 49ers", "sF": "27", "sU": "21", - "spread": "1", - "ou": "49", + "spread": "1.5", + "ou": null, "pScore": { - "sU": 24, - "sF": 25 - } + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 9" }, { "date": "Nov 20, 1955", @@ -2599,7 +3817,12 @@ "sF": "7", "sU": "31", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 9" }, { "date": "Nov 24, 1955", @@ -2609,7 +3832,12 @@ "sF": "24", "sU": "10", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 10" }, { "date": "Nov 27, 1955", @@ -2618,12 +3846,13 @@ "und": "San Francisco 49ers", "sF": "26", "sU": "14", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 10" }, { "date": "Nov 27, 1955", @@ -2633,7 +3862,12 @@ "sF": "14", "sU": "53", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 10" }, { "date": "Nov 27, 1955", @@ -2642,8 +3876,13 @@ "und": "New York Giants", "sF": "35", "sU": "35", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 10" }, { "date": "Nov 27, 1955", @@ -2653,7 +3892,12 @@ "sF": "21", "sU": "23", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 10" }, { "date": "Nov 27, 1955", @@ -2663,7 +3907,12 @@ "sF": "23", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 10" }, { "date": "Dec 4, 1955", @@ -2672,8 +3921,13 @@ "und": "Detroit Lions", "sF": "21", "sU": "20", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 11" }, { "date": "Dec 4, 1955", @@ -2683,7 +3937,12 @@ "sF": "20", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 11" }, { "date": "Dec 4, 1955", @@ -2693,7 +3952,12 @@ "sF": "27", "sU": "3", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 11" }, { "date": "Dec 4, 1955", @@ -2703,7 +3967,12 @@ "sF": "30", "sU": "7", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 11" }, { "date": "Dec 4, 1955", @@ -2712,8 +3981,13 @@ "und": "Green Bay Packers", "sF": "7", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 11" }, { "date": "Dec 4, 1955", @@ -2722,8 +3996,13 @@ "und": "New York Giants", "sF": "20", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 11" }, { "date": "Dec 11, 1955", @@ -2732,8 +4011,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 12" }, { "date": "Dec 11, 1955", @@ -2742,8 +4026,13 @@ "und": "Chicago Cardinals", "sF": "35", "sU": "24", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 12" }, { "date": "Dec 11, 1955", @@ -2752,8 +4041,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 12" }, { "date": "Dec 11, 1955", @@ -2763,7 +4057,12 @@ "sF": "31", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 12" }, { "date": "Dec 11, 1955", @@ -2773,11 +4072,12 @@ "sF": "24", "sU": "35", "spread": "4", - "ou": "49", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1955 Regular Season - Week 12" }, { "date": "Dec 26, 1955", @@ -2787,7 +4087,12 @@ "sF": "38", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1955 Playoffs" }, { "date": "Sep 30, 1956", @@ -2797,7 +4102,12 @@ "sF": "21", "sU": "28", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 1" }, { "date": "Sep 30, 1956", @@ -2806,8 +4116,13 @@ "und": "Chicago Cardinals", "sF": "7", "sU": "9", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 1" }, { "date": "Sep 30, 1956", @@ -2816,8 +4131,13 @@ "und": "Detroit Lions", "sF": "16", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 1" }, { "date": "Sep 30, 1956", @@ -2827,7 +4147,12 @@ "sF": "27", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 1" }, { "date": "Sep 30, 1956", @@ -2836,8 +4161,13 @@ "und": "Pittsburgh Steelers", "sF": "13", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 1" }, { "date": "Sep 30, 1956", @@ -2847,11 +4177,12 @@ "sF": "38", "sU": "21", "spread": "3", - "ou": "49", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 1" }, { "date": "Oct 6, 1956", @@ -2860,8 +4191,13 @@ "und": "Detroit Lions", "sF": "14", "sU": "31", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 2" }, { "date": "Oct 6, 1956", @@ -2871,7 +4207,12 @@ "sF": "13", "sU": "9", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 2" }, { "date": "Oct 6, 1956", @@ -2880,8 +4221,13 @@ "und": "Pittsburgh Steelers", "sF": "14", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 2" }, { "date": "Oct 7, 1956", @@ -2891,7 +4237,12 @@ "sF": "27", "sU": "35", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 2" }, { "date": "Oct 7, 1956", @@ -2901,7 +4252,12 @@ "sF": "37", "sU": "21", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 2" }, { "date": "Oct 7, 1956", @@ -2911,11 +4267,12 @@ "sF": "30", "sU": "33", "spread": "9", - "ou": "49", + "ou": null, "pScore": { - "sU": 20, - "sF": 29 - } + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 2" }, { "date": "Oct 14, 1956", @@ -2924,12 +4281,13 @@ "und": "San Francisco 49ers", "sF": "31", "sU": "7", - "spread": "10", - "ou": "49", + "spread": "10.5", + "ou": null, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 3" }, { "date": "Oct 14, 1956", @@ -2938,8 +4296,13 @@ "und": "Los Angeles Rams", "sF": "24", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 3" }, { "date": "Oct 14, 1956", @@ -2949,7 +4312,12 @@ "sF": "33", "sU": "38", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 3" }, { "date": "Oct 14, 1956", @@ -2958,8 +4326,13 @@ "und": "Philadelphia Eagles", "sF": "21", "sU": "35", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 3" }, { "date": "Oct 21, 1956", @@ -2969,7 +4342,12 @@ "sF": "58", "sU": "27", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 4" }, { "date": "Oct 21, 1956", @@ -2979,11 +4357,12 @@ "sF": "20", "sU": "17", "spread": "10", - "ou": "49", + "ou": null, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 4" }, { "date": "Oct 21, 1956", @@ -2992,8 +4371,13 @@ "und": "Green Bay Packers", "sF": "17", "sU": "42", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 4" }, { "date": "Oct 21, 1956", @@ -3003,7 +4387,12 @@ "sF": "38", "sU": "10", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 4" }, { "date": "Oct 21, 1956", @@ -3013,7 +4402,12 @@ "sF": "20", "sU": "6", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 4" }, { "date": "Oct 21, 1956", @@ -3022,8 +4416,13 @@ "und": "Washington Redskins", "sF": "9", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 4" }, { "date": "Oct 28, 1956", @@ -3032,8 +4431,13 @@ "und": "Baltimore Colts", "sF": "21", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 5" }, { "date": "Oct 28, 1956", @@ -3042,8 +4446,13 @@ "und": "Washington Redskins", "sF": "14", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 5" }, { "date": "Oct 28, 1956", @@ -3052,8 +4461,13 @@ "und": "Pittsburgh Steelers", "sF": "16", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 5" }, { "date": "Oct 28, 1956", @@ -3063,7 +4477,12 @@ "sF": "20", "sU": "3", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 5" }, { "date": "Oct 28, 1956", @@ -3072,12 +4491,13 @@ "und": "San Francisco 49ers", "sF": "38", "sU": "21", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 5" }, { "date": "Nov 4, 1956", @@ -3086,8 +4506,13 @@ "und": "Philadelphia Eagles", "sF": "28", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 6" }, { "date": "Nov 4, 1956", @@ -3096,8 +4521,13 @@ "und": "Cleveland Browns", "sF": "7", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 6" }, { "date": "Nov 4, 1956", @@ -3107,7 +4537,12 @@ "sF": "35", "sU": "24", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 6" }, { "date": "Nov 4, 1956", @@ -3117,7 +4552,12 @@ "sF": "17", "sU": "14", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 6" }, { "date": "Nov 4, 1956", @@ -3126,12 +4566,13 @@ "und": "San Francisco 49ers", "sF": "17", "sU": "13", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 6" }, { "date": "Nov 11, 1956", @@ -3141,7 +4582,12 @@ "sF": "38", "sU": "14", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 7" }, { "date": "Nov 11, 1956", @@ -3151,7 +4597,12 @@ "sF": "7", "sU": "21", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 7" }, { "date": "Nov 11, 1956", @@ -3161,11 +4612,12 @@ "sF": "30", "sU": "6", "spread": "5", - "ou": "49", + "ou": null, "pScore": { - "sU": 22, - "sF": 27 - } + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 7" }, { "date": "Nov 11, 1956", @@ -3175,7 +4627,12 @@ "sF": "23", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 7" }, { "date": "Nov 11, 1956", @@ -3185,7 +4642,12 @@ "sF": "14", "sU": "7", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 7" }, { "date": "Nov 11, 1956", @@ -3194,8 +4656,13 @@ "und": "Washington Redskins", "sF": "17", "sU": "18", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 7" }, { "date": "Nov 18, 1956", @@ -3205,7 +4672,12 @@ "sF": "30", "sU": "21", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 8" }, { "date": "Nov 18, 1956", @@ -3214,8 +4686,13 @@ "und": "Baltimore Colts", "sF": "27", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 8" }, { "date": "Nov 18, 1956", @@ -3225,11 +4702,12 @@ "sF": "16", "sU": "17", "spread": "4", - "ou": "49", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 8" }, { "date": "Nov 18, 1956", @@ -3238,8 +4716,13 @@ "und": "Cleveland Browns", "sF": "0", "sU": "16", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 8" }, { "date": "Nov 18, 1956", @@ -3249,7 +4732,12 @@ "sF": "7", "sU": "14", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 8" }, { "date": "Nov 18, 1956", @@ -3259,7 +4747,12 @@ "sF": "7", "sU": "33", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 8" }, { "date": "Nov 22, 1956", @@ -3269,7 +4762,12 @@ "sF": "20", "sU": "24", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 9" }, { "date": "Nov 25, 1956", @@ -3279,7 +4777,12 @@ "sF": "21", "sU": "56", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 9" }, { "date": "Nov 25, 1956", @@ -3289,7 +4792,12 @@ "sF": "38", "sU": "27", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 9" }, { "date": "Nov 25, 1956", @@ -3299,7 +4807,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 9" }, { "date": "Nov 25, 1956", @@ -3308,8 +4821,13 @@ "und": "New York Giants", "sF": "17", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 9" }, { "date": "Nov 25, 1956", @@ -3319,7 +4837,12 @@ "sF": "10", "sU": "10", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 9" }, { "date": "Dec 2, 1956", @@ -3329,11 +4852,12 @@ "sF": "17", "sU": "20", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 10" }, { "date": "Dec 2, 1956", @@ -3343,7 +4867,12 @@ "sF": "21", "sU": "24", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 10" }, { "date": "Dec 2, 1956", @@ -3353,7 +4882,12 @@ "sF": "17", "sU": "14", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 10" }, { "date": "Dec 2, 1956", @@ -3362,8 +4896,13 @@ "und": "Detroit Lions", "sF": "10", "sU": "42", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 10" }, { "date": "Dec 2, 1956", @@ -3373,7 +4912,12 @@ "sF": "28", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 10" }, { "date": "Dec 9, 1956", @@ -3382,8 +4926,13 @@ "und": "Chicago Cardinals", "sF": "10", "sU": "3", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 11" }, { "date": "Dec 9, 1956", @@ -3393,7 +4942,12 @@ "sF": "45", "sU": "7", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 11" }, { "date": "Dec 9, 1956", @@ -3403,7 +4957,12 @@ "sF": "7", "sU": "31", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 11" }, { "date": "Dec 9, 1956", @@ -3412,8 +4971,13 @@ "und": "Cleveland Browns", "sF": "7", "sU": "24", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 11" }, { "date": "Dec 9, 1956", @@ -3422,8 +4986,13 @@ "und": "Philadelphia Eagles", "sF": "19", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 11" }, { "date": "Dec 15, 1956", @@ -3432,8 +5001,13 @@ "und": "Philadelphia Eagles", "sF": "21", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 12" }, { "date": "Dec 16, 1956", @@ -3443,7 +5017,12 @@ "sF": "38", "sU": "21", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 12" }, { "date": "Dec 16, 1956", @@ -3452,8 +5031,13 @@ "und": "Chicago Cardinals", "sF": "7", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 12" }, { "date": "Dec 16, 1956", @@ -3462,8 +5046,13 @@ "und": "Green Bay Packers", "sF": "49", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 12" }, { "date": "Dec 16, 1956", @@ -3473,7 +5062,12 @@ "sF": "30", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 12" }, { "date": "Dec 16, 1956", @@ -3482,8 +5076,13 @@ "und": "Pittsburgh Steelers", "sF": "0", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 12" }, { "date": "Dec 23, 1956", @@ -3493,7 +5092,12 @@ "sF": "19", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Regular Season - Week 13" }, { "date": "Dec 30, 1956", @@ -3503,7 +5107,12 @@ "sF": "7", "sU": "47", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1956 Playoffs" }, { "date": "Sep 29, 1957", @@ -3513,7 +5122,12 @@ "sF": "34", "sU": "14", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 1" }, { "date": "Sep 29, 1957", @@ -3522,8 +5136,13 @@ "und": "Cleveland Browns", "sF": "3", "sU": "6", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 1" }, { "date": "Sep 29, 1957", @@ -3532,8 +5151,13 @@ "und": "Green Bay Packers", "sF": "17", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 1" }, { "date": "Sep 29, 1957", @@ -3543,7 +5167,12 @@ "sF": "17", "sU": "13", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 1" }, { "date": "Sep 29, 1957", @@ -3553,7 +5182,12 @@ "sF": "7", "sU": "28", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 1" }, { "date": "Sep 29, 1957", @@ -3563,7 +5197,12 @@ "sF": "10", "sU": "20", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 1" }, { "date": "Oct 5, 1957", @@ -3573,7 +5212,12 @@ "sF": "10", "sU": "21", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 2" }, { "date": "Oct 5, 1957", @@ -3583,7 +5227,12 @@ "sF": "24", "sU": "20", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 2" }, { "date": "Oct 5, 1957", @@ -3592,8 +5241,13 @@ "und": "Pittsburgh Steelers", "sF": "23", "sU": "12", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 2" }, { "date": "Oct 6, 1957", @@ -3603,7 +5257,12 @@ "sF": "14", "sU": "37", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 2" }, { "date": "Oct 6, 1957", @@ -3613,7 +5272,12 @@ "sF": "14", "sU": "24", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 2" }, { "date": "Oct 6, 1957", @@ -3623,11 +5287,12 @@ "sF": "20", "sU": "23", "spread": "6", - "ou": "49", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 2" }, { "date": "Oct 13, 1957", @@ -3636,8 +5301,13 @@ "und": "Chicago Bears", "sF": "21", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 3" }, { "date": "Oct 13, 1957", @@ -3647,7 +5317,12 @@ "sF": "24", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 3" }, { "date": "Oct 13, 1957", @@ -3657,7 +5332,12 @@ "sF": "45", "sU": "17", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 3" }, { "date": "Oct 13, 1957", @@ -3667,7 +5347,12 @@ "sF": "29", "sU": "20", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 3" }, { "date": "Oct 13, 1957", @@ -3676,8 +5361,13 @@ "und": "Washington Redskins", "sF": "24", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 3" }, { "date": "Oct 20, 1957", @@ -3686,8 +5376,13 @@ "und": "Los Angeles Rams", "sF": "34", "sU": "26", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 4" }, { "date": "Oct 20, 1957", @@ -3697,7 +5392,12 @@ "sF": "27", "sU": "31", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 4" }, { "date": "Oct 20, 1957", @@ -3707,7 +5407,12 @@ "sF": "35", "sU": "0", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 4" }, { "date": "Oct 20, 1957", @@ -3717,7 +5422,12 @@ "sF": "7", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 4" }, { "date": "Oct 20, 1957", @@ -3727,7 +5437,12 @@ "sF": "14", "sU": "44", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 4" }, { "date": "Oct 27, 1957", @@ -3737,7 +5452,12 @@ "sF": "21", "sU": "24", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 5" }, { "date": "Oct 27, 1957", @@ -3746,8 +5466,13 @@ "und": "Chicago Cardinals", "sF": "17", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 5" }, { "date": "Oct 27, 1957", @@ -3757,7 +5482,12 @@ "sF": "35", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 5" }, { "date": "Oct 27, 1957", @@ -3767,7 +5497,12 @@ "sF": "14", "sU": "31", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 5" }, { "date": "Oct 27, 1957", @@ -3776,8 +5511,13 @@ "und": "Philadelphia Eagles", "sF": "6", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 5" }, { "date": "Oct 27, 1957", @@ -3786,12 +5526,13 @@ "und": "San Francisco 49ers", "sF": "17", "sU": "21", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 5" }, { "date": "Nov 3, 1957", @@ -3800,8 +5541,13 @@ "und": "Pittsburgh Steelers", "sF": "13", "sU": "19", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 6" }, { "date": "Nov 3, 1957", @@ -3810,8 +5556,13 @@ "und": "Philadelphia Eagles", "sF": "21", "sU": "38", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 6" }, { "date": "Nov 3, 1957", @@ -3820,8 +5571,13 @@ "und": "Washington Redskins", "sF": "21", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 6" }, { "date": "Nov 3, 1957", @@ -3830,8 +5586,13 @@ "und": "New York Giants", "sF": "17", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 6" }, { "date": "Nov 3, 1957", @@ -3841,7 +5602,12 @@ "sF": "10", "sU": "16", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 6" }, { "date": "Nov 3, 1957", @@ -3851,7 +5617,12 @@ "sF": "35", "sU": "31", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 6" }, { "date": "Nov 10, 1957", @@ -3861,7 +5632,12 @@ "sF": "21", "sU": "14", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 7" }, { "date": "Nov 10, 1957", @@ -3871,7 +5647,12 @@ "sF": "24", "sU": "0", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 7" }, { "date": "Nov 10, 1957", @@ -3880,12 +5661,13 @@ "und": "San Francisco 49ers", "sF": "37", "sU": "24", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": null, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 7" }, { "date": "Nov 10, 1957", @@ -3895,7 +5677,12 @@ "sF": "27", "sU": "14", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 7" }, { "date": "Nov 10, 1957", @@ -3905,7 +5692,12 @@ "sF": "27", "sU": "16", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 7" }, { "date": "Nov 10, 1957", @@ -3915,7 +5707,12 @@ "sF": "21", "sU": "17", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 7" }, { "date": "Nov 17, 1957", @@ -3924,8 +5721,13 @@ "und": "Baltimore Colts", "sF": "14", "sU": "29", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 8" }, { "date": "Nov 17, 1957", @@ -3934,12 +5736,13 @@ "und": "San Francisco 49ers", "sF": "31", "sU": "10", - "spread": "5", - "ou": "49", + "spread": "5.5", + "ou": null, "pScore": { - "sU": 22, - "sF": 27 - } + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 8" }, { "date": "Nov 17, 1957", @@ -3948,8 +5751,13 @@ "und": "Green Bay Packers", "sF": "31", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 8" }, { "date": "Nov 17, 1957", @@ -3958,8 +5766,13 @@ "und": "Philadelphia Eagles", "sF": "13", "sU": "0", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 8" }, { "date": "Nov 17, 1957", @@ -3969,7 +5782,12 @@ "sF": "30", "sU": "30", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 8" }, { "date": "Nov 24, 1957", @@ -3978,12 +5796,13 @@ "und": "San Francisco 49ers", "sF": "27", "sU": "21", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 9" }, { "date": "Nov 24, 1957", @@ -3992,8 +5811,13 @@ "und": "Chicago Cardinals", "sF": "28", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 9" }, { "date": "Nov 24, 1957", @@ -4002,8 +5826,13 @@ "und": "Los Angeles Rams", "sF": "45", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 9" }, { "date": "Nov 24, 1957", @@ -4012,8 +5841,13 @@ "und": "Chicago Bears", "sF": "7", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 9" }, { "date": "Nov 24, 1957", @@ -4022,8 +5856,13 @@ "und": "Philadelphia Eagles", "sF": "12", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 9" }, { "date": "Nov 24, 1957", @@ -4032,8 +5871,13 @@ "und": "Green Bay Packers", "sF": "10", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 9" }, { "date": "Nov 28, 1957", @@ -4042,8 +5886,13 @@ "und": "Green Bay Packers", "sF": "18", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 10" }, { "date": "Dec 1, 1957", @@ -4053,7 +5902,12 @@ "sF": "31", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 10" }, { "date": "Dec 1, 1957", @@ -4063,7 +5917,12 @@ "sF": "3", "sU": "14", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 10" }, { "date": "Dec 1, 1957", @@ -4073,7 +5932,12 @@ "sF": "31", "sU": "0", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 10" }, { "date": "Dec 1, 1957", @@ -4083,11 +5947,12 @@ "sF": "17", "sU": "27", "spread": "8", - "ou": "49", + "ou": null, "pScore": { - "sU": 20.5, - "sF": 28.5 - } + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 10" }, { "date": "Dec 1, 1957", @@ -4096,8 +5961,13 @@ "und": "Pittsburgh Steelers", "sF": "7", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 10" }, { "date": "Dec 7, 1957", @@ -4106,8 +5976,13 @@ "und": "Pittsburgh Steelers", "sF": "10", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 11" }, { "date": "Dec 8, 1957", @@ -4117,7 +5992,12 @@ "sF": "14", "sU": "6", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 11" }, { "date": "Dec 8, 1957", @@ -4126,8 +6006,13 @@ "und": "Green Bay Packers", "sF": "42", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 11" }, { "date": "Dec 8, 1957", @@ -4136,8 +6021,13 @@ "und": "Baltimore Colts", "sF": "17", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 11" }, { "date": "Dec 8, 1957", @@ -4147,7 +6037,12 @@ "sF": "42", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 11" }, { "date": "Dec 14, 1957", @@ -4157,7 +6052,12 @@ "sF": "27", "sU": "31", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 12" }, { "date": "Dec 15, 1957", @@ -4166,8 +6066,13 @@ "und": "Detroit Lions", "sF": "13", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 12" }, { "date": "Dec 15, 1957", @@ -4176,8 +6081,13 @@ "und": "Baltimore Colts", "sF": "37", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 12" }, { "date": "Dec 15, 1957", @@ -4187,7 +6097,12 @@ "sF": "28", "sU": "34", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 12" }, { "date": "Dec 15, 1957", @@ -4197,7 +6112,12 @@ "sF": "27", "sU": "20", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 12" }, { "date": "Dec 15, 1957", @@ -4207,7 +6127,12 @@ "sF": "10", "sU": "3", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 12" }, { "date": "Dec 22, 1957", @@ -4217,7 +6142,12 @@ "sF": "2", "sU": "27", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 13" }, { "date": "Dec 22, 1957", @@ -4227,7 +6157,12 @@ "sF": "27", "sU": "31", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Regular Season - Week 13" }, { "date": "Dec 29, 1957", @@ -4237,7 +6172,12 @@ "sF": "14", "sU": "59", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1957 Playoffs" }, { "date": "Sep 28, 1958", @@ -4247,7 +6187,12 @@ "sF": "28", "sU": "15", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 1" }, { "date": "Sep 28, 1958", @@ -4256,8 +6201,13 @@ "und": "Chicago Cardinals", "sF": "37", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 1" }, { "date": "Sep 28, 1958", @@ -4267,7 +6217,12 @@ "sF": "34", "sU": "20", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 1" }, { "date": "Sep 28, 1958", @@ -4277,7 +6232,12 @@ "sF": "27", "sU": "30", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 1" }, { "date": "Sep 28, 1958", @@ -4287,7 +6247,12 @@ "sF": "14", "sU": "24", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 1" }, { "date": "Sep 28, 1958", @@ -4296,8 +6261,13 @@ "und": "Pittsburgh Steelers", "sF": "23", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 1" }, { "date": "Oct 4, 1958", @@ -4307,7 +6277,12 @@ "sF": "38", "sU": "51", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 2" }, { "date": "Oct 4, 1958", @@ -4317,7 +6292,12 @@ "sF": "10", "sU": "37", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 2" }, { "date": "Oct 5, 1958", @@ -4327,7 +6307,12 @@ "sF": "13", "sU": "13", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 2" }, { "date": "Oct 5, 1958", @@ -4336,8 +6321,13 @@ "und": "Philadelphia Eagles", "sF": "24", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 2" }, { "date": "Oct 5, 1958", @@ -4347,7 +6337,12 @@ "sF": "45", "sU": "12", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 2" }, { "date": "Oct 5, 1958", @@ -4357,7 +6352,12 @@ "sF": "3", "sU": "33", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 2" }, { "date": "Oct 12, 1958", @@ -4367,11 +6367,12 @@ "sF": "28", "sU": "6", "spread": "9", - "ou": "49", + "ou": null, "pScore": { - "sU": 20, - "sF": 29 - } + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 3" }, { "date": "Oct 12, 1958", @@ -4381,7 +6382,12 @@ "sF": "35", "sU": "28", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 3" }, { "date": "Oct 12, 1958", @@ -4391,7 +6397,12 @@ "sF": "42", "sU": "28", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 3" }, { "date": "Oct 12, 1958", @@ -4401,7 +6412,12 @@ "sF": "24", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 3" }, { "date": "Oct 12, 1958", @@ -4411,7 +6427,12 @@ "sF": "3", "sU": "24", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 3" }, { "date": "Oct 12, 1958", @@ -4421,7 +6442,12 @@ "sF": "14", "sU": "21", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 3" }, { "date": "Oct 19, 1958", @@ -4431,7 +6457,12 @@ "sF": "31", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 4" }, { "date": "Oct 19, 1958", @@ -4441,7 +6472,12 @@ "sF": "27", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 4" }, { "date": "Oct 19, 1958", @@ -4451,7 +6487,12 @@ "sF": "40", "sU": "14", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 4" }, { "date": "Oct 19, 1958", @@ -4460,8 +6501,13 @@ "und": "Chicago Cardinals", "sF": "6", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 4" }, { "date": "Oct 19, 1958", @@ -4471,11 +6517,12 @@ "sF": "24", "sU": "30", "spread": "2", - "ou": "49", + "ou": null, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 4" }, { "date": "Oct 19, 1958", @@ -4485,7 +6532,12 @@ "sF": "37", "sU": "21", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 4" }, { "date": "Oct 26, 1958", @@ -4494,8 +6546,13 @@ "und": "Washington Redskins", "sF": "35", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 5" }, { "date": "Oct 26, 1958", @@ -4504,8 +6561,13 @@ "und": "Chicago Cardinals", "sF": "38", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 5" }, { "date": "Oct 26, 1958", @@ -4514,8 +6576,13 @@ "und": "Philadelphia Eagles", "sF": "38", "sU": "35", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 5" }, { "date": "Oct 26, 1958", @@ -4524,8 +6591,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "41", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 5" }, { "date": "Oct 26, 1958", @@ -4535,7 +6607,12 @@ "sF": "17", "sU": "6", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 5" }, { "date": "Oct 26, 1958", @@ -4544,12 +6621,13 @@ "und": "San Francisco 49ers", "sF": "27", "sU": "14", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 5" }, { "date": "Nov 2, 1958", @@ -4559,7 +6637,12 @@ "sF": "56", "sU": "0", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 6" }, { "date": "Nov 2, 1958", @@ -4568,8 +6651,13 @@ "und": "Philadelphia Eagles", "sF": "21", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 6" }, { "date": "Nov 2, 1958", @@ -4578,8 +6666,13 @@ "und": "New York Giants", "sF": "17", "sU": "21", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 6" }, { "date": "Nov 2, 1958", @@ -4589,7 +6682,12 @@ "sF": "35", "sU": "41", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 6" }, { "date": "Nov 2, 1958", @@ -4599,7 +6697,12 @@ "sF": "24", "sU": "16", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 6" }, { "date": "Nov 2, 1958", @@ -4608,8 +6711,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 6" }, { "date": "Nov 9, 1958", @@ -4619,7 +6727,12 @@ "sF": "24", "sU": "10", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 7" }, { "date": "Nov 9, 1958", @@ -4629,7 +6742,12 @@ "sF": "10", "sU": "30", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 7" }, { "date": "Nov 9, 1958", @@ -4639,11 +6757,12 @@ "sF": "56", "sU": "7", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 7" }, { "date": "Nov 9, 1958", @@ -4653,7 +6772,12 @@ "sF": "21", "sU": "24", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 7" }, { "date": "Nov 9, 1958", @@ -4663,7 +6787,12 @@ "sF": "24", "sU": "31", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 7" }, { "date": "Nov 9, 1958", @@ -4672,8 +6801,13 @@ "und": "Chicago Cardinals", "sF": "45", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 7" }, { "date": "Nov 16, 1958", @@ -4682,8 +6816,13 @@ "und": "Baltimore Colts", "sF": "0", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 8" }, { "date": "Nov 16, 1958", @@ -4692,8 +6831,13 @@ "und": "Detroit Lions", "sF": "21", "sU": "35", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 8" }, { "date": "Nov 16, 1958", @@ -4702,8 +6846,13 @@ "und": "Green Bay Packers", "sF": "20", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 8" }, { "date": "Nov 16, 1958", @@ -4713,7 +6862,12 @@ "sF": "10", "sU": "31", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 8" }, { "date": "Nov 16, 1958", @@ -4722,8 +6876,13 @@ "und": "Washington Redskins", "sF": "20", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 8" }, { "date": "Nov 23, 1958", @@ -4733,7 +6892,12 @@ "sF": "34", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 9" }, { "date": "Nov 23, 1958", @@ -4743,7 +6907,12 @@ "sF": "27", "sU": "20", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 9" }, { "date": "Nov 23, 1958", @@ -4753,7 +6922,12 @@ "sF": "28", "sU": "14", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 9" }, { "date": "Nov 23, 1958", @@ -4763,7 +6937,12 @@ "sF": "7", "sU": "20", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 9" }, { "date": "Nov 23, 1958", @@ -4773,7 +6952,12 @@ "sF": "33", "sU": "12", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 9" }, { "date": "Nov 23, 1958", @@ -4782,8 +6966,13 @@ "und": "Washington Redskins", "sF": "30", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 9" }, { "date": "Nov 27, 1958", @@ -4792,8 +6981,13 @@ "und": "Green Bay Packers", "sF": "24", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 10" }, { "date": "Nov 30, 1958", @@ -4802,12 +6996,13 @@ "und": "San Francisco 49ers", "sF": "35", "sU": "27", - "spread": "13", - "ou": "49", + "spread": "13.5", + "ou": null, "pScore": { - "sU": 18, - "sF": 31 - } + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 10" }, { "date": "Nov 30, 1958", @@ -4816,8 +7011,13 @@ "und": "Chicago Cardinals", "sF": "20", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 10" }, { "date": "Nov 30, 1958", @@ -4826,8 +7026,13 @@ "und": "Washington Redskins", "sF": "21", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 10" }, { "date": "Nov 30, 1958", @@ -4837,7 +7042,12 @@ "sF": "24", "sU": "10", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 10" }, { "date": "Nov 30, 1958", @@ -4846,8 +7056,13 @@ "und": "Pittsburgh Steelers", "sF": "10", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 10" }, { "date": "Dec 6, 1958", @@ -4856,8 +7071,13 @@ "und": "Los Angeles Rams", "sF": "28", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 11" }, { "date": "Dec 7, 1958", @@ -4866,8 +7086,13 @@ "und": "Chicago Cardinals", "sF": "30", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 11" }, { "date": "Dec 7, 1958", @@ -4876,8 +7101,13 @@ "und": "Detroit Lions", "sF": "19", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 11" }, { "date": "Dec 7, 1958", @@ -4887,7 +7117,12 @@ "sF": "21", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 11" }, { "date": "Dec 7, 1958", @@ -4896,8 +7131,13 @@ "und": "Green Bay Packers", "sF": "48", "sU": "21", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 11" }, { "date": "Dec 7, 1958", @@ -4906,8 +7146,13 @@ "und": "Washington Redskins", "sF": "14", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 11" }, { "date": "Dec 13, 1958", @@ -4917,7 +7162,12 @@ "sF": "38", "sU": "21", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 12" }, { "date": "Dec 14, 1958", @@ -4926,8 +7176,13 @@ "und": "Detroit Lions", "sF": "21", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 12" }, { "date": "Dec 14, 1958", @@ -4937,7 +7192,12 @@ "sF": "34", "sU": "20", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 12" }, { "date": "Dec 14, 1958", @@ -4947,7 +7207,12 @@ "sF": "10", "sU": "13", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 12" }, { "date": "Dec 14, 1958", @@ -4957,11 +7222,12 @@ "sF": "12", "sU": "21", "spread": "5", - "ou": "49", + "ou": null, "pScore": { - "sU": 22, - "sF": 27 - } + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 12" }, { "date": "Dec 14, 1958", @@ -4971,7 +7237,12 @@ "sF": "20", "sU": "0", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Regular Season - Week 12" }, { "date": "Dec 28, 1958", @@ -4980,8 +7251,13 @@ "und": "New York Giants", "sF": "23", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1958 Playoffs" }, { "date": "Sep 26, 1959", @@ -4991,7 +7267,12 @@ "sF": "21", "sU": "23", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 1" }, { "date": "Sep 26, 1959", @@ -5000,8 +7281,13 @@ "und": "Pittsburgh Steelers", "sF": "7", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 1" }, { "date": "Sep 27, 1959", @@ -5010,8 +7296,13 @@ "und": "Detroit Lions", "sF": "21", "sU": "9", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 1" }, { "date": "Sep 27, 1959", @@ -5021,7 +7312,12 @@ "sF": "49", "sU": "21", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 1" }, { "date": "Sep 27, 1959", @@ -5030,8 +7326,13 @@ "und": "Green Bay Packers", "sF": "6", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 1" }, { "date": "Sep 27, 1959", @@ -5041,7 +7342,12 @@ "sF": "24", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 1" }, { "date": "Oct 3, 1959", @@ -5051,7 +7357,12 @@ "sF": "21", "sU": "26", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 2" }, { "date": "Oct 4, 1959", @@ -5060,8 +7371,13 @@ "und": "Cleveland Browns", "sF": "7", "sU": "34", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 2" }, { "date": "Oct 4, 1959", @@ -5071,7 +7387,12 @@ "sF": "28", "sU": "10", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 2" }, { "date": "Oct 4, 1959", @@ -5081,7 +7402,12 @@ "sF": "21", "sU": "49", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 2" }, { "date": "Oct 4, 1959", @@ -5090,8 +7416,13 @@ "und": "Washington Redskins", "sF": "17", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 2" }, { "date": "Oct 4, 1959", @@ -5101,11 +7432,12 @@ "sF": "0", "sU": "34", "spread": "4", - "ou": "49", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 2" }, { "date": "Oct 11, 1959", @@ -5114,8 +7446,13 @@ "und": "Los Angeles Rams", "sF": "21", "sU": "28", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 3" }, { "date": "Oct 11, 1959", @@ -5124,8 +7461,13 @@ "und": "New York Giants", "sF": "6", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 3" }, { "date": "Oct 11, 1959", @@ -5135,7 +7477,12 @@ "sF": "31", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 3" }, { "date": "Oct 11, 1959", @@ -5145,11 +7492,12 @@ "sF": "21", "sU": "20", "spread": "4", - "ou": "49", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 3" }, { "date": "Oct 11, 1959", @@ -5159,7 +7507,12 @@ "sF": "28", "sU": "24", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 3" }, { "date": "Oct 11, 1959", @@ -5169,7 +7522,12 @@ "sF": "23", "sU": "14", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 3" }, { "date": "Oct 18, 1959", @@ -5179,7 +7537,12 @@ "sF": "21", "sU": "7", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 4" }, { "date": "Oct 18, 1959", @@ -5188,8 +7551,13 @@ "und": "Chicago Cardinals", "sF": "17", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 4" }, { "date": "Oct 18, 1959", @@ -5199,11 +7567,12 @@ "sF": "13", "sU": "34", "spread": "2", - "ou": "49", + "ou": null, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 4" }, { "date": "Oct 18, 1959", @@ -5213,7 +7582,12 @@ "sF": "45", "sU": "6", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 4" }, { "date": "Oct 18, 1959", @@ -5222,8 +7596,13 @@ "und": "Philadelphia Eagles", "sF": "24", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 4" }, { "date": "Oct 25, 1959", @@ -5232,8 +7611,13 @@ "und": "Green Bay Packers", "sF": "38", "sU": "21", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 5" }, { "date": "Oct 25, 1959", @@ -5243,7 +7627,12 @@ "sF": "34", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 5" }, { "date": "Oct 25, 1959", @@ -5252,8 +7641,13 @@ "und": "Detroit Lions", "sF": "7", "sU": "17", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 5" }, { "date": "Oct 25, 1959", @@ -5263,7 +7657,12 @@ "sF": "28", "sU": "24", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 5" }, { "date": "Oct 25, 1959", @@ -5273,7 +7672,12 @@ "sF": "16", "sU": "21", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 5" }, { "date": "Oct 25, 1959", @@ -5282,8 +7686,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 5" }, { "date": "Nov 1, 1959", @@ -5292,8 +7701,13 @@ "und": "Cleveland Browns", "sF": "31", "sU": "38", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 6" }, { "date": "Nov 1, 1959", @@ -5302,8 +7716,13 @@ "und": "Chicago Cardinals", "sF": "24", "sU": "45", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 6" }, { "date": "Nov 1, 1959", @@ -5313,7 +7732,12 @@ "sF": "21", "sU": "26", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 6" }, { "date": "Nov 1, 1959", @@ -5323,7 +7747,12 @@ "sF": "20", "sU": "3", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 6" }, { "date": "Nov 1, 1959", @@ -5333,7 +7762,12 @@ "sF": "30", "sU": "23", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 6" }, { "date": "Nov 1, 1959", @@ -5343,7 +7777,12 @@ "sF": "33", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 6" }, { "date": "Nov 8, 1959", @@ -5352,8 +7791,13 @@ "und": "Green Bay Packers", "sF": "28", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 7" }, { "date": "Nov 8, 1959", @@ -5362,8 +7806,13 @@ "und": "Philadelphia Eagles", "sF": "28", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 7" }, { "date": "Nov 8, 1959", @@ -5373,7 +7822,12 @@ "sF": "9", "sU": "3", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 7" }, { "date": "Nov 8, 1959", @@ -5382,8 +7836,13 @@ "und": "Detroit Lions", "sF": "10", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 7" }, { "date": "Nov 8, 1959", @@ -5393,7 +7852,12 @@ "sF": "24", "sU": "27", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 7" }, { "date": "Nov 15, 1959", @@ -5402,12 +7866,13 @@ "und": "San Francisco 49ers", "sF": "14", "sU": "3", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": null, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 8" }, { "date": "Nov 15, 1959", @@ -5416,8 +7881,13 @@ "und": "Detroit Lions", "sF": "17", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 8" }, { "date": "Nov 15, 1959", @@ -5427,7 +7897,12 @@ "sF": "28", "sU": "24", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 8" }, { "date": "Nov 15, 1959", @@ -5436,8 +7911,13 @@ "und": "Pittsburgh Steelers", "sF": "9", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 8" }, { "date": "Nov 15, 1959", @@ -5446,8 +7926,13 @@ "und": "Chicago Cardinals", "sF": "27", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 8" }, { "date": "Nov 15, 1959", @@ -5456,8 +7941,13 @@ "und": "Washington Redskins", "sF": "31", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 8" }, { "date": "Nov 22, 1959", @@ -5467,11 +7957,12 @@ "sF": "45", "sU": "14", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 9" }, { "date": "Nov 22, 1959", @@ -5480,8 +7971,13 @@ "und": "Chicago Cardinals", "sF": "30", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 9" }, { "date": "Nov 22, 1959", @@ -5491,7 +7987,12 @@ "sF": "20", "sU": "21", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 9" }, { "date": "Nov 22, 1959", @@ -5501,7 +8002,12 @@ "sF": "24", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 9" }, { "date": "Nov 22, 1959", @@ -5511,7 +8017,12 @@ "sF": "21", "sU": "0", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 9" }, { "date": "Nov 22, 1959", @@ -5520,8 +8031,13 @@ "und": "Los Angeles Rams", "sF": "23", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 9" }, { "date": "Nov 26, 1959", @@ -5531,7 +8047,12 @@ "sF": "17", "sU": "24", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 10" }, { "date": "Nov 29, 1959", @@ -5541,7 +8062,12 @@ "sF": "35", "sU": "21", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 10" }, { "date": "Nov 29, 1959", @@ -5551,7 +8077,12 @@ "sF": "31", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 10" }, { "date": "Nov 29, 1959", @@ -5561,11 +8092,12 @@ "sF": "20", "sU": "21", "spread": "10", - "ou": "49", + "ou": null, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 10" }, { "date": "Nov 29, 1959", @@ -5575,7 +8107,12 @@ "sF": "45", "sU": "14", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 10" }, { "date": "Nov 29, 1959", @@ -5585,7 +8122,12 @@ "sF": "31", "sU": "0", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 10" }, { "date": "Dec 5, 1959", @@ -5595,11 +8137,12 @@ "sF": "34", "sU": "14", "spread": "6", - "ou": "49", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 11" }, { "date": "Dec 6, 1959", @@ -5608,8 +8151,13 @@ "und": "Pittsburgh Steelers", "sF": "27", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 11" }, { "date": "Dec 6, 1959", @@ -5619,7 +8167,12 @@ "sF": "45", "sU": "21", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 11" }, { "date": "Dec 6, 1959", @@ -5628,8 +8181,13 @@ "und": "Green Bay Packers", "sF": "20", "sU": "38", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 11" }, { "date": "Dec 6, 1959", @@ -5638,8 +8196,13 @@ "und": "Cleveland Browns", "sF": "48", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 11" }, { "date": "Dec 6, 1959", @@ -5648,8 +8211,13 @@ "und": "Washington Redskins", "sF": "34", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 11" }, { "date": "Dec 12, 1959", @@ -5659,7 +8227,12 @@ "sF": "45", "sU": "26", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 12" }, { "date": "Dec 13, 1959", @@ -5668,8 +8241,13 @@ "und": "Detroit Lions", "sF": "25", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 12" }, { "date": "Dec 13, 1959", @@ -5678,8 +8256,13 @@ "und": "Cleveland Browns", "sF": "21", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 12" }, { "date": "Dec 13, 1959", @@ -5689,7 +8272,12 @@ "sF": "35", "sU": "20", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 12" }, { "date": "Dec 13, 1959", @@ -5699,7 +8287,12 @@ "sF": "14", "sU": "36", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 12" }, { "date": "Dec 13, 1959", @@ -5709,7 +8302,12 @@ "sF": "24", "sU": "10", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Regular Season - Week 12" }, { "date": "Dec 27, 1959", @@ -5718,8 +8316,13 @@ "und": "New York Giants", "sF": "31", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1959 Playoffs" }, { "date": "Sep 9, 1960", @@ -5729,7 +8332,12 @@ "sF": "10", "sU": "13", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 1" }, { "date": "Sep 10, 1960", @@ -5739,7 +8347,12 @@ "sF": "20", "sU": "21", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 1" }, { "date": "Sep 11, 1960", @@ -5748,8 +8361,13 @@ "und": "Buffalo Bills", "sF": "27", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 1" }, { "date": "Sep 11, 1960", @@ -5759,7 +8377,12 @@ "sF": "37", "sU": "22", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 1" }, { "date": "Sep 23, 1960", @@ -5768,8 +8391,13 @@ "und": "St Louis Cardinals", "sF": "21", "sU": "43", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 1" }, { "date": "Sep 24, 1960", @@ -5779,7 +8407,12 @@ "sF": "35", "sU": "28", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 1" }, { "date": "Sep 25, 1960", @@ -5788,8 +8421,13 @@ "und": "Washington Redskins", "sF": "20", "sU": "0", - "spread": "18", - "ou": -1 + "spread": "18.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 1" }, { "date": "Sep 25, 1960", @@ -5799,7 +8437,12 @@ "sF": "14", "sU": "17", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 1" }, { "date": "Sep 25, 1960", @@ -5809,7 +8452,12 @@ "sF": "19", "sU": "21", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 1" }, { "date": "Sep 16, 1960", @@ -5819,7 +8467,12 @@ "sF": "34", "sU": "16", "spread": "18", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 2" }, { "date": "Sep 17, 1960", @@ -5829,7 +8482,12 @@ "sF": "24", "sU": "28", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 2" }, { "date": "Sep 18, 1960", @@ -5838,8 +8496,13 @@ "und": "Los Angeles Chargers", "sF": "38", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 2" }, { "date": "Sep 30, 1960", @@ -5848,8 +8511,13 @@ "und": "Dallas Cowboys", "sF": "27", "sU": "25", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 2" }, { "date": "Oct 2, 1960", @@ -5859,7 +8527,12 @@ "sF": "42", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 2" }, { "date": "Oct 2, 1960", @@ -5868,8 +8541,13 @@ "und": "Pittsburgh Steelers", "sF": "28", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 2" }, { "date": "Oct 2, 1960", @@ -5879,7 +8557,12 @@ "sF": "28", "sU": "9", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 2" }, { "date": "Oct 2, 1960", @@ -5889,7 +8572,12 @@ "sF": "13", "sU": "9", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 2" }, { "date": "Oct 2, 1960", @@ -5899,7 +8587,12 @@ "sF": "35", "sU": "14", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 2" }, { "date": "Sep 23, 1960", @@ -5909,7 +8602,12 @@ "sF": "0", "sU": "13", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 3" }, { "date": "Sep 23, 1960", @@ -5919,7 +8617,12 @@ "sF": "28", "sU": "24", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 3" }, { "date": "Sep 25, 1960", @@ -5929,7 +8632,12 @@ "sF": "13", "sU": "14", "spread": "18", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 3" }, { "date": "Oct 9, 1960", @@ -5939,7 +8647,12 @@ "sF": "34", "sU": "27", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 3" }, { "date": "Oct 9, 1960", @@ -5949,7 +8662,12 @@ "sF": "14", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 3" }, { "date": "Oct 9, 1960", @@ -5958,8 +8676,13 @@ "und": "Green Bay Packers", "sF": "21", "sU": "35", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 3" }, { "date": "Oct 9, 1960", @@ -5968,8 +8691,13 @@ "und": "St Louis Cardinals", "sF": "31", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 3" }, { "date": "Oct 9, 1960", @@ -5978,8 +8706,13 @@ "und": "Pittsburgh Steelers", "sF": "19", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 3" }, { "date": "Oct 9, 1960", @@ -5989,7 +8722,12 @@ "sF": "26", "sU": "14", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 3" }, { "date": "Oct 2, 1960", @@ -5998,8 +8736,13 @@ "und": "Los Angeles Chargers", "sF": "10", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 4" }, { "date": "Oct 2, 1960", @@ -6009,7 +8752,12 @@ "sF": "35", "sU": "37", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 4" }, { "date": "Oct 2, 1960", @@ -6019,7 +8767,12 @@ "sF": "31", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 4" }, { "date": "Oct 16, 1960", @@ -6028,8 +8781,13 @@ "und": "Los Angeles Rams", "sF": "31", "sU": "17", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 4" }, { "date": "Oct 16, 1960", @@ -6039,11 +8797,12 @@ "sF": "27", "sU": "10", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 4" }, { "date": "Oct 16, 1960", @@ -6052,8 +8811,13 @@ "und": "Dallas Cowboys", "sF": "48", "sU": "7", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 4" }, { "date": "Oct 16, 1960", @@ -6063,7 +8827,12 @@ "sF": "24", "sU": "24", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 4" }, { "date": "Oct 16, 1960", @@ -6073,7 +8842,12 @@ "sF": "28", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 4" }, { "date": "Oct 16, 1960", @@ -6083,7 +8857,12 @@ "sF": "27", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 4" }, { "date": "Oct 8, 1960", @@ -6093,7 +8872,12 @@ "sF": "0", "sU": "35", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 5" }, { "date": "Oct 9, 1960", @@ -6103,7 +8887,12 @@ "sF": "19", "sU": "20", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 5" }, { "date": "Oct 9, 1960", @@ -6113,7 +8902,12 @@ "sF": "27", "sU": "21", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 5" }, { "date": "Oct 23, 1960", @@ -6123,7 +8917,12 @@ "sF": "29", "sU": "31", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 5" }, { "date": "Oct 23, 1960", @@ -6133,7 +8932,12 @@ "sF": "17", "sU": "30", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 5" }, { "date": "Oct 23, 1960", @@ -6142,12 +8946,13 @@ "und": "San Francisco 49ers", "sF": "41", "sU": "14", - "spread": "9", - "ou": "49", + "spread": "9.5", + "ou": null, "pScore": { - "sU": 20, - "sF": 29 - } + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 5" }, { "date": "Oct 23, 1960", @@ -6157,7 +8962,12 @@ "sF": "24", "sU": "24", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 5" }, { "date": "Oct 23, 1960", @@ -6166,8 +8976,13 @@ "und": "Dallas Cowboys", "sF": "12", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 5" }, { "date": "Oct 16, 1960", @@ -6176,8 +8991,13 @@ "und": "Buffalo Bills", "sF": "17", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 6" }, { "date": "Oct 16, 1960", @@ -6186,8 +9006,13 @@ "und": "Los Angeles Chargers", "sF": "19", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 6" }, { "date": "Oct 16, 1960", @@ -6196,8 +9021,13 @@ "und": "Dallas Texans", "sF": "20", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 6" }, { "date": "Oct 16, 1960", @@ -6207,7 +9037,12 @@ "sF": "27", "sU": "14", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 6" }, { "date": "Oct 30, 1960", @@ -6216,8 +9051,13 @@ "und": "Dallas Cowboys", "sF": "45", "sU": "7", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 6" }, { "date": "Oct 30, 1960", @@ -6227,7 +9067,12 @@ "sF": "48", "sU": "35", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 6" }, { "date": "Oct 30, 1960", @@ -6236,8 +9081,13 @@ "und": "St Louis Cardinals", "sF": "13", "sU": "20", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 6" }, { "date": "Oct 30, 1960", @@ -6247,7 +9097,12 @@ "sF": "19", "sU": "13", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 6" }, { "date": "Oct 30, 1960", @@ -6257,11 +9112,12 @@ "sF": "7", "sU": "25", "spread": "4", - "ou": "49", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 6" }, { "date": "Oct 30, 1960", @@ -6270,8 +9126,13 @@ "und": "Washington Redskins", "sF": "31", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 6" }, { "date": "Oct 23, 1960", @@ -6281,7 +9142,12 @@ "sF": "38", "sU": "9", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 7" }, { "date": "Oct 23, 1960", @@ -6291,7 +9157,12 @@ "sF": "31", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 7" }, { "date": "Oct 23, 1960", @@ -6301,7 +9172,12 @@ "sF": "28", "sU": "42", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 7" }, { "date": "Nov 6, 1960", @@ -6311,7 +9187,12 @@ "sF": "38", "sU": "24", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 7" }, { "date": "Nov 6, 1960", @@ -6320,8 +9201,13 @@ "und": "New York Giants", "sF": "13", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 7" }, { "date": "Nov 6, 1960", @@ -6330,8 +9216,13 @@ "und": "Dallas Cowboys", "sF": "38", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 7" }, { "date": "Nov 6, 1960", @@ -6340,8 +9231,13 @@ "und": "Pittsburgh Steelers", "sF": "34", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 7" }, { "date": "Nov 6, 1960", @@ -6350,8 +9246,13 @@ "und": "Detroit Lions", "sF": "0", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 7" }, { "date": "Nov 6, 1960", @@ -6360,8 +9261,13 @@ "und": "Washington Redskins", "sF": "44", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 7" }, { "date": "Oct 28, 1960", @@ -6371,7 +9277,12 @@ "sF": "16", "sU": "45", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 8" }, { "date": "Oct 28, 1960", @@ -6380,8 +9291,13 @@ "und": "Oakland Raiders", "sF": "27", "sU": "28", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 8" }, { "date": "Oct 30, 1960", @@ -6390,8 +9306,13 @@ "und": "Buffalo Bills", "sF": "24", "sU": "25", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 8" }, { "date": "Nov 13, 1960", @@ -6401,7 +9322,12 @@ "sF": "24", "sU": "20", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 8" }, { "date": "Nov 13, 1960", @@ -6411,7 +9337,12 @@ "sF": "28", "sU": "27", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 8" }, { "date": "Nov 13, 1960", @@ -6421,7 +9352,12 @@ "sF": "12", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 8" }, { "date": "Nov 13, 1960", @@ -6431,7 +9367,12 @@ "sF": "41", "sU": "7", "spread": "22", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 8" }, { "date": "Nov 13, 1960", @@ -6440,8 +9381,13 @@ "und": "Pittsburgh Steelers", "sF": "27", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 8" }, { "date": "Nov 13, 1960", @@ -6451,7 +9397,12 @@ "sF": "19", "sU": "13", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 8" }, { "date": "Nov 4, 1960", @@ -6460,8 +9411,13 @@ "und": "Los Angeles Chargers", "sF": "7", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 9" }, { "date": "Nov 6, 1960", @@ -6470,8 +9426,13 @@ "und": "Buffalo Bills", "sF": "45", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 9" }, { "date": "Nov 6, 1960", @@ -6481,7 +9442,12 @@ "sF": "45", "sU": "25", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 9" }, { "date": "Nov 20, 1960", @@ -6490,8 +9456,13 @@ "und": "Detroit Lions", "sF": "28", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 9" }, { "date": "Nov 20, 1960", @@ -6500,8 +9471,13 @@ "und": "Dallas Cowboys", "sF": "26", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 9" }, { "date": "Nov 20, 1960", @@ -6511,7 +9487,12 @@ "sF": "31", "sU": "33", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 9" }, { "date": "Nov 20, 1960", @@ -6520,8 +9501,13 @@ "und": "Philadelphia Eagles", "sF": "10", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 9" }, { "date": "Nov 20, 1960", @@ -6530,8 +9516,13 @@ "und": "Pittsburgh Steelers", "sF": "10", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 9" }, { "date": "Nov 20, 1960", @@ -6541,7 +9532,12 @@ "sF": "26", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 9" }, { "date": "Nov 13, 1960", @@ -6550,8 +9546,13 @@ "und": "Denver Broncos", "sF": "34", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 10" }, { "date": "Nov 13, 1960", @@ -6561,7 +9562,12 @@ "sF": "20", "sU": "7", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 10" }, { "date": "Nov 24, 1960", @@ -6570,8 +9576,13 @@ "und": "Detroit Lions", "sF": "10", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 10" }, { "date": "Nov 27, 1960", @@ -6581,11 +9592,12 @@ "sF": "22", "sU": "30", "spread": "16", - "ou": "49", + "ou": null, "pScore": { - "sU": 16.5, - "sF": 32.5 - } + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 10" }, { "date": "Nov 27, 1960", @@ -6595,7 +9607,12 @@ "sF": "17", "sU": "7", "spread": "22", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 10" }, { "date": "Nov 27, 1960", @@ -6604,8 +9621,13 @@ "und": "New York Giants", "sF": "31", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 10" }, { "date": "Nov 27, 1960", @@ -6614,8 +9636,13 @@ "und": "Washington Redskins", "sF": "22", "sU": "10", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 10" }, { "date": "Nov 27, 1960", @@ -6625,7 +9652,12 @@ "sF": "17", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 10" }, { "date": "Nov 18, 1960", @@ -6635,7 +9667,12 @@ "sF": "14", "sU": "42", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 11" }, { "date": "Nov 20, 1960", @@ -6645,7 +9682,12 @@ "sF": "20", "sU": "10", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 11" }, { "date": "Nov 20, 1960", @@ -6655,7 +9697,12 @@ "sF": "3", "sU": "32", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 11" }, { "date": "Dec 4, 1960", @@ -6665,7 +9712,12 @@ "sF": "15", "sU": "20", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 11" }, { "date": "Dec 4, 1960", @@ -6675,7 +9727,12 @@ "sF": "13", "sU": "41", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 11" }, { "date": "Dec 4, 1960", @@ -6685,7 +9742,12 @@ "sF": "27", "sU": "16", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 11" }, { "date": "Dec 4, 1960", @@ -6695,11 +9757,12 @@ "sF": "7", "sU": "23", "spread": "4", - "ou": "49", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 11" }, { "date": "Dec 4, 1960", @@ -6709,7 +9772,12 @@ "sF": "31", "sU": "31", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 11" }, { "date": "Dec 4, 1960", @@ -6719,7 +9787,12 @@ "sF": "20", "sU": "6", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 11" }, { "date": "Nov 24, 1960", @@ -6729,7 +9802,12 @@ "sF": "35", "sU": "41", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 12" }, { "date": "Nov 25, 1960", @@ -6739,7 +9817,12 @@ "sF": "24", "sU": "10", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 12" }, { "date": "Nov 27, 1960", @@ -6748,8 +9831,13 @@ "und": "Buffalo Bills", "sF": "38", "sU": "38", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 12" }, { "date": "Nov 27, 1960", @@ -6759,7 +9847,12 @@ "sF": "52", "sU": "28", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 12" }, { "date": "Dec 10, 1960", @@ -6769,11 +9862,12 @@ "sF": "13", "sU": "0", "spread": "5", - "ou": "49", + "ou": null, "pScore": { - "sU": 22, - "sF": 27 - } + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 12" }, { "date": "Dec 11, 1960", @@ -6783,7 +9877,12 @@ "sF": "42", "sU": "0", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 12" }, { "date": "Dec 11, 1960", @@ -6793,7 +9892,12 @@ "sF": "23", "sU": "14", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 12" }, { "date": "Dec 11, 1960", @@ -6803,7 +9907,12 @@ "sF": "3", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 12" }, { "date": "Dec 11, 1960", @@ -6813,7 +9922,12 @@ "sF": "21", "sU": "27", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 12" }, { "date": "Dec 11, 1960", @@ -6823,7 +9937,12 @@ "sF": "17", "sU": "3", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 12" }, { "date": "Dec 4, 1960", @@ -6833,7 +9952,12 @@ "sF": "14", "sU": "38", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 13" }, { "date": "Dec 4, 1960", @@ -6843,7 +9967,12 @@ "sF": "24", "sU": "0", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 13" }, { "date": "Dec 4, 1960", @@ -6853,7 +9982,12 @@ "sF": "27", "sU": "30", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 13" }, { "date": "Dec 4, 1960", @@ -6863,7 +9997,12 @@ "sF": "41", "sU": "17", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 13" }, { "date": "Dec 17, 1960", @@ -6872,8 +10011,13 @@ "und": "Los Angeles Rams", "sF": "35", "sU": "21", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 13" }, { "date": "Dec 18, 1960", @@ -6883,7 +10027,12 @@ "sF": "36", "sU": "0", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 13" }, { "date": "Dec 18, 1960", @@ -6892,8 +10041,13 @@ "und": "New York Giants", "sF": "48", "sU": "34", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 13" }, { "date": "Dec 18, 1960", @@ -6903,11 +10057,12 @@ "sF": "10", "sU": "34", "spread": "5", - "ou": "49", + "ou": null, "pScore": { - "sU": 22, - "sF": 27 - } + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 13" }, { "date": "Dec 18, 1960", @@ -6917,7 +10072,12 @@ "sF": "38", "sU": "7", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 13" }, { "date": "Dec 18, 1960", @@ -6926,8 +10086,13 @@ "und": "Washington Redskins", "sF": "38", "sU": "28", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 NFL Regular Season - Week 13" }, { "date": "Dec 10, 1960", @@ -6937,7 +10102,12 @@ "sF": "41", "sU": "33", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 14" }, { "date": "Dec 11, 1960", @@ -6947,7 +10117,12 @@ "sF": "34", "sU": "0", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 14" }, { "date": "Dec 11, 1960", @@ -6957,7 +10132,12 @@ "sF": "31", "sU": "23", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 14" }, { "date": "Dec 11, 1960", @@ -6967,7 +10147,12 @@ "sF": "31", "sU": "28", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 14" }, { "date": "Dec 18, 1960", @@ -6977,7 +10162,12 @@ "sF": "24", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 15" }, { "date": "Dec 18, 1960", @@ -6987,7 +10177,12 @@ "sF": "37", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 15" }, { "date": "Dec 18, 1960", @@ -6997,7 +10192,12 @@ "sF": "50", "sU": "43", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 AFL Regular Season - Week 15" }, { "date": "Dec 26, 1960", @@ -7006,8 +10206,13 @@ "und": "Philadelphia Eagles", "sF": "13", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 Playoffs" }, { "date": "Jan 1, 1961", @@ -7017,7 +10222,12 @@ "sF": "24", "sU": "16", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1960 Playoffs" }, { "date": "Sep 9, 1961", @@ -7027,7 +10237,12 @@ "sF": "20", "sU": "21", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 1" }, { "date": "Sep 9, 1961", @@ -7037,7 +10252,12 @@ "sF": "55", "sU": "0", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 1" }, { "date": "Sep 17, 1961", @@ -7047,7 +10267,12 @@ "sF": "27", "sU": "24", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 1" }, { "date": "Sep 17, 1961", @@ -7057,7 +10282,12 @@ "sF": "24", "sU": "27", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 1" }, { "date": "Sep 17, 1961", @@ -7066,8 +10296,13 @@ "und": "Detroit Lions", "sF": "13", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 1" }, { "date": "Sep 17, 1961", @@ -7077,7 +10312,12 @@ "sF": "13", "sU": "37", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 1" }, { "date": "Sep 17, 1961", @@ -7087,7 +10327,12 @@ "sF": "10", "sU": "21", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 1" }, { "date": "Sep 17, 1961", @@ -7097,7 +10342,12 @@ "sF": "35", "sU": "3", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 1" }, { "date": "Sep 16, 1961", @@ -7106,8 +10356,13 @@ "und": "Denver Broncos", "sF": "45", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 2" }, { "date": "Sep 17, 1961", @@ -7117,7 +10372,12 @@ "sF": "31", "sU": "41", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 2" }, { "date": "Sep 17, 1961", @@ -7127,7 +10387,12 @@ "sF": "44", "sU": "0", "spread": "21", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 2" }, { "date": "Sep 23, 1961", @@ -7137,7 +10402,12 @@ "sF": "17", "sU": "21", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 2" }, { "date": "Sep 24, 1961", @@ -7146,8 +10416,13 @@ "und": "Detroit Lions", "sF": "15", "sU": "16", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 2" }, { "date": "Sep 24, 1961", @@ -7156,8 +10431,13 @@ "und": "St Louis Cardinals", "sF": "20", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 2" }, { "date": "Sep 24, 1961", @@ -7167,7 +10447,12 @@ "sF": "21", "sU": "7", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 2" }, { "date": "Sep 24, 1961", @@ -7177,11 +10462,12 @@ "sF": "30", "sU": "10", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 2" }, { "date": "Sep 24, 1961", @@ -7191,7 +10477,12 @@ "sF": "14", "sU": "7", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 2" }, { "date": "Sep 24, 1961", @@ -7200,8 +10491,13 @@ "und": "New York Giants", "sF": "14", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 2" }, { "date": "Sep 23, 1961", @@ -7211,7 +10507,12 @@ "sF": "23", "sU": "21", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 3" }, { "date": "Sep 24, 1961", @@ -7220,8 +10521,13 @@ "und": "Denver Broncos", "sF": "35", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 3" }, { "date": "Sep 24, 1961", @@ -7231,7 +10537,12 @@ "sF": "42", "sU": "35", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 3" }, { "date": "Sep 24, 1961", @@ -7241,7 +10552,12 @@ "sF": "34", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 3" }, { "date": "Oct 1, 1961", @@ -7251,7 +10567,12 @@ "sF": "34", "sU": "33", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 3" }, { "date": "Oct 1, 1961", @@ -7260,8 +10581,13 @@ "und": "Dallas Cowboys", "sF": "25", "sU": "7", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 3" }, { "date": "Oct 1, 1961", @@ -7270,12 +10596,13 @@ "und": "San Francisco 49ers", "sF": "0", "sU": "49", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 3" }, { "date": "Oct 1, 1961", @@ -7284,8 +10611,13 @@ "und": "Chicago Bears", "sF": "24", "sU": "0", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 3" }, { "date": "Oct 1, 1961", @@ -7295,7 +10627,12 @@ "sF": "24", "sU": "14", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 3" }, { "date": "Oct 1, 1961", @@ -7305,7 +10642,12 @@ "sF": "27", "sU": "30", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 3" }, { "date": "Oct 1, 1961", @@ -7315,7 +10657,12 @@ "sF": "24", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 3" }, { "date": "Sep 30, 1961", @@ -7325,7 +10672,12 @@ "sF": "19", "sU": "11", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 4" }, { "date": "Oct 1, 1961", @@ -7334,8 +10686,13 @@ "und": "Boston Patriots", "sF": "37", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 4" }, { "date": "Oct 1, 1961", @@ -7345,7 +10702,12 @@ "sF": "19", "sU": "33", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 4" }, { "date": "Oct 8, 1961", @@ -7355,7 +10717,12 @@ "sF": "31", "sU": "7", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 4" }, { "date": "Oct 8, 1961", @@ -7364,8 +10731,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 4" }, { "date": "Oct 8, 1961", @@ -7375,7 +10747,12 @@ "sF": "45", "sU": "7", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 4" }, { "date": "Oct 8, 1961", @@ -7385,7 +10762,12 @@ "sF": "0", "sU": "28", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 4" }, { "date": "Oct 8, 1961", @@ -7394,8 +10776,13 @@ "und": "Pittsburgh Steelers", "sF": "21", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 4" }, { "date": "Oct 8, 1961", @@ -7405,7 +10792,12 @@ "sF": "35", "sU": "0", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 4" }, { "date": "Oct 8, 1961", @@ -7415,7 +10807,12 @@ "sF": "9", "sU": "24", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 4" }, { "date": "Oct 7, 1961", @@ -7425,7 +10822,12 @@ "sF": "38", "sU": "27", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 5" }, { "date": "Oct 8, 1961", @@ -7435,7 +10837,12 @@ "sF": "19", "sU": "12", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 5" }, { "date": "Oct 8, 1961", @@ -7445,7 +10852,12 @@ "sF": "12", "sU": "22", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 5" }, { "date": "Oct 15, 1961", @@ -7455,7 +10867,12 @@ "sF": "24", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 5" }, { "date": "Oct 15, 1961", @@ -7465,7 +10882,12 @@ "sF": "49", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 5" }, { "date": "Oct 15, 1961", @@ -7474,8 +10896,13 @@ "und": "Dallas Cowboys", "sF": "31", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 5" }, { "date": "Oct 15, 1961", @@ -7484,8 +10911,13 @@ "und": "Los Angeles Rams", "sF": "14", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 5" }, { "date": "Oct 15, 1961", @@ -7494,8 +10926,13 @@ "und": "Minnesota Vikings", "sF": "38", "sU": "24", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 5" }, { "date": "Oct 15, 1961", @@ -7505,7 +10942,12 @@ "sF": "20", "sU": "0", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 5" }, { "date": "Oct 15, 1961", @@ -7515,7 +10957,12 @@ "sF": "20", "sU": "7", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 5" }, { "date": "Oct 13, 1961", @@ -7524,8 +10971,13 @@ "und": "Boston Patriots", "sF": "31", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 6" }, { "date": "Oct 15, 1961", @@ -7534,8 +10986,13 @@ "und": "Buffalo Bills", "sF": "24", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 6" }, { "date": "Oct 15, 1961", @@ -7545,7 +11002,12 @@ "sF": "27", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 6" }, { "date": "Oct 15, 1961", @@ -7555,7 +11017,12 @@ "sF": "25", "sU": "10", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 6" }, { "date": "Oct 22, 1961", @@ -7564,8 +11031,13 @@ "und": "Chicago Bears", "sF": "0", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 6" }, { "date": "Oct 22, 1961", @@ -7575,7 +11047,12 @@ "sF": "43", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 6" }, { "date": "Oct 22, 1961", @@ -7585,7 +11062,12 @@ "sF": "14", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 6" }, { "date": "Oct 22, 1961", @@ -7595,7 +11077,12 @@ "sF": "33", "sU": "7", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 6" }, { "date": "Oct 22, 1961", @@ -7604,8 +11091,13 @@ "und": "Los Angeles Rams", "sF": "24", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 6" }, { "date": "Oct 22, 1961", @@ -7614,8 +11106,13 @@ "und": "Pittsburgh Steelers", "sF": "30", "sU": "28", - "spread": "0", - "ou": -1 + "spread": "0.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 6" }, { "date": "Oct 22, 1961", @@ -7625,7 +11122,12 @@ "sF": "24", "sU": "0", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 6" }, { "date": "Oct 22, 1961", @@ -7634,8 +11136,13 @@ "und": "Buffalo Bills", "sF": "52", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 7" }, { "date": "Oct 22, 1961", @@ -7645,7 +11152,12 @@ "sF": "10", "sU": "27", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 7" }, { "date": "Oct 22, 1961", @@ -7655,7 +11167,12 @@ "sF": "38", "sU": "7", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 7" }, { "date": "Oct 22, 1961", @@ -7665,7 +11182,12 @@ "sF": "41", "sU": "10", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 7" }, { "date": "Oct 29, 1961", @@ -7675,7 +11197,12 @@ "sF": "20", "sU": "21", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 7" }, { "date": "Oct 29, 1961", @@ -7685,7 +11212,12 @@ "sF": "28", "sU": "10", "spread": "26", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 7" }, { "date": "Oct 29, 1961", @@ -7695,7 +11227,12 @@ "sF": "10", "sU": "28", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 7" }, { "date": "Oct 29, 1961", @@ -7704,8 +11241,13 @@ "und": "Dallas Cowboys", "sF": "16", "sU": "17", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 7" }, { "date": "Oct 29, 1961", @@ -7715,7 +11257,12 @@ "sF": "10", "sU": "20", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 7" }, { "date": "Oct 29, 1961", @@ -7724,8 +11271,13 @@ "und": "St Louis Cardinals", "sF": "21", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 7" }, { "date": "Oct 29, 1961", @@ -7734,8 +11286,13 @@ "und": "Washington Redskins", "sF": "27", "sU": "24", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 7" }, { "date": "Oct 29, 1961", @@ -7744,8 +11301,13 @@ "und": "Buffalo Bills", "sF": "28", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 8" }, { "date": "Oct 29, 1961", @@ -7755,7 +11317,12 @@ "sF": "17", "sU": "18", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 8" }, { "date": "Oct 29, 1961", @@ -7765,7 +11332,12 @@ "sF": "14", "sU": "6", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 8" }, { "date": "Oct 29, 1961", @@ -7775,7 +11347,12 @@ "sF": "37", "sU": "0", "spread": "18", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 8" }, { "date": "Nov 5, 1961", @@ -7785,7 +11362,12 @@ "sF": "21", "sU": "45", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 8" }, { "date": "Nov 5, 1961", @@ -7795,7 +11377,12 @@ "sF": "13", "sU": "17", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 8" }, { "date": "Nov 5, 1961", @@ -7805,7 +11392,12 @@ "sF": "31", "sU": "17", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 8" }, { "date": "Nov 5, 1961", @@ -7815,7 +11407,12 @@ "sF": "31", "sU": "17", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 8" }, { "date": "Nov 5, 1961", @@ -7824,8 +11421,13 @@ "und": "Washington Redskins", "sF": "53", "sU": "0", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 8" }, { "date": "Nov 5, 1961", @@ -7835,7 +11437,12 @@ "sF": "16", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 8" }, { "date": "Nov 5, 1961", @@ -7844,8 +11451,13 @@ "und": "Detroit Lions", "sF": "20", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 8" }, { "date": "Nov 3, 1961", @@ -7854,8 +11466,13 @@ "und": "Dallas Texans", "sF": "28", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 9" }, { "date": "Nov 5, 1961", @@ -7865,7 +11482,12 @@ "sF": "22", "sU": "31", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 9" }, { "date": "Nov 5, 1961", @@ -7875,7 +11497,12 @@ "sF": "55", "sU": "14", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 9" }, { "date": "Nov 5, 1961", @@ -7885,7 +11512,12 @@ "sF": "48", "sU": "13", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 9" }, { "date": "Nov 12, 1961", @@ -7894,8 +11526,13 @@ "und": "Chicago Bears", "sF": "31", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 9" }, { "date": "Nov 12, 1961", @@ -7905,7 +11542,12 @@ "sF": "7", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 9" }, { "date": "Nov 12, 1961", @@ -7915,7 +11557,12 @@ "sF": "20", "sU": "28", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 9" }, { "date": "Nov 12, 1961", @@ -7925,7 +11572,12 @@ "sF": "38", "sU": "21", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 9" }, { "date": "Nov 12, 1961", @@ -7935,7 +11587,12 @@ "sF": "37", "sU": "7", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 9" }, { "date": "Nov 12, 1961", @@ -7944,8 +11601,13 @@ "und": "St Louis Cardinals", "sF": "45", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 9" }, { "date": "Nov 12, 1961", @@ -7954,8 +11616,13 @@ "und": "Washington Redskins", "sF": "17", "sU": "6", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 9" }, { "date": "Nov 11, 1961", @@ -7965,7 +11632,12 @@ "sF": "23", "sU": "12", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 10" }, { "date": "Nov 12, 1961", @@ -7975,7 +11647,12 @@ "sF": "20", "sU": "30", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 10" }, { "date": "Nov 12, 1961", @@ -7985,7 +11662,12 @@ "sF": "19", "sU": "16", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 10" }, { "date": "Nov 12, 1961", @@ -7995,7 +11677,12 @@ "sF": "27", "sU": "15", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 10" }, { "date": "Nov 19, 1961", @@ -8005,7 +11692,12 @@ "sF": "16", "sU": "0", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 10" }, { "date": "Nov 19, 1961", @@ -8014,8 +11706,13 @@ "und": "Philadelphia Eagles", "sF": "45", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 10" }, { "date": "Nov 19, 1961", @@ -8024,8 +11721,13 @@ "und": "Washington Redskins", "sF": "28", "sU": "28", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 10" }, { "date": "Nov 19, 1961", @@ -8035,7 +11737,12 @@ "sF": "35", "sU": "17", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 10" }, { "date": "Nov 19, 1961", @@ -8045,7 +11752,12 @@ "sF": "37", "sU": "10", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 10" }, { "date": "Nov 19, 1961", @@ -8055,7 +11767,12 @@ "sF": "42", "sU": "21", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 10" }, { "date": "Nov 19, 1961", @@ -8065,11 +11782,12 @@ "sF": "31", "sU": "41", "spread": "3", - "ou": "49", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 10" }, { "date": "Nov 17, 1961", @@ -8079,7 +11797,12 @@ "sF": "20", "sU": "17", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 11" }, { "date": "Nov 19, 1961", @@ -8088,8 +11811,13 @@ "und": "Denver Broncos", "sF": "23", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 11" }, { "date": "Nov 19, 1961", @@ -8098,8 +11826,13 @@ "und": "New York Titans", "sF": "49", "sU": "13", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 11" }, { "date": "Nov 19, 1961", @@ -8108,8 +11841,13 @@ "und": "Dallas Texans", "sF": "24", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 11" }, { "date": "Nov 26, 1961", @@ -8119,7 +11857,12 @@ "sF": "28", "sU": "24", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 11" }, { "date": "Nov 26, 1961", @@ -8129,7 +11872,12 @@ "sF": "21", "sU": "37", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 11" }, { "date": "Nov 26, 1961", @@ -8139,7 +11887,12 @@ "sF": "35", "sU": "13", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 11" }, { "date": "Nov 26, 1961", @@ -8148,8 +11901,13 @@ "und": "St Louis Cardinals", "sF": "30", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 11" }, { "date": "Nov 26, 1961", @@ -8159,7 +11917,12 @@ "sF": "38", "sU": "28", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 11" }, { "date": "Nov 26, 1961", @@ -8169,7 +11932,12 @@ "sF": "27", "sU": "6", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 11" }, { "date": "Nov 23, 1961", @@ -8178,8 +11946,13 @@ "und": "Buffalo Bills", "sF": "21", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 12" }, { "date": "Nov 26, 1961", @@ -8189,7 +11962,12 @@ "sF": "43", "sU": "11", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 12" }, { "date": "Nov 26, 1961", @@ -8199,7 +11977,12 @@ "sF": "45", "sU": "14", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 12" }, { "date": "Dec 3, 1961", @@ -8208,12 +11991,13 @@ "und": "San Francisco 49ers", "sF": "20", "sU": "17", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 12" }, { "date": "Dec 3, 1961", @@ -8222,8 +12006,13 @@ "und": "Dallas Cowboys", "sF": "38", "sU": "17", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 12" }, { "date": "Dec 3, 1961", @@ -8233,7 +12022,12 @@ "sF": "20", "sU": "17", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 12" }, { "date": "Dec 3, 1961", @@ -8243,7 +12037,12 @@ "sF": "21", "sU": "42", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 12" }, { "date": "Dec 3, 1961", @@ -8253,7 +12052,12 @@ "sF": "35", "sU": "24", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 12" }, { "date": "Dec 3, 1961", @@ -8262,8 +12066,13 @@ "und": "Washington Redskins", "sF": "38", "sU": "24", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 12" }, { "date": "Dec 3, 1961", @@ -8273,7 +12082,12 @@ "sF": "28", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 13" }, { "date": "Dec 3, 1961", @@ -8282,8 +12096,13 @@ "und": "New York Titans", "sF": "7", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 13" }, { "date": "Dec 3, 1961", @@ -8293,7 +12112,12 @@ "sF": "26", "sU": "21", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 13" }, { "date": "Dec 9, 1961", @@ -8303,7 +12127,12 @@ "sF": "17", "sU": "34", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 13" }, { "date": "Dec 10, 1961", @@ -8313,7 +12142,12 @@ "sF": "14", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 13" }, { "date": "Dec 10, 1961", @@ -8322,8 +12156,13 @@ "und": "Minnesota Vikings", "sF": "13", "sU": "7", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 13" }, { "date": "Dec 10, 1961", @@ -8332,8 +12171,13 @@ "und": "Philadelphia Eagles", "sF": "28", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 13" }, { "date": "Dec 10, 1961", @@ -8343,11 +12187,12 @@ "sF": "21", "sU": "22", "spread": "5", - "ou": "49", + "ou": null, "pScore": { - "sU": 22, - "sF": 27 - } + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 13" }, { "date": "Dec 10, 1961", @@ -8356,8 +12201,13 @@ "und": "Dallas Cowboys", "sF": "31", "sU": "13", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 13" }, { "date": "Dec 10, 1961", @@ -8367,7 +12217,12 @@ "sF": "30", "sU": "14", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 13" }, { "date": "Dec 9, 1961", @@ -8376,8 +12231,13 @@ "und": "Oakland Raiders", "sF": "35", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 14" }, { "date": "Dec 10, 1961", @@ -8387,7 +12247,12 @@ "sF": "49", "sU": "21", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 14" }, { "date": "Dec 10, 1961", @@ -8396,8 +12261,13 @@ "und": "New York Titans", "sF": "48", "sU": "21", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 14" }, { "date": "Dec 10, 1961", @@ -8407,7 +12277,12 @@ "sF": "28", "sU": "10", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 14" }, { "date": "Dec 16, 1961", @@ -8416,8 +12291,13 @@ "und": "Baltimore Colts", "sF": "24", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 14" }, { "date": "Dec 17, 1961", @@ -8427,7 +12307,12 @@ "sF": "52", "sU": "35", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 14" }, { "date": "Dec 17, 1961", @@ -8436,8 +12321,13 @@ "und": "Philadelphia Eagles", "sF": "24", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 14" }, { "date": "Dec 17, 1961", @@ -8446,8 +12336,13 @@ "und": "Los Angeles Rams", "sF": "24", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 14" }, { "date": "Dec 17, 1961", @@ -8456,8 +12351,13 @@ "und": "Cleveland Browns", "sF": "7", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 14" }, { "date": "Dec 17, 1961", @@ -8466,8 +12366,13 @@ "und": "Pittsburgh Steelers", "sF": "20", "sU": "0", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 14" }, { "date": "Dec 17, 1961", @@ -8476,8 +12381,13 @@ "und": "Dallas Cowboys", "sF": "34", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 NFL Regular Season - Week 14" }, { "date": "Dec 17, 1961", @@ -8487,7 +12397,12 @@ "sF": "35", "sU": "24", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 15" }, { "date": "Dec 17, 1961", @@ -8497,7 +12412,12 @@ "sF": "47", "sU": "16", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 15" }, { "date": "Dec 17, 1961", @@ -8507,7 +12427,12 @@ "sF": "0", "sU": "41", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 AFL Regular Season - Week 15" }, { "date": "Dec 24, 1961", @@ -8516,8 +12441,13 @@ "und": "San Diego Chargers", "sF": "10", "sU": "3", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 Playoffs" }, { "date": "Dec 31, 1961", @@ -8526,8 +12456,13 @@ "und": "New York Giants", "sF": "37", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1961 Playoffs" }, { "date": "Sep 8, 1962", @@ -8536,8 +12471,13 @@ "und": "Boston Patriots", "sF": "42", "sU": "28", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 1" }, { "date": "Sep 16, 1962", @@ -8547,7 +12487,12 @@ "sF": "30", "sU": "27", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 1" }, { "date": "Sep 16, 1962", @@ -8557,7 +12502,12 @@ "sF": "17", "sU": "7", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 1" }, { "date": "Sep 16, 1962", @@ -8566,8 +12516,13 @@ "und": "Dallas Cowboys", "sF": "35", "sU": "35", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 1" }, { "date": "Sep 16, 1962", @@ -8576,8 +12531,13 @@ "und": "Pittsburgh Steelers", "sF": "45", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 1" }, { "date": "Sep 16, 1962", @@ -8587,7 +12547,12 @@ "sF": "34", "sU": "7", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 1" }, { "date": "Sep 16, 1962", @@ -8596,8 +12561,13 @@ "und": "St Louis Cardinals", "sF": "21", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 1" }, { "date": "Sep 16, 1962", @@ -8607,7 +12577,12 @@ "sF": "14", "sU": "30", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 1" }, { "date": "Sep 15, 1962", @@ -8617,7 +12592,12 @@ "sF": "20", "sU": "23", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 2" }, { "date": "Sep 16, 1962", @@ -8627,7 +12607,12 @@ "sF": "21", "sU": "34", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 2" }, { "date": "Sep 16, 1962", @@ -8637,7 +12622,12 @@ "sF": "40", "sU": "14", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 2" }, { "date": "Sep 23, 1962", @@ -8647,7 +12637,12 @@ "sF": "16", "sU": "17", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 2" }, { "date": "Sep 23, 1962", @@ -8657,7 +12652,12 @@ "sF": "30", "sU": "28", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 2" }, { "date": "Sep 23, 1962", @@ -8667,11 +12667,12 @@ "sF": "45", "sU": "24", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 2" }, { "date": "Sep 23, 1962", @@ -8681,7 +12682,12 @@ "sF": "17", "sU": "0", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 2" }, { "date": "Sep 23, 1962", @@ -8690,8 +12696,13 @@ "und": "Los Angeles Rams", "sF": "27", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 2" }, { "date": "Sep 23, 1962", @@ -8701,7 +12712,12 @@ "sF": "34", "sU": "7", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 2" }, { "date": "Sep 23, 1962", @@ -8711,7 +12727,12 @@ "sF": "29", "sU": "13", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 2" }, { "date": "Sep 21, 1962", @@ -8721,7 +12742,12 @@ "sF": "41", "sU": "16", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 3" }, { "date": "Sep 22, 1962", @@ -8731,7 +12757,12 @@ "sF": "6", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 3" }, { "date": "Sep 23, 1962", @@ -8741,7 +12772,12 @@ "sF": "26", "sU": "16", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 3" }, { "date": "Sep 23, 1962", @@ -8751,7 +12787,12 @@ "sF": "17", "sU": "42", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 3" }, { "date": "Sep 30, 1962", @@ -8761,7 +12802,12 @@ "sF": "29", "sU": "20", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 3" }, { "date": "Sep 30, 1962", @@ -8771,7 +12817,12 @@ "sF": "49", "sU": "0", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 3" }, { "date": "Sep 30, 1962", @@ -8781,7 +12832,12 @@ "sF": "17", "sU": "27", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 3" }, { "date": "Sep 30, 1962", @@ -8790,8 +12846,13 @@ "und": "Philadelphia Eagles", "sF": "7", "sU": "35", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 3" }, { "date": "Sep 30, 1962", @@ -8801,7 +12862,12 @@ "sF": "31", "sU": "27", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 3" }, { "date": "Sep 30, 1962", @@ -8811,7 +12877,12 @@ "sF": "21", "sU": "7", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 3" }, { "date": "Sep 30, 1962", @@ -8821,7 +12892,12 @@ "sF": "14", "sU": "24", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 3" }, { "date": "Sep 30, 1962", @@ -8830,8 +12906,13 @@ "und": "Buffalo Bills", "sF": "41", "sU": "21", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 4" }, { "date": "Sep 30, 1962", @@ -8841,7 +12922,12 @@ "sF": "10", "sU": "32", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 4" }, { "date": "Sep 30, 1962", @@ -8851,7 +12937,12 @@ "sF": "42", "sU": "33", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 4" }, { "date": "Oct 7, 1962", @@ -8860,12 +12951,13 @@ "und": "San Francisco 49ers", "sF": "13", "sU": "21", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 4" }, { "date": "Oct 7, 1962", @@ -8875,7 +12967,12 @@ "sF": "19", "sU": "10", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 4" }, { "date": "Oct 7, 1962", @@ -8885,7 +12982,12 @@ "sF": "9", "sU": "7", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 4" }, { "date": "Oct 7, 1962", @@ -8895,7 +12997,12 @@ "sF": "13", "sU": "0", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 4" }, { "date": "Oct 7, 1962", @@ -8905,7 +13012,12 @@ "sF": "31", "sU": "14", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 4" }, { "date": "Oct 7, 1962", @@ -8915,7 +13027,12 @@ "sF": "20", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 4" }, { "date": "Oct 5, 1962", @@ -8925,7 +13042,12 @@ "sF": "44", "sU": "7", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 5" }, { "date": "Oct 6, 1962", @@ -8935,7 +13057,12 @@ "sF": "43", "sU": "14", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 5" }, { "date": "Oct 7, 1962", @@ -8945,7 +13072,12 @@ "sF": "17", "sU": "14", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 5" }, { "date": "Oct 7, 1962", @@ -8955,7 +13087,12 @@ "sF": "28", "sU": "32", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 5" }, { "date": "Oct 14, 1962", @@ -8964,12 +13101,13 @@ "und": "San Francisco 49ers", "sF": "27", "sU": "34", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 5" }, { "date": "Oct 14, 1962", @@ -8978,8 +13116,13 @@ "und": "Baltimore Colts", "sF": "14", "sU": "36", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 5" }, { "date": "Oct 14, 1962", @@ -8989,7 +13132,12 @@ "sF": "19", "sU": "41", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 5" }, { "date": "Oct 14, 1962", @@ -8999,7 +13147,12 @@ "sF": "13", "sU": "10", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 5" }, { "date": "Oct 14, 1962", @@ -9009,7 +13162,12 @@ "sF": "48", "sU": "21", "spread": "21", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 5" }, { "date": "Oct 14, 1962", @@ -9019,7 +13177,12 @@ "sF": "17", "sU": "20", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 5" }, { "date": "Oct 14, 1962", @@ -9029,7 +13192,12 @@ "sF": "17", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 5" }, { "date": "Oct 12, 1962", @@ -9039,7 +13207,12 @@ "sF": "7", "sU": "27", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 6" }, { "date": "Oct 13, 1962", @@ -9049,7 +13222,12 @@ "sF": "10", "sU": "35", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 6" }, { "date": "Oct 14, 1962", @@ -9059,7 +13237,12 @@ "sF": "56", "sU": "17", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 6" }, { "date": "Oct 14, 1962", @@ -9069,7 +13252,12 @@ "sF": "23", "sU": "6", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 6" }, { "date": "Oct 21, 1962", @@ -9079,7 +13267,12 @@ "sF": "35", "sU": "15", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 6" }, { "date": "Oct 21, 1962", @@ -9089,11 +13282,12 @@ "sF": "31", "sU": "13", "spread": "9", - "ou": "49", + "ou": null, "pScore": { - "sU": 20, - "sF": 29 - } + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 6" }, { "date": "Oct 21, 1962", @@ -9102,8 +13296,13 @@ "und": "Minnesota Vikings", "sF": "14", "sU": "38", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 6" }, { "date": "Oct 21, 1962", @@ -9113,7 +13312,12 @@ "sF": "14", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 6" }, { "date": "Oct 21, 1962", @@ -9123,7 +13327,12 @@ "sF": "27", "sU": "42", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 6" }, { "date": "Oct 21, 1962", @@ -9133,7 +13342,12 @@ "sF": "34", "sU": "7", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 6" }, { "date": "Oct 19, 1962", @@ -9143,7 +13357,12 @@ "sF": "24", "sU": "20", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 7" }, { "date": "Oct 20, 1962", @@ -9153,7 +13372,12 @@ "sF": "14", "sU": "6", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 7" }, { "date": "Oct 21, 1962", @@ -9163,7 +13387,12 @@ "sF": "20", "sU": "17", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 7" }, { "date": "Oct 28, 1962", @@ -9173,7 +13402,12 @@ "sF": "17", "sU": "6", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 7" }, { "date": "Oct 28, 1962", @@ -9182,8 +13416,13 @@ "und": "St Louis Cardinals", "sF": "24", "sU": "28", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 7" }, { "date": "Oct 28, 1962", @@ -9192,8 +13431,13 @@ "und": "Chicago Bears", "sF": "11", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 7" }, { "date": "Oct 28, 1962", @@ -9203,7 +13447,12 @@ "sF": "49", "sU": "34", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 7" }, { "date": "Oct 28, 1962", @@ -9212,8 +13461,13 @@ "und": "Pittsburgh Steelers", "sF": "41", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 7" }, { "date": "Oct 28, 1962", @@ -9222,8 +13476,13 @@ "und": "Los Angeles Rams", "sF": "14", "sU": "28", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 7" }, { "date": "Oct 26, 1962", @@ -9233,7 +13492,12 @@ "sF": "26", "sU": "16", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 8" }, { "date": "Oct 28, 1962", @@ -9243,7 +13507,12 @@ "sF": "38", "sU": "45", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 8" }, { "date": "Oct 28, 1962", @@ -9252,8 +13521,13 @@ "und": "Dallas Texans", "sF": "7", "sU": "31", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 8" }, { "date": "Oct 28, 1962", @@ -9263,7 +13537,12 @@ "sF": "3", "sU": "23", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 8" }, { "date": "Nov 4, 1962", @@ -9273,7 +13552,12 @@ "sF": "38", "sU": "7", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 8" }, { "date": "Nov 4, 1962", @@ -9283,7 +13567,12 @@ "sF": "14", "sU": "14", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 8" }, { "date": "Nov 4, 1962", @@ -9293,7 +13582,12 @@ "sF": "12", "sU": "3", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 8" }, { "date": "Nov 4, 1962", @@ -9303,7 +13597,12 @@ "sF": "31", "sU": "28", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 8" }, { "date": "Nov 4, 1962", @@ -9313,7 +13612,12 @@ "sF": "39", "sU": "31", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 8" }, { "date": "Nov 4, 1962", @@ -9323,7 +13627,12 @@ "sF": "3", "sU": "22", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 8" }, { "date": "Nov 4, 1962", @@ -9332,8 +13641,13 @@ "und": "Dallas Cowboys", "sF": "10", "sU": "38", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 8" }, { "date": "Nov 3, 1962", @@ -9343,7 +13657,12 @@ "sF": "28", "sU": "28", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 9" }, { "date": "Nov 4, 1962", @@ -9353,7 +13672,12 @@ "sF": "14", "sU": "6", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 9" }, { "date": "Nov 4, 1962", @@ -9363,7 +13687,12 @@ "sF": "31", "sU": "21", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 9" }, { "date": "Nov 11, 1962", @@ -9372,8 +13701,13 @@ "und": "Minnesota Vikings", "sF": "31", "sU": "30", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 9" }, { "date": "Nov 11, 1962", @@ -9383,7 +13717,12 @@ "sF": "41", "sU": "10", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 9" }, { "date": "Nov 11, 1962", @@ -9393,7 +13732,12 @@ "sF": "14", "sU": "2", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 9" }, { "date": "Nov 11, 1962", @@ -9403,7 +13747,12 @@ "sF": "49", "sU": "0", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 9" }, { "date": "Nov 11, 1962", @@ -9413,11 +13762,12 @@ "sF": "38", "sU": "24", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 9" }, { "date": "Nov 11, 1962", @@ -9426,8 +13776,13 @@ "und": "Pittsburgh Steelers", "sF": "17", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 9" }, { "date": "Nov 11, 1962", @@ -9437,7 +13792,12 @@ "sF": "9", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 9" }, { "date": "Nov 11, 1962", @@ -9446,8 +13806,13 @@ "und": "Boston Patriots", "sF": "29", "sU": "33", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 10" }, { "date": "Nov 11, 1962", @@ -9457,7 +13822,12 @@ "sF": "52", "sU": "31", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 10" }, { "date": "Nov 11, 1962", @@ -9467,7 +13837,12 @@ "sF": "28", "sU": "20", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 10" }, { "date": "Nov 11, 1962", @@ -9476,8 +13851,13 @@ "und": "Buffalo Bills", "sF": "20", "sU": "40", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 10" }, { "date": "Nov 18, 1962", @@ -9487,7 +13867,12 @@ "sF": "38", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 10" }, { "date": "Nov 18, 1962", @@ -9497,7 +13882,12 @@ "sF": "34", "sU": "33", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 10" }, { "date": "Nov 18, 1962", @@ -9507,7 +13897,12 @@ "sF": "17", "sU": "13", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 10" }, { "date": "Nov 18, 1962", @@ -9517,7 +13912,12 @@ "sF": "24", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 10" }, { "date": "Nov 18, 1962", @@ -9526,8 +13926,13 @@ "und": "Minnesota Vikings", "sF": "17", "sU": "6", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 10" }, { "date": "Nov 18, 1962", @@ -9537,7 +13942,12 @@ "sF": "19", "sU": "14", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 10" }, { "date": "Nov 18, 1962", @@ -9547,7 +13957,12 @@ "sF": "23", "sU": "21", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 10" }, { "date": "Nov 18, 1962", @@ -9557,7 +13972,12 @@ "sF": "24", "sU": "3", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 11" }, { "date": "Nov 18, 1962", @@ -9567,7 +13987,12 @@ "sF": "21", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 11" }, { "date": "Nov 18, 1962", @@ -9577,7 +14002,12 @@ "sF": "10", "sU": "6", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 11" }, { "date": "Nov 22, 1962", @@ -9586,8 +14016,13 @@ "und": "Detroit Lions", "sF": "14", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 11" }, { "date": "Nov 25, 1962", @@ -9596,8 +14031,13 @@ "und": "Chicago Bears", "sF": "0", "sU": "57", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 11" }, { "date": "Nov 25, 1962", @@ -9606,8 +14046,13 @@ "und": "Pittsburgh Steelers", "sF": "35", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 11" }, { "date": "Nov 25, 1962", @@ -9617,7 +14062,12 @@ "sF": "24", "sU": "24", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 11" }, { "date": "Nov 25, 1962", @@ -9626,8 +14076,13 @@ "und": "Philadelphia Eagles", "sF": "14", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 11" }, { "date": "Nov 25, 1962", @@ -9637,7 +14092,12 @@ "sF": "24", "sU": "17", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 11" }, { "date": "Nov 25, 1962", @@ -9646,8 +14106,13 @@ "und": "Washington Redskins", "sF": "42", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 11" }, { "date": "Nov 22, 1962", @@ -9657,7 +14122,12 @@ "sF": "45", "sU": "46", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 12" }, { "date": "Nov 23, 1962", @@ -9667,7 +14137,12 @@ "sF": "21", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 12" }, { "date": "Nov 25, 1962", @@ -9677,7 +14152,12 @@ "sF": "35", "sU": "7", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 12" }, { "date": "Nov 25, 1962", @@ -9687,7 +14167,12 @@ "sF": "33", "sU": "27", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 12" }, { "date": "Dec 2, 1962", @@ -9697,7 +14182,12 @@ "sF": "26", "sU": "24", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 12" }, { "date": "Dec 2, 1962", @@ -9707,7 +14197,12 @@ "sF": "21", "sU": "45", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 12" }, { "date": "Dec 2, 1962", @@ -9717,7 +14212,12 @@ "sF": "21", "sU": "14", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 12" }, { "date": "Dec 2, 1962", @@ -9727,7 +14227,12 @@ "sF": "41", "sU": "10", "spread": "21", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 12" }, { "date": "Dec 2, 1962", @@ -9737,7 +14242,12 @@ "sF": "35", "sU": "12", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 12" }, { "date": "Dec 2, 1962", @@ -9746,8 +14256,13 @@ "und": "St Louis Cardinals", "sF": "19", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 12" }, { "date": "Dec 2, 1962", @@ -9757,7 +14272,12 @@ "sF": "14", "sU": "37", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 12" }, { "date": "Nov 30, 1962", @@ -9767,7 +14287,12 @@ "sF": "24", "sU": "17", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 13" }, { "date": "Dec 2, 1962", @@ -9776,8 +14301,13 @@ "und": "Buffalo Bills", "sF": "14", "sU": "23", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 13" }, { "date": "Dec 2, 1962", @@ -9786,8 +14316,13 @@ "und": "Denver Broncos", "sF": "34", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 13" }, { "date": "Dec 2, 1962", @@ -9797,7 +14332,12 @@ "sF": "31", "sU": "21", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 13" }, { "date": "Dec 8, 1962", @@ -9807,7 +14347,12 @@ "sF": "34", "sU": "21", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 13" }, { "date": "Dec 9, 1962", @@ -9817,7 +14362,12 @@ "sF": "30", "sU": "14", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 13" }, { "date": "Dec 9, 1962", @@ -9827,7 +14377,12 @@ "sF": "37", "sU": "23", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 13" }, { "date": "Dec 9, 1962", @@ -9837,7 +14392,12 @@ "sF": "17", "sU": "13", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 13" }, { "date": "Dec 9, 1962", @@ -9846,8 +14406,13 @@ "und": "Pittsburgh Steelers", "sF": "17", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 13" }, { "date": "Dec 9, 1962", @@ -9857,11 +14422,12 @@ "sF": "31", "sU": "21", "spread": "13", - "ou": "49", + "ou": null, "pScore": { - "sU": 18, - "sF": 31 - } + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 13" }, { "date": "Dec 9, 1962", @@ -9870,8 +14436,13 @@ "und": "St Louis Cardinals", "sF": "20", "sU": "52", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 13" }, { "date": "Dec 8, 1962", @@ -9881,7 +14452,12 @@ "sF": "20", "sU": "3", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 14" }, { "date": "Dec 9, 1962", @@ -9891,7 +14467,12 @@ "sF": "17", "sU": "10", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 14" }, { "date": "Dec 9, 1962", @@ -9901,7 +14482,12 @@ "sF": "32", "sU": "17", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 14" }, { "date": "Dec 15, 1962", @@ -9911,11 +14497,12 @@ "sF": "13", "sU": "10", "spread": "2", - "ou": "49", + "ou": null, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 14" }, { "date": "Dec 16, 1962", @@ -9925,7 +14512,12 @@ "sF": "42", "sU": "17", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 14" }, { "date": "Dec 16, 1962", @@ -9935,7 +14527,12 @@ "sF": "0", "sU": "3", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 14" }, { "date": "Dec 16, 1962", @@ -9944,8 +14541,13 @@ "und": "Los Angeles Rams", "sF": "20", "sU": "17", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 14" }, { "date": "Dec 16, 1962", @@ -9955,7 +14557,12 @@ "sF": "41", "sU": "31", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 14" }, { "date": "Dec 16, 1962", @@ -9964,8 +14571,13 @@ "und": "Philadelphia Eagles", "sF": "45", "sU": "35", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 14" }, { "date": "Dec 16, 1962", @@ -9975,7 +14587,12 @@ "sF": "27", "sU": "24", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 NFL Regular Season - Week 14" }, { "date": "Dec 15, 1962", @@ -9984,8 +14601,13 @@ "und": "New York Titans", "sF": "44", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 15" }, { "date": "Dec 16, 1962", @@ -9995,7 +14617,12 @@ "sF": "26", "sU": "17", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 15" }, { "date": "Dec 16, 1962", @@ -10005,7 +14632,12 @@ "sF": "0", "sU": "20", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 AFL Regular Season - Week 15" }, { "date": "Dec 23, 1962", @@ -10014,8 +14646,13 @@ "und": "Dallas Texans", "sF": "17", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 Playoffs" }, { "date": "Dec 30, 1962", @@ -10024,8 +14661,13 @@ "und": "New York Giants", "sF": "16", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1962 Playoffs" }, { "date": "Sep 7, 1963", @@ -10035,7 +14677,12 @@ "sF": "13", "sU": "24", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 1" }, { "date": "Sep 8, 1963", @@ -10045,7 +14692,12 @@ "sF": "38", "sU": "14", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 1" }, { "date": "Sep 14, 1963", @@ -10055,7 +14707,12 @@ "sF": "7", "sU": "34", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 1" }, { "date": "Sep 14, 1963", @@ -10065,7 +14722,12 @@ "sF": "23", "sU": "2", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 1" }, { "date": "Sep 15, 1963", @@ -10075,7 +14737,12 @@ "sF": "37", "sU": "28", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 1" }, { "date": "Sep 15, 1963", @@ -10085,7 +14752,12 @@ "sF": "37", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 1" }, { "date": "Sep 15, 1963", @@ -10095,7 +14767,12 @@ "sF": "3", "sU": "10", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 1" }, { "date": "Sep 15, 1963", @@ -10105,7 +14782,12 @@ "sF": "21", "sU": "21", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 1" }, { "date": "Sep 15, 1963", @@ -10114,12 +14796,13 @@ "und": "San Francisco 49ers", "sF": "24", "sU": "20", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 1" }, { "date": "Sep 15, 1963", @@ -10129,7 +14812,12 @@ "sF": "35", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 2" }, { "date": "Sep 21, 1963", @@ -10139,7 +14827,12 @@ "sF": "14", "sU": "37", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 2" }, { "date": "Sep 22, 1963", @@ -10149,7 +14842,12 @@ "sF": "41", "sU": "24", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 2" }, { "date": "Sep 22, 1963", @@ -10158,8 +14856,13 @@ "und": "Detroit Lions", "sF": "31", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 2" }, { "date": "Sep 22, 1963", @@ -10169,7 +14872,12 @@ "sF": "28", "sU": "7", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 2" }, { "date": "Sep 22, 1963", @@ -10178,8 +14886,13 @@ "und": "St Louis Cardinals", "sF": "24", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 2" }, { "date": "Sep 22, 1963", @@ -10188,8 +14901,13 @@ "und": "Pittsburgh Steelers", "sF": "0", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 2" }, { "date": "Sep 22, 1963", @@ -10198,12 +14916,13 @@ "und": "San Francisco 49ers", "sF": "20", "sU": "14", - "spread": "5", - "ou": "49", + "spread": "5.5", + "ou": null, "pScore": { - "sU": 22, - "sF": 27 - } + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 2" }, { "date": "Sep 22, 1963", @@ -10213,7 +14932,12 @@ "sF": "27", "sU": "27", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 3" }, { "date": "Sep 22, 1963", @@ -10222,8 +14946,13 @@ "und": "New York Jets", "sF": "17", "sU": "24", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 3" }, { "date": "Sep 22, 1963", @@ -10233,7 +14962,12 @@ "sF": "14", "sU": "20", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 3" }, { "date": "Sep 29, 1963", @@ -10243,7 +14977,12 @@ "sF": "20", "sU": "6", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 3" }, { "date": "Sep 29, 1963", @@ -10253,7 +14992,12 @@ "sF": "37", "sU": "21", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 3" }, { "date": "Sep 29, 1963", @@ -10262,8 +15006,13 @@ "und": "Baltimore Colts", "sF": "31", "sU": "20", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 3" }, { "date": "Sep 29, 1963", @@ -10273,11 +15022,12 @@ "sF": "45", "sU": "14", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 3" }, { "date": "Sep 29, 1963", @@ -10286,8 +15036,13 @@ "und": "Philadelphia Eagles", "sF": "37", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 3" }, { "date": "Sep 29, 1963", @@ -10296,8 +15051,13 @@ "und": "St Louis Cardinals", "sF": "23", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 3" }, { "date": "Sep 29, 1963", @@ -10306,8 +15066,13 @@ "und": "Dallas Cowboys", "sF": "21", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 3" }, { "date": "Sep 28, 1963", @@ -10317,7 +15082,12 @@ "sF": "20", "sU": "31", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 4" }, { "date": "Sep 28, 1963", @@ -10326,8 +15096,13 @@ "und": "New York Jets", "sF": "7", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 4" }, { "date": "Sep 29, 1963", @@ -10337,7 +15112,12 @@ "sF": "10", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 4" }, { "date": "Sep 29, 1963", @@ -10346,8 +15126,13 @@ "und": "San Diego Chargers", "sF": "10", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 4" }, { "date": "Oct 5, 1963", @@ -10356,8 +15141,13 @@ "und": "Pittsburgh Steelers", "sF": "35", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 4" }, { "date": "Oct 6, 1963", @@ -10367,7 +15157,12 @@ "sF": "10", "sU": "3", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 4" }, { "date": "Oct 6, 1963", @@ -10376,12 +15171,13 @@ "und": "San Francisco 49ers", "sF": "26", "sU": "3", - "spread": "10", - "ou": "49", + "spread": "10.5", + "ou": null, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 4" }, { "date": "Oct 6, 1963", @@ -10390,8 +15186,13 @@ "und": "Los Angeles Rams", "sF": "42", "sU": "10", - "spread": "19", - "ou": -1 + "spread": "19.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 4" }, { "date": "Oct 6, 1963", @@ -10400,8 +15201,13 @@ "und": "St Louis Cardinals", "sF": "14", "sU": "56", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 4" }, { "date": "Oct 6, 1963", @@ -10411,7 +15217,12 @@ "sF": "24", "sU": "21", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 4" }, { "date": "Oct 6, 1963", @@ -10421,7 +15232,12 @@ "sF": "24", "sU": "14", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 4" }, { "date": "Oct 5, 1963", @@ -10430,8 +15246,13 @@ "und": "Oakland Raiders", "sF": "12", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 5" }, { "date": "Oct 5, 1963", @@ -10440,8 +15261,13 @@ "und": "New York Jets", "sF": "24", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 5" }, { "date": "Oct 6, 1963", @@ -10450,8 +15276,13 @@ "und": "Denver Broncos", "sF": "34", "sU": "50", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 5" }, { "date": "Oct 6, 1963", @@ -10460,8 +15291,13 @@ "und": "Houston Oilers", "sF": "28", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 5" }, { "date": "Oct 13, 1963", @@ -10471,11 +15307,12 @@ "sF": "20", "sU": "3", "spread": "13", - "ou": "49", + "ou": null, "pScore": { - "sU": 18, - "sF": 31 - } + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 5" }, { "date": "Oct 13, 1963", @@ -10485,7 +15322,12 @@ "sF": "14", "sU": "17", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 5" }, { "date": "Oct 13, 1963", @@ -10494,8 +15336,13 @@ "und": "Los Angeles Rams", "sF": "52", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 5" }, { "date": "Oct 13, 1963", @@ -10504,8 +15351,13 @@ "und": "Minnesota Vikings", "sF": "37", "sU": "28", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 5" }, { "date": "Oct 13, 1963", @@ -10514,8 +15366,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "35", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 5" }, { "date": "Oct 13, 1963", @@ -10525,7 +15382,12 @@ "sF": "24", "sU": "23", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 5" }, { "date": "Oct 13, 1963", @@ -10535,7 +15397,12 @@ "sF": "24", "sU": "37", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 5" }, { "date": "Oct 11, 1963", @@ -10545,7 +15412,12 @@ "sF": "20", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 6" }, { "date": "Oct 13, 1963", @@ -10554,8 +15426,13 @@ "und": "Buffalo Bills", "sF": "26", "sU": "35", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 6" }, { "date": "Oct 13, 1963", @@ -10565,7 +15442,12 @@ "sF": "24", "sU": "20", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 6" }, { "date": "Oct 20, 1963", @@ -10575,7 +15457,12 @@ "sF": "37", "sU": "7", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 6" }, { "date": "Oct 20, 1963", @@ -10584,8 +15471,13 @@ "und": "Los Angeles Rams", "sF": "24", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 6" }, { "date": "Oct 20, 1963", @@ -10595,7 +15487,12 @@ "sF": "37", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 6" }, { "date": "Oct 20, 1963", @@ -10605,7 +15502,12 @@ "sF": "38", "sU": "27", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 6" }, { "date": "Oct 20, 1963", @@ -10615,11 +15517,12 @@ "sF": "14", "sU": "20", "spread": "17", - "ou": "49", + "ou": null, "pScore": { - "sU": 16, - "sF": 33 - } + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 6" }, { "date": "Oct 20, 1963", @@ -10628,8 +15531,13 @@ "und": "St Louis Cardinals", "sF": "30", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 6" }, { "date": "Oct 18, 1963", @@ -10639,7 +15547,12 @@ "sF": "40", "sU": "21", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 7" }, { "date": "Oct 20, 1963", @@ -10648,8 +15561,13 @@ "und": "Buffalo Bills", "sF": "28", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 7" }, { "date": "Oct 20, 1963", @@ -10659,7 +15577,12 @@ "sF": "17", "sU": "38", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 7" }, { "date": "Oct 20, 1963", @@ -10668,8 +15591,13 @@ "und": "New York Jets", "sF": "49", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 7" }, { "date": "Oct 27, 1963", @@ -10679,7 +15607,12 @@ "sF": "34", "sU": "20", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 7" }, { "date": "Oct 27, 1963", @@ -10689,7 +15622,12 @@ "sF": "16", "sU": "7", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 7" }, { "date": "Oct 27, 1963", @@ -10698,8 +15636,13 @@ "und": "New York Giants", "sF": "6", "sU": "33", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 7" }, { "date": "Oct 27, 1963", @@ -10709,7 +15652,12 @@ "sF": "28", "sU": "10", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 7" }, { "date": "Oct 27, 1963", @@ -10719,7 +15667,12 @@ "sF": "27", "sU": "21", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 7" }, { "date": "Oct 27, 1963", @@ -10728,8 +15681,13 @@ "und": "Washington Redskins", "sF": "21", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 7" }, { "date": "Oct 26, 1963", @@ -10738,8 +15696,13 @@ "und": "Boston Patriots", "sF": "28", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 8" }, { "date": "Oct 26, 1963", @@ -10748,8 +15711,13 @@ "und": "Denver Broncos", "sF": "35", "sU": "35", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 8" }, { "date": "Oct 27, 1963", @@ -10758,8 +15726,13 @@ "und": "Kansas City Chiefs", "sF": "28", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 8" }, { "date": "Oct 27, 1963", @@ -10769,7 +15742,12 @@ "sF": "33", "sU": "34", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 8" }, { "date": "Nov 3, 1963", @@ -10778,8 +15756,13 @@ "und": "Baltimore Colts", "sF": "17", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 8" }, { "date": "Nov 3, 1963", @@ -10788,8 +15771,13 @@ "und": "Washington Redskins", "sF": "35", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 8" }, { "date": "Nov 3, 1963", @@ -10798,8 +15786,13 @@ "und": "Pittsburgh Steelers", "sF": "33", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 8" }, { "date": "Nov 3, 1963", @@ -10808,8 +15801,13 @@ "und": "Los Angeles Rams", "sF": "21", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 8" }, { "date": "Nov 3, 1963", @@ -10819,7 +15817,12 @@ "sF": "23", "sU": "17", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 8" }, { "date": "Nov 3, 1963", @@ -10828,12 +15831,13 @@ "und": "San Francisco 49ers", "sF": "45", "sU": "7", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 8" }, { "date": "Nov 3, 1963", @@ -10843,7 +15847,12 @@ "sF": "38", "sU": "21", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 8" }, { "date": "Nov 1, 1963", @@ -10853,7 +15862,12 @@ "sF": "3", "sU": "45", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 9" }, { "date": "Nov 2, 1963", @@ -10863,7 +15877,12 @@ "sF": "53", "sU": "7", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 9" }, { "date": "Nov 3, 1963", @@ -10873,7 +15892,12 @@ "sF": "30", "sU": "28", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 9" }, { "date": "Nov 3, 1963", @@ -10882,8 +15906,13 @@ "und": "Kansas City Chiefs", "sF": "10", "sU": "7", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 9" }, { "date": "Nov 10, 1963", @@ -10892,8 +15921,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 9" }, { "date": "Nov 10, 1963", @@ -10903,7 +15937,12 @@ "sF": "6", "sU": "0", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 9" }, { "date": "Nov 10, 1963", @@ -10913,7 +15952,12 @@ "sF": "28", "sU": "7", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 9" }, { "date": "Nov 10, 1963", @@ -10922,8 +15966,13 @@ "und": "Philadelphia Eagles", "sF": "42", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 9" }, { "date": "Nov 10, 1963", @@ -10932,8 +15981,13 @@ "und": "Pittsburgh Steelers", "sF": "7", "sU": "9", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 9" }, { "date": "Nov 10, 1963", @@ -10943,11 +15997,12 @@ "sF": "24", "sU": "31", "spread": "4", - "ou": "49", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 9" }, { "date": "Nov 10, 1963", @@ -10956,8 +16011,13 @@ "und": "Washington Redskins", "sF": "24", "sU": "20", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 9" }, { "date": "Nov 8, 1963", @@ -10966,8 +16026,13 @@ "und": "Oakland Raiders", "sF": "7", "sU": "22", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 10" }, { "date": "Nov 9, 1963", @@ -10976,8 +16041,13 @@ "und": "Denver Broncos", "sF": "27", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 10" }, { "date": "Nov 10, 1963", @@ -10986,8 +16056,13 @@ "und": "New York Jets", "sF": "31", "sU": "27", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 10" }, { "date": "Nov 17, 1963", @@ -10997,7 +16072,12 @@ "sF": "7", "sU": "26", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 10" }, { "date": "Nov 17, 1963", @@ -11007,7 +16087,12 @@ "sF": "14", "sU": "20", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 10" }, { "date": "Nov 17, 1963", @@ -11016,8 +16101,13 @@ "und": "Philadelphia Eagles", "sF": "27", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 10" }, { "date": "Nov 17, 1963", @@ -11026,8 +16116,13 @@ "und": "Los Angeles Rams", "sF": "21", "sU": "28", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 10" }, { "date": "Nov 17, 1963", @@ -11037,7 +16132,12 @@ "sF": "37", "sU": "34", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 10" }, { "date": "Nov 17, 1963", @@ -11047,11 +16147,12 @@ "sF": "48", "sU": "14", "spread": "17", - "ou": "49", + "ou": null, "pScore": { - "sU": 16, - "sF": 33 - } + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 10" }, { "date": "Nov 17, 1963", @@ -11061,7 +16162,12 @@ "sF": "34", "sU": "28", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 10" }, { "date": "Nov 17, 1963", @@ -11070,8 +16176,13 @@ "und": "Kansas City Chiefs", "sF": "24", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 11" }, { "date": "Nov 17, 1963", @@ -11080,8 +16191,13 @@ "und": "New York Jets", "sF": "9", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 11" }, { "date": "Nov 24, 1963", @@ -11090,8 +16206,13 @@ "und": "Dallas Cowboys", "sF": "27", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 11" }, { "date": "Nov 24, 1963", @@ -11100,12 +16221,13 @@ "und": "San Francisco 49ers", "sF": "28", "sU": "10", - "spread": "20", - "ou": "49", + "spread": "20.5", + "ou": null, "pScore": { - "sU": 14.5, - "sF": 34.5 - } + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 11" }, { "date": "Nov 24, 1963", @@ -11115,7 +16237,12 @@ "sF": "16", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 11" }, { "date": "Nov 24, 1963", @@ -11124,8 +16251,13 @@ "und": "St Louis Cardinals", "sF": "17", "sU": "24", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 11" }, { "date": "Nov 24, 1963", @@ -11135,7 +16267,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 11" }, { "date": "Nov 24, 1963", @@ -11145,7 +16282,12 @@ "sF": "17", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 11" }, { "date": "Nov 28, 1963", @@ -11155,7 +16297,12 @@ "sF": "13", "sU": "13", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 12" }, { "date": "Dec 1, 1963", @@ -11165,7 +16312,12 @@ "sF": "17", "sU": "17", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 12" }, { "date": "Dec 1, 1963", @@ -11174,8 +16326,13 @@ "und": "Dallas Cowboys", "sF": "34", "sU": "27", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 12" }, { "date": "Dec 1, 1963", @@ -11185,7 +16342,12 @@ "sF": "20", "sU": "20", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 12" }, { "date": "Dec 1, 1963", @@ -11195,11 +16357,12 @@ "sF": "21", "sU": "17", "spread": "3", - "ou": "49", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 12" }, { "date": "Dec 1, 1963", @@ -11209,7 +16372,12 @@ "sF": "10", "sU": "24", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 12" }, { "date": "Dec 1, 1963", @@ -11219,7 +16387,12 @@ "sF": "36", "sU": "20", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 12" }, { "date": "Nov 28, 1963", @@ -11228,8 +16401,13 @@ "und": "Denver Broncos", "sF": "26", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 13" }, { "date": "Dec 1, 1963", @@ -11239,7 +16417,12 @@ "sF": "17", "sU": "7", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 13" }, { "date": "Dec 1, 1963", @@ -11249,7 +16432,12 @@ "sF": "0", "sU": "17", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 13" }, { "date": "Dec 1, 1963", @@ -11258,8 +16446,13 @@ "und": "Houston Oilers", "sF": "27", "sU": "0", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 13" }, { "date": "Dec 7, 1963", @@ -11268,8 +16461,13 @@ "und": "Los Angeles Rams", "sF": "31", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 13" }, { "date": "Dec 8, 1963", @@ -11278,8 +16476,13 @@ "und": "Minnesota Vikings", "sF": "41", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 13" }, { "date": "Dec 8, 1963", @@ -11289,11 +16492,12 @@ "sF": "27", "sU": "7", "spread": "17", - "ou": "49", + "ou": null, "pScore": { - "sU": 16, - "sF": 33 - } + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 13" }, { "date": "Dec 8, 1963", @@ -11303,7 +16507,12 @@ "sF": "24", "sU": "19", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 13" }, { "date": "Dec 8, 1963", @@ -11312,8 +16521,13 @@ "und": "Detroit Lions", "sF": "10", "sU": "38", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 13" }, { "date": "Dec 8, 1963", @@ -11323,7 +16537,12 @@ "sF": "44", "sU": "14", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 13" }, { "date": "Dec 8, 1963", @@ -11333,7 +16552,12 @@ "sF": "38", "sU": "14", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 13" }, { "date": "Dec 8, 1963", @@ -11342,8 +16566,13 @@ "und": "New York Jets", "sF": "45", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 14" }, { "date": "Dec 8, 1963", @@ -11353,7 +16582,12 @@ "sF": "46", "sU": "28", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 14" }, { "date": "Dec 8, 1963", @@ -11363,7 +16597,12 @@ "sF": "52", "sU": "21", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 14" }, { "date": "Dec 8, 1963", @@ -11373,7 +16612,12 @@ "sF": "27", "sU": "41", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 14" }, { "date": "Dec 14, 1963", @@ -11382,12 +16626,13 @@ "und": "San Francisco 49ers", "sF": "21", "sU": "17", - "spread": "16", - "ou": "49", + "spread": "16.5", + "ou": null, "pScore": { - "sU": 16.5, - "sF": 32.5 - } + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 14" }, { "date": "Dec 15, 1963", @@ -11397,7 +16642,12 @@ "sF": "19", "sU": "16", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 14" }, { "date": "Dec 15, 1963", @@ -11407,7 +16657,12 @@ "sF": "24", "sU": "14", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 14" }, { "date": "Dec 15, 1963", @@ -11417,7 +16672,12 @@ "sF": "33", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 14" }, { "date": "Dec 15, 1963", @@ -11427,7 +16687,12 @@ "sF": "13", "sU": "34", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 14" }, { "date": "Dec 15, 1963", @@ -11436,8 +16701,13 @@ "und": "Dallas Cowboys", "sF": "24", "sU": "28", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 14" }, { "date": "Dec 15, 1963", @@ -11447,7 +16717,12 @@ "sF": "27", "sU": "20", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 NFL Regular Season - Week 14" }, { "date": "Dec 14, 1963", @@ -11457,7 +16732,12 @@ "sF": "3", "sU": "35", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 15" }, { "date": "Dec 14, 1963", @@ -11466,8 +16746,13 @@ "und": "New York Jets", "sF": "19", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 15" }, { "date": "Dec 15, 1963", @@ -11477,7 +16762,12 @@ "sF": "20", "sU": "14", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 15" }, { "date": "Dec 15, 1963", @@ -11487,7 +16777,12 @@ "sF": "35", "sU": "31", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 15" }, { "date": "Dec 22, 1963", @@ -11496,8 +16791,13 @@ "und": "New York Jets", "sF": "48", "sU": "0", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 16" }, { "date": "Dec 22, 1963", @@ -11506,8 +16806,13 @@ "und": "Houston Oilers", "sF": "52", "sU": "49", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 16" }, { "date": "Dec 22, 1963", @@ -11517,7 +16822,12 @@ "sF": "58", "sU": "20", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 16" }, { "date": "Dec 28, 1963", @@ -11527,7 +16837,12 @@ "sF": "8", "sU": "26", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 AFL Regular Season - Week 17" }, { "date": "Dec 29, 1963", @@ -11537,7 +16852,12 @@ "sF": "10", "sU": "14", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 Playoffs" }, { "date": "Jan 5, 1964", @@ -11547,7 +16867,12 @@ "sF": "51", "sU": "10", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1963 Playoffs" }, { "date": "Sep 12, 1964", @@ -11557,7 +16882,12 @@ "sF": "30", "sU": "6", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 1" }, { "date": "Sep 12, 1964", @@ -11567,7 +16897,12 @@ "sF": "27", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 1" }, { "date": "Sep 13, 1964", @@ -11577,7 +16912,12 @@ "sF": "34", "sU": "17", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 1" }, { "date": "Sep 13, 1964", @@ -11587,7 +16927,12 @@ "sF": "14", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 1" }, { "date": "Sep 12, 1964", @@ -11597,7 +16942,12 @@ "sF": "16", "sU": "6", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 1" }, { "date": "Sep 13, 1964", @@ -11607,7 +16957,12 @@ "sF": "23", "sU": "12", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 1" }, { "date": "Sep 13, 1964", @@ -11617,7 +16972,12 @@ "sF": "24", "sU": "34", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 1" }, { "date": "Sep 13, 1964", @@ -11627,7 +16987,12 @@ "sF": "7", "sU": "38", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 1" }, { "date": "Sep 13, 1964", @@ -11636,8 +17001,13 @@ "und": "Los Angeles Rams", "sF": "14", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 1" }, { "date": "Sep 13, 1964", @@ -11647,11 +17017,12 @@ "sF": "26", "sU": "17", "spread": "6", - "ou": "49", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 1" }, { "date": "Sep 13, 1964", @@ -11661,7 +17032,12 @@ "sF": "27", "sU": "13", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 1" }, { "date": "Sep 19, 1964", @@ -11670,8 +17046,13 @@ "und": "Oakland Raiders", "sF": "42", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 2" }, { "date": "Sep 20, 1964", @@ -11681,7 +17062,12 @@ "sF": "30", "sU": "13", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 2" }, { "date": "Sep 20, 1964", @@ -11690,8 +17076,13 @@ "und": "Boston Patriots", "sF": "28", "sU": "33", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 2" }, { "date": "Sep 19, 1964", @@ -11700,8 +17091,13 @@ "und": "Los Angeles Rams", "sF": "17", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 2" }, { "date": "Sep 20, 1964", @@ -11710,8 +17106,13 @@ "und": "St Louis Cardinals", "sF": "33", "sU": "33", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 2" }, { "date": "Sep 20, 1964", @@ -11720,8 +17121,13 @@ "und": "Baltimore Colts", "sF": "20", "sU": "21", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 2" }, { "date": "Sep 20, 1964", @@ -11731,7 +17137,12 @@ "sF": "28", "sU": "34", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 2" }, { "date": "Sep 20, 1964", @@ -11740,12 +17151,13 @@ "und": "San Francisco 49ers", "sF": "24", "sU": "28", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 2" }, { "date": "Sep 20, 1964", @@ -11755,7 +17167,12 @@ "sF": "24", "sU": "27", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 2" }, { "date": "Sep 27, 1964", @@ -11765,7 +17182,12 @@ "sF": "26", "sU": "10", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 3" }, { "date": "Sep 27, 1964", @@ -11775,7 +17197,12 @@ "sF": "38", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 3" }, { "date": "Sep 27, 1964", @@ -11784,8 +17211,13 @@ "und": "Oakland Raiders", "sF": "21", "sU": "9", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 3" }, { "date": "Sep 25, 1964", @@ -11795,7 +17227,12 @@ "sF": "13", "sU": "10", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 3" }, { "date": "Sep 27, 1964", @@ -11804,8 +17241,13 @@ "und": "Chicago Bears", "sF": "52", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 3" }, { "date": "Sep 27, 1964", @@ -11814,8 +17256,13 @@ "und": "Minnesota Vikings", "sF": "22", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 3" }, { "date": "Sep 27, 1964", @@ -11824,8 +17271,13 @@ "und": "Philadelphia Eagles", "sF": "28", "sU": "20", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 3" }, { "date": "Sep 27, 1964", @@ -11835,7 +17287,12 @@ "sF": "23", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 3" }, { "date": "Sep 27, 1964", @@ -11844,12 +17301,13 @@ "und": "San Francisco 49ers", "sF": "23", "sU": "13", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 3" }, { "date": "Sep 28, 1964", @@ -11859,7 +17317,12 @@ "sF": "14", "sU": "10", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 3" }, { "date": "Oct 3, 1964", @@ -11869,7 +17332,12 @@ "sF": "23", "sU": "20", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 4" }, { "date": "Oct 3, 1964", @@ -11878,8 +17346,13 @@ "und": "New York Jets", "sF": "17", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 4" }, { "date": "Oct 4, 1964", @@ -11889,7 +17362,12 @@ "sF": "39", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 4" }, { "date": "Oct 4, 1964", @@ -11899,7 +17377,12 @@ "sF": "28", "sU": "7", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 4" }, { "date": "Oct 4, 1964", @@ -11909,7 +17392,12 @@ "sF": "35", "sU": "20", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 4" }, { "date": "Oct 4, 1964", @@ -11919,7 +17407,12 @@ "sF": "27", "sU": "6", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 4" }, { "date": "Oct 4, 1964", @@ -11929,7 +17422,12 @@ "sF": "26", "sU": "3", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 4" }, { "date": "Oct 4, 1964", @@ -11938,8 +17436,13 @@ "und": "Minnesota Vikings", "sF": "23", "sU": "24", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 4" }, { "date": "Oct 4, 1964", @@ -11949,11 +17452,12 @@ "sF": "21", "sU": "31", "spread": "4", - "ou": "49", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 4" }, { "date": "Oct 4, 1964", @@ -11963,7 +17467,12 @@ "sF": "23", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 4" }, { "date": "Oct 9, 1964", @@ -11972,8 +17481,13 @@ "und": "San Diego Chargers", "sF": "17", "sU": "26", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 5" }, { "date": "Oct 10, 1964", @@ -11983,7 +17497,12 @@ "sF": "35", "sU": "13", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 5" }, { "date": "Oct 11, 1964", @@ -11993,7 +17512,12 @@ "sF": "27", "sU": "33", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 5" }, { "date": "Oct 11, 1964", @@ -12003,7 +17527,12 @@ "sF": "48", "sU": "17", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 5" }, { "date": "Oct 10, 1964", @@ -12013,7 +17542,12 @@ "sF": "7", "sU": "23", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 5" }, { "date": "Oct 11, 1964", @@ -12023,7 +17557,12 @@ "sF": "38", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 5" }, { "date": "Oct 11, 1964", @@ -12032,12 +17571,13 @@ "und": "San Francisco 49ers", "sF": "24", "sU": "14", - "spread": "13", - "ou": "49", + "spread": "13.5", + "ou": null, "pScore": { - "sU": 18, - "sF": 31 - } + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 5" }, { "date": "Oct 11, 1964", @@ -12047,7 +17587,12 @@ "sF": "24", "sU": "20", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 5" }, { "date": "Oct 11, 1964", @@ -12056,8 +17601,13 @@ "und": "Philadelphia Eagles", "sF": "35", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 5" }, { "date": "Oct 12, 1964", @@ -12067,7 +17617,12 @@ "sF": "47", "sU": "27", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 5" }, { "date": "Oct 16, 1964", @@ -12077,7 +17632,12 @@ "sF": "43", "sU": "43", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 6" }, { "date": "Oct 17, 1964", @@ -12086,8 +17646,13 @@ "und": "Houston Oilers", "sF": "24", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 6" }, { "date": "Oct 18, 1964", @@ -12097,7 +17662,12 @@ "sF": "35", "sU": "22", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 6" }, { "date": "Oct 18, 1964", @@ -12107,7 +17677,12 @@ "sF": "42", "sU": "14", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 6" }, { "date": "Oct 18, 1964", @@ -12116,8 +17691,13 @@ "und": "Green Bay Packers", "sF": "24", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 6" }, { "date": "Oct 18, 1964", @@ -12127,7 +17707,12 @@ "sF": "0", "sU": "10", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 6" }, { "date": "Oct 18, 1964", @@ -12136,8 +17721,13 @@ "und": "Dallas Cowboys", "sF": "20", "sU": "16", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 6" }, { "date": "Oct 18, 1964", @@ -12146,12 +17736,13 @@ "und": "San Francisco 49ers", "sF": "42", "sU": "14", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 6" }, { "date": "Oct 18, 1964", @@ -12161,7 +17752,12 @@ "sF": "30", "sU": "10", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 6" }, { "date": "Oct 18, 1964", @@ -12171,7 +17767,12 @@ "sF": "17", "sU": "23", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 6" }, { "date": "Oct 18, 1964", @@ -12180,8 +17781,13 @@ "und": "Washington Redskins", "sF": "38", "sU": "24", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 6" }, { "date": "Oct 23, 1964", @@ -12191,7 +17797,12 @@ "sF": "24", "sU": "7", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 7" }, { "date": "Oct 24, 1964", @@ -12201,7 +17812,12 @@ "sF": "34", "sU": "24", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 7" }, { "date": "Oct 25, 1964", @@ -12211,7 +17827,12 @@ "sF": "20", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 7" }, { "date": "Oct 25, 1964", @@ -12220,8 +17841,13 @@ "und": "Denver Broncos", "sF": "40", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 7" }, { "date": "Oct 25, 1964", @@ -12230,8 +17856,13 @@ "und": "New York Giants", "sF": "42", "sU": "20", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 7" }, { "date": "Oct 25, 1964", @@ -12241,7 +17872,12 @@ "sF": "34", "sU": "0", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 7" }, { "date": "Oct 25, 1964", @@ -12251,7 +17887,12 @@ "sF": "17", "sU": "27", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 7" }, { "date": "Oct 25, 1964", @@ -12260,8 +17901,13 @@ "und": "Philadelphia Eagles", "sF": "10", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 7" }, { "date": "Oct 25, 1964", @@ -12271,11 +17917,12 @@ "sF": "27", "sU": "22", "spread": "5", - "ou": "49", + "ou": null, "pScore": { - "sU": 22, - "sF": 27 - } + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 7" }, { "date": "Oct 25, 1964", @@ -12284,8 +17931,13 @@ "und": "Dallas Cowboys", "sF": "13", "sU": "31", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 7" }, { "date": "Oct 25, 1964", @@ -12294,8 +17946,13 @@ "und": "Washington Redskins", "sF": "20", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 7" }, { "date": "Oct 31, 1964", @@ -12305,7 +17962,12 @@ "sF": "14", "sU": "35", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 8" }, { "date": "Nov 1, 1964", @@ -12315,7 +17977,12 @@ "sF": "24", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 8" }, { "date": "Nov 1, 1964", @@ -12325,7 +17992,12 @@ "sF": "49", "sU": "39", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 8" }, { "date": "Nov 1, 1964", @@ -12335,7 +18007,12 @@ "sF": "31", "sU": "17", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 8" }, { "date": "Nov 1, 1964", @@ -12345,11 +18022,12 @@ "sF": "37", "sU": "7", "spread": "16", - "ou": "49", + "ou": null, "pScore": { - "sU": 16.5, - "sF": 32.5 - } + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 8" }, { "date": "Nov 1, 1964", @@ -12359,7 +18037,12 @@ "sF": "10", "sU": "24", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 8" }, { "date": "Nov 1, 1964", @@ -12368,8 +18051,13 @@ "und": "Los Angeles Rams", "sF": "37", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 8" }, { "date": "Nov 1, 1964", @@ -12379,7 +18067,12 @@ "sF": "42", "sU": "13", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 8" }, { "date": "Nov 1, 1964", @@ -12389,7 +18082,12 @@ "sF": "17", "sU": "34", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 8" }, { "date": "Nov 1, 1964", @@ -12398,8 +18096,13 @@ "und": "Washington Redskins", "sF": "10", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 8" }, { "date": "Nov 1, 1964", @@ -12409,7 +18112,12 @@ "sF": "30", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 8" }, { "date": "Nov 6, 1964", @@ -12419,7 +18127,12 @@ "sF": "25", "sU": "24", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 9" }, { "date": "Nov 8, 1964", @@ -12429,7 +18142,12 @@ "sF": "31", "sU": "20", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 9" }, { "date": "Nov 8, 1964", @@ -12439,7 +18157,12 @@ "sF": "42", "sU": "7", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 9" }, { "date": "Nov 8, 1964", @@ -12449,7 +18172,12 @@ "sF": "20", "sU": "7", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 9" }, { "date": "Nov 8, 1964", @@ -12459,7 +18187,12 @@ "sF": "40", "sU": "24", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 9" }, { "date": "Nov 8, 1964", @@ -12468,8 +18201,13 @@ "und": "Washington Redskins", "sF": "34", "sU": "24", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 9" }, { "date": "Nov 8, 1964", @@ -12478,8 +18216,13 @@ "und": "Detroit Lions", "sF": "30", "sU": "7", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 9" }, { "date": "Nov 8, 1964", @@ -12489,7 +18232,12 @@ "sF": "20", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 9" }, { "date": "Nov 8, 1964", @@ -12499,11 +18247,12 @@ "sF": "24", "sU": "7", "spread": "9", - "ou": "49", + "ou": null, "pScore": { - "sU": 20, - "sF": 29 - } + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 9" }, { "date": "Nov 8, 1964", @@ -12513,7 +18262,12 @@ "sF": "21", "sU": "31", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 9" }, { "date": "Nov 8, 1964", @@ -12522,8 +18276,13 @@ "und": "Pittsburgh Steelers", "sF": "34", "sU": "30", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 9" }, { "date": "Nov 15, 1964", @@ -12533,7 +18292,12 @@ "sF": "28", "sU": "36", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 10" }, { "date": "Nov 15, 1964", @@ -12543,7 +18307,12 @@ "sF": "16", "sU": "20", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 10" }, { "date": "Nov 15, 1964", @@ -12552,8 +18321,13 @@ "und": "Minnesota Vikings", "sF": "17", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 10" }, { "date": "Nov 15, 1964", @@ -12563,7 +18337,12 @@ "sF": "37", "sU": "21", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 10" }, { "date": "Nov 15, 1964", @@ -12573,7 +18352,12 @@ "sF": "14", "sU": "17", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 10" }, { "date": "Nov 15, 1964", @@ -12583,7 +18367,12 @@ "sF": "24", "sU": "34", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 10" }, { "date": "Nov 15, 1964", @@ -12593,7 +18382,12 @@ "sF": "0", "sU": "30", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 10" }, { "date": "Nov 15, 1964", @@ -12602,12 +18396,13 @@ "und": "San Francisco 49ers", "sF": "14", "sU": "24", - "spread": "13", - "ou": "49", + "spread": "13.5", + "ou": null, "pScore": { - "sU": 18, - "sF": 31 - } + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 10" }, { "date": "Nov 15, 1964", @@ -12617,7 +18412,12 @@ "sF": "10", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 10" }, { "date": "Nov 20, 1964", @@ -12626,8 +18426,13 @@ "und": "Denver Broncos", "sF": "12", "sU": "7", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 11" }, { "date": "Nov 22, 1964", @@ -12636,8 +18441,13 @@ "und": "Houston Oilers", "sF": "28", "sU": "19", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 11" }, { "date": "Nov 22, 1964", @@ -12647,7 +18457,12 @@ "sF": "35", "sU": "26", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 11" }, { "date": "Nov 22, 1964", @@ -12656,12 +18471,13 @@ "und": "San Francisco 49ers", "sF": "23", "sU": "21", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 11" }, { "date": "Nov 22, 1964", @@ -12671,7 +18487,12 @@ "sF": "23", "sU": "23", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 11" }, { "date": "Nov 22, 1964", @@ -12681,7 +18502,12 @@ "sF": "28", "sU": "21", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 11" }, { "date": "Nov 22, 1964", @@ -12691,7 +18517,12 @@ "sF": "24", "sU": "7", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 11" }, { "date": "Nov 22, 1964", @@ -12701,7 +18532,12 @@ "sF": "17", "sU": "44", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 11" }, { "date": "Nov 22, 1964", @@ -12711,7 +18547,12 @@ "sF": "13", "sU": "38", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 11" }, { "date": "Nov 22, 1964", @@ -12721,7 +18562,12 @@ "sF": "28", "sU": "16", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 11" }, { "date": "Nov 26, 1964", @@ -12731,7 +18577,12 @@ "sF": "24", "sU": "27", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 12" }, { "date": "Nov 29, 1964", @@ -12741,7 +18592,12 @@ "sF": "20", "sU": "20", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 12" }, { "date": "Nov 29, 1964", @@ -12750,8 +18606,13 @@ "und": "Houston Oilers", "sF": "34", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 12" }, { "date": "Nov 29, 1964", @@ -12761,7 +18622,12 @@ "sF": "14", "sU": "27", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 12" }, { "date": "Nov 26, 1964", @@ -12770,8 +18636,13 @@ "und": "Chicago Bears", "sF": "24", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 12" }, { "date": "Nov 29, 1964", @@ -12781,7 +18652,12 @@ "sF": "38", "sU": "24", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 12" }, { "date": "Nov 29, 1964", @@ -12791,7 +18667,12 @@ "sF": "45", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 12" }, { "date": "Nov 29, 1964", @@ -12800,8 +18681,13 @@ "und": "Los Angeles Rams", "sF": "34", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 12" }, { "date": "Nov 29, 1964", @@ -12810,8 +18696,13 @@ "und": "Pittsburgh Steelers", "sF": "21", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 12" }, { "date": "Nov 29, 1964", @@ -12821,11 +18712,12 @@ "sF": "14", "sU": "3", "spread": "9", - "ou": "49", + "ou": null, "pScore": { - "sU": 20, - "sF": 29 - } + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 12" }, { "date": "Nov 29, 1964", @@ -12834,8 +18726,13 @@ "und": "New York Giants", "sF": "36", "sU": "21", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 12" }, { "date": "Dec 6, 1964", @@ -12844,8 +18741,13 @@ "und": "Kansas City Chiefs", "sF": "31", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 13" }, { "date": "Dec 6, 1964", @@ -12854,8 +18756,13 @@ "und": "Oakland Raiders", "sF": "13", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 13" }, { "date": "Dec 6, 1964", @@ -12865,7 +18772,12 @@ "sF": "38", "sU": "3", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 13" }, { "date": "Dec 5, 1964", @@ -12875,7 +18787,12 @@ "sF": "17", "sU": "3", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 13" }, { "date": "Dec 6, 1964", @@ -12884,8 +18801,13 @@ "und": "Detroit Lions", "sF": "14", "sU": "31", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 13" }, { "date": "Dec 6, 1964", @@ -12894,8 +18816,13 @@ "und": "New York Giants", "sF": "30", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 13" }, { "date": "Dec 6, 1964", @@ -12905,7 +18832,12 @@ "sF": "24", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 13" }, { "date": "Dec 6, 1964", @@ -12914,8 +18846,13 @@ "und": "Los Angeles Rams", "sF": "28", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 13" }, { "date": "Dec 6, 1964", @@ -12924,8 +18861,13 @@ "und": "St Louis Cardinals", "sF": "19", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 13" }, { "date": "Dec 6, 1964", @@ -12934,8 +18876,13 @@ "und": "Pittsburgh Steelers", "sF": "7", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 13" }, { "date": "Dec 13, 1964", @@ -12945,7 +18892,12 @@ "sF": "30", "sU": "19", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 14" }, { "date": "Dec 13, 1964", @@ -12954,8 +18906,13 @@ "und": "Kansas City Chiefs", "sF": "6", "sU": "49", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 14" }, { "date": "Dec 12, 1964", @@ -12965,7 +18922,12 @@ "sF": "52", "sU": "20", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 14" }, { "date": "Dec 13, 1964", @@ -12975,7 +18937,12 @@ "sF": "45", "sU": "17", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 14" }, { "date": "Dec 13, 1964", @@ -12985,7 +18952,12 @@ "sF": "41", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 14" }, { "date": "Dec 13, 1964", @@ -12995,7 +18967,12 @@ "sF": "17", "sU": "14", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 14" }, { "date": "Dec 13, 1964", @@ -13005,11 +18982,12 @@ "sF": "24", "sU": "7", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 14" }, { "date": "Dec 13, 1964", @@ -13019,7 +18997,12 @@ "sF": "24", "sU": "24", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 14" }, { "date": "Dec 13, 1964", @@ -13029,7 +19012,12 @@ "sF": "36", "sU": "34", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 NFL Regular Season - Week 14" }, { "date": "Dec 20, 1964", @@ -13038,8 +19026,13 @@ "und": "Buffalo Bills", "sF": "14", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 15" }, { "date": "Dec 20, 1964", @@ -13049,7 +19042,12 @@ "sF": "20", "sU": "21", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 AFL Regular Season - Week 15" }, { "date": "Dec 26, 1964", @@ -13059,7 +19057,12 @@ "sF": "20", "sU": "7", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 Playoffs" }, { "date": "Dec 27, 1964", @@ -13069,7 +19072,12 @@ "sF": "0", "sU": "27", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1964 Playoffs" }, { "date": "Sep 11, 1965", @@ -13079,7 +19087,12 @@ "sF": "24", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 1" }, { "date": "Sep 12, 1965", @@ -13089,7 +19102,12 @@ "sF": "27", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 1" }, { "date": "Sep 19, 1965", @@ -13098,8 +19116,13 @@ "und": "Minnesota Vikings", "sF": "35", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 1" }, { "date": "Sep 19, 1965", @@ -13109,7 +19132,12 @@ "sF": "31", "sU": "2", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 1" }, { "date": "Sep 19, 1965", @@ -13118,8 +19146,13 @@ "und": "Philadelphia Eagles", "sF": "27", "sU": "34", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 1" }, { "date": "Sep 19, 1965", @@ -13129,7 +19162,12 @@ "sF": "41", "sU": "9", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 1" }, { "date": "Sep 19, 1965", @@ -13139,7 +19177,12 @@ "sF": "52", "sU": "24", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 1" }, { "date": "Sep 19, 1965", @@ -13149,7 +19192,12 @@ "sF": "17", "sU": "7", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 1" }, { "date": "Sep 19, 1965", @@ -13159,7 +19207,12 @@ "sF": "30", "sU": "15", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 2" }, { "date": "Sep 19, 1965", @@ -13169,7 +19222,12 @@ "sF": "31", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 2" }, { "date": "Sep 26, 1965", @@ -13179,7 +19237,12 @@ "sF": "13", "sU": "49", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 2" }, { "date": "Sep 26, 1965", @@ -13189,7 +19252,12 @@ "sF": "27", "sU": "7", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 2" }, { "date": "Sep 26, 1965", @@ -13199,7 +19267,12 @@ "sF": "20", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 2" }, { "date": "Sep 26, 1965", @@ -13209,7 +19282,12 @@ "sF": "30", "sU": "28", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 2" }, { "date": "Sep 26, 1965", @@ -13219,7 +19297,12 @@ "sF": "29", "sU": "31", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 2" }, { "date": "Sep 26, 1965", @@ -13229,7 +19312,12 @@ "sF": "14", "sU": "16", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 2" }, { "date": "Sep 26, 1965", @@ -13239,7 +19327,12 @@ "sF": "27", "sU": "17", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 2" }, { "date": "Sep 24, 1965", @@ -13249,7 +19342,12 @@ "sF": "10", "sU": "27", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 3" }, { "date": "Sep 26, 1965", @@ -13259,7 +19357,12 @@ "sF": "33", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 3" }, { "date": "Sep 26, 1965", @@ -13269,7 +19372,12 @@ "sF": "21", "sU": "17", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 3" }, { "date": "Sep 26, 1965", @@ -13279,7 +19387,12 @@ "sF": "10", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 3" }, { "date": "Oct 3, 1965", @@ -13289,11 +19402,12 @@ "sF": "27", "sU": "24", "spread": "13", - "ou": "49", + "ou": null, "pScore": { - "sU": 18, - "sF": 31 - } + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 3" }, { "date": "Oct 3, 1965", @@ -13303,7 +19417,12 @@ "sF": "14", "sU": "10", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 3" }, { "date": "Oct 3, 1965", @@ -13313,7 +19432,12 @@ "sF": "23", "sU": "14", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 3" }, { "date": "Oct 3, 1965", @@ -13322,8 +19446,13 @@ "und": "Los Angeles Rams", "sF": "38", "sU": "35", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 3" }, { "date": "Oct 3, 1965", @@ -13333,7 +19462,12 @@ "sF": "35", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 3" }, { "date": "Oct 3, 1965", @@ -13343,7 +19477,12 @@ "sF": "23", "sU": "13", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 3" }, { "date": "Oct 4, 1965", @@ -13353,7 +19492,12 @@ "sF": "13", "sU": "20", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 3" }, { "date": "Oct 3, 1965", @@ -13363,7 +19507,12 @@ "sF": "17", "sU": "12", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 4" }, { "date": "Oct 3, 1965", @@ -13373,7 +19522,12 @@ "sF": "16", "sU": "13", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 4" }, { "date": "Oct 3, 1965", @@ -13383,7 +19537,12 @@ "sF": "27", "sU": "17", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 4" }, { "date": "Oct 3, 1965", @@ -13393,7 +19552,12 @@ "sF": "31", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 4" }, { "date": "Oct 9, 1965", @@ -13403,7 +19567,12 @@ "sF": "24", "sU": "19", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 4" }, { "date": "Oct 9, 1965", @@ -13413,7 +19582,12 @@ "sF": "40", "sU": "14", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 4" }, { "date": "Oct 10, 1965", @@ -13423,7 +19597,12 @@ "sF": "31", "sU": "7", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 4" }, { "date": "Oct 10, 1965", @@ -13433,7 +19612,12 @@ "sF": "31", "sU": "6", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 4" }, { "date": "Oct 10, 1965", @@ -13442,8 +19626,13 @@ "und": "Philadelphia Eagles", "sF": "24", "sU": "35", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 4" }, { "date": "Oct 10, 1965", @@ -13452,12 +19641,13 @@ "und": "San Francisco 49ers", "sF": "27", "sU": "10", - "spread": "10", - "ou": "49", + "spread": "10.5", + "ou": null, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 4" }, { "date": "Oct 10, 1965", @@ -13467,7 +19657,12 @@ "sF": "37", "sU": "16", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 4" }, { "date": "Oct 8, 1965", @@ -13477,7 +19672,12 @@ "sF": "24", "sU": "10", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 5" }, { "date": "Oct 10, 1965", @@ -13487,7 +19687,12 @@ "sF": "34", "sU": "3", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 5" }, { "date": "Oct 10, 1965", @@ -13496,8 +19701,13 @@ "und": "Denver Broncos", "sF": "31", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 5" }, { "date": "Oct 17, 1965", @@ -13507,7 +19717,12 @@ "sF": "23", "sU": "17", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 5" }, { "date": "Oct 17, 1965", @@ -13517,7 +19732,12 @@ "sF": "31", "sU": "21", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 5" }, { "date": "Oct 17, 1965", @@ -13527,7 +19747,12 @@ "sF": "37", "sU": "45", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 5" }, { "date": "Oct 17, 1965", @@ -13536,8 +19761,13 @@ "und": "New York Giants", "sF": "27", "sU": "35", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 5" }, { "date": "Oct 17, 1965", @@ -13547,7 +19777,12 @@ "sF": "20", "sU": "7", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 5" }, { "date": "Oct 17, 1965", @@ -13557,7 +19792,12 @@ "sF": "38", "sU": "7", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 5" }, { "date": "Oct 16, 1965", @@ -13567,7 +19807,12 @@ "sF": "24", "sU": "24", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 6" }, { "date": "Oct 17, 1965", @@ -13577,7 +19822,12 @@ "sF": "13", "sU": "13", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 6" }, { "date": "Oct 17, 1965", @@ -13587,7 +19837,12 @@ "sF": "28", "sU": "17", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 6" }, { "date": "Oct 17, 1965", @@ -13597,7 +19852,12 @@ "sF": "7", "sU": "23", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 6" }, { "date": "Oct 24, 1965", @@ -13607,7 +19867,12 @@ "sF": "35", "sU": "20", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 6" }, { "date": "Oct 24, 1965", @@ -13617,7 +19882,12 @@ "sF": "38", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 6" }, { "date": "Oct 24, 1965", @@ -13626,8 +19896,13 @@ "und": "Dallas Cowboys", "sF": "13", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 6" }, { "date": "Oct 24, 1965", @@ -13637,7 +19912,12 @@ "sF": "38", "sU": "14", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 6" }, { "date": "Oct 24, 1965", @@ -13647,7 +19927,12 @@ "sF": "20", "sU": "14", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 6" }, { "date": "Oct 24, 1965", @@ -13657,7 +19942,12 @@ "sF": "20", "sU": "24", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 6" }, { "date": "Oct 23, 1965", @@ -13667,7 +19957,12 @@ "sF": "34", "sU": "9", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 7" }, { "date": "Oct 24, 1965", @@ -13677,7 +19972,12 @@ "sF": "31", "sU": "13", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 7" }, { "date": "Oct 24, 1965", @@ -13687,7 +19987,12 @@ "sF": "38", "sU": "36", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 7" }, { "date": "Oct 24, 1965", @@ -13697,7 +20002,12 @@ "sF": "30", "sU": "21", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 7" }, { "date": "Oct 31, 1965", @@ -13707,7 +20017,12 @@ "sF": "10", "sU": "31", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 7" }, { "date": "Oct 31, 1965", @@ -13717,7 +20032,12 @@ "sF": "17", "sU": "27", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 7" }, { "date": "Oct 31, 1965", @@ -13727,7 +20047,12 @@ "sF": "7", "sU": "31", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 7" }, { "date": "Oct 31, 1965", @@ -13737,7 +20062,12 @@ "sF": "10", "sU": "14", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 7" }, { "date": "Oct 31, 1965", @@ -13746,8 +20076,13 @@ "und": "Pittsburgh Steelers", "sF": "13", "sU": "22", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 7" }, { "date": "Oct 31, 1965", @@ -13757,11 +20092,12 @@ "sF": "34", "sU": "28", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 7" }, { "date": "Oct 31, 1965", @@ -13770,8 +20106,13 @@ "und": "Philadelphia Eagles", "sF": "23", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 7" }, { "date": "Oct 31, 1965", @@ -13781,7 +20122,12 @@ "sF": "17", "sU": "19", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 8" }, { "date": "Oct 31, 1965", @@ -13790,8 +20136,13 @@ "und": "Oakland Raiders", "sF": "14", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 8" }, { "date": "Oct 31, 1965", @@ -13801,7 +20152,12 @@ "sF": "45", "sU": "10", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 8" }, { "date": "Oct 31, 1965", @@ -13811,7 +20167,12 @@ "sF": "6", "sU": "22", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 8" }, { "date": "Nov 7, 1965", @@ -13821,7 +20182,12 @@ "sF": "26", "sU": "21", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 8" }, { "date": "Nov 7, 1965", @@ -13831,7 +20197,12 @@ "sF": "38", "sU": "34", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 8" }, { "date": "Nov 7, 1965", @@ -13841,11 +20212,12 @@ "sF": "39", "sU": "31", "spread": "3", - "ou": "49", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 8" }, { "date": "Nov 7, 1965", @@ -13855,7 +20227,12 @@ "sF": "7", "sU": "12", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 8" }, { "date": "Nov 7, 1965", @@ -13865,7 +20242,12 @@ "sF": "24", "sU": "13", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 8" }, { "date": "Nov 7, 1965", @@ -13875,7 +20257,12 @@ "sF": "7", "sU": "23", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 8" }, { "date": "Nov 7, 1965", @@ -13885,7 +20272,12 @@ "sF": "21", "sU": "17", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 8" }, { "date": "Nov 7, 1965", @@ -13895,7 +20287,12 @@ "sF": "23", "sU": "7", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 9" }, { "date": "Nov 7, 1965", @@ -13905,7 +20302,12 @@ "sF": "35", "sU": "21", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 9" }, { "date": "Nov 7, 1965", @@ -13915,7 +20317,12 @@ "sF": "21", "sU": "33", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 9" }, { "date": "Nov 7, 1965", @@ -13924,8 +20331,13 @@ "und": "New York Jets", "sF": "10", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 9" }, { "date": "Nov 14, 1965", @@ -13935,7 +20347,12 @@ "sF": "34", "sU": "13", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 9" }, { "date": "Nov 14, 1965", @@ -13945,7 +20362,12 @@ "sF": "34", "sU": "21", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 9" }, { "date": "Nov 14, 1965", @@ -13955,7 +20377,12 @@ "sF": "24", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 9" }, { "date": "Nov 14, 1965", @@ -13964,12 +20391,13 @@ "und": "San Francisco 49ers", "sF": "21", "sU": "27", - "spread": "4", - "ou": "49", + "spread": "4.5", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 9" }, { "date": "Nov 14, 1965", @@ -13978,8 +20406,13 @@ "und": "Los Angeles Rams", "sF": "6", "sU": "3", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 9" }, { "date": "Nov 14, 1965", @@ -13989,7 +20422,12 @@ "sF": "41", "sU": "21", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 9" }, { "date": "Nov 14, 1965", @@ -13998,8 +20436,13 @@ "und": "Boston Patriots", "sF": "30", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 10" }, { "date": "Nov 14, 1965", @@ -14008,8 +20451,13 @@ "und": "Denver Broncos", "sF": "21", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 10" }, { "date": "Nov 14, 1965", @@ -14019,7 +20467,12 @@ "sF": "7", "sU": "31", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 10" }, { "date": "Nov 14, 1965", @@ -14028,8 +20481,13 @@ "und": "Buffalo Bills", "sF": "14", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 10" }, { "date": "Nov 21, 1965", @@ -14038,8 +20496,13 @@ "und": "Philadelphia Eagles", "sF": "34", "sU": "24", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 10" }, { "date": "Nov 21, 1965", @@ -14049,7 +20512,12 @@ "sF": "24", "sU": "17", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 10" }, { "date": "Nov 21, 1965", @@ -14058,8 +20526,13 @@ "und": "Detroit Lions", "sF": "17", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 10" }, { "date": "Nov 21, 1965", @@ -14069,7 +20542,12 @@ "sF": "38", "sU": "13", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 10" }, { "date": "Nov 21, 1965", @@ -14079,7 +20557,12 @@ "sF": "31", "sU": "3", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 10" }, { "date": "Nov 21, 1965", @@ -14088,8 +20571,13 @@ "und": "Los Angeles Rams", "sF": "30", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 10" }, { "date": "Nov 21, 1965", @@ -14099,7 +20587,12 @@ "sF": "15", "sU": "28", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 10" }, { "date": "Nov 21, 1965", @@ -14109,7 +20602,12 @@ "sF": "10", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 11" }, { "date": "Nov 21, 1965", @@ -14118,8 +20616,13 @@ "und": "Denver Broncos", "sF": "28", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 11" }, { "date": "Nov 21, 1965", @@ -14128,8 +20631,13 @@ "und": "Houston Oilers", "sF": "41", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 11" }, { "date": "Nov 25, 1965", @@ -14139,7 +20647,12 @@ "sF": "24", "sU": "24", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 11" }, { "date": "Nov 28, 1965", @@ -14149,7 +20662,12 @@ "sF": "10", "sU": "21", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 11" }, { "date": "Nov 28, 1965", @@ -14159,11 +20677,12 @@ "sF": "24", "sU": "45", "spread": "5", - "ou": "49", + "ou": null, "pScore": { - "sU": 22, - "sF": 27 - } + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 11" }, { "date": "Nov 28, 1965", @@ -14173,7 +20692,12 @@ "sF": "35", "sU": "14", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 11" }, { "date": "Nov 28, 1965", @@ -14183,7 +20707,12 @@ "sF": "42", "sU": "21", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 11" }, { "date": "Nov 28, 1965", @@ -14193,7 +20722,12 @@ "sF": "24", "sU": "28", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 11" }, { "date": "Nov 28, 1965", @@ -14203,7 +20737,12 @@ "sF": "34", "sU": "31", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 11" }, { "date": "Nov 25, 1965", @@ -14213,7 +20752,12 @@ "sF": "20", "sU": "20", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 12" }, { "date": "Nov 28, 1965", @@ -14223,7 +20767,12 @@ "sF": "52", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 12" }, { "date": "Nov 28, 1965", @@ -14233,7 +20782,12 @@ "sF": "23", "sU": "27", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 12" }, { "date": "Dec 5, 1965", @@ -14242,8 +20796,13 @@ "und": "Chicago Bears", "sF": "0", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 12" }, { "date": "Dec 5, 1965", @@ -14252,8 +20811,13 @@ "und": "Washington Redskins", "sF": "24", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 12" }, { "date": "Dec 5, 1965", @@ -14263,7 +20827,12 @@ "sF": "24", "sU": "19", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 12" }, { "date": "Dec 5, 1965", @@ -14272,8 +20841,13 @@ "und": "Pittsburgh Steelers", "sF": "35", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 12" }, { "date": "Dec 5, 1965", @@ -14282,8 +20856,13 @@ "und": "Dallas Cowboys", "sF": "19", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 12" }, { "date": "Dec 5, 1965", @@ -14293,7 +20872,12 @@ "sF": "17", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 12" }, { "date": "Dec 5, 1965", @@ -14302,8 +20886,13 @@ "und": "Los Angeles Rams", "sF": "3", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 12" }, { "date": "Dec 4, 1965", @@ -14313,7 +20902,12 @@ "sF": "38", "sU": "7", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 13" }, { "date": "Dec 5, 1965", @@ -14322,8 +20916,13 @@ "und": "Houston Oilers", "sF": "29", "sU": "18", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 13" }, { "date": "Dec 5, 1965", @@ -14332,8 +20931,13 @@ "und": "Denver Broncos", "sF": "24", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 13" }, { "date": "Dec 11, 1965", @@ -14343,7 +20947,12 @@ "sF": "27", "sU": "13", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 13" }, { "date": "Dec 12, 1965", @@ -14353,11 +20962,12 @@ "sF": "61", "sU": "20", "spread": "10", - "ou": "49", + "ou": null, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 13" }, { "date": "Dec 12, 1965", @@ -14367,7 +20977,12 @@ "sF": "7", "sU": "29", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 13" }, { "date": "Dec 12, 1965", @@ -14376,8 +20991,13 @@ "und": "Los Angeles Rams", "sF": "7", "sU": "42", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 13" }, { "date": "Dec 12, 1965", @@ -14386,8 +21006,13 @@ "und": "Pittsburgh Steelers", "sF": "47", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 13" }, { "date": "Dec 12, 1965", @@ -14397,7 +21022,12 @@ "sF": "10", "sU": "27", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 13" }, { "date": "Dec 12, 1965", @@ -14406,8 +21036,13 @@ "und": "Kansas City Chiefs", "sF": "34", "sU": "25", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 14" }, { "date": "Dec 12, 1965", @@ -14416,8 +21051,13 @@ "und": "Houston Oilers", "sF": "37", "sU": "26", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 14" }, { "date": "Dec 12, 1965", @@ -14426,8 +21066,13 @@ "und": "New York Jets", "sF": "24", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 14" }, { "date": "Dec 19, 1965", @@ -14436,8 +21081,13 @@ "und": "Minnesota Vikings", "sF": "17", "sU": "24", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 14" }, { "date": "Dec 19, 1965", @@ -14446,8 +21096,13 @@ "und": "Dallas Cowboys", "sF": "20", "sU": "38", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 14" }, { "date": "Dec 19, 1965", @@ -14456,8 +21111,13 @@ "und": "Detroit Lions", "sF": "28", "sU": "35", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 14" }, { "date": "Dec 19, 1965", @@ -14467,11 +21127,12 @@ "sF": "24", "sU": "24", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 14" }, { "date": "Dec 19, 1965", @@ -14481,7 +21142,12 @@ "sF": "27", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 14" }, { "date": "Dec 19, 1965", @@ -14490,8 +21156,13 @@ "und": "Pittsburgh Steelers", "sF": "35", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 14" }, { "date": "Dec 18, 1965", @@ -14501,7 +21172,12 @@ "sF": "42", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 15" }, { "date": "Dec 19, 1965", @@ -14511,7 +21187,12 @@ "sF": "45", "sU": "35", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 15" }, { "date": "Dec 19, 1965", @@ -14521,7 +21202,12 @@ "sF": "12", "sU": "14", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 15" }, { "date": "Dec 19, 1965", @@ -14531,7 +21217,12 @@ "sF": "24", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 AFL Regular Season - Week 15" }, { "date": "Dec 26, 1965", @@ -14541,7 +21232,12 @@ "sF": "13", "sU": "10", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 NFL Regular Season - Week 15" }, { "date": "Dec 26, 1965", @@ -14551,7 +21247,12 @@ "sF": "0", "sU": "23", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 Playoffs" }, { "date": "Jan 2, 1966", @@ -14561,7 +21262,12 @@ "sF": "23", "sU": "12", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1965 Playoffs" }, { "date": "Sep 2, 1966", @@ -14571,7 +21277,12 @@ "sF": "23", "sU": "14", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 1" }, { "date": "Sep 3, 1966", @@ -14581,7 +21292,12 @@ "sF": "45", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 1" }, { "date": "Sep 4, 1966", @@ -14591,7 +21307,12 @@ "sF": "27", "sU": "7", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 1" }, { "date": "Sep 10, 1966", @@ -14601,7 +21322,12 @@ "sF": "24", "sU": "3", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 1" }, { "date": "Sep 11, 1966", @@ -14611,7 +21337,12 @@ "sF": "19", "sU": "14", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 1" }, { "date": "Sep 11, 1966", @@ -14621,7 +21352,12 @@ "sF": "3", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 1" }, { "date": "Sep 11, 1966", @@ -14630,8 +21366,13 @@ "und": "New York Giants", "sF": "34", "sU": "34", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 1" }, { "date": "Sep 11, 1966", @@ -14640,12 +21381,13 @@ "und": "San Francisco 49ers", "sF": "20", "sU": "20", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 1" }, { "date": "Sep 11, 1966", @@ -14655,7 +21397,12 @@ "sF": "16", "sU": "13", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 1" }, { "date": "Sep 11, 1966", @@ -14665,7 +21412,12 @@ "sF": "38", "sU": "14", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 1" }, { "date": "Sep 9, 1966", @@ -14675,7 +21427,12 @@ "sF": "19", "sU": "14", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 2" }, { "date": "Sep 10, 1966", @@ -14685,7 +21442,12 @@ "sF": "31", "sU": "0", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 2" }, { "date": "Sep 10, 1966", @@ -14695,7 +21457,12 @@ "sF": "24", "sU": "0", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 2" }, { "date": "Sep 11, 1966", @@ -14704,8 +21471,13 @@ "und": "Kansas City Chiefs", "sF": "20", "sU": "42", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 2" }, { "date": "Sep 16, 1966", @@ -14715,7 +21487,12 @@ "sF": "17", "sU": "31", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 2" }, { "date": "Sep 18, 1966", @@ -14725,7 +21502,12 @@ "sF": "21", "sU": "20", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 2" }, { "date": "Sep 18, 1966", @@ -14734,8 +21516,13 @@ "und": "New York Giants", "sF": "52", "sU": "7", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 2" }, { "date": "Sep 18, 1966", @@ -14745,7 +21532,12 @@ "sF": "38", "sU": "23", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 2" }, { "date": "Sep 18, 1966", @@ -14755,7 +21547,12 @@ "sF": "23", "sU": "10", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 2" }, { "date": "Sep 18, 1966", @@ -14765,7 +21562,12 @@ "sF": "3", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 2" }, { "date": "Sep 18, 1966", @@ -14775,7 +21577,12 @@ "sF": "23", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 2" }, { "date": "Sep 18, 1966", @@ -14785,7 +21592,12 @@ "sF": "58", "sU": "24", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 3" }, { "date": "Sep 18, 1966", @@ -14794,8 +21606,13 @@ "und": "Denver Broncos", "sF": "24", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 3" }, { "date": "Sep 18, 1966", @@ -14805,7 +21622,12 @@ "sF": "13", "sU": "52", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 3" }, { "date": "Sep 18, 1966", @@ -14814,8 +21636,13 @@ "und": "Oakland Raiders", "sF": "32", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 3" }, { "date": "Sep 25, 1966", @@ -14824,12 +21651,13 @@ "und": "San Francisco 49ers", "sF": "36", "sU": "14", - "spread": "13", - "ou": "49", + "spread": "13.5", + "ou": null, "pScore": { - "sU": 18, - "sF": 31 - } + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 3" }, { "date": "Sep 25, 1966", @@ -14838,8 +21666,13 @@ "und": "St Louis Cardinals", "sF": "28", "sU": "34", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 3" }, { "date": "Sep 25, 1966", @@ -14848,8 +21681,13 @@ "und": "Minnesota Vikings", "sF": "28", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 3" }, { "date": "Sep 25, 1966", @@ -14859,7 +21697,12 @@ "sF": "28", "sU": "10", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 3" }, { "date": "Sep 25, 1966", @@ -14869,7 +21712,12 @@ "sF": "24", "sU": "13", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 3" }, { "date": "Sep 25, 1966", @@ -14879,7 +21727,12 @@ "sF": "35", "sU": "17", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 3" }, { "date": "Sep 25, 1966", @@ -14889,7 +21742,12 @@ "sF": "27", "sU": "33", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 3" }, { "date": "Sep 25, 1966", @@ -14899,7 +21757,12 @@ "sF": "43", "sU": "24", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 4" }, { "date": "Sep 25, 1966", @@ -14908,8 +21771,13 @@ "und": "Houston Oilers", "sF": "27", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 4" }, { "date": "Sep 25, 1966", @@ -14918,8 +21786,13 @@ "und": "Denver Broncos", "sF": "16", "sU": "7", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 4" }, { "date": "Sep 25, 1966", @@ -14928,8 +21801,13 @@ "und": "Oakland Raiders", "sF": "29", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 4" }, { "date": "Sep 30, 1966", @@ -14939,11 +21817,12 @@ "sF": "34", "sU": "3", "spread": "9", - "ou": "49", + "ou": null, "pScore": { - "sU": 20, - "sF": 29 - } + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 4" }, { "date": "Oct 2, 1966", @@ -14953,7 +21832,12 @@ "sF": "47", "sU": "14", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 4" }, { "date": "Oct 2, 1966", @@ -14962,8 +21846,13 @@ "und": "Detroit Lions", "sF": "23", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 4" }, { "date": "Oct 2, 1966", @@ -14973,7 +21862,12 @@ "sF": "13", "sU": "10", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 4" }, { "date": "Oct 2, 1966", @@ -14983,7 +21877,12 @@ "sF": "28", "sU": "7", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 4" }, { "date": "Oct 2, 1966", @@ -14993,7 +21892,12 @@ "sF": "41", "sU": "10", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 4" }, { "date": "Oct 2, 1966", @@ -15002,8 +21906,13 @@ "und": "Pittsburgh Steelers", "sF": "24", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 4" }, { "date": "Oct 2, 1966", @@ -15012,8 +21921,13 @@ "und": "Boston Patriots", "sF": "24", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 5" }, { "date": "Oct 2, 1966", @@ -15023,7 +21937,12 @@ "sF": "38", "sU": "40", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 5" }, { "date": "Oct 2, 1966", @@ -15033,7 +21952,12 @@ "sF": "14", "sU": "29", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 5" }, { "date": "Oct 2, 1966", @@ -15043,7 +21967,12 @@ "sF": "44", "sU": "10", "spread": "26", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 5" }, { "date": "Oct 8, 1966", @@ -15052,8 +21981,13 @@ "und": "Pittsburgh Steelers", "sF": "41", "sU": "10", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 5" }, { "date": "Oct 9, 1966", @@ -15063,7 +21997,12 @@ "sF": "17", "sU": "27", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 5" }, { "date": "Oct 9, 1966", @@ -15072,8 +22011,13 @@ "und": "Philadelphia Eagles", "sF": "56", "sU": "7", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 5" }, { "date": "Oct 9, 1966", @@ -15083,7 +22027,12 @@ "sF": "14", "sU": "7", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 5" }, { "date": "Oct 9, 1966", @@ -15093,11 +22042,12 @@ "sF": "20", "sU": "21", "spread": "14", - "ou": "49", + "ou": null, "pScore": { - "sU": 17.5, - "sF": 31.5 - } + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 5" }, { "date": "Oct 9, 1966", @@ -15106,8 +22056,13 @@ "und": "New York Giants", "sF": "24", "sU": "19", - "spread": "20", - "ou": -1 + "spread": "20.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 5" }, { "date": "Oct 9, 1966", @@ -15116,8 +22071,13 @@ "und": "Atlanta Falcons", "sF": "33", "sU": "20", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 5" }, { "date": "Oct 8, 1966", @@ -15126,8 +22086,13 @@ "und": "Boston Patriots", "sF": "10", "sU": "20", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 6" }, { "date": "Oct 8, 1966", @@ -15137,7 +22102,12 @@ "sF": "37", "sU": "10", "spread": "21", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 6" }, { "date": "Oct 8, 1966", @@ -15147,7 +22117,12 @@ "sF": "16", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 6" }, { "date": "Oct 9, 1966", @@ -15157,7 +22132,12 @@ "sF": "21", "sU": "10", "spread": "24", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 6" }, { "date": "Oct 16, 1966", @@ -15166,8 +22146,13 @@ "und": "Atlanta Falcons", "sF": "44", "sU": "7", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 6" }, { "date": "Oct 16, 1966", @@ -15177,7 +22162,12 @@ "sF": "45", "sU": "14", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 6" }, { "date": "Oct 16, 1966", @@ -15187,7 +22177,12 @@ "sF": "17", "sU": "0", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 6" }, { "date": "Oct 16, 1966", @@ -15196,8 +22191,13 @@ "und": "Minnesota Vikings", "sF": "7", "sU": "35", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 6" }, { "date": "Oct 16, 1966", @@ -15207,7 +22207,12 @@ "sF": "10", "sU": "13", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 6" }, { "date": "Oct 16, 1966", @@ -15216,8 +22221,13 @@ "und": "Pittsburgh Steelers", "sF": "31", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 6" }, { "date": "Oct 16, 1966", @@ -15226,8 +22236,13 @@ "und": "St Louis Cardinals", "sF": "10", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 6" }, { "date": "Oct 16, 1966", @@ -15237,7 +22252,12 @@ "sF": "17", "sU": "17", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 7" }, { "date": "Oct 16, 1966", @@ -15247,7 +22267,12 @@ "sF": "0", "sU": "24", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 7" }, { "date": "Oct 16, 1966", @@ -15257,7 +22282,12 @@ "sF": "13", "sU": "34", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 7" }, { "date": "Oct 16, 1966", @@ -15267,7 +22297,12 @@ "sF": "7", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 7" }, { "date": "Oct 23, 1966", @@ -15277,7 +22312,12 @@ "sF": "20", "sU": "17", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 7" }, { "date": "Oct 23, 1966", @@ -15287,7 +22327,12 @@ "sF": "17", "sU": "10", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 7" }, { "date": "Oct 23, 1966", @@ -15297,7 +22342,12 @@ "sF": "21", "sU": "30", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 7" }, { "date": "Oct 23, 1966", @@ -15307,7 +22357,12 @@ "sF": "56", "sU": "3", "spread": "26", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 7" }, { "date": "Oct 23, 1966", @@ -15317,7 +22372,12 @@ "sF": "31", "sU": "3", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 7" }, { "date": "Oct 23, 1966", @@ -15327,7 +22387,12 @@ "sF": "27", "sU": "24", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 7" }, { "date": "Oct 23, 1966", @@ -15336,8 +22401,13 @@ "und": "Washington Redskins", "sF": "20", "sU": "26", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 7" }, { "date": "Oct 23, 1966", @@ -15346,8 +22416,13 @@ "und": "Boston Patriots", "sF": "17", "sU": "35", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 8" }, { "date": "Oct 23, 1966", @@ -15357,7 +22432,12 @@ "sF": "56", "sU": "10", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 8" }, { "date": "Oct 23, 1966", @@ -15367,7 +22447,12 @@ "sF": "13", "sU": "20", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 8" }, { "date": "Oct 23, 1966", @@ -15377,7 +22462,12 @@ "sF": "21", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 8" }, { "date": "Oct 30, 1966", @@ -15387,7 +22477,12 @@ "sF": "49", "sU": "17", "spread": "23", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 8" }, { "date": "Oct 30, 1966", @@ -15397,7 +22492,12 @@ "sF": "52", "sU": "21", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 8" }, { "date": "Oct 30, 1966", @@ -15407,7 +22507,12 @@ "sF": "31", "sU": "7", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 8" }, { "date": "Oct 30, 1966", @@ -15417,7 +22522,12 @@ "sF": "17", "sU": "3", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 8" }, { "date": "Oct 30, 1966", @@ -15426,12 +22536,13 @@ "und": "San Francisco 49ers", "sF": "28", "sU": "3", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 8" }, { "date": "Oct 30, 1966", @@ -15440,8 +22551,13 @@ "und": "Washington Redskins", "sF": "13", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 8" }, { "date": "Oct 30, 1966", @@ -15450,8 +22566,13 @@ "und": "Oakland Raiders", "sF": "24", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 9" }, { "date": "Oct 30, 1966", @@ -15461,7 +22582,12 @@ "sF": "48", "sU": "23", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 9" }, { "date": "Oct 30, 1966", @@ -15471,7 +22597,12 @@ "sF": "23", "sU": "33", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 9" }, { "date": "Oct 30, 1966", @@ -15481,7 +22612,12 @@ "sF": "24", "sU": "17", "spread": "21", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 9" }, { "date": "Nov 6, 1966", @@ -15490,8 +22626,13 @@ "und": "Washington Redskins", "sF": "37", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 9" }, { "date": "Nov 6, 1966", @@ -15501,7 +22642,12 @@ "sF": "10", "sU": "10", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 9" }, { "date": "Nov 6, 1966", @@ -15510,8 +22656,13 @@ "und": "Minnesota Vikings", "sF": "17", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 9" }, { "date": "Nov 6, 1966", @@ -15520,8 +22671,13 @@ "und": "New York Giants", "sF": "20", "sU": "17", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 9" }, { "date": "Nov 6, 1966", @@ -15531,7 +22687,12 @@ "sF": "23", "sU": "24", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 9" }, { "date": "Nov 6, 1966", @@ -15541,7 +22702,12 @@ "sF": "6", "sU": "16", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 9" }, { "date": "Nov 6, 1966", @@ -15551,11 +22717,12 @@ "sF": "13", "sU": "21", "spread": "3", - "ou": "49", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 9" }, { "date": "Nov 6, 1966", @@ -15564,8 +22731,13 @@ "und": "Denver Broncos", "sF": "10", "sU": "17", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 10" }, { "date": "Nov 6, 1966", @@ -15575,7 +22747,12 @@ "sF": "24", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 10" }, { "date": "Nov 6, 1966", @@ -15584,8 +22761,13 @@ "und": "Miami Dolphins", "sF": "29", "sU": "0", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 10" }, { "date": "Nov 6, 1966", @@ -15595,7 +22777,12 @@ "sF": "38", "sU": "23", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 10" }, { "date": "Nov 13, 1966", @@ -15605,7 +22792,12 @@ "sF": "19", "sU": "7", "spread": "28", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 10" }, { "date": "Nov 13, 1966", @@ -15614,12 +22806,13 @@ "und": "San Francisco 49ers", "sF": "30", "sU": "30", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 10" }, { "date": "Nov 13, 1966", @@ -15629,7 +22822,12 @@ "sF": "27", "sU": "7", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 10" }, { "date": "Nov 13, 1966", @@ -15638,8 +22836,13 @@ "und": "New York Giants", "sF": "55", "sU": "14", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 10" }, { "date": "Nov 13, 1966", @@ -15648,8 +22851,13 @@ "und": "Detroit Lions", "sF": "31", "sU": "32", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 10" }, { "date": "Nov 13, 1966", @@ -15658,8 +22866,13 @@ "und": "Pittsburgh Steelers", "sF": "9", "sU": "30", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 10" }, { "date": "Nov 13, 1966", @@ -15668,8 +22881,13 @@ "und": "Washington Redskins", "sF": "31", "sU": "30", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 10" }, { "date": "Nov 13, 1966", @@ -15679,7 +22897,12 @@ "sF": "27", "sU": "21", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 11" }, { "date": "Nov 13, 1966", @@ -15688,8 +22911,13 @@ "und": "New York Jets", "sF": "14", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 11" }, { "date": "Nov 13, 1966", @@ -15699,7 +22927,12 @@ "sF": "34", "sU": "16", "spread": "23", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 11" }, { "date": "Nov 13, 1966", @@ -15709,7 +22942,12 @@ "sF": "19", "sU": "41", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 11" }, { "date": "Nov 20, 1966", @@ -15719,7 +22957,12 @@ "sF": "14", "sU": "3", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 11" }, { "date": "Nov 20, 1966", @@ -15728,8 +22971,13 @@ "und": "Detroit Lions", "sF": "14", "sU": "20", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 11" }, { "date": "Nov 20, 1966", @@ -15739,7 +22987,12 @@ "sF": "13", "sU": "6", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 11" }, { "date": "Nov 20, 1966", @@ -15749,7 +23002,12 @@ "sF": "21", "sU": "6", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 11" }, { "date": "Nov 20, 1966", @@ -15759,7 +23017,12 @@ "sF": "16", "sU": "27", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 11" }, { "date": "Nov 20, 1966", @@ -15768,8 +23031,13 @@ "und": "Pittsburgh Steelers", "sF": "20", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 11" }, { "date": "Nov 20, 1966", @@ -15778,8 +23046,13 @@ "und": "Philadelphia Eagles", "sF": "34", "sU": "35", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 11" }, { "date": "Nov 20, 1966", @@ -15789,7 +23062,12 @@ "sF": "17", "sU": "3", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 12" }, { "date": "Nov 20, 1966", @@ -15798,8 +23076,13 @@ "und": "Houston Oilers", "sF": "42", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 12" }, { "date": "Nov 20, 1966", @@ -15809,7 +23092,12 @@ "sF": "27", "sU": "27", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 12" }, { "date": "Nov 20, 1966", @@ -15818,8 +23106,13 @@ "und": "Miami Dolphins", "sF": "30", "sU": "13", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 12" }, { "date": "Nov 24, 1966", @@ -15828,8 +23121,13 @@ "und": "Cleveland Browns", "sF": "26", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 12" }, { "date": "Nov 24, 1966", @@ -15839,11 +23137,12 @@ "sF": "14", "sU": "41", "spread": "13", - "ou": "49", + "ou": null, "pScore": { - "sU": 18, - "sF": 31 - } + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 12" }, { "date": "Nov 27, 1966", @@ -15852,8 +23151,13 @@ "und": "Los Angeles Rams", "sF": "7", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 12" }, { "date": "Nov 27, 1966", @@ -15863,7 +23167,12 @@ "sF": "23", "sU": "6", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 12" }, { "date": "Nov 27, 1966", @@ -15873,7 +23182,12 @@ "sF": "28", "sU": "16", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 12" }, { "date": "Nov 27, 1966", @@ -15882,8 +23196,13 @@ "und": "Pittsburgh Steelers", "sF": "6", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 12" }, { "date": "Nov 27, 1966", @@ -15893,7 +23212,12 @@ "sF": "72", "sU": "41", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 12" }, { "date": "Nov 27, 1966", @@ -15903,7 +23227,12 @@ "sF": "17", "sU": "20", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 13" }, { "date": "Nov 27, 1966", @@ -15913,7 +23242,12 @@ "sF": "20", "sU": "14", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 13" }, { "date": "Nov 27, 1966", @@ -15923,7 +23257,12 @@ "sF": "32", "sU": "24", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 13" }, { "date": "Dec 4, 1966", @@ -15933,7 +23272,12 @@ "sF": "21", "sU": "16", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 13" }, { "date": "Dec 4, 1966", @@ -15943,7 +23287,12 @@ "sF": "49", "sU": "40", "spread": "25", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 13" }, { "date": "Dec 4, 1966", @@ -15953,7 +23302,12 @@ "sF": "31", "sU": "17", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 13" }, { "date": "Dec 4, 1966", @@ -15963,11 +23317,12 @@ "sF": "20", "sU": "7", "spread": "12", - "ou": "49", + "ou": null, "pScore": { - "sU": 18.5, - "sF": 30.5 - } + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 13" }, { "date": "Dec 4, 1966", @@ -15977,7 +23332,12 @@ "sF": "23", "sU": "3", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 13" }, { "date": "Dec 4, 1966", @@ -15987,7 +23347,12 @@ "sF": "13", "sU": "20", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 13" }, { "date": "Dec 4, 1966", @@ -15997,7 +23362,12 @@ "sF": "27", "sU": "23", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 13" }, { "date": "Dec 3, 1966", @@ -16007,7 +23377,12 @@ "sF": "28", "sU": "28", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 14" }, { "date": "Dec 4, 1966", @@ -16017,7 +23392,12 @@ "sF": "3", "sU": "14", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 14" }, { "date": "Dec 4, 1966", @@ -16027,7 +23407,12 @@ "sF": "17", "sU": "7", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 14" }, { "date": "Dec 4, 1966", @@ -16037,7 +23422,12 @@ "sF": "28", "sU": "22", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 14" }, { "date": "Dec 10, 1966", @@ -16046,8 +23436,13 @@ "und": "Baltimore Colts", "sF": "14", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 14" }, { "date": "Dec 11, 1966", @@ -16057,7 +23452,12 @@ "sF": "10", "sU": "16", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 14" }, { "date": "Dec 11, 1966", @@ -16066,8 +23466,13 @@ "und": "Washington Redskins", "sF": "31", "sU": "34", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 14" }, { "date": "Dec 11, 1966", @@ -16077,7 +23482,12 @@ "sF": "47", "sU": "28", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 14" }, { "date": "Dec 11, 1966", @@ -16086,8 +23496,13 @@ "und": "Philadelphia Eagles", "sF": "21", "sU": "33", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 14" }, { "date": "Dec 11, 1966", @@ -16097,7 +23512,12 @@ "sF": "41", "sU": "14", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 14" }, { "date": "Dec 11, 1966", @@ -16107,7 +23527,12 @@ "sF": "38", "sU": "14", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 15" }, { "date": "Dec 11, 1966", @@ -16117,7 +23542,12 @@ "sF": "19", "sU": "18", "spread": "18", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 15" }, { "date": "Dec 11, 1966", @@ -16127,7 +23557,12 @@ "sF": "28", "sU": "10", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 15" }, { "date": "Dec 11, 1966", @@ -16137,7 +23572,12 @@ "sF": "42", "sU": "27", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 15" }, { "date": "Dec 17, 1966", @@ -16146,8 +23586,13 @@ "und": "St Louis Cardinals", "sF": "38", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 15" }, { "date": "Dec 18, 1966", @@ -16156,8 +23601,13 @@ "und": "Atlanta Falcons", "sF": "57", "sU": "33", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 15" }, { "date": "Dec 18, 1966", @@ -16167,7 +23617,12 @@ "sF": "28", "sU": "41", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 15" }, { "date": "Dec 18, 1966", @@ -16177,7 +23632,12 @@ "sF": "23", "sU": "27", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 15" }, { "date": "Dec 18, 1966", @@ -16187,7 +23647,12 @@ "sF": "17", "sU": "7", "spread": "23", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 15" }, { "date": "Dec 18, 1966", @@ -16197,7 +23662,12 @@ "sF": "14", "sU": "30", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 15" }, { "date": "Dec 18, 1966", @@ -16206,8 +23676,13 @@ "und": "Philadelphia Eagles", "sF": "28", "sU": "37", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 15" }, { "date": "Dec 17, 1966", @@ -16217,7 +23692,12 @@ "sF": "28", "sU": "38", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 16" }, { "date": "Dec 18, 1966", @@ -16227,7 +23707,12 @@ "sF": "38", "sU": "21", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 16" }, { "date": "Dec 18, 1966", @@ -16237,7 +23722,12 @@ "sF": "29", "sU": "28", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 16" }, { "date": "Dec 18, 1966", @@ -16247,7 +23737,12 @@ "sF": "17", "sU": "27", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 AFL Regular Season - Week 16" }, { "date": "Jan 8, 1967", @@ -16257,7 +23752,12 @@ "sF": "20", "sU": "14", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 NFL Regular Season - Week 20" }, { "date": "Jan 1, 1967", @@ -16266,8 +23766,13 @@ "und": "Buffalo Bills", "sF": "31", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 Playoffs" }, { "date": "Jan 1, 1967", @@ -16277,7 +23782,12 @@ "sF": "34", "sU": "27", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 Playoffs" }, { "date": "Jan 15, 1967", @@ -16287,7 +23797,12 @@ "sF": "35", "sU": "10", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1966 Playoffs" }, { "date": "Sep 3, 1967", @@ -16297,7 +23812,12 @@ "sF": "26", "sU": "21", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 1" }, { "date": "Sep 17, 1967", @@ -16307,7 +23827,12 @@ "sF": "38", "sU": "31", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 1" }, { "date": "Sep 17, 1967", @@ -16316,8 +23841,13 @@ "und": "Dallas Cowboys", "sF": "14", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 1" }, { "date": "Sep 17, 1967", @@ -16327,7 +23857,12 @@ "sF": "17", "sU": "17", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 1" }, { "date": "Sep 17, 1967", @@ -16336,8 +23871,13 @@ "und": "Minnesota Vikings", "sF": "27", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 1" }, { "date": "Sep 17, 1967", @@ -16347,7 +23887,12 @@ "sF": "27", "sU": "13", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 1" }, { "date": "Sep 17, 1967", @@ -16357,7 +23902,12 @@ "sF": "24", "sU": "35", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 1" }, { "date": "Sep 17, 1967", @@ -16367,7 +23917,12 @@ "sF": "41", "sU": "13", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 1" }, { "date": "Sep 17, 1967", @@ -16376,8 +23931,13 @@ "und": "New York Giants", "sF": "20", "sU": "37", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 1" }, { "date": "Sep 9, 1967", @@ -16386,8 +23946,13 @@ "und": "Houston Oilers", "sF": "25", "sU": "20", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 2" }, { "date": "Sep 9, 1967", @@ -16397,7 +23962,12 @@ "sF": "28", "sU": "14", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 2" }, { "date": "Sep 10, 1967", @@ -16406,8 +23976,13 @@ "und": "New York Jets", "sF": "20", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 2" }, { "date": "Sep 10, 1967", @@ -16416,8 +23991,13 @@ "und": "Denver Broncos", "sF": "51", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 2" }, { "date": "Sep 22, 1967", @@ -16427,7 +24007,12 @@ "sF": "39", "sU": "3", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 2" }, { "date": "Sep 24, 1967", @@ -16437,7 +24022,12 @@ "sF": "38", "sU": "24", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 2" }, { "date": "Sep 24, 1967", @@ -16447,7 +24037,12 @@ "sF": "14", "sU": "31", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 2" }, { "date": "Sep 24, 1967", @@ -16457,7 +24052,12 @@ "sF": "13", "sU": "10", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 2" }, { "date": "Sep 24, 1967", @@ -16467,7 +24067,12 @@ "sF": "30", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 2" }, { "date": "Sep 24, 1967", @@ -16477,7 +24082,12 @@ "sF": "38", "sU": "6", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 2" }, { "date": "Sep 24, 1967", @@ -16487,7 +24097,12 @@ "sF": "14", "sU": "28", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 2" }, { "date": "Sep 24, 1967", @@ -16497,7 +24112,12 @@ "sF": "38", "sU": "7", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 2" }, { "date": "Sep 17, 1967", @@ -16507,7 +24127,12 @@ "sF": "3", "sU": "20", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 3" }, { "date": "Sep 17, 1967", @@ -16517,7 +24142,12 @@ "sF": "35", "sU": "21", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 3" }, { "date": "Sep 17, 1967", @@ -16526,8 +24156,13 @@ "und": "Boston Patriots", "sF": "35", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 3" }, { "date": "Oct 1, 1967", @@ -16537,11 +24172,12 @@ "sF": "41", "sU": "7", "spread": "9", - "ou": "49", + "ou": null, "pScore": { - "sU": 20, - "sF": 29 - } + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 3" }, { "date": "Oct 1, 1967", @@ -16551,7 +24187,12 @@ "sF": "13", "sU": "35", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 3" }, { "date": "Oct 1, 1967", @@ -16561,7 +24202,12 @@ "sF": "23", "sU": "0", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 3" }, { "date": "Oct 1, 1967", @@ -16570,8 +24216,13 @@ "und": "Minnesota Vikings", "sF": "17", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 3" }, { "date": "Oct 1, 1967", @@ -16581,7 +24232,12 @@ "sF": "42", "sU": "7", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 3" }, { "date": "Oct 1, 1967", @@ -16590,8 +24246,13 @@ "und": "Pittsburgh Steelers", "sF": "34", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 3" }, { "date": "Oct 1, 1967", @@ -16601,7 +24262,12 @@ "sF": "28", "sU": "38", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 3" }, { "date": "Oct 1, 1967", @@ -16611,7 +24277,12 @@ "sF": "38", "sU": "34", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 3" }, { "date": "Sep 24, 1967", @@ -16620,8 +24291,13 @@ "und": "Boston Patriots", "sF": "0", "sU": "23", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 4" }, { "date": "Sep 24, 1967", @@ -16631,7 +24307,12 @@ "sF": "38", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 4" }, { "date": "Sep 24, 1967", @@ -16640,8 +24321,13 @@ "und": "Miami Dolphins", "sF": "24", "sU": "0", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 4" }, { "date": "Sep 24, 1967", @@ -16651,7 +24337,12 @@ "sF": "13", "sU": "3", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 4" }, { "date": "Oct 7, 1967", @@ -16660,8 +24351,13 @@ "und": "Pittsburgh Steelers", "sF": "21", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 4" }, { "date": "Oct 8, 1967", @@ -16671,7 +24367,12 @@ "sF": "38", "sU": "7", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 4" }, { "date": "Oct 8, 1967", @@ -16681,7 +24382,12 @@ "sF": "24", "sU": "3", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 4" }, { "date": "Oct 8, 1967", @@ -16691,7 +24397,12 @@ "sF": "27", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 4" }, { "date": "Oct 8, 1967", @@ -16701,11 +24412,12 @@ "sF": "24", "sU": "27", "spread": "14", - "ou": "49", + "ou": null, "pScore": { - "sU": 17.5, - "sF": 31.5 - } + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 4" }, { "date": "Oct 8, 1967", @@ -16714,8 +24426,13 @@ "und": "Minnesota Vikings", "sF": "34", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 4" }, { "date": "Oct 8, 1967", @@ -16725,7 +24442,12 @@ "sF": "27", "sU": "21", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 4" }, { "date": "Oct 8, 1967", @@ -16735,7 +24457,12 @@ "sF": "17", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 4" }, { "date": "Oct 1, 1967", @@ -16745,7 +24472,12 @@ "sF": "10", "sU": "6", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 5" }, { "date": "Oct 1, 1967", @@ -16755,7 +24487,12 @@ "sF": "29", "sU": "7", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 5" }, { "date": "Oct 1, 1967", @@ -16764,8 +24501,13 @@ "und": "Oakland Raiders", "sF": "21", "sU": "23", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 5" }, { "date": "Oct 15, 1967", @@ -16775,7 +24517,12 @@ "sF": "20", "sU": "20", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 5" }, { "date": "Oct 15, 1967", @@ -16785,7 +24532,12 @@ "sF": "24", "sU": "24", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 5" }, { "date": "Oct 15, 1967", @@ -16795,7 +24547,12 @@ "sF": "20", "sU": "16", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 5" }, { "date": "Oct 15, 1967", @@ -16805,7 +24562,12 @@ "sF": "14", "sU": "10", "spread": "21", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 5" }, { "date": "Oct 15, 1967", @@ -16815,7 +24577,12 @@ "sF": "7", "sU": "10", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 5" }, { "date": "Oct 15, 1967", @@ -16824,12 +24591,13 @@ "und": "San Francisco 49ers", "sF": "27", "sU": "28", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": null, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 5" }, { "date": "Oct 15, 1967", @@ -16839,7 +24607,12 @@ "sF": "24", "sU": "27", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 5" }, { "date": "Oct 7, 1967", @@ -16849,7 +24622,12 @@ "sF": "14", "sU": "27", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 6" }, { "date": "Oct 8, 1967", @@ -16859,7 +24637,12 @@ "sF": "16", "sU": "17", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 6" }, { "date": "Oct 8, 1967", @@ -16869,7 +24652,12 @@ "sF": "41", "sU": "0", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 6" }, { "date": "Oct 8, 1967", @@ -16879,7 +24667,12 @@ "sF": "31", "sU": "31", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 6" }, { "date": "Oct 22, 1967", @@ -16889,7 +24682,12 @@ "sF": "24", "sU": "0", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 6" }, { "date": "Oct 22, 1967", @@ -16899,7 +24697,12 @@ "sF": "24", "sU": "3", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 6" }, { "date": "Oct 22, 1967", @@ -16909,7 +24712,12 @@ "sF": "28", "sU": "28", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 6" }, { "date": "Oct 22, 1967", @@ -16919,7 +24727,12 @@ "sF": "20", "sU": "20", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 6" }, { "date": "Oct 22, 1967", @@ -16929,7 +24742,12 @@ "sF": "48", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 6" }, { "date": "Oct 22, 1967", @@ -16938,8 +24756,13 @@ "und": "Pittsburgh Steelers", "sF": "24", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 6" }, { "date": "Oct 22, 1967", @@ -16949,7 +24772,12 @@ "sF": "27", "sU": "13", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 6" }, { "date": "Oct 22, 1967", @@ -16959,7 +24787,12 @@ "sF": "48", "sU": "14", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 6" }, { "date": "Oct 15, 1967", @@ -16969,7 +24802,12 @@ "sF": "41", "sU": "10", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 7" }, { "date": "Oct 15, 1967", @@ -16978,8 +24816,13 @@ "und": "Buffalo Bills", "sF": "24", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 7" }, { "date": "Oct 15, 1967", @@ -16989,7 +24832,12 @@ "sF": "28", "sU": "28", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 7" }, { "date": "Oct 29, 1967", @@ -16999,7 +24847,12 @@ "sF": "20", "sU": "21", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 7" }, { "date": "Oct 29, 1967", @@ -17009,7 +24862,12 @@ "sF": "28", "sU": "17", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 7" }, { "date": "Oct 29, 1967", @@ -17019,7 +24877,12 @@ "sF": "14", "sU": "10", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 7" }, { "date": "Oct 29, 1967", @@ -17029,7 +24892,12 @@ "sF": "34", "sU": "38", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 7" }, { "date": "Oct 29, 1967", @@ -17039,7 +24907,12 @@ "sF": "14", "sU": "21", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 7" }, { "date": "Oct 29, 1967", @@ -17049,7 +24922,12 @@ "sF": "3", "sU": "45", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 7" }, { "date": "Oct 29, 1967", @@ -17059,7 +24937,12 @@ "sF": "17", "sU": "13", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 7" }, { "date": "Oct 30, 1967", @@ -17069,7 +24952,12 @@ "sF": "31", "sU": "23", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 7" }, { "date": "Oct 22, 1967", @@ -17079,7 +24967,12 @@ "sF": "14", "sU": "48", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 8" }, { "date": "Oct 22, 1967", @@ -17089,7 +24982,12 @@ "sF": "38", "sU": "21", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 8" }, { "date": "Oct 22, 1967", @@ -17099,7 +24997,12 @@ "sF": "19", "sU": "24", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 8" }, { "date": "Oct 22, 1967", @@ -17109,7 +25012,12 @@ "sF": "33", "sU": "14", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 8" }, { "date": "Nov 5, 1967", @@ -17118,8 +25026,13 @@ "und": "Green Bay Packers", "sF": "13", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 8" }, { "date": "Nov 5, 1967", @@ -17129,7 +25042,12 @@ "sF": "37", "sU": "7", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 8" }, { "date": "Nov 5, 1967", @@ -17138,8 +25056,13 @@ "und": "Chicago Bears", "sF": "13", "sU": "27", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 8" }, { "date": "Nov 5, 1967", @@ -17149,7 +25072,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 8" }, { "date": "Nov 5, 1967", @@ -17158,8 +25086,13 @@ "und": "New Orleans Saints", "sF": "24", "sU": "31", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 8" }, { "date": "Nov 5, 1967", @@ -17169,7 +25102,12 @@ "sF": "34", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 8" }, { "date": "Nov 5, 1967", @@ -17179,11 +25117,12 @@ "sF": "17", "sU": "7", "spread": "9", - "ou": "49", + "ou": null, "pScore": { - "sU": 20, - "sF": 29 - } + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 8" }, { "date": "Oct 29, 1967", @@ -17193,7 +25132,12 @@ "sF": "10", "sU": "3", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 9" }, { "date": "Oct 29, 1967", @@ -17203,7 +25147,12 @@ "sF": "52", "sU": "9", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 9" }, { "date": "Oct 29, 1967", @@ -17213,7 +25162,12 @@ "sF": "30", "sU": "23", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 9" }, { "date": "Oct 29, 1967", @@ -17222,8 +25176,13 @@ "und": "San Diego Chargers", "sF": "51", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 9" }, { "date": "Nov 12, 1967", @@ -17233,7 +25192,12 @@ "sF": "49", "sU": "7", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 9" }, { "date": "Nov 12, 1967", @@ -17243,7 +25207,12 @@ "sF": "34", "sU": "7", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 9" }, { "date": "Nov 12, 1967", @@ -17253,7 +25222,12 @@ "sF": "55", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 9" }, { "date": "Nov 12, 1967", @@ -17263,7 +25237,12 @@ "sF": "33", "sU": "17", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 9" }, { "date": "Nov 12, 1967", @@ -17273,7 +25252,12 @@ "sF": "10", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 9" }, { "date": "Nov 12, 1967", @@ -17283,7 +25267,12 @@ "sF": "27", "sU": "10", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 9" }, { "date": "Nov 12, 1967", @@ -17293,7 +25282,12 @@ "sF": "14", "sU": "14", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 9" }, { "date": "Nov 12, 1967", @@ -17302,12 +25296,13 @@ "und": "San Francisco 49ers", "sF": "31", "sU": "28", - "spread": "1", - "ou": "49", + "spread": "1.5", + "ou": null, "pScore": { - "sU": 24, - "sF": 25 - } + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 9" }, { "date": "Nov 5, 1967", @@ -17316,8 +25311,13 @@ "und": "Houston Oilers", "sF": "18", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 10" }, { "date": "Nov 5, 1967", @@ -17326,8 +25326,13 @@ "und": "Miami Dolphins", "sF": "35", "sU": "13", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 10" }, { "date": "Nov 5, 1967", @@ -17337,7 +25342,12 @@ "sF": "21", "sU": "17", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 10" }, { "date": "Nov 5, 1967", @@ -17347,7 +25357,12 @@ "sF": "42", "sU": "18", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 10" }, { "date": "Nov 19, 1967", @@ -17357,7 +25372,12 @@ "sF": "31", "sU": "3", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 10" }, { "date": "Nov 19, 1967", @@ -17367,7 +25387,12 @@ "sF": "41", "sU": "7", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 10" }, { "date": "Nov 19, 1967", @@ -17376,8 +25401,13 @@ "und": "St Louis Cardinals", "sF": "30", "sU": "3", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 10" }, { "date": "Nov 19, 1967", @@ -17387,7 +25417,12 @@ "sF": "14", "sU": "10", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 10" }, { "date": "Nov 19, 1967", @@ -17397,7 +25432,12 @@ "sF": "20", "sU": "27", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 10" }, { "date": "Nov 19, 1967", @@ -17406,12 +25446,13 @@ "und": "San Francisco 49ers", "sF": "13", "sU": "0", - "spread": "13", - "ou": "49", + "spread": "13.5", + "ou": null, "pScore": { - "sU": 18, - "sF": 31 - } + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 10" }, { "date": "Nov 19, 1967", @@ -17420,8 +25461,13 @@ "und": "Pittsburgh Steelers", "sF": "28", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 10" }, { "date": "Nov 19, 1967", @@ -17431,7 +25477,12 @@ "sF": "48", "sU": "21", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 10" }, { "date": "Nov 12, 1967", @@ -17441,7 +25492,12 @@ "sF": "33", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 11" }, { "date": "Nov 12, 1967", @@ -17451,7 +25507,12 @@ "sF": "20", "sU": "18", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 11" }, { "date": "Nov 12, 1967", @@ -17461,7 +25522,12 @@ "sF": "20", "sU": "10", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 11" }, { "date": "Nov 12, 1967", @@ -17471,7 +25537,12 @@ "sF": "24", "sU": "0", "spread": "21", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 11" }, { "date": "Nov 23, 1967", @@ -17480,8 +25551,13 @@ "und": "St Louis Cardinals", "sF": "46", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 11" }, { "date": "Nov 23, 1967", @@ -17490,8 +25566,13 @@ "und": "Detroit Lions", "sF": "31", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 11" }, { "date": "Nov 26, 1967", @@ -17500,8 +25581,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 11" }, { "date": "Nov 26, 1967", @@ -17510,8 +25596,13 @@ "und": "Washington Redskins", "sF": "42", "sU": "37", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 11" }, { "date": "Nov 26, 1967", @@ -17520,8 +25611,13 @@ "und": "Atlanta Falcons", "sF": "27", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 11" }, { "date": "Nov 26, 1967", @@ -17530,8 +25626,13 @@ "und": "New York Giants", "sF": "7", "sU": "44", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 11" }, { "date": "Nov 26, 1967", @@ -17540,8 +25641,13 @@ "und": "Minnesota Vikings", "sF": "27", "sU": "41", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 11" }, { "date": "Nov 26, 1967", @@ -17550,12 +25656,13 @@ "und": "San Francisco 49ers", "sF": "26", "sU": "9", - "spread": "10", - "ou": "49", + "spread": "10.5", + "ou": null, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 11" }, { "date": "Nov 19, 1967", @@ -17564,8 +25671,13 @@ "und": "Boston Patriots", "sF": "29", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 12" }, { "date": "Nov 19, 1967", @@ -17575,7 +25687,12 @@ "sF": "20", "sU": "21", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 12" }, { "date": "Nov 19, 1967", @@ -17584,8 +25701,13 @@ "und": "San Diego Chargers", "sF": "16", "sU": "17", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 12" }, { "date": "Nov 19, 1967", @@ -17595,7 +25717,12 @@ "sF": "31", "sU": "17", "spread": "27", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 12" }, { "date": "Dec 3, 1967", @@ -17605,7 +25732,12 @@ "sF": "23", "sU": "17", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 12" }, { "date": "Dec 3, 1967", @@ -17615,7 +25747,12 @@ "sF": "24", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 12" }, { "date": "Dec 3, 1967", @@ -17625,7 +25762,12 @@ "sF": "14", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 12" }, { "date": "Dec 3, 1967", @@ -17635,7 +25777,12 @@ "sF": "20", "sU": "3", "spread": "24", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 12" }, { "date": "Dec 3, 1967", @@ -17645,7 +25792,12 @@ "sF": "30", "sU": "27", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 12" }, { "date": "Dec 3, 1967", @@ -17654,12 +25806,13 @@ "und": "San Francisco 49ers", "sF": "28", "sU": "14", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 12" }, { "date": "Dec 3, 1967", @@ -17669,7 +25822,12 @@ "sF": "31", "sU": "20", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 12" }, { "date": "Dec 3, 1967", @@ -17678,8 +25836,13 @@ "und": "Philadelphia Eagles", "sF": "35", "sU": "35", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 12" }, { "date": "Nov 23, 1967", @@ -17688,8 +25851,13 @@ "und": "Oakland Raiders", "sF": "22", "sU": "44", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 13" }, { "date": "Nov 23, 1967", @@ -17698,8 +25866,13 @@ "und": "Denver Broncos", "sF": "24", "sU": "20", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 13" }, { "date": "Nov 26, 1967", @@ -17708,8 +25881,13 @@ "und": "Boston Patriots", "sF": "27", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 13" }, { "date": "Nov 26, 1967", @@ -17718,8 +25896,13 @@ "und": "Miami Dolphins", "sF": "14", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 13" }, { "date": "Dec 9, 1967", @@ -17728,8 +25911,13 @@ "und": "Green Bay Packers", "sF": "27", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 13" }, { "date": "Dec 10, 1967", @@ -17738,8 +25926,13 @@ "und": "Atlanta Falcons", "sF": "34", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 13" }, { "date": "Dec 10, 1967", @@ -17749,7 +25942,12 @@ "sF": "30", "sU": "10", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 13" }, { "date": "Dec 10, 1967", @@ -17759,7 +25957,12 @@ "sF": "10", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 13" }, { "date": "Dec 10, 1967", @@ -17769,7 +25972,12 @@ "sF": "38", "sU": "17", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 13" }, { "date": "Dec 10, 1967", @@ -17778,8 +25986,13 @@ "und": "Detroit Lions", "sF": "7", "sU": "30", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 13" }, { "date": "Dec 10, 1967", @@ -17788,8 +26001,13 @@ "und": "Pittsburgh Steelers", "sF": "15", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 13" }, { "date": "Dec 10, 1967", @@ -17798,8 +26016,13 @@ "und": "St Louis Cardinals", "sF": "20", "sU": "16", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 13" }, { "date": "Dec 3, 1967", @@ -17809,7 +26032,12 @@ "sF": "17", "sU": "14", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 14" }, { "date": "Dec 3, 1967", @@ -17819,7 +26047,12 @@ "sF": "23", "sU": "13", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 14" }, { "date": "Dec 3, 1967", @@ -17829,7 +26062,12 @@ "sF": "24", "sU": "33", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 14" }, { "date": "Dec 3, 1967", @@ -17839,7 +26077,12 @@ "sF": "41", "sU": "21", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 14" }, { "date": "Dec 16, 1967", @@ -17849,11 +26092,12 @@ "sF": "16", "sU": "24", "spread": "4", - "ou": "49", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 14" }, { "date": "Dec 17, 1967", @@ -17862,8 +26106,13 @@ "und": "Atlanta Falcons", "sF": "23", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 14" }, { "date": "Dec 17, 1967", @@ -17873,7 +26122,12 @@ "sF": "14", "sU": "3", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 14" }, { "date": "Dec 17, 1967", @@ -17883,7 +26137,12 @@ "sF": "17", "sU": "24", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 14" }, { "date": "Dec 17, 1967", @@ -17892,8 +26151,13 @@ "und": "Baltimore Colts", "sF": "34", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 14" }, { "date": "Dec 17, 1967", @@ -17902,8 +26166,13 @@ "und": "St Louis Cardinals", "sF": "37", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 14" }, { "date": "Dec 17, 1967", @@ -17912,8 +26181,13 @@ "und": "New Orleans Saints", "sF": "14", "sU": "30", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 NFL Regular Season - Week 14" }, { "date": "Dec 9, 1967", @@ -17923,7 +26197,12 @@ "sF": "16", "sU": "44", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 15" }, { "date": "Dec 10, 1967", @@ -17932,8 +26211,13 @@ "und": "Houston Oilers", "sF": "19", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 15" }, { "date": "Dec 10, 1967", @@ -17942,8 +26226,13 @@ "und": "Miami Dolphins", "sF": "24", "sU": "41", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 15" }, { "date": "Dec 10, 1967", @@ -17952,8 +26241,13 @@ "und": "New York Jets", "sF": "21", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 15" }, { "date": "Dec 16, 1967", @@ -17962,8 +26256,13 @@ "und": "San Diego Chargers", "sF": "24", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 16" }, { "date": "Dec 17, 1967", @@ -17973,7 +26272,12 @@ "sF": "38", "sU": "24", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 16" }, { "date": "Dec 17, 1967", @@ -17983,7 +26287,12 @@ "sF": "41", "sU": "32", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 16" }, { "date": "Dec 17, 1967", @@ -17992,8 +26301,13 @@ "und": "New York Jets", "sF": "38", "sU": "29", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 16" }, { "date": "Dec 23, 1967", @@ -18002,8 +26316,13 @@ "und": "Miami Dolphins", "sF": "41", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 17" }, { "date": "Dec 24, 1967", @@ -18013,7 +26332,12 @@ "sF": "28", "sU": "21", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 AFL Regular Season - Week 17" }, { "date": "Dec 23, 1967", @@ -18023,7 +26347,12 @@ "sF": "7", "sU": "28", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 Playoffs" }, { "date": "Dec 24, 1967", @@ -18033,7 +26362,12 @@ "sF": "52", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 Playoffs" }, { "date": "Dec 31, 1967", @@ -18043,7 +26377,12 @@ "sF": "21", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 Playoffs" }, { "date": "Dec 31, 1967", @@ -18053,7 +26392,12 @@ "sF": "40", "sU": "7", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1967 Playoffs" }, { "date": "Jan 14, 1968", @@ -18062,8 +26406,13 @@ "und": "Oakland Raiders", "sF": "33", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 43.0, + "pScore": { + "sU": 14.75, + "sF": 28.25 + }, + "week": "1967 Playoffs" }, { "date": "Sep 6, 1968", @@ -18073,7 +26422,12 @@ "sF": "29", "sU": "13", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 1" }, { "date": "Sep 8, 1968", @@ -18082,8 +26436,13 @@ "und": "Boston Patriots", "sF": "7", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 1" }, { "date": "Sep 9, 1968", @@ -18093,7 +26452,12 @@ "sF": "26", "sU": "21", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 1" }, { "date": "Sep 14, 1968", @@ -18102,8 +26466,13 @@ "und": "Atlanta Falcons", "sF": "47", "sU": "7", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 1" }, { "date": "Sep 15, 1968", @@ -18113,11 +26482,12 @@ "sF": "27", "sU": "10", "spread": "10", - "ou": "49", + "ou": null, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 1" }, { "date": "Sep 15, 1968", @@ -18127,7 +26497,12 @@ "sF": "28", "sU": "38", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 1" }, { "date": "Sep 15, 1968", @@ -18137,7 +26512,12 @@ "sF": "59", "sU": "13", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 1" }, { "date": "Sep 15, 1968", @@ -18147,7 +26527,12 @@ "sF": "30", "sU": "13", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 1" }, { "date": "Sep 15, 1968", @@ -18157,7 +26542,12 @@ "sF": "24", "sU": "10", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 1" }, { "date": "Sep 15, 1968", @@ -18166,8 +26556,13 @@ "und": "Pittsburgh Steelers", "sF": "34", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 1" }, { "date": "Sep 16, 1968", @@ -18176,8 +26571,13 @@ "und": "St Louis Cardinals", "sF": "24", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 1" }, { "date": "Sep 14, 1968", @@ -18187,7 +26587,12 @@ "sF": "24", "sU": "10", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 2" }, { "date": "Sep 15, 1968", @@ -18197,7 +26602,12 @@ "sF": "48", "sU": "6", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 2" }, { "date": "Sep 15, 1968", @@ -18207,7 +26617,12 @@ "sF": "24", "sU": "10", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 2" }, { "date": "Sep 15, 1968", @@ -18216,8 +26631,13 @@ "und": "New York Jets", "sF": "19", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 2" }, { "date": "Sep 22, 1968", @@ -18227,7 +26647,12 @@ "sF": "28", "sU": "20", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 2" }, { "date": "Sep 22, 1968", @@ -18237,7 +26662,12 @@ "sF": "28", "sU": "7", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 2" }, { "date": "Sep 22, 1968", @@ -18247,7 +26677,12 @@ "sF": "0", "sU": "42", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 2" }, { "date": "Sep 22, 1968", @@ -18257,7 +26692,12 @@ "sF": "13", "sU": "26", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 2" }, { "date": "Sep 22, 1968", @@ -18267,7 +26707,12 @@ "sF": "45", "sU": "10", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 2" }, { "date": "Sep 22, 1968", @@ -18277,7 +26722,12 @@ "sF": "17", "sU": "37", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 2" }, { "date": "Sep 22, 1968", @@ -18287,7 +26737,12 @@ "sF": "34", "sU": "25", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 2" }, { "date": "Sep 22, 1968", @@ -18297,7 +26752,12 @@ "sF": "35", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 2" }, { "date": "Sep 21, 1968", @@ -18307,7 +26767,12 @@ "sF": "47", "sU": "21", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 3" }, { "date": "Sep 21, 1968", @@ -18317,7 +26782,12 @@ "sF": "30", "sU": "14", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 3" }, { "date": "Sep 22, 1968", @@ -18327,7 +26797,12 @@ "sF": "47", "sU": "31", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 3" }, { "date": "Sep 22, 1968", @@ -18337,7 +26812,12 @@ "sF": "34", "sU": "23", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 3" }, { "date": "Sep 29, 1968", @@ -18347,7 +26827,12 @@ "sF": "24", "sU": "6", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 3" }, { "date": "Sep 29, 1968", @@ -18356,8 +26841,13 @@ "und": "Detroit Lions", "sF": "17", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 3" }, { "date": "Sep 29, 1968", @@ -18366,8 +26856,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "27", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 3" }, { "date": "Sep 29, 1968", @@ -18377,7 +26872,12 @@ "sF": "21", "sU": "20", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 3" }, { "date": "Sep 29, 1968", @@ -18387,7 +26887,12 @@ "sF": "48", "sU": "21", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 3" }, { "date": "Sep 29, 1968", @@ -18397,7 +26902,12 @@ "sF": "45", "sU": "13", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 3" }, { "date": "Sep 29, 1968", @@ -18407,7 +26917,12 @@ "sF": "41", "sU": "7", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 3" }, { "date": "Sep 29, 1968", @@ -18417,7 +26932,12 @@ "sF": "28", "sU": "13", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 3" }, { "date": "Sep 28, 1968", @@ -18427,7 +26947,12 @@ "sF": "48", "sU": "3", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 4" }, { "date": "Sep 29, 1968", @@ -18437,7 +26962,12 @@ "sF": "35", "sU": "37", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 4" }, { "date": "Sep 29, 1968", @@ -18447,7 +26977,12 @@ "sF": "31", "sU": "10", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 4" }, { "date": "Sep 29, 1968", @@ -18457,7 +26992,12 @@ "sF": "20", "sU": "17", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 4" }, { "date": "Sep 29, 1968", @@ -18467,7 +27007,12 @@ "sF": "24", "sU": "15", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 4" }, { "date": "Oct 5, 1968", @@ -18477,7 +27022,12 @@ "sF": "31", "sU": "24", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 4" }, { "date": "Oct 6, 1968", @@ -18487,7 +27037,12 @@ "sF": "38", "sU": "7", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 4" }, { "date": "Oct 6, 1968", @@ -18497,7 +27052,12 @@ "sF": "28", "sU": "7", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 4" }, { "date": "Oct 6, 1968", @@ -18507,11 +27067,12 @@ "sF": "24", "sU": "10", "spread": "12", - "ou": "49", + "ou": null, "pScore": { - "sU": 18.5, - "sF": 30.5 - } + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 4" }, { "date": "Oct 6, 1968", @@ -18521,7 +27082,12 @@ "sF": "24", "sU": "10", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 4" }, { "date": "Oct 6, 1968", @@ -18531,7 +27097,12 @@ "sF": "38", "sU": "21", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 4" }, { "date": "Oct 6, 1968", @@ -18541,7 +27112,12 @@ "sF": "27", "sU": "10", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 4" }, { "date": "Oct 6, 1968", @@ -18551,7 +27127,12 @@ "sF": "17", "sU": "14", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 4" }, { "date": "Oct 5, 1968", @@ -18561,7 +27142,12 @@ "sF": "18", "sU": "7", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 5" }, { "date": "Oct 5, 1968", @@ -18570,8 +27156,13 @@ "und": "San Diego Chargers", "sF": "23", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 5" }, { "date": "Oct 6, 1968", @@ -18581,7 +27172,12 @@ "sF": "10", "sU": "7", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 5" }, { "date": "Oct 6, 1968", @@ -18591,7 +27187,12 @@ "sF": "7", "sU": "24", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 5" }, { "date": "Oct 6, 1968", @@ -18601,7 +27202,12 @@ "sF": "41", "sU": "10", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 5" }, { "date": "Oct 13, 1968", @@ -18611,7 +27217,12 @@ "sF": "21", "sU": "24", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 5" }, { "date": "Oct 13, 1968", @@ -18621,7 +27232,12 @@ "sF": "21", "sU": "27", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 5" }, { "date": "Oct 13, 1968", @@ -18631,7 +27247,12 @@ "sF": "34", "sU": "14", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 5" }, { "date": "Oct 13, 1968", @@ -18641,7 +27262,12 @@ "sF": "14", "sU": "16", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 5" }, { "date": "Oct 13, 1968", @@ -18651,7 +27277,12 @@ "sF": "17", "sU": "20", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 5" }, { "date": "Oct 13, 1968", @@ -18661,11 +27292,12 @@ "sF": "42", "sU": "14", "spread": "8", - "ou": "49", + "ou": null, "pScore": { - "sU": 20.5, - "sF": 28.5 - } + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 5" }, { "date": "Oct 13, 1968", @@ -18674,8 +27306,13 @@ "und": "Pittsburgh Steelers", "sF": "16", "sU": "13", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 5" }, { "date": "Oct 12, 1968", @@ -18685,7 +27322,12 @@ "sF": "14", "sU": "14", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 6" }, { "date": "Oct 13, 1968", @@ -18695,7 +27337,12 @@ "sF": "0", "sU": "16", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 6" }, { "date": "Oct 13, 1968", @@ -18705,7 +27352,12 @@ "sF": "13", "sU": "3", "spread": "21", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 6" }, { "date": "Oct 13, 1968", @@ -18715,7 +27367,12 @@ "sF": "13", "sU": "21", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 6" }, { "date": "Oct 13, 1968", @@ -18725,7 +27382,12 @@ "sF": "14", "sU": "23", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 6" }, { "date": "Oct 20, 1968", @@ -18734,8 +27396,13 @@ "und": "Cleveland Browns", "sF": "20", "sU": "30", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 6" }, { "date": "Oct 20, 1968", @@ -18745,7 +27412,12 @@ "sF": "14", "sU": "14", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 6" }, { "date": "Oct 20, 1968", @@ -18755,7 +27427,12 @@ "sF": "27", "sU": "14", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 6" }, { "date": "Oct 20, 1968", @@ -18764,8 +27441,13 @@ "und": "Minnesota Vikings", "sF": "20", "sU": "7", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 6" }, { "date": "Oct 20, 1968", @@ -18775,11 +27457,12 @@ "sF": "10", "sU": "26", "spread": "5", - "ou": "49", + "ou": null, "pScore": { - "sU": 22, - "sF": 27 - } + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 6" }, { "date": "Oct 20, 1968", @@ -18788,8 +27471,13 @@ "und": "Philadelphia Eagles", "sF": "29", "sU": "16", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 6" }, { "date": "Oct 20, 1968", @@ -18798,8 +27486,13 @@ "und": "Pittsburgh Steelers", "sF": "16", "sU": "12", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 6" }, { "date": "Oct 20, 1968", @@ -18809,7 +27502,12 @@ "sF": "41", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 6" }, { "date": "Oct 20, 1968", @@ -18818,8 +27516,13 @@ "und": "Buffalo Bills", "sF": "23", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 7" }, { "date": "Oct 20, 1968", @@ -18829,7 +27532,12 @@ "sF": "22", "sU": "24", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 7" }, { "date": "Oct 20, 1968", @@ -18838,8 +27546,13 @@ "und": "Houston Oilers", "sF": "20", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 7" }, { "date": "Oct 20, 1968", @@ -18849,7 +27562,12 @@ "sF": "55", "sU": "24", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 7" }, { "date": "Oct 27, 1968", @@ -18859,7 +27577,12 @@ "sF": "24", "sU": "26", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 7" }, { "date": "Oct 27, 1968", @@ -18869,7 +27592,12 @@ "sF": "30", "sU": "7", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 7" }, { "date": "Oct 27, 1968", @@ -18879,11 +27607,12 @@ "sF": "7", "sU": "14", "spread": "4", - "ou": "49", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 7" }, { "date": "Oct 27, 1968", @@ -18893,7 +27622,12 @@ "sF": "6", "sU": "3", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 7" }, { "date": "Oct 27, 1968", @@ -18903,7 +27637,12 @@ "sF": "31", "sU": "17", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 7" }, { "date": "Oct 27, 1968", @@ -18913,7 +27652,12 @@ "sF": "13", "sU": "10", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 7" }, { "date": "Oct 28, 1968", @@ -18923,7 +27667,12 @@ "sF": "17", "sU": "28", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 7" }, { "date": "Oct 27, 1968", @@ -18933,7 +27682,12 @@ "sF": "30", "sU": "7", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 8" }, { "date": "Oct 27, 1968", @@ -18943,7 +27697,12 @@ "sF": "14", "sU": "21", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 8" }, { "date": "Oct 27, 1968", @@ -18953,7 +27712,12 @@ "sF": "27", "sU": "20", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 8" }, { "date": "Oct 27, 1968", @@ -18963,7 +27727,12 @@ "sF": "48", "sU": "14", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 8" }, { "date": "Oct 27, 1968", @@ -18973,7 +27742,12 @@ "sF": "31", "sU": "10", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 8" }, { "date": "Nov 3, 1968", @@ -18983,7 +27757,12 @@ "sF": "10", "sU": "13", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 8" }, { "date": "Nov 3, 1968", @@ -18993,7 +27772,12 @@ "sF": "10", "sU": "7", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 8" }, { "date": "Nov 3, 1968", @@ -19003,7 +27787,12 @@ "sF": "27", "sU": "14", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 8" }, { "date": "Nov 3, 1968", @@ -19013,7 +27802,12 @@ "sF": "17", "sU": "3", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 8" }, { "date": "Nov 3, 1968", @@ -19023,7 +27817,12 @@ "sF": "26", "sU": "0", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 8" }, { "date": "Nov 3, 1968", @@ -19033,7 +27832,12 @@ "sF": "45", "sU": "17", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 8" }, { "date": "Nov 3, 1968", @@ -19042,8 +27846,13 @@ "und": "Cleveland Browns", "sF": "21", "sU": "33", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 8" }, { "date": "Nov 3, 1968", @@ -19053,7 +27862,12 @@ "sF": "14", "sU": "35", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 9" }, { "date": "Nov 3, 1968", @@ -19063,7 +27877,12 @@ "sF": "27", "sU": "17", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 9" }, { "date": "Nov 3, 1968", @@ -19073,7 +27892,12 @@ "sF": "25", "sU": "21", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 9" }, { "date": "Nov 3, 1968", @@ -19083,7 +27907,12 @@ "sF": "38", "sU": "21", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 9" }, { "date": "Nov 3, 1968", @@ -19093,7 +27922,12 @@ "sF": "34", "sU": "28", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 9" }, { "date": "Nov 10, 1968", @@ -19103,7 +27937,12 @@ "sF": "17", "sU": "10", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 9" }, { "date": "Nov 10, 1968", @@ -19113,11 +27952,12 @@ "sF": "27", "sU": "19", "spread": "4", - "ou": "49", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 9" }, { "date": "Nov 10, 1968", @@ -19127,7 +27967,12 @@ "sF": "35", "sU": "17", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 9" }, { "date": "Nov 10, 1968", @@ -19137,7 +27982,12 @@ "sF": "21", "sU": "27", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 9" }, { "date": "Nov 10, 1968", @@ -19146,8 +27996,13 @@ "und": "Detroit Lions", "sF": "27", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 9" }, { "date": "Nov 10, 1968", @@ -19157,7 +28012,12 @@ "sF": "10", "sU": "14", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 9" }, { "date": "Nov 10, 1968", @@ -19167,7 +28027,12 @@ "sF": "16", "sU": "10", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 9" }, { "date": "Nov 10, 1968", @@ -19177,7 +28042,12 @@ "sF": "28", "sU": "28", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 9" }, { "date": "Nov 10, 1968", @@ -19187,7 +28057,12 @@ "sF": "27", "sU": "17", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 10" }, { "date": "Nov 10, 1968", @@ -19197,7 +28072,12 @@ "sF": "16", "sU": "9", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 10" }, { "date": "Nov 10, 1968", @@ -19207,7 +28087,12 @@ "sF": "43", "sU": "7", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 10" }, { "date": "Nov 10, 1968", @@ -19216,8 +28101,13 @@ "und": "Houston Oilers", "sF": "26", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 10" }, { "date": "Nov 17, 1968", @@ -19227,7 +28117,12 @@ "sF": "27", "sU": "0", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 10" }, { "date": "Nov 17, 1968", @@ -19237,7 +28132,12 @@ "sF": "13", "sU": "16", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 10" }, { "date": "Nov 17, 1968", @@ -19247,7 +28147,12 @@ "sF": "13", "sU": "6", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 10" }, { "date": "Nov 17, 1968", @@ -19257,7 +28162,12 @@ "sF": "29", "sU": "7", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 10" }, { "date": "Nov 17, 1968", @@ -19267,7 +28177,12 @@ "sF": "7", "sU": "6", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 10" }, { "date": "Nov 17, 1968", @@ -19277,7 +28192,12 @@ "sF": "45", "sU": "24", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 10" }, { "date": "Nov 17, 1968", @@ -19287,11 +28207,12 @@ "sF": "20", "sU": "20", "spread": "6", - "ou": "49", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 10" }, { "date": "Nov 17, 1968", @@ -19301,7 +28222,12 @@ "sF": "44", "sU": "24", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 10" }, { "date": "Nov 17, 1968", @@ -19311,7 +28237,12 @@ "sF": "21", "sU": "6", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 11" }, { "date": "Nov 17, 1968", @@ -19321,7 +28252,12 @@ "sF": "38", "sU": "17", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 11" }, { "date": "Nov 17, 1968", @@ -19331,7 +28267,12 @@ "sF": "21", "sU": "38", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 11" }, { "date": "Nov 17, 1968", @@ -19341,7 +28282,12 @@ "sF": "43", "sU": "32", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 11" }, { "date": "Nov 24, 1968", @@ -19351,7 +28297,12 @@ "sF": "21", "sU": "9", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 11" }, { "date": "Nov 24, 1968", @@ -19361,7 +28312,12 @@ "sF": "34", "sU": "3", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 11" }, { "date": "Nov 24, 1968", @@ -19371,7 +28327,12 @@ "sF": "47", "sU": "13", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 11" }, { "date": "Nov 24, 1968", @@ -19381,7 +28342,12 @@ "sF": "20", "sU": "20", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 11" }, { "date": "Nov 24, 1968", @@ -19391,7 +28357,12 @@ "sF": "24", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 11" }, { "date": "Nov 24, 1968", @@ -19401,7 +28372,12 @@ "sF": "45", "sU": "28", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 11" }, { "date": "Nov 24, 1968", @@ -19411,7 +28387,12 @@ "sF": "17", "sU": "12", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 11" }, { "date": "Nov 24, 1968", @@ -19421,7 +28402,12 @@ "sF": "27", "sU": "7", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 11" }, { "date": "Nov 24, 1968", @@ -19431,7 +28417,12 @@ "sF": "10", "sU": "34", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 12" }, { "date": "Nov 24, 1968", @@ -19441,7 +28432,12 @@ "sF": "34", "sU": "0", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 12" }, { "date": "Nov 24, 1968", @@ -19451,7 +28447,12 @@ "sF": "15", "sU": "37", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 12" }, { "date": "Nov 28, 1968", @@ -19461,7 +28462,12 @@ "sF": "29", "sU": "20", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 12" }, { "date": "Nov 28, 1968", @@ -19471,7 +28477,12 @@ "sF": "0", "sU": "12", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 12" }, { "date": "Dec 1, 1968", @@ -19481,7 +28492,12 @@ "sF": "44", "sU": "0", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 12" }, { "date": "Dec 1, 1968", @@ -19491,7 +28507,12 @@ "sF": "45", "sU": "10", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 12" }, { "date": "Dec 1, 1968", @@ -19500,8 +28521,13 @@ "und": "Minnesota Vikings", "sF": "31", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 12" }, { "date": "Dec 1, 1968", @@ -19510,8 +28536,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 12" }, { "date": "Dec 1, 1968", @@ -19521,7 +28552,12 @@ "sF": "20", "sU": "10", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 12" }, { "date": "Dec 1, 1968", @@ -19531,11 +28567,12 @@ "sF": "20", "sU": "27", "spread": "4", - "ou": "49", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 12" }, { "date": "Nov 28, 1968", @@ -19545,7 +28582,12 @@ "sF": "24", "sU": "10", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 13" }, { "date": "Nov 28, 1968", @@ -19555,7 +28597,12 @@ "sF": "13", "sU": "10", "spread": "24", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 13" }, { "date": "Dec 1, 1968", @@ -19565,7 +28612,12 @@ "sF": "14", "sU": "33", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 13" }, { "date": "Dec 1, 1968", @@ -19575,7 +28627,12 @@ "sF": "47", "sU": "23", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 13" }, { "date": "Dec 1, 1968", @@ -19585,7 +28642,12 @@ "sF": "35", "sU": "17", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 13" }, { "date": "Dec 7, 1968", @@ -19594,8 +28656,13 @@ "und": "Green Bay Packers", "sF": "16", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 13" }, { "date": "Dec 8, 1968", @@ -19605,7 +28672,12 @@ "sF": "24", "sU": "7", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 13" }, { "date": "Dec 8, 1968", @@ -19615,7 +28687,12 @@ "sF": "28", "sU": "7", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 13" }, { "date": "Dec 8, 1968", @@ -19625,7 +28702,12 @@ "sF": "16", "sU": "17", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 13" }, { "date": "Dec 8, 1968", @@ -19634,8 +28716,13 @@ "und": "New York Giants", "sF": "28", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 13" }, { "date": "Dec 8, 1968", @@ -19645,7 +28732,12 @@ "sF": "29", "sU": "17", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 13" }, { "date": "Dec 8, 1968", @@ -19654,8 +28746,13 @@ "und": "Minnesota Vikings", "sF": "20", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 13" }, { "date": "Dec 8, 1968", @@ -19664,8 +28761,13 @@ "und": "Washington Redskins", "sF": "24", "sU": "21", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 13" }, { "date": "Dec 7, 1968", @@ -19675,7 +28777,12 @@ "sF": "35", "sU": "6", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 14" }, { "date": "Dec 8, 1968", @@ -19685,7 +28792,12 @@ "sF": "38", "sU": "7", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 14" }, { "date": "Dec 8, 1968", @@ -19695,7 +28807,12 @@ "sF": "27", "sU": "14", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 14" }, { "date": "Dec 8, 1968", @@ -19705,7 +28822,12 @@ "sF": "33", "sU": "27", "spread": "22", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 14" }, { "date": "Dec 8, 1968", @@ -19715,7 +28837,12 @@ "sF": "3", "sU": "40", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 14" }, { "date": "Dec 14, 1968", @@ -19724,8 +28851,13 @@ "und": "St Louis Cardinals", "sF": "16", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 14" }, { "date": "Dec 15, 1968", @@ -19735,7 +28867,12 @@ "sF": "14", "sU": "12", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 14" }, { "date": "Dec 15, 1968", @@ -19744,8 +28881,13 @@ "und": "Green Bay Packers", "sF": "27", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 14" }, { "date": "Dec 15, 1968", @@ -19754,8 +28896,13 @@ "und": "Los Angeles Rams", "sF": "28", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 14" }, { "date": "Dec 15, 1968", @@ -19765,7 +28912,12 @@ "sF": "24", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 14" }, { "date": "Dec 15, 1968", @@ -19774,8 +28926,13 @@ "und": "New York Giants", "sF": "28", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 14" }, { "date": "Dec 15, 1968", @@ -19785,7 +28942,12 @@ "sF": "24", "sU": "17", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 14" }, { "date": "Dec 15, 1968", @@ -19795,7 +28957,12 @@ "sF": "3", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 NFL Regular Season - Week 14" }, { "date": "Dec 14, 1968", @@ -19805,7 +28972,12 @@ "sF": "30", "sU": "7", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 15" }, { "date": "Dec 15, 1968", @@ -19815,7 +28987,12 @@ "sF": "45", "sU": "17", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 15" }, { "date": "Dec 15, 1968", @@ -19824,8 +29001,13 @@ "und": "Miami Dolphins", "sF": "31", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 15" }, { "date": "Dec 15, 1968", @@ -19834,8 +29016,13 @@ "und": "San Diego Chargers", "sF": "34", "sU": "27", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 AFL Regular Season - Week 15" }, { "date": "Dec 21, 1968", @@ -19845,7 +29032,12 @@ "sF": "20", "sU": "31", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 Playoffs" }, { "date": "Dec 22, 1968", @@ -19855,7 +29047,12 @@ "sF": "24", "sU": "14", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 Playoffs" }, { "date": "Dec 22, 1968", @@ -19864,8 +29061,13 @@ "und": "Oakland Raiders", "sF": "6", "sU": "41", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 Playoffs" }, { "date": "Dec 29, 1968", @@ -19875,7 +29077,12 @@ "sF": "34", "sU": "0", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 Playoffs" }, { "date": "Dec 29, 1968", @@ -19885,7 +29092,12 @@ "sF": "27", "sU": "23", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1968 Playoffs" }, { "date": "Jan 12, 1969", @@ -19895,7 +29107,12 @@ "sF": "7", "sU": "16", "spread": "18", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 11.0, + "sF": 29.0 + }, + "week": "1968 Playoffs" }, { "date": "Sep 14, 1969", @@ -19904,8 +29121,13 @@ "und": "Buffalo Bills", "sF": "33", "sU": "19", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 1" }, { "date": "Sep 14, 1969", @@ -19914,8 +29136,13 @@ "und": "Miami Dolphins", "sF": "27", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 1" }, { "date": "Sep 14, 1969", @@ -19924,8 +29151,13 @@ "und": "Boston Patriots", "sF": "35", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 1" }, { "date": "Sep 14, 1969", @@ -19934,8 +29166,13 @@ "und": "Houston Oilers", "sF": "21", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 1" }, { "date": "Sep 14, 1969", @@ -19944,8 +29181,13 @@ "und": "San Diego Chargers", "sF": "27", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 1" }, { "date": "Sep 21, 1969", @@ -19954,8 +29196,13 @@ "und": "Atlanta Falcons", "sF": "12", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 1" }, { "date": "Sep 21, 1969", @@ -19965,7 +29212,12 @@ "sF": "20", "sU": "27", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 1" }, { "date": "Sep 21, 1969", @@ -19974,8 +29226,13 @@ "und": "St Louis Cardinals", "sF": "24", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 1" }, { "date": "Sep 21, 1969", @@ -19985,7 +29242,12 @@ "sF": "17", "sU": "0", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 1" }, { "date": "Sep 21, 1969", @@ -19994,8 +29256,13 @@ "und": "New Orleans Saints", "sF": "26", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 1" }, { "date": "Sep 21, 1969", @@ -20005,7 +29272,12 @@ "sF": "23", "sU": "24", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 1" }, { "date": "Sep 21, 1969", @@ -20015,7 +29287,12 @@ "sF": "27", "sU": "20", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 1" }, { "date": "Sep 21, 1969", @@ -20025,7 +29302,12 @@ "sF": "13", "sU": "16", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 1" }, { "date": "Sep 20, 1969", @@ -20035,7 +29317,12 @@ "sF": "20", "sU": "17", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 2" }, { "date": "Sep 21, 1969", @@ -20045,7 +29332,12 @@ "sF": "31", "sU": "0", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 2" }, { "date": "Sep 21, 1969", @@ -20054,8 +29346,13 @@ "und": "Buffalo Bills", "sF": "17", "sU": "3", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 2" }, { "date": "Sep 21, 1969", @@ -20065,7 +29362,12 @@ "sF": "20", "sU": "34", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 2" }, { "date": "Sep 21, 1969", @@ -20075,7 +29377,12 @@ "sF": "19", "sU": "21", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 2" }, { "date": "Sep 28, 1969", @@ -20084,8 +29391,13 @@ "und": "Washington Redskins", "sF": "27", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 2" }, { "date": "Sep 28, 1969", @@ -20095,7 +29407,12 @@ "sF": "24", "sU": "0", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 2" }, { "date": "Sep 28, 1969", @@ -20105,11 +29422,12 @@ "sF": "14", "sU": "7", "spread": "9", - "ou": "49", + "ou": null, "pScore": { - "sU": 20, - "sF": 29 - } + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 2" }, { "date": "Sep 28, 1969", @@ -20119,7 +29437,12 @@ "sF": "17", "sU": "7", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 2" }, { "date": "Sep 28, 1969", @@ -20129,7 +29452,12 @@ "sF": "14", "sU": "52", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 2" }, { "date": "Sep 28, 1969", @@ -20139,7 +29467,12 @@ "sF": "21", "sU": "17", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 2" }, { "date": "Sep 28, 1969", @@ -20149,7 +29482,12 @@ "sF": "41", "sU": "27", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 2" }, { "date": "Sep 28, 1969", @@ -20159,7 +29497,12 @@ "sF": "20", "sU": "17", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 2" }, { "date": "Sep 28, 1969", @@ -20169,7 +29512,12 @@ "sF": "38", "sU": "23", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 3" }, { "date": "Sep 28, 1969", @@ -20179,7 +29527,12 @@ "sF": "28", "sU": "41", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 3" }, { "date": "Sep 28, 1969", @@ -20189,7 +29542,12 @@ "sF": "19", "sU": "24", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 3" }, { "date": "Sep 28, 1969", @@ -20199,7 +29557,12 @@ "sF": "22", "sU": "10", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 3" }, { "date": "Sep 28, 1969", @@ -20209,7 +29572,12 @@ "sF": "27", "sU": "34", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 3" }, { "date": "Oct 5, 1969", @@ -20219,7 +29587,12 @@ "sF": "21", "sU": "14", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 3" }, { "date": "Oct 5, 1969", @@ -20229,7 +29602,12 @@ "sF": "21", "sU": "28", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 3" }, { "date": "Oct 5, 1969", @@ -20239,7 +29617,12 @@ "sF": "36", "sU": "17", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 3" }, { "date": "Oct 5, 1969", @@ -20249,7 +29632,12 @@ "sF": "19", "sU": "7", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 3" }, { "date": "Oct 5, 1969", @@ -20259,7 +29647,12 @@ "sF": "24", "sU": "28", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 3" }, { "date": "Oct 5, 1969", @@ -20269,7 +29662,12 @@ "sF": "38", "sU": "7", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 3" }, { "date": "Oct 5, 1969", @@ -20279,7 +29677,12 @@ "sF": "27", "sU": "14", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 3" }, { "date": "Oct 5, 1969", @@ -20289,7 +29692,12 @@ "sF": "17", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 3" }, { "date": "Oct 4, 1969", @@ -20299,7 +29707,12 @@ "sF": "20", "sU": "20", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 4" }, { "date": "Oct 4, 1969", @@ -20309,7 +29722,12 @@ "sF": "21", "sU": "14", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 4" }, { "date": "Oct 5, 1969", @@ -20319,7 +29737,12 @@ "sF": "23", "sU": "14", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 4" }, { "date": "Oct 5, 1969", @@ -20329,7 +29752,12 @@ "sF": "26", "sU": "13", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 4" }, { "date": "Oct 5, 1969", @@ -20339,7 +29767,12 @@ "sF": "28", "sU": "14", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 4" }, { "date": "Oct 12, 1969", @@ -20349,7 +29782,12 @@ "sF": "24", "sU": "17", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 4" }, { "date": "Oct 12, 1969", @@ -20359,7 +29797,12 @@ "sF": "31", "sU": "0", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 4" }, { "date": "Oct 12, 1969", @@ -20369,7 +29812,12 @@ "sF": "17", "sU": "28", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 4" }, { "date": "Oct 12, 1969", @@ -20379,7 +29827,12 @@ "sF": "27", "sU": "17", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 4" }, { "date": "Oct 12, 1969", @@ -20389,7 +29842,12 @@ "sF": "10", "sU": "7", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 4" }, { "date": "Oct 12, 1969", @@ -20399,11 +29857,12 @@ "sF": "27", "sU": "21", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 4" }, { "date": "Oct 12, 1969", @@ -20413,7 +29872,12 @@ "sF": "17", "sU": "33", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 4" }, { "date": "Oct 13, 1969", @@ -20423,7 +29887,12 @@ "sF": "24", "sU": "20", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 4" }, { "date": "Oct 11, 1969", @@ -20433,7 +29902,12 @@ "sF": "23", "sU": "16", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 5" }, { "date": "Oct 11, 1969", @@ -20443,7 +29917,12 @@ "sF": "21", "sU": "14", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 5" }, { "date": "Oct 12, 1969", @@ -20453,7 +29932,12 @@ "sF": "21", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 5" }, { "date": "Oct 12, 1969", @@ -20463,7 +29947,12 @@ "sF": "24", "sU": "14", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 5" }, { "date": "Oct 12, 1969", @@ -20473,7 +29962,12 @@ "sF": "24", "sU": "0", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 5" }, { "date": "Oct 18, 1969", @@ -20483,7 +29977,12 @@ "sF": "42", "sU": "31", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 5" }, { "date": "Oct 19, 1969", @@ -20493,7 +29992,12 @@ "sF": "49", "sU": "14", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 5" }, { "date": "Oct 19, 1969", @@ -20503,7 +30007,12 @@ "sF": "13", "sU": "7", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 5" }, { "date": "Oct 19, 1969", @@ -20513,7 +30022,12 @@ "sF": "34", "sU": "21", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 5" }, { "date": "Oct 19, 1969", @@ -20523,7 +30037,12 @@ "sF": "30", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 5" }, { "date": "Oct 19, 1969", @@ -20533,7 +30052,12 @@ "sF": "7", "sU": "21", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 5" }, { "date": "Oct 19, 1969", @@ -20543,7 +30067,12 @@ "sF": "27", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 5" }, { "date": "Oct 19, 1969", @@ -20553,7 +30082,12 @@ "sF": "20", "sU": "14", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 5" }, { "date": "Oct 19, 1969", @@ -20563,7 +30097,12 @@ "sF": "13", "sU": "10", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 6" }, { "date": "Oct 19, 1969", @@ -20573,7 +30112,12 @@ "sF": "23", "sU": "30", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 6" }, { "date": "Oct 19, 1969", @@ -20583,7 +30127,12 @@ "sF": "17", "sU": "10", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 6" }, { "date": "Oct 19, 1969", @@ -20592,8 +30141,13 @@ "und": "Buffalo Bills", "sF": "50", "sU": "21", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 6" }, { "date": "Oct 20, 1969", @@ -20603,7 +30157,12 @@ "sF": "26", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 6" }, { "date": "Oct 26, 1969", @@ -20613,11 +30172,12 @@ "sF": "21", "sU": "24", "spread": "13", - "ou": "49", + "ou": null, "pScore": { - "sU": 18, - "sF": 31 - } + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 6" }, { "date": "Oct 26, 1969", @@ -20627,7 +30187,12 @@ "sF": "9", "sU": "7", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 6" }, { "date": "Oct 26, 1969", @@ -20636,8 +30201,13 @@ "und": "St Louis Cardinals", "sF": "21", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 6" }, { "date": "Oct 26, 1969", @@ -20647,7 +30217,12 @@ "sF": "28", "sU": "10", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 6" }, { "date": "Oct 26, 1969", @@ -20657,7 +30232,12 @@ "sF": "24", "sU": "10", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 6" }, { "date": "Oct 26, 1969", @@ -20667,7 +30247,12 @@ "sF": "13", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 6" }, { "date": "Oct 26, 1969", @@ -20677,7 +30262,12 @@ "sF": "14", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 6" }, { "date": "Oct 27, 1969", @@ -20686,8 +30276,13 @@ "und": "New York Giants", "sF": "25", "sU": "3", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 6" }, { "date": "Oct 26, 1969", @@ -20697,7 +30292,12 @@ "sF": "24", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 7" }, { "date": "Oct 26, 1969", @@ -20707,7 +30307,12 @@ "sF": "42", "sU": "22", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 7" }, { "date": "Oct 26, 1969", @@ -20717,7 +30322,12 @@ "sF": "24", "sU": "6", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 7" }, { "date": "Oct 26, 1969", @@ -20727,7 +30337,12 @@ "sF": "23", "sU": "17", "spread": "18", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 7" }, { "date": "Oct 26, 1969", @@ -20737,7 +30352,12 @@ "sF": "24", "sU": "12", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 7" }, { "date": "Nov 2, 1969", @@ -20747,7 +30367,12 @@ "sF": "38", "sU": "6", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 7" }, { "date": "Nov 2, 1969", @@ -20756,8 +30381,13 @@ "und": "Washington Redskins", "sF": "41", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 7" }, { "date": "Nov 2, 1969", @@ -20767,7 +30397,12 @@ "sF": "10", "sU": "42", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 7" }, { "date": "Nov 2, 1969", @@ -20777,7 +30412,12 @@ "sF": "31", "sU": "14", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 7" }, { "date": "Nov 2, 1969", @@ -20787,7 +30427,12 @@ "sF": "20", "sU": "23", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 7" }, { "date": "Nov 2, 1969", @@ -20797,7 +30442,12 @@ "sF": "38", "sU": "34", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 7" }, { "date": "Nov 2, 1969", @@ -20807,7 +30457,12 @@ "sF": "14", "sU": "26", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 7" }, { "date": "Nov 2, 1969", @@ -20817,7 +30472,12 @@ "sF": "42", "sU": "51", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 7" }, { "date": "Nov 2, 1969", @@ -20827,7 +30487,12 @@ "sF": "0", "sU": "24", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 8" }, { "date": "Nov 2, 1969", @@ -20837,7 +30502,12 @@ "sF": "29", "sU": "7", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 8" }, { "date": "Nov 2, 1969", @@ -20847,7 +30517,12 @@ "sF": "17", "sU": "31", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 8" }, { "date": "Nov 2, 1969", @@ -20857,7 +30532,12 @@ "sF": "0", "sU": "13", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 8" }, { "date": "Nov 2, 1969", @@ -20867,7 +30547,12 @@ "sF": "34", "sU": "31", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 8" }, { "date": "Nov 9, 1969", @@ -20877,7 +30562,12 @@ "sF": "14", "sU": "6", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 8" }, { "date": "Nov 9, 1969", @@ -20887,7 +30577,12 @@ "sF": "38", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 8" }, { "date": "Nov 9, 1969", @@ -20897,7 +30592,12 @@ "sF": "33", "sU": "17", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 8" }, { "date": "Nov 9, 1969", @@ -20907,7 +30607,12 @@ "sF": "27", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 8" }, { "date": "Nov 9, 1969", @@ -20917,11 +30622,12 @@ "sF": "41", "sU": "30", "spread": "12", - "ou": "49", + "ou": null, "pScore": { - "sU": 18.5, - "sF": 30.5 - } + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 8" }, { "date": "Nov 9, 1969", @@ -20931,7 +30637,12 @@ "sF": "51", "sU": "3", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 8" }, { "date": "Nov 9, 1969", @@ -20941,7 +30652,12 @@ "sF": "42", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 8" }, { "date": "Nov 9, 1969", @@ -20951,7 +30667,12 @@ "sF": "28", "sU": "28", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 8" }, { "date": "Nov 9, 1969", @@ -20961,7 +30682,12 @@ "sF": "17", "sU": "16", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 9" }, { "date": "Nov 9, 1969", @@ -20971,7 +30697,12 @@ "sF": "31", "sU": "31", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 9" }, { "date": "Nov 9, 1969", @@ -20980,8 +30711,13 @@ "und": "San Diego Chargers", "sF": "27", "sU": "3", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 9" }, { "date": "Nov 9, 1969", @@ -20991,7 +30727,12 @@ "sF": "16", "sU": "6", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 9" }, { "date": "Nov 9, 1969", @@ -21001,7 +30742,12 @@ "sF": "41", "sU": "10", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 9" }, { "date": "Nov 16, 1969", @@ -21011,7 +30757,12 @@ "sF": "31", "sU": "48", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 9" }, { "date": "Nov 16, 1969", @@ -21021,7 +30772,12 @@ "sF": "20", "sU": "0", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 9" }, { "date": "Nov 16, 1969", @@ -21031,7 +30787,12 @@ "sF": "9", "sU": "7", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 9" }, { "date": "Nov 16, 1969", @@ -21041,7 +30802,12 @@ "sF": "24", "sU": "25", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 9" }, { "date": "Nov 16, 1969", @@ -21051,7 +30817,12 @@ "sF": "23", "sU": "17", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 9" }, { "date": "Nov 16, 1969", @@ -21061,7 +30832,12 @@ "sF": "24", "sU": "3", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 9" }, { "date": "Nov 16, 1969", @@ -21071,11 +30847,12 @@ "sF": "17", "sU": "20", "spread": "3", - "ou": "49", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 9" }, { "date": "Nov 16, 1969", @@ -21085,7 +30862,12 @@ "sF": "41", "sU": "28", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 9" }, { "date": "Nov 16, 1969", @@ -21095,7 +30877,12 @@ "sF": "3", "sU": "28", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 10" }, { "date": "Nov 16, 1969", @@ -21105,7 +30892,12 @@ "sF": "14", "sU": "25", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 10" }, { "date": "Nov 16, 1969", @@ -21115,7 +30907,12 @@ "sF": "20", "sU": "20", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 10" }, { "date": "Nov 16, 1969", @@ -21125,7 +30922,12 @@ "sF": "34", "sU": "16", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 10" }, { "date": "Nov 16, 1969", @@ -21135,7 +30937,12 @@ "sF": "21", "sU": "16", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 10" }, { "date": "Nov 23, 1969", @@ -21144,8 +30951,13 @@ "und": "Chicago Bears", "sF": "24", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 10" }, { "date": "Nov 23, 1969", @@ -21155,7 +30967,12 @@ "sF": "28", "sU": "17", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 10" }, { "date": "Nov 23, 1969", @@ -21165,7 +30982,12 @@ "sF": "10", "sU": "16", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 10" }, { "date": "Nov 23, 1969", @@ -21174,8 +30996,13 @@ "und": "Dallas Cowboys", "sF": "24", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 10" }, { "date": "Nov 23, 1969", @@ -21185,7 +31012,12 @@ "sF": "52", "sU": "14", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 10" }, { "date": "Nov 23, 1969", @@ -21195,7 +31027,12 @@ "sF": "38", "sU": "43", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 10" }, { "date": "Nov 23, 1969", @@ -21205,7 +31042,12 @@ "sF": "30", "sU": "34", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 10" }, { "date": "Nov 23, 1969", @@ -21214,8 +31056,13 @@ "und": "Atlanta Falcons", "sF": "27", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 10" }, { "date": "Nov 23, 1969", @@ -21225,7 +31072,12 @@ "sF": "35", "sU": "21", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 11" }, { "date": "Nov 23, 1969", @@ -21234,8 +31086,13 @@ "und": "Oakland Raiders", "sF": "24", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 11" }, { "date": "Nov 23, 1969", @@ -21245,7 +31102,12 @@ "sF": "32", "sU": "7", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 11" }, { "date": "Nov 23, 1969", @@ -21254,8 +31116,13 @@ "und": "Cincinnati Bengals", "sF": "40", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 11" }, { "date": "Nov 23, 1969", @@ -21265,7 +31132,12 @@ "sF": "45", "sU": "24", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 11" }, { "date": "Nov 27, 1969", @@ -21275,11 +31147,12 @@ "sF": "24", "sU": "24", "spread": "11", - "ou": "49", + "ou": null, "pScore": { - "sU": 19, - "sF": 30 - } + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 11" }, { "date": "Nov 27, 1969", @@ -21289,7 +31162,12 @@ "sF": "27", "sU": "0", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 11" }, { "date": "Nov 30, 1969", @@ -21299,7 +31177,12 @@ "sF": "13", "sU": "6", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 11" }, { "date": "Nov 30, 1969", @@ -21309,7 +31192,12 @@ "sF": "28", "sU": "24", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 11" }, { "date": "Nov 30, 1969", @@ -21319,7 +31207,12 @@ "sF": "20", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 11" }, { "date": "Nov 30, 1969", @@ -21329,7 +31222,12 @@ "sF": "26", "sU": "17", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 11" }, { "date": "Nov 30, 1969", @@ -21339,7 +31237,12 @@ "sF": "47", "sU": "10", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 11" }, { "date": "Nov 30, 1969", @@ -21349,7 +31252,12 @@ "sF": "24", "sU": "13", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 11" }, { "date": "Nov 27, 1969", @@ -21359,7 +31267,12 @@ "sF": "17", "sU": "21", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 12" }, { "date": "Nov 27, 1969", @@ -21369,7 +31282,12 @@ "sF": "31", "sU": "17", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 12" }, { "date": "Nov 30, 1969", @@ -21379,7 +31297,12 @@ "sF": "38", "sU": "23", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 12" }, { "date": "Nov 30, 1969", @@ -21389,7 +31312,12 @@ "sF": "27", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 12" }, { "date": "Dec 6, 1969", @@ -21398,12 +31326,13 @@ "und": "San Francisco 49ers", "sF": "21", "sU": "42", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 12" }, { "date": "Dec 7, 1969", @@ -21413,7 +31342,12 @@ "sF": "45", "sU": "17", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 12" }, { "date": "Dec 7, 1969", @@ -21423,7 +31357,12 @@ "sF": "17", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 12" }, { "date": "Dec 7, 1969", @@ -21433,7 +31372,12 @@ "sF": "20", "sU": "7", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 12" }, { "date": "Dec 7, 1969", @@ -21443,7 +31387,12 @@ "sF": "20", "sU": "13", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 12" }, { "date": "Dec 7, 1969", @@ -21453,7 +31402,12 @@ "sF": "6", "sU": "49", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 12" }, { "date": "Dec 7, 1969", @@ -21463,7 +31417,12 @@ "sF": "29", "sU": "34", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 12" }, { "date": "Dec 7, 1969", @@ -21473,7 +31432,12 @@ "sF": "10", "sU": "7", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 12" }, { "date": "Dec 6, 1969", @@ -21483,7 +31447,12 @@ "sF": "34", "sU": "26", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 13" }, { "date": "Dec 7, 1969", @@ -21493,7 +31462,12 @@ "sF": "22", "sU": "19", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 13" }, { "date": "Dec 7, 1969", @@ -21502,8 +31476,13 @@ "und": "Miami Dolphins", "sF": "24", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 13" }, { "date": "Dec 7, 1969", @@ -21513,7 +31492,12 @@ "sF": "37", "sU": "17", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 13" }, { "date": "Dec 7, 1969", @@ -21523,7 +31507,12 @@ "sF": "28", "sU": "18", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 13" }, { "date": "Dec 13, 1969", @@ -21533,7 +31522,12 @@ "sF": "27", "sU": "10", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 13" }, { "date": "Dec 14, 1969", @@ -21543,7 +31537,12 @@ "sF": "3", "sU": "21", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 13" }, { "date": "Dec 14, 1969", @@ -21553,7 +31552,12 @@ "sF": "28", "sU": "0", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 13" }, { "date": "Dec 14, 1969", @@ -21563,11 +31567,12 @@ "sF": "10", "sU": "7", "spread": "11", - "ou": "49", + "ou": null, "pScore": { - "sU": 19, - "sF": 30 - } + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 13" }, { "date": "Dec 14, 1969", @@ -21576,8 +31581,13 @@ "und": "Atlanta Falcons", "sF": "3", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 13" }, { "date": "Dec 14, 1969", @@ -21587,7 +31597,12 @@ "sF": "21", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 13" }, { "date": "Dec 14, 1969", @@ -21596,8 +31611,13 @@ "und": "St Louis Cardinals", "sF": "27", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 13" }, { "date": "Dec 14, 1969", @@ -21607,7 +31627,12 @@ "sF": "17", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 13" }, { "date": "Dec 13, 1969", @@ -21617,7 +31642,12 @@ "sF": "10", "sU": "6", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 14" }, { "date": "Dec 14, 1969", @@ -21627,7 +31657,12 @@ "sF": "27", "sU": "16", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 14" }, { "date": "Dec 14, 1969", @@ -21637,7 +31672,12 @@ "sF": "27", "sU": "23", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 14" }, { "date": "Dec 14, 1969", @@ -21646,8 +31686,13 @@ "und": "Miami Dolphins", "sF": "27", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 14" }, { "date": "Dec 14, 1969", @@ -21656,8 +31701,13 @@ "und": "Buffalo Bills", "sF": "45", "sU": "6", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 AFL Regular Season - Week 14" }, { "date": "Dec 21, 1969", @@ -21666,8 +31716,13 @@ "und": "Atlanta Falcons", "sF": "3", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 14" }, { "date": "Dec 21, 1969", @@ -21677,7 +31732,12 @@ "sF": "20", "sU": "3", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 14" }, { "date": "Dec 21, 1969", @@ -21687,7 +31747,12 @@ "sF": "20", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 14" }, { "date": "Dec 21, 1969", @@ -21697,7 +31762,12 @@ "sF": "45", "sU": "28", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 14" }, { "date": "Dec 21, 1969", @@ -21706,8 +31776,13 @@ "und": "Baltimore Colts", "sF": "7", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 14" }, { "date": "Dec 21, 1969", @@ -21717,7 +31792,12 @@ "sF": "27", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 14" }, { "date": "Dec 21, 1969", @@ -21726,8 +31806,13 @@ "und": "New York Giants", "sF": "14", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 14" }, { "date": "Dec 21, 1969", @@ -21736,8 +31821,13 @@ "und": "Philadelphia Eagles", "sF": "14", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 NFL Regular Season - Week 14" }, { "date": "Dec 20, 1969", @@ -21746,8 +31836,13 @@ "und": "New York Jets", "sF": "13", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 Playoffs" }, { "date": "Dec 21, 1969", @@ -21756,8 +31851,13 @@ "und": "Houston Oilers", "sF": "56", "sU": "7", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 Playoffs" }, { "date": "Dec 27, 1969", @@ -21767,7 +31867,12 @@ "sF": "23", "sU": "20", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 Playoffs" }, { "date": "Dec 28, 1969", @@ -21777,7 +31882,12 @@ "sF": "14", "sU": "38", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 Playoffs" }, { "date": "Jan 4, 1970", @@ -21787,7 +31897,12 @@ "sF": "27", "sU": "7", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 Playoffs" }, { "date": "Jan 4, 1970", @@ -21797,7 +31912,12 @@ "sF": "7", "sU": "17", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1969 Playoffs" }, { "date": "Jan 11, 1970", @@ -21807,7 +31927,12 @@ "sF": "7", "sU": "23", "spread": "12", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 13.5, + "sF": 25.5 + }, + "week": "1969 Playoffs" }, { "date": "Sep 18, 1970", @@ -21816,8 +31941,13 @@ "und": "St Louis Cardinals", "sF": "34", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 1" }, { "date": "Sep 19, 1970", @@ -21827,7 +31957,12 @@ "sF": "16", "sU": "24", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 1" }, { "date": "Sep 20, 1970", @@ -21837,7 +31972,12 @@ "sF": "14", "sU": "27", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 1" }, { "date": "Sep 20, 1970", @@ -21847,7 +31987,12 @@ "sF": "25", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 1" }, { "date": "Sep 20, 1970", @@ -21857,7 +32002,12 @@ "sF": "21", "sU": "31", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 1" }, { "date": "Sep 20, 1970", @@ -21867,7 +32017,12 @@ "sF": "17", "sU": "7", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 1" }, { "date": "Sep 20, 1970", @@ -21877,7 +32032,12 @@ "sF": "7", "sU": "19", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 1" }, { "date": "Sep 20, 1970", @@ -21887,7 +32047,12 @@ "sF": "14", "sU": "3", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 1" }, { "date": "Sep 20, 1970", @@ -21897,7 +32062,12 @@ "sF": "0", "sU": "40", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 1" }, { "date": "Sep 20, 1970", @@ -21907,7 +32077,12 @@ "sF": "27", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 1" }, { "date": "Sep 20, 1970", @@ -21917,7 +32092,12 @@ "sF": "16", "sU": "14", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 1" }, { "date": "Sep 20, 1970", @@ -21927,7 +32107,12 @@ "sF": "26", "sU": "17", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 1" }, { "date": "Sep 21, 1970", @@ -21937,7 +32122,12 @@ "sF": "31", "sU": "21", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 1" }, { "date": "Sep 27, 1970", @@ -21947,7 +32137,12 @@ "sF": "31", "sU": "21", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 2" }, { "date": "Sep 27, 1970", @@ -21957,7 +32152,12 @@ "sF": "19", "sU": "0", "spread": "18", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 2" }, { "date": "Sep 27, 1970", @@ -21967,7 +32167,12 @@ "sF": "38", "sU": "3", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 2" }, { "date": "Sep 27, 1970", @@ -21977,7 +32182,12 @@ "sF": "20", "sU": "16", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 2" }, { "date": "Sep 27, 1970", @@ -21987,7 +32197,12 @@ "sF": "28", "sU": "10", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 2" }, { "date": "Sep 27, 1970", @@ -21997,7 +32212,12 @@ "sF": "27", "sU": "24", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 2" }, { "date": "Sep 27, 1970", @@ -22007,7 +32227,12 @@ "sF": "10", "sU": "20", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 2" }, { "date": "Sep 27, 1970", @@ -22017,7 +32242,12 @@ "sF": "26", "sU": "0", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 2" }, { "date": "Sep 27, 1970", @@ -22027,7 +32257,12 @@ "sF": "27", "sU": "17", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 2" }, { "date": "Sep 27, 1970", @@ -22037,7 +32272,12 @@ "sF": "16", "sU": "13", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 2" }, { "date": "Sep 27, 1970", @@ -22047,7 +32287,12 @@ "sF": "27", "sU": "27", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 2" }, { "date": "Sep 27, 1970", @@ -22057,11 +32302,12 @@ "sF": "31", "sU": "34", "spread": "2", - "ou": "49", + "ou": null, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 2" }, { "date": "Sep 28, 1970", @@ -22071,7 +32317,12 @@ "sF": "44", "sU": "24", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 2" }, { "date": "Oct 3, 1970", @@ -22080,8 +32331,13 @@ "und": "Miami Dolphins", "sF": "13", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 3" }, { "date": "Oct 3, 1970", @@ -22090,8 +32346,13 @@ "und": "Pittsburgh Steelers", "sF": "15", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 3" }, { "date": "Oct 4, 1970", @@ -22101,11 +32362,12 @@ "sF": "21", "sU": "20", "spread": "2", - "ou": "49", + "ou": null, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 3" }, { "date": "Oct 4, 1970", @@ -22115,7 +32377,12 @@ "sF": "14", "sU": "6", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 3" }, { "date": "Oct 4, 1970", @@ -22125,7 +32392,12 @@ "sF": "31", "sU": "34", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 3" }, { "date": "Oct 4, 1970", @@ -22135,7 +32407,12 @@ "sF": "20", "sU": "13", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 3" }, { "date": "Oct 4, 1970", @@ -22145,7 +32422,12 @@ "sF": "33", "sU": "21", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 3" }, { "date": "Oct 4, 1970", @@ -22155,7 +32437,12 @@ "sF": "14", "sU": "10", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 3" }, { "date": "Oct 4, 1970", @@ -22165,7 +32452,12 @@ "sF": "7", "sU": "20", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 3" }, { "date": "Oct 4, 1970", @@ -22175,7 +32467,12 @@ "sF": "13", "sU": "26", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 3" }, { "date": "Oct 4, 1970", @@ -22185,7 +32482,12 @@ "sF": "10", "sU": "13", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 3" }, { "date": "Oct 4, 1970", @@ -22194,8 +32496,13 @@ "und": "San Diego Chargers", "sF": "37", "sU": "10", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 3" }, { "date": "Oct 5, 1970", @@ -22204,8 +32511,13 @@ "und": "Chicago Bears", "sF": "28", "sU": "14", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 3" }, { "date": "Oct 10, 1970", @@ -22215,7 +32527,12 @@ "sF": "6", "sU": "20", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 4" }, { "date": "Oct 11, 1970", @@ -22225,7 +32542,12 @@ "sF": "30", "sU": "27", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 4" }, { "date": "Oct 11, 1970", @@ -22235,7 +32557,12 @@ "sF": "30", "sU": "23", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 4" }, { "date": "Oct 11, 1970", @@ -22245,7 +32572,12 @@ "sF": "23", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 4" }, { "date": "Oct 11, 1970", @@ -22255,7 +32587,12 @@ "sF": "10", "sU": "31", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 4" }, { "date": "Oct 11, 1970", @@ -22265,7 +32602,12 @@ "sF": "24", "sU": "0", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 4" }, { "date": "Oct 11, 1970", @@ -22275,7 +32617,12 @@ "sF": "13", "sU": "0", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 4" }, { "date": "Oct 11, 1970", @@ -22285,7 +32632,12 @@ "sF": "24", "sU": "17", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 4" }, { "date": "Oct 11, 1970", @@ -22295,7 +32647,12 @@ "sF": "24", "sU": "20", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 4" }, { "date": "Oct 11, 1970", @@ -22305,7 +32662,12 @@ "sF": "23", "sU": "10", "spread": "18", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 4" }, { "date": "Oct 11, 1970", @@ -22314,12 +32676,13 @@ "und": "San Francisco 49ers", "sF": "6", "sU": "20", - "spread": "9", - "ou": "49", + "spread": "9.5", + "ou": null, "pScore": { - "sU": 20, - "sF": 29 - } + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 4" }, { "date": "Oct 11, 1970", @@ -22329,7 +32692,12 @@ "sF": "35", "sU": "23", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 4" }, { "date": "Oct 12, 1970", @@ -22338,8 +32706,13 @@ "und": "San Diego Chargers", "sF": "22", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 4" }, { "date": "Oct 18, 1970", @@ -22349,7 +32722,12 @@ "sF": "16", "sU": "0", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 5" }, { "date": "Oct 18, 1970", @@ -22358,8 +32736,13 @@ "und": "Buffalo Bills", "sF": "33", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 5" }, { "date": "Oct 18, 1970", @@ -22369,7 +32752,12 @@ "sF": "41", "sU": "24", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 5" }, { "date": "Oct 18, 1970", @@ -22379,7 +32767,12 @@ "sF": "29", "sU": "22", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 5" }, { "date": "Oct 18, 1970", @@ -22389,7 +32782,12 @@ "sF": "35", "sU": "20", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 5" }, { "date": "Oct 18, 1970", @@ -22399,7 +32797,12 @@ "sF": "7", "sU": "20", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 5" }, { "date": "Oct 18, 1970", @@ -22409,7 +32812,12 @@ "sF": "31", "sU": "21", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 5" }, { "date": "Oct 18, 1970", @@ -22418,8 +32826,13 @@ "und": "Pittsburgh Steelers", "sF": "3", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 5" }, { "date": "Oct 18, 1970", @@ -22429,7 +32842,12 @@ "sF": "27", "sU": "19", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 5" }, { "date": "Oct 18, 1970", @@ -22439,7 +32857,12 @@ "sF": "54", "sU": "13", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 5" }, { "date": "Oct 18, 1970", @@ -22449,7 +32872,12 @@ "sF": "20", "sU": "20", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 5" }, { "date": "Oct 19, 1970", @@ -22458,8 +32886,13 @@ "und": "Washington Redskins", "sF": "34", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 5" }, { "date": "Oct 25, 1970", @@ -22469,7 +32902,12 @@ "sF": "32", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 6" }, { "date": "Oct 25, 1970", @@ -22479,7 +32917,12 @@ "sF": "0", "sU": "28", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 6" }, { "date": "Oct 25, 1970", @@ -22489,7 +32932,12 @@ "sF": "17", "sU": "35", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 6" }, { "date": "Oct 25, 1970", @@ -22498,8 +32946,13 @@ "und": "Buffalo Bills", "sF": "6", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 6" }, { "date": "Oct 25, 1970", @@ -22509,7 +32962,12 @@ "sF": "20", "sU": "0", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 6" }, { "date": "Oct 25, 1970", @@ -22518,8 +32976,13 @@ "und": "Boston Patriots", "sF": "27", "sU": "3", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 6" }, { "date": "Oct 25, 1970", @@ -22529,7 +32992,12 @@ "sF": "16", "sU": "10", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 6" }, { "date": "Oct 25, 1970", @@ -22539,7 +33007,12 @@ "sF": "30", "sU": "17", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 6" }, { "date": "Oct 25, 1970", @@ -22549,7 +33022,12 @@ "sF": "16", "sU": "27", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 6" }, { "date": "Oct 25, 1970", @@ -22559,7 +33037,12 @@ "sF": "31", "sU": "14", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 6" }, { "date": "Oct 25, 1970", @@ -22568,8 +33051,13 @@ "und": "Houston Oilers", "sF": "31", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 6" }, { "date": "Oct 25, 1970", @@ -22578,8 +33066,13 @@ "und": "Denver Broncos", "sF": "19", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 6" }, { "date": "Oct 26, 1970", @@ -22588,8 +33081,13 @@ "und": "Los Angeles Rams", "sF": "13", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 6" }, { "date": "Nov 1, 1970", @@ -22598,8 +33096,13 @@ "und": "Chicago Bears", "sF": "14", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 7" }, { "date": "Nov 1, 1970", @@ -22609,7 +33112,12 @@ "sF": "10", "sU": "45", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 7" }, { "date": "Nov 1, 1970", @@ -22619,7 +33127,12 @@ "sF": "10", "sU": "27", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 7" }, { "date": "Nov 1, 1970", @@ -22629,7 +33142,12 @@ "sF": "17", "sU": "30", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 7" }, { "date": "Nov 1, 1970", @@ -22639,7 +33157,12 @@ "sF": "22", "sU": "10", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 7" }, { "date": "Nov 1, 1970", @@ -22648,8 +33171,13 @@ "und": "Miami Dolphins", "sF": "35", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 7" }, { "date": "Nov 1, 1970", @@ -22659,7 +33187,12 @@ "sF": "21", "sU": "17", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 7" }, { "date": "Nov 1, 1970", @@ -22668,8 +33201,13 @@ "und": "New Orleans Saints", "sF": "30", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 7" }, { "date": "Nov 1, 1970", @@ -22679,7 +33217,12 @@ "sF": "44", "sU": "0", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 7" }, { "date": "Nov 1, 1970", @@ -22688,8 +33231,13 @@ "und": "Washington Redskins", "sF": "3", "sU": "19", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 7" }, { "date": "Nov 1, 1970", @@ -22698,8 +33246,13 @@ "und": "Oakland Raiders", "sF": "17", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 7" }, { "date": "Nov 1, 1970", @@ -22708,8 +33261,13 @@ "und": "Green Bay Packers", "sF": "26", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 7" }, { "date": "Nov 2, 1970", @@ -22719,7 +33277,12 @@ "sF": "21", "sU": "10", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 7" }, { "date": "Nov 8, 1970", @@ -22729,7 +33292,12 @@ "sF": "14", "sU": "43", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 8" }, { "date": "Nov 8, 1970", @@ -22739,7 +33307,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 8" }, { "date": "Nov 8, 1970", @@ -22749,7 +33322,12 @@ "sF": "17", "sU": "24", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 8" }, { "date": "Nov 8, 1970", @@ -22759,7 +33337,12 @@ "sF": "21", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 8" }, { "date": "Nov 8, 1970", @@ -22769,7 +33352,12 @@ "sF": "19", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 8" }, { "date": "Nov 8, 1970", @@ -22779,7 +33367,12 @@ "sF": "37", "sU": "16", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 8" }, { "date": "Nov 8, 1970", @@ -22789,7 +33382,12 @@ "sF": "24", "sU": "9", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 8" }, { "date": "Nov 8, 1970", @@ -22799,7 +33397,12 @@ "sF": "17", "sU": "19", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 8" }, { "date": "Nov 8, 1970", @@ -22809,7 +33412,12 @@ "sF": "31", "sU": "0", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 8" }, { "date": "Nov 8, 1970", @@ -22819,7 +33427,12 @@ "sF": "10", "sU": "10", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 8" }, { "date": "Nov 8, 1970", @@ -22829,7 +33442,12 @@ "sF": "23", "sU": "20", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 8" }, { "date": "Nov 8, 1970", @@ -22838,8 +33456,13 @@ "und": "Denver Broncos", "sF": "24", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 8" }, { "date": "Nov 9, 1970", @@ -22849,7 +33472,12 @@ "sF": "13", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 8" }, { "date": "Nov 15, 1970", @@ -22859,7 +33487,12 @@ "sF": "16", "sU": "14", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 9" }, { "date": "Nov 15, 1970", @@ -22869,7 +33502,12 @@ "sF": "10", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 9" }, { "date": "Nov 15, 1970", @@ -22879,7 +33517,12 @@ "sF": "21", "sU": "10", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 9" }, { "date": "Nov 15, 1970", @@ -22889,7 +33532,12 @@ "sF": "35", "sU": "33", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 9" }, { "date": "Nov 15, 1970", @@ -22898,8 +33546,13 @@ "und": "Philadelphia Eagles", "sF": "13", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 9" }, { "date": "Nov 15, 1970", @@ -22909,7 +33562,12 @@ "sF": "31", "sU": "14", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 9" }, { "date": "Nov 15, 1970", @@ -22919,7 +33577,12 @@ "sF": "17", "sU": "17", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 9" }, { "date": "Nov 15, 1970", @@ -22929,7 +33592,12 @@ "sF": "20", "sU": "19", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 9" }, { "date": "Nov 15, 1970", @@ -22939,7 +33607,12 @@ "sF": "30", "sU": "20", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 9" }, { "date": "Nov 15, 1970", @@ -22948,8 +33621,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 9" }, { "date": "Nov 15, 1970", @@ -22959,7 +33637,12 @@ "sF": "24", "sU": "19", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 9" }, { "date": "Nov 15, 1970", @@ -22968,8 +33651,13 @@ "und": "New York Jets", "sF": "20", "sU": "31", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 9" }, { "date": "Nov 16, 1970", @@ -22979,7 +33667,12 @@ "sF": "0", "sU": "38", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 9" }, { "date": "Nov 22, 1970", @@ -22988,8 +33681,13 @@ "und": "Atlanta Falcons", "sF": "17", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 10" }, { "date": "Nov 22, 1970", @@ -22999,7 +33697,12 @@ "sF": "34", "sU": "7", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 10" }, { "date": "Nov 22, 1970", @@ -23009,7 +33712,12 @@ "sF": "28", "sU": "14", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 10" }, { "date": "Nov 22, 1970", @@ -23018,12 +33726,13 @@ "und": "San Francisco 49ers", "sF": "28", "sU": "7", - "spread": "1", - "ou": "49", + "spread": "1.5", + "ou": null, "pScore": { - "sU": 24, - "sF": 25 - } + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 10" }, { "date": "Nov 22, 1970", @@ -23033,7 +33742,12 @@ "sF": "17", "sU": "34", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 10" }, { "date": "Nov 22, 1970", @@ -23043,7 +33757,12 @@ "sF": "31", "sU": "6", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 10" }, { "date": "Nov 22, 1970", @@ -23053,7 +33772,12 @@ "sF": "17", "sU": "3", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 10" }, { "date": "Nov 22, 1970", @@ -23062,8 +33786,13 @@ "und": "Dallas Cowboys", "sF": "21", "sU": "45", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 10" }, { "date": "Nov 22, 1970", @@ -23073,7 +33802,12 @@ "sF": "31", "sU": "13", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 10" }, { "date": "Nov 22, 1970", @@ -23083,7 +33817,12 @@ "sF": "10", "sU": "3", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 10" }, { "date": "Nov 22, 1970", @@ -23093,7 +33832,12 @@ "sF": "6", "sU": "6", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 10" }, { "date": "Nov 22, 1970", @@ -23103,7 +33847,12 @@ "sF": "20", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 10" }, { "date": "Nov 23, 1970", @@ -23113,7 +33862,12 @@ "sF": "20", "sU": "23", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 10" }, { "date": "Nov 26, 1970", @@ -23123,7 +33877,12 @@ "sF": "28", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 11" }, { "date": "Nov 26, 1970", @@ -23133,7 +33892,12 @@ "sF": "16", "sU": "3", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 11" }, { "date": "Nov 29, 1970", @@ -23142,8 +33906,13 @@ "und": "Boston Patriots", "sF": "10", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 11" }, { "date": "Nov 29, 1970", @@ -23153,7 +33922,12 @@ "sF": "26", "sU": "6", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 11" }, { "date": "Nov 29, 1970", @@ -23163,7 +33937,12 @@ "sF": "10", "sU": "20", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 11" }, { "date": "Nov 29, 1970", @@ -23173,7 +33952,12 @@ "sF": "9", "sU": "28", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 11" }, { "date": "Nov 29, 1970", @@ -23183,7 +33967,12 @@ "sF": "27", "sU": "24", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 11" }, { "date": "Nov 29, 1970", @@ -23192,8 +33981,13 @@ "und": "Chicago Bears", "sF": "21", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 11" }, { "date": "Nov 29, 1970", @@ -23202,8 +33996,13 @@ "und": "Houston Oilers", "sF": "21", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 11" }, { "date": "Nov 29, 1970", @@ -23212,8 +34011,13 @@ "und": "Philadelphia Eagles", "sF": "23", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 11" }, { "date": "Nov 29, 1970", @@ -23223,7 +34027,12 @@ "sF": "26", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 11" }, { "date": "Nov 29, 1970", @@ -23232,8 +34041,13 @@ "und": "Los Angeles Rams", "sF": "13", "sU": "30", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 11" }, { "date": "Nov 30, 1970", @@ -23243,7 +34057,12 @@ "sF": "7", "sU": "20", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 11" }, { "date": "Dec 5, 1970", @@ -23253,7 +34072,12 @@ "sF": "16", "sU": "13", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 12" }, { "date": "Dec 6, 1970", @@ -23263,7 +34087,12 @@ "sF": "16", "sU": "3", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 12" }, { "date": "Dec 6, 1970", @@ -23273,7 +34102,12 @@ "sF": "37", "sU": "20", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 12" }, { "date": "Dec 6, 1970", @@ -23283,7 +34117,12 @@ "sF": "20", "sU": "6", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 12" }, { "date": "Dec 6, 1970", @@ -23293,7 +34132,12 @@ "sF": "14", "sU": "13", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 12" }, { "date": "Dec 6, 1970", @@ -23303,7 +34147,12 @@ "sF": "20", "sU": "12", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 12" }, { "date": "Dec 6, 1970", @@ -23313,7 +34162,12 @@ "sF": "29", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 12" }, { "date": "Dec 6, 1970", @@ -23323,7 +34177,12 @@ "sF": "16", "sU": "0", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 12" }, { "date": "Dec 6, 1970", @@ -23333,7 +34192,12 @@ "sF": "34", "sU": "0", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 12" }, { "date": "Dec 6, 1970", @@ -23343,7 +34207,12 @@ "sF": "34", "sU": "16", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 12" }, { "date": "Dec 6, 1970", @@ -23352,8 +34221,13 @@ "und": "Cincinnati Bengals", "sF": "14", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 12" }, { "date": "Dec 6, 1970", @@ -23363,7 +34237,12 @@ "sF": "24", "sU": "20", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 12" }, { "date": "Dec 7, 1970", @@ -23372,8 +34251,13 @@ "und": "Houston Oilers", "sF": "21", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 12" }, { "date": "Dec 12, 1970", @@ -23382,8 +34266,13 @@ "und": "Cleveland Browns", "sF": "6", "sU": "2", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 13" }, { "date": "Dec 13, 1970", @@ -23393,7 +34282,12 @@ "sF": "35", "sU": "14", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 13" }, { "date": "Dec 13, 1970", @@ -23402,8 +34296,13 @@ "und": "Pittsburgh Steelers", "sF": "27", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 13" }, { "date": "Dec 13, 1970", @@ -23413,7 +34312,12 @@ "sF": "20", "sU": "14", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 13" }, { "date": "Dec 13, 1970", @@ -23423,7 +34327,12 @@ "sF": "35", "sU": "17", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 13" }, { "date": "Dec 13, 1970", @@ -23433,7 +34342,12 @@ "sF": "30", "sU": "20", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 13" }, { "date": "Dec 13, 1970", @@ -23443,7 +34357,12 @@ "sF": "38", "sU": "27", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 13" }, { "date": "Dec 13, 1970", @@ -23453,7 +34372,12 @@ "sF": "17", "sU": "34", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 13" }, { "date": "Dec 13, 1970", @@ -23463,7 +34387,12 @@ "sF": "16", "sU": "10", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 13" }, { "date": "Dec 14, 1970", @@ -23472,8 +34401,13 @@ "und": "Detroit Lions", "sF": "23", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 13" }, { "date": "Dec 19, 1970", @@ -23483,7 +34417,12 @@ "sF": "35", "sU": "20", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 14" }, { "date": "Dec 20, 1970", @@ -23492,8 +34431,13 @@ "und": "Atlanta Falcons", "sF": "37", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 14" }, { "date": "Dec 20, 1970", @@ -23503,7 +34447,12 @@ "sF": "45", "sU": "7", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 14" }, { "date": "Dec 20, 1970", @@ -23513,7 +34462,12 @@ "sF": "20", "sU": "0", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 14" }, { "date": "Dec 20, 1970", @@ -23523,7 +34477,12 @@ "sF": "45", "sU": "7", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 14" }, { "date": "Dec 20, 1970", @@ -23533,7 +34492,12 @@ "sF": "3", "sU": "31", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 14" }, { "date": "Dec 20, 1970", @@ -23543,7 +34507,12 @@ "sF": "30", "sU": "20", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 14" }, { "date": "Dec 20, 1970", @@ -23553,7 +34522,12 @@ "sF": "27", "sU": "28", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 14" }, { "date": "Dec 20, 1970", @@ -23562,8 +34536,13 @@ "und": "Houston Oilers", "sF": "52", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 14" }, { "date": "Dec 20, 1970", @@ -23573,7 +34552,12 @@ "sF": "24", "sU": "3", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 14" }, { "date": "Dec 20, 1970", @@ -23583,7 +34567,12 @@ "sF": "27", "sU": "13", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 14" }, { "date": "Dec 20, 1970", @@ -23592,8 +34581,13 @@ "und": "Oakland Raiders", "sF": "38", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 14" }, { "date": "Dec 20, 1970", @@ -23603,7 +34597,12 @@ "sF": "13", "sU": "31", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Regular Season - Week 14" }, { "date": "Dec 26, 1970", @@ -23613,7 +34612,12 @@ "sF": "17", "sU": "0", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Playoffs" }, { "date": "Dec 26, 1970", @@ -23623,7 +34627,12 @@ "sF": "0", "sU": "5", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Playoffs" }, { "date": "Dec 27, 1970", @@ -23633,11 +34642,12 @@ "sF": "14", "sU": "17", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1970 Playoffs" }, { "date": "Dec 27, 1970", @@ -23647,7 +34657,12 @@ "sF": "21", "sU": "14", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Playoffs" }, { "date": "Jan 3, 1971", @@ -23656,8 +34671,13 @@ "und": "Baltimore Colts", "sF": "17", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Playoffs" }, { "date": "Jan 3, 1971", @@ -23667,7 +34687,12 @@ "sF": "10", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1970 Playoffs" }, { "date": "Jan 17, 1971", @@ -23676,8 +34701,13 @@ "und": "Dallas Cowboys", "sF": "16", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "1970 Playoffs" }, { "date": "Sep 19, 1971", @@ -23687,7 +34717,12 @@ "sF": "17", "sU": "20", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 1" }, { "date": "Sep 19, 1971", @@ -23697,7 +34732,12 @@ "sF": "49", "sU": "37", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 1" }, { "date": "Sep 19, 1971", @@ -23706,8 +34746,13 @@ "und": "Philadelphia Eagles", "sF": "37", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 1" }, { "date": "Sep 19, 1971", @@ -23716,8 +34761,13 @@ "und": "Houston Oilers", "sF": "31", "sU": "0", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 1" }, { "date": "Sep 19, 1971", @@ -23726,8 +34776,13 @@ "und": "New England Patriots", "sF": "6", "sU": "20", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 1" }, { "date": "Sep 19, 1971", @@ -23737,7 +34792,12 @@ "sF": "17", "sU": "15", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 1" }, { "date": "Sep 19, 1971", @@ -23747,7 +34807,12 @@ "sF": "40", "sU": "42", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 1" }, { "date": "Sep 19, 1971", @@ -23757,7 +34822,12 @@ "sF": "20", "sU": "24", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 1" }, { "date": "Sep 19, 1971", @@ -23766,8 +34836,13 @@ "und": "Washington Redskins", "sF": "17", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 1" }, { "date": "Sep 19, 1971", @@ -23777,7 +34852,12 @@ "sF": "22", "sU": "0", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 1" }, { "date": "Sep 19, 1971", @@ -23786,8 +34866,13 @@ "und": "Denver Broncos", "sF": "10", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 1" }, { "date": "Sep 19, 1971", @@ -23797,7 +34882,12 @@ "sF": "14", "sU": "21", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 1" }, { "date": "Sep 20, 1971", @@ -23806,8 +34896,13 @@ "und": "Detroit Lions", "sF": "16", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 1" }, { "date": "Sep 26, 1971", @@ -23816,8 +34911,13 @@ "und": "Buffalo Bills", "sF": "29", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 2" }, { "date": "Sep 26, 1971", @@ -23827,7 +34927,12 @@ "sF": "34", "sU": "13", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 2" }, { "date": "Sep 26, 1971", @@ -23837,7 +34942,12 @@ "sF": "34", "sU": "7", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 2" }, { "date": "Sep 26, 1971", @@ -23846,8 +34956,13 @@ "und": "New York Giants", "sF": "30", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 2" }, { "date": "Sep 26, 1971", @@ -23856,8 +34971,13 @@ "und": "Philadelphia Eagles", "sF": "42", "sU": "7", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 2" }, { "date": "Sep 26, 1971", @@ -23866,8 +34986,13 @@ "und": "Pittsburgh Steelers", "sF": "10", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 2" }, { "date": "Sep 26, 1971", @@ -23876,8 +35001,13 @@ "und": "Cleveland Browns", "sF": "13", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 2" }, { "date": "Sep 26, 1971", @@ -23886,8 +35016,13 @@ "und": "Houston Oilers", "sF": "20", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 2" }, { "date": "Sep 26, 1971", @@ -23896,8 +35031,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "20", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 2" }, { "date": "Sep 26, 1971", @@ -23907,7 +35047,12 @@ "sF": "38", "sU": "20", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 2" }, { "date": "Sep 26, 1971", @@ -23916,8 +35061,13 @@ "und": "Atlanta Falcons", "sF": "20", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 2" }, { "date": "Sep 26, 1971", @@ -23926,8 +35076,13 @@ "und": "San Diego Chargers", "sF": "34", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 2" }, { "date": "Sep 27, 1971", @@ -23936,8 +35091,13 @@ "und": "New York Jets", "sF": "17", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 2" }, { "date": "Oct 3, 1971", @@ -23946,8 +35106,13 @@ "und": "New York Jets", "sF": "10", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 3" }, { "date": "Oct 3, 1971", @@ -23957,7 +35122,12 @@ "sF": "23", "sU": "3", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 3" }, { "date": "Oct 3, 1971", @@ -23966,8 +35136,13 @@ "und": "Philadelphia Eagles", "sF": "31", "sU": "3", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 3" }, { "date": "Oct 3, 1971", @@ -23977,7 +35152,12 @@ "sF": "21", "sU": "17", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 3" }, { "date": "Oct 3, 1971", @@ -23987,7 +35167,12 @@ "sF": "16", "sU": "20", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 3" }, { "date": "Oct 3, 1971", @@ -23997,7 +35182,12 @@ "sF": "41", "sU": "38", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 3" }, { "date": "Oct 3, 1971", @@ -24007,7 +35197,12 @@ "sF": "17", "sU": "20", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 3" }, { "date": "Oct 3, 1971", @@ -24017,7 +35212,12 @@ "sF": "13", "sU": "13", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 3" }, { "date": "Oct 3, 1971", @@ -24027,7 +35227,12 @@ "sF": "19", "sU": "0", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 3" }, { "date": "Oct 3, 1971", @@ -24036,8 +35241,13 @@ "und": "Denver Broncos", "sF": "16", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 3" }, { "date": "Oct 3, 1971", @@ -24047,7 +35257,12 @@ "sF": "17", "sU": "3", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 3" }, { "date": "Oct 3, 1971", @@ -24056,8 +35271,13 @@ "und": "New York Giants", "sF": "20", "sU": "21", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 3" }, { "date": "Oct 4, 1971", @@ -24067,7 +35287,12 @@ "sF": "34", "sU": "20", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 3" }, { "date": "Oct 10, 1971", @@ -24077,7 +35302,12 @@ "sF": "9", "sU": "26", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 4" }, { "date": "Oct 10, 1971", @@ -24087,7 +35317,12 @@ "sF": "43", "sU": "0", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 4" }, { "date": "Oct 10, 1971", @@ -24097,7 +35332,12 @@ "sF": "23", "sU": "13", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 4" }, { "date": "Oct 10, 1971", @@ -24107,7 +35347,12 @@ "sF": "27", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 4" }, { "date": "Oct 10, 1971", @@ -24117,7 +35362,12 @@ "sF": "0", "sU": "20", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 4" }, { "date": "Oct 10, 1971", @@ -24127,7 +35377,12 @@ "sF": "13", "sU": "0", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 4" }, { "date": "Oct 10, 1971", @@ -24136,8 +35391,13 @@ "und": "Houston Oilers", "sF": "22", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 4" }, { "date": "Oct 10, 1971", @@ -24147,7 +35407,12 @@ "sF": "35", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 4" }, { "date": "Oct 10, 1971", @@ -24157,7 +35422,12 @@ "sF": "31", "sU": "28", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 4" }, { "date": "Oct 10, 1971", @@ -24167,7 +35437,12 @@ "sF": "31", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 4" }, { "date": "Oct 10, 1971", @@ -24177,7 +35452,12 @@ "sF": "27", "sU": "16", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 4" }, { "date": "Oct 10, 1971", @@ -24186,8 +35466,13 @@ "und": "Los Angeles Rams", "sF": "13", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 4" }, { "date": "Oct 11, 1971", @@ -24197,7 +35482,12 @@ "sF": "20", "sU": "13", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 4" }, { "date": "Oct 17, 1971", @@ -24206,8 +35496,13 @@ "und": "Atlanta Falcons", "sF": "24", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 5" }, { "date": "Oct 17, 1971", @@ -24217,7 +35512,12 @@ "sF": "41", "sU": "3", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 5" }, { "date": "Oct 17, 1971", @@ -24227,7 +35527,12 @@ "sF": "31", "sU": "7", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 5" }, { "date": "Oct 17, 1971", @@ -24237,7 +35542,12 @@ "sF": "28", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 5" }, { "date": "Oct 17, 1971", @@ -24247,7 +35557,12 @@ "sF": "20", "sU": "0", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 5" }, { "date": "Oct 17, 1971", @@ -24257,7 +35572,12 @@ "sF": "31", "sU": "7", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 5" }, { "date": "Oct 17, 1971", @@ -24267,7 +35587,12 @@ "sF": "14", "sU": "24", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 5" }, { "date": "Oct 17, 1971", @@ -24277,7 +35602,12 @@ "sF": "27", "sU": "24", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 5" }, { "date": "Oct 17, 1971", @@ -24286,8 +35616,13 @@ "und": "Denver Broncos", "sF": "16", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 5" }, { "date": "Oct 17, 1971", @@ -24297,7 +35632,12 @@ "sF": "24", "sU": "13", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 5" }, { "date": "Oct 17, 1971", @@ -24307,7 +35647,12 @@ "sF": "34", "sU": "10", "spread": "18", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 5" }, { "date": "Oct 17, 1971", @@ -24317,7 +35662,12 @@ "sF": "13", "sU": "0", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 5" }, { "date": "Oct 18, 1971", @@ -24327,7 +35677,12 @@ "sF": "38", "sU": "16", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 5" }, { "date": "Oct 23, 1971", @@ -24337,7 +35692,12 @@ "sF": "20", "sU": "3", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 6" }, { "date": "Oct 24, 1971", @@ -24347,7 +35707,12 @@ "sF": "28", "sU": "6", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 6" }, { "date": "Oct 24, 1971", @@ -24357,7 +35722,12 @@ "sF": "0", "sU": "27", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 6" }, { "date": "Oct 24, 1971", @@ -24367,7 +35737,12 @@ "sF": "30", "sU": "14", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 6" }, { "date": "Oct 24, 1971", @@ -24377,7 +35752,12 @@ "sF": "7", "sU": "23", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 6" }, { "date": "Oct 24, 1971", @@ -24387,7 +35767,12 @@ "sF": "23", "sU": "16", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 6" }, { "date": "Oct 24, 1971", @@ -24397,7 +35782,12 @@ "sF": "44", "sU": "21", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 6" }, { "date": "Oct 24, 1971", @@ -24407,7 +35797,12 @@ "sF": "23", "sU": "28", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 6" }, { "date": "Oct 24, 1971", @@ -24417,7 +35812,12 @@ "sF": "26", "sU": "14", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 6" }, { "date": "Oct 24, 1971", @@ -24427,7 +35827,12 @@ "sF": "27", "sU": "20", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 6" }, { "date": "Oct 24, 1971", @@ -24436,8 +35841,13 @@ "und": "Green Bay Packers", "sF": "30", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 6" }, { "date": "Oct 24, 1971", @@ -24447,7 +35857,12 @@ "sF": "31", "sU": "27", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 6" }, { "date": "Oct 25, 1971", @@ -24457,7 +35872,12 @@ "sF": "10", "sU": "3", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 6" }, { "date": "Oct 31, 1971", @@ -24467,7 +35887,12 @@ "sF": "28", "sU": "23", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 7" }, { "date": "Oct 31, 1971", @@ -24477,7 +35902,12 @@ "sF": "14", "sU": "31", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 7" }, { "date": "Oct 31, 1971", @@ -24487,7 +35917,12 @@ "sF": "17", "sU": "10", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 7" }, { "date": "Oct 31, 1971", @@ -24497,7 +35932,12 @@ "sF": "16", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 7" }, { "date": "Oct 31, 1971", @@ -24507,7 +35947,12 @@ "sF": "24", "sU": "14", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 7" }, { "date": "Oct 31, 1971", @@ -24517,7 +35962,12 @@ "sF": "34", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 7" }, { "date": "Oct 31, 1971", @@ -24527,7 +35977,12 @@ "sF": "19", "sU": "23", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 7" }, { "date": "Oct 31, 1971", @@ -24537,7 +35992,12 @@ "sF": "6", "sU": "10", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 7" }, { "date": "Oct 31, 1971", @@ -24547,7 +36007,12 @@ "sF": "14", "sU": "20", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 7" }, { "date": "Oct 31, 1971", @@ -24557,7 +36022,12 @@ "sF": "49", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 7" }, { "date": "Oct 31, 1971", @@ -24567,7 +36037,12 @@ "sF": "27", "sU": "10", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 7" }, { "date": "Nov 1, 1971", @@ -24577,7 +36052,12 @@ "sF": "14", "sU": "14", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 7" }, { "date": "Nov 7, 1971", @@ -24587,7 +36067,12 @@ "sF": "9", "sU": "6", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 8" }, { "date": "Nov 7, 1971", @@ -24597,7 +36082,12 @@ "sF": "34", "sU": "0", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 8" }, { "date": "Nov 7, 1971", @@ -24607,7 +36097,12 @@ "sF": "20", "sU": "28", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 8" }, { "date": "Nov 7, 1971", @@ -24616,8 +36111,13 @@ "und": "New York Giants", "sF": "17", "sU": "35", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 8" }, { "date": "Nov 7, 1971", @@ -24627,7 +36127,12 @@ "sF": "10", "sU": "13", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 8" }, { "date": "Nov 7, 1971", @@ -24637,7 +36142,12 @@ "sF": "26", "sU": "9", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 8" }, { "date": "Nov 7, 1971", @@ -24647,7 +36157,12 @@ "sF": "7", "sU": "7", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 8" }, { "date": "Nov 7, 1971", @@ -24657,7 +36172,12 @@ "sF": "14", "sU": "17", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 8" }, { "date": "Nov 7, 1971", @@ -24667,7 +36187,12 @@ "sF": "21", "sU": "21", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 8" }, { "date": "Nov 7, 1971", @@ -24677,7 +36202,12 @@ "sF": "16", "sU": "13", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 8" }, { "date": "Nov 7, 1971", @@ -24686,12 +36216,13 @@ "und": "San Francisco 49ers", "sF": "9", "sU": "13", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 8" }, { "date": "Nov 7, 1971", @@ -24701,7 +36232,12 @@ "sF": "24", "sU": "20", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 8" }, { "date": "Nov 8, 1971", @@ -24711,7 +36247,12 @@ "sF": "24", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 8" }, { "date": "Nov 14, 1971", @@ -24721,7 +36262,12 @@ "sF": "17", "sU": "21", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 9" }, { "date": "Nov 14, 1971", @@ -24731,7 +36277,12 @@ "sF": "24", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 9" }, { "date": "Nov 14, 1971", @@ -24740,8 +36291,13 @@ "und": "Buffalo Bills", "sF": "38", "sU": "33", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 9" }, { "date": "Nov 14, 1971", @@ -24751,7 +36307,12 @@ "sF": "14", "sU": "13", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 9" }, { "date": "Nov 14, 1971", @@ -24761,7 +36322,12 @@ "sF": "20", "sU": "7", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 9" }, { "date": "Nov 14, 1971", @@ -24771,7 +36337,12 @@ "sF": "13", "sU": "21", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 9" }, { "date": "Nov 14, 1971", @@ -24781,7 +36352,12 @@ "sF": "3", "sU": "0", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 9" }, { "date": "Nov 14, 1971", @@ -24791,7 +36367,12 @@ "sF": "10", "sU": "24", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 9" }, { "date": "Nov 14, 1971", @@ -24801,7 +36382,12 @@ "sF": "13", "sU": "7", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 9" }, { "date": "Nov 14, 1971", @@ -24811,7 +36397,12 @@ "sF": "41", "sU": "21", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 9" }, { "date": "Nov 14, 1971", @@ -24821,7 +36412,12 @@ "sF": "20", "sU": "26", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 9" }, { "date": "Nov 15, 1971", @@ -24831,7 +36427,12 @@ "sF": "20", "sU": "17", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 9" }, { "date": "Nov 21, 1971", @@ -24841,7 +36442,12 @@ "sF": "20", "sU": "7", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 10" }, { "date": "Nov 21, 1971", @@ -24851,7 +36457,12 @@ "sF": "28", "sU": "13", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 10" }, { "date": "Nov 21, 1971", @@ -24861,7 +36472,12 @@ "sF": "27", "sU": "7", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 10" }, { "date": "Nov 21, 1971", @@ -24871,7 +36487,12 @@ "sF": "17", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 10" }, { "date": "Nov 21, 1971", @@ -24880,8 +36501,13 @@ "und": "New York Giants", "sF": "17", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 10" }, { "date": "Nov 21, 1971", @@ -24891,7 +36517,12 @@ "sF": "13", "sU": "0", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 10" }, { "date": "Nov 21, 1971", @@ -24901,7 +36532,12 @@ "sF": "28", "sU": "3", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 10" }, { "date": "Nov 21, 1971", @@ -24911,7 +36547,12 @@ "sF": "28", "sU": "10", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 10" }, { "date": "Nov 21, 1971", @@ -24921,7 +36562,12 @@ "sF": "23", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 10" }, { "date": "Nov 21, 1971", @@ -24931,7 +36577,12 @@ "sF": "20", "sU": "37", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 10" }, { "date": "Nov 21, 1971", @@ -24941,11 +36592,12 @@ "sF": "17", "sU": "6", "spread": "1", - "ou": "49", + "ou": null, "pScore": { - "sU": 24, - "sF": 25 - } + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 10" }, { "date": "Nov 21, 1971", @@ -24955,7 +36607,12 @@ "sF": "34", "sU": "33", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 10" }, { "date": "Nov 22, 1971", @@ -24965,7 +36622,12 @@ "sF": "28", "sU": "21", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 10" }, { "date": "Nov 25, 1971", @@ -24975,7 +36637,12 @@ "sF": "28", "sU": "21", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 11" }, { "date": "Nov 28, 1971", @@ -24985,7 +36652,12 @@ "sF": "31", "sU": "0", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 11" }, { "date": "Nov 28, 1971", @@ -24995,7 +36667,12 @@ "sF": "7", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 11" }, { "date": "Nov 28, 1971", @@ -25005,11 +36682,12 @@ "sF": "21", "sU": "24", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 11" }, { "date": "Nov 28, 1971", @@ -25019,7 +36697,12 @@ "sF": "13", "sU": "20", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 11" }, { "date": "Nov 28, 1971", @@ -25029,7 +36712,12 @@ "sF": "10", "sU": "22", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 11" }, { "date": "Nov 28, 1971", @@ -25039,7 +36727,12 @@ "sF": "21", "sU": "29", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 11" }, { "date": "Nov 28, 1971", @@ -25049,7 +36742,12 @@ "sF": "24", "sU": "7", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 11" }, { "date": "Nov 28, 1971", @@ -25059,7 +36757,12 @@ "sF": "37", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 11" }, { "date": "Nov 28, 1971", @@ -25069,7 +36772,12 @@ "sF": "14", "sU": "37", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 11" }, { "date": "Nov 29, 1971", @@ -25079,7 +36787,12 @@ "sF": "34", "sU": "3", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 11" }, { "date": "Dec 4, 1971", @@ -25089,7 +36802,12 @@ "sF": "52", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 12" }, { "date": "Dec 5, 1971", @@ -25099,7 +36817,12 @@ "sF": "24", "sU": "13", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 12" }, { "date": "Dec 5, 1971", @@ -25109,7 +36832,12 @@ "sF": "31", "sU": "27", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 12" }, { "date": "Dec 5, 1971", @@ -25119,7 +36847,12 @@ "sF": "20", "sU": "23", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 12" }, { "date": "Dec 5, 1971", @@ -25129,7 +36862,12 @@ "sF": "13", "sU": "34", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 12" }, { "date": "Dec 5, 1971", @@ -25139,7 +36877,12 @@ "sF": "23", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 12" }, { "date": "Dec 5, 1971", @@ -25149,7 +36892,12 @@ "sF": "24", "sU": "0", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 12" }, { "date": "Dec 5, 1971", @@ -25159,7 +36907,12 @@ "sF": "3", "sU": "29", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 12" }, { "date": "Dec 5, 1971", @@ -25169,7 +36922,12 @@ "sF": "6", "sU": "3", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 12" }, { "date": "Dec 5, 1971", @@ -25179,7 +36937,12 @@ "sF": "45", "sU": "28", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 12" }, { "date": "Dec 5, 1971", @@ -25189,7 +36952,12 @@ "sF": "14", "sU": "30", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 12" }, { "date": "Dec 5, 1971", @@ -25199,7 +36967,12 @@ "sF": "16", "sU": "16", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 12" }, { "date": "Dec 6, 1971", @@ -25208,8 +36981,13 @@ "und": "Kansas City Chiefs", "sF": "17", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 12" }, { "date": "Dec 11, 1971", @@ -25219,7 +36997,12 @@ "sF": "29", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 13" }, { "date": "Dec 11, 1971", @@ -25229,7 +37012,12 @@ "sF": "14", "sU": "3", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 13" }, { "date": "Dec 12, 1971", @@ -25239,7 +37027,12 @@ "sF": "13", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 13" }, { "date": "Dec 12, 1971", @@ -25249,7 +37042,12 @@ "sF": "42", "sU": "14", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 13" }, { "date": "Dec 12, 1971", @@ -25258,8 +37056,13 @@ "und": "New England Patriots", "sF": "13", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 13" }, { "date": "Dec 12, 1971", @@ -25269,7 +37072,12 @@ "sF": "31", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 13" }, { "date": "Dec 12, 1971", @@ -25279,7 +37087,12 @@ "sF": "17", "sU": "21", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 13" }, { "date": "Dec 12, 1971", @@ -25289,7 +37102,12 @@ "sF": "16", "sU": "14", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 13" }, { "date": "Dec 12, 1971", @@ -25299,7 +37117,12 @@ "sF": "45", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 13" }, { "date": "Dec 12, 1971", @@ -25309,7 +37132,12 @@ "sF": "24", "sU": "3", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 13" }, { "date": "Dec 13, 1971", @@ -25319,7 +37147,12 @@ "sF": "24", "sU": "38", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 13" }, { "date": "Dec 18, 1971", @@ -25328,8 +37161,13 @@ "und": "St Louis Cardinals", "sF": "31", "sU": "12", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 14" }, { "date": "Dec 19, 1971", @@ -25339,7 +37177,12 @@ "sF": "27", "sU": "6", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 14" }, { "date": "Dec 19, 1971", @@ -25349,7 +37192,12 @@ "sF": "41", "sU": "28", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 14" }, { "date": "Dec 19, 1971", @@ -25359,7 +37207,12 @@ "sF": "35", "sU": "21", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 14" }, { "date": "Dec 19, 1971", @@ -25369,7 +37222,12 @@ "sF": "23", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 14" }, { "date": "Dec 19, 1971", @@ -25379,7 +37237,12 @@ "sF": "13", "sU": "20", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 14" }, { "date": "Dec 19, 1971", @@ -25388,8 +37251,13 @@ "und": "New England Patriots", "sF": "17", "sU": "21", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 14" }, { "date": "Dec 19, 1971", @@ -25399,7 +37267,12 @@ "sF": "27", "sU": "10", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 14" }, { "date": "Dec 19, 1971", @@ -25409,7 +37282,12 @@ "sF": "22", "sU": "9", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 14" }, { "date": "Dec 19, 1971", @@ -25419,7 +37297,12 @@ "sF": "24", "sU": "20", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 14" }, { "date": "Dec 19, 1971", @@ -25429,7 +37312,12 @@ "sF": "21", "sU": "13", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 14" }, { "date": "Dec 19, 1971", @@ -25438,8 +37326,13 @@ "und": "Detroit Lions", "sF": "31", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Regular Season - Week 14" }, { "date": "Dec 25, 1971", @@ -25449,7 +37342,12 @@ "sF": "20", "sU": "12", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Playoffs" }, { "date": "Dec 25, 1971", @@ -25459,7 +37357,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Playoffs" }, { "date": "Dec 26, 1971", @@ -25469,7 +37372,12 @@ "sF": "20", "sU": "3", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Playoffs" }, { "date": "Dec 26, 1971", @@ -25478,8 +37386,13 @@ "und": "Washington Redskins", "sF": "24", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Playoffs" }, { "date": "Jan 2, 1972", @@ -25489,11 +37402,12 @@ "sF": "14", "sU": "3", "spread": "5", - "ou": "49", + "ou": null, "pScore": { - "sU": 22, - "sF": 27 - } + "sF": null, + "sU": null + }, + "week": "1971 Playoffs" }, { "date": "Jan 2, 1972", @@ -25503,7 +37417,12 @@ "sF": "21", "sU": "0", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1971 Playoffs" }, { "date": "Jan 16, 1972", @@ -25513,7 +37432,12 @@ "sF": "24", "sU": "3", "spread": "6", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 14.0, + "sF": 20.0 + }, + "week": "1971 Playoffs" }, { "date": "Sep 17, 1972", @@ -25523,7 +37447,12 @@ "sF": "41", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 1" }, { "date": "Sep 17, 1972", @@ -25533,7 +37462,12 @@ "sF": "31", "sU": "7", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 1" }, { "date": "Sep 17, 1972", @@ -25542,8 +37476,13 @@ "und": "Pittsburgh Steelers", "sF": "28", "sU": "34", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 1" }, { "date": "Sep 17, 1972", @@ -25553,7 +37492,12 @@ "sF": "3", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 1" }, { "date": "Sep 17, 1972", @@ -25563,7 +37507,12 @@ "sF": "37", "sU": "21", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 1" }, { "date": "Sep 17, 1972", @@ -25573,7 +37522,12 @@ "sF": "28", "sU": "6", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 1" }, { "date": "Sep 17, 1972", @@ -25582,8 +37536,13 @@ "und": "New York Giants", "sF": "30", "sU": "16", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 1" }, { "date": "Sep 17, 1972", @@ -25593,7 +37552,12 @@ "sF": "30", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 1" }, { "date": "Sep 17, 1972", @@ -25603,7 +37567,12 @@ "sF": "10", "sU": "20", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 1" }, { "date": "Sep 17, 1972", @@ -25613,7 +37582,12 @@ "sF": "34", "sU": "14", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 1" }, { "date": "Sep 17, 1972", @@ -25623,7 +37597,12 @@ "sF": "34", "sU": "3", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 1" }, { "date": "Sep 18, 1972", @@ -25633,7 +37612,12 @@ "sF": "21", "sU": "24", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 1" }, { "date": "Sep 24, 1972", @@ -25643,7 +37627,12 @@ "sF": "20", "sU": "27", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 2" }, { "date": "Sep 24, 1972", @@ -25653,7 +37642,12 @@ "sF": "15", "sU": "10", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 2" }, { "date": "Sep 24, 1972", @@ -25663,7 +37657,12 @@ "sF": "34", "sU": "13", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 2" }, { "date": "Sep 24, 1972", @@ -25672,8 +37671,13 @@ "und": "New England Patriots", "sF": "20", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 2" }, { "date": "Sep 24, 1972", @@ -25683,7 +37687,12 @@ "sF": "23", "sU": "14", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 2" }, { "date": "Sep 24, 1972", @@ -25693,7 +37702,12 @@ "sF": "27", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 2" }, { "date": "Sep 24, 1972", @@ -25703,7 +37717,12 @@ "sF": "24", "sU": "10", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 2" }, { "date": "Sep 24, 1972", @@ -25713,7 +37732,12 @@ "sF": "44", "sU": "34", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 2" }, { "date": "Sep 24, 1972", @@ -25723,7 +37747,12 @@ "sF": "13", "sU": "13", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 2" }, { "date": "Sep 24, 1972", @@ -25733,7 +37762,12 @@ "sF": "20", "sU": "14", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 2" }, { "date": "Sep 24, 1972", @@ -25743,7 +37777,12 @@ "sF": "34", "sU": "10", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 2" }, { "date": "Sep 24, 1972", @@ -25753,7 +37792,12 @@ "sF": "37", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 2" }, { "date": "Sep 25, 1972", @@ -25763,7 +37807,12 @@ "sF": "20", "sU": "17", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 2" }, { "date": "Oct 1, 1972", @@ -25773,7 +37822,12 @@ "sF": "3", "sU": "31", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 3" }, { "date": "Oct 1, 1972", @@ -25783,7 +37837,12 @@ "sF": "17", "sU": "0", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 3" }, { "date": "Oct 1, 1972", @@ -25793,7 +37852,12 @@ "sF": "6", "sU": "27", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 3" }, { "date": "Oct 1, 1972", @@ -25803,7 +37867,12 @@ "sF": "23", "sU": "24", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 3" }, { "date": "Oct 1, 1972", @@ -25812,8 +37881,13 @@ "und": "Chicago Bears", "sF": "38", "sU": "24", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 3" }, { "date": "Oct 1, 1972", @@ -25823,7 +37897,12 @@ "sF": "13", "sU": "16", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 3" }, { "date": "Oct 1, 1972", @@ -25833,7 +37912,12 @@ "sF": "20", "sU": "26", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 3" }, { "date": "Oct 1, 1972", @@ -25842,8 +37926,13 @@ "und": "New Orleans Saints", "sF": "37", "sU": "2", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 3" }, { "date": "Oct 1, 1972", @@ -25853,7 +37942,12 @@ "sF": "25", "sU": "19", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 3" }, { "date": "Oct 1, 1972", @@ -25863,7 +37957,12 @@ "sF": "45", "sU": "24", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 3" }, { "date": "Oct 1, 1972", @@ -25873,7 +37972,12 @@ "sF": "14", "sU": "16", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 3" }, { "date": "Oct 1, 1972", @@ -25883,7 +37987,12 @@ "sF": "17", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 3" }, { "date": "Oct 2, 1972", @@ -25893,7 +38002,12 @@ "sF": "27", "sU": "12", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 3" }, { "date": "Oct 8, 1972", @@ -25903,7 +38017,12 @@ "sF": "26", "sU": "23", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 4" }, { "date": "Oct 8, 1972", @@ -25913,7 +38032,12 @@ "sF": "14", "sU": "38", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 4" }, { "date": "Oct 8, 1972", @@ -25923,7 +38047,12 @@ "sF": "21", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 4" }, { "date": "Oct 8, 1972", @@ -25933,7 +38062,12 @@ "sF": "31", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 4" }, { "date": "Oct 8, 1972", @@ -25942,8 +38076,13 @@ "und": "New Orleans Saints", "sF": "45", "sU": "21", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 4" }, { "date": "Oct 8, 1972", @@ -25953,7 +38092,12 @@ "sF": "27", "sU": "17", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 4" }, { "date": "Oct 8, 1972", @@ -25963,7 +38107,12 @@ "sF": "14", "sU": "0", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 4" }, { "date": "Oct 8, 1972", @@ -25972,8 +38121,13 @@ "und": "San Diego Chargers", "sF": "20", "sU": "23", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 4" }, { "date": "Oct 8, 1972", @@ -25983,7 +38137,12 @@ "sF": "17", "sU": "13", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 4" }, { "date": "Oct 8, 1972", @@ -25992,8 +38151,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 4" }, { "date": "Oct 8, 1972", @@ -26003,7 +38167,12 @@ "sF": "17", "sU": "19", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 4" }, { "date": "Oct 8, 1972", @@ -26012,8 +38181,13 @@ "und": "Los Angeles Rams", "sF": "7", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 4" }, { "date": "Oct 9, 1972", @@ -26023,7 +38197,12 @@ "sF": "34", "sU": "0", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 4" }, { "date": "Oct 15, 1972", @@ -26033,7 +38212,12 @@ "sF": "0", "sU": "17", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 5" }, { "date": "Oct 15, 1972", @@ -26043,7 +38227,12 @@ "sF": "24", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 5" }, { "date": "Oct 15, 1972", @@ -26052,8 +38241,13 @@ "und": "New England Patriots", "sF": "41", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 5" }, { "date": "Oct 15, 1972", @@ -26063,7 +38257,12 @@ "sF": "34", "sU": "3", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 5" }, { "date": "Oct 15, 1972", @@ -26073,7 +38272,12 @@ "sF": "21", "sU": "14", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 5" }, { "date": "Oct 15, 1972", @@ -26083,7 +38287,12 @@ "sF": "33", "sU": "3", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 5" }, { "date": "Oct 15, 1972", @@ -26093,7 +38302,12 @@ "sF": "21", "sU": "0", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 5" }, { "date": "Oct 15, 1972", @@ -26103,7 +38317,12 @@ "sF": "23", "sU": "20", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 5" }, { "date": "Oct 15, 1972", @@ -26112,8 +38331,13 @@ "und": "Cincinnati Bengals", "sF": "16", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 5" }, { "date": "Oct 15, 1972", @@ -26122,8 +38346,13 @@ "und": "Buffalo Bills", "sF": "28", "sU": "16", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 5" }, { "date": "Oct 15, 1972", @@ -26132,8 +38361,13 @@ "und": "Houston Oilers", "sF": "24", "sU": "7", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 5" }, { "date": "Oct 15, 1972", @@ -26142,8 +38376,13 @@ "und": "New York Giants", "sF": "17", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 5" }, { "date": "Oct 16, 1972", @@ -26153,7 +38392,12 @@ "sF": "23", "sU": "24", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 5" }, { "date": "Oct 22, 1972", @@ -26162,8 +38406,13 @@ "und": "San Diego Chargers", "sF": "34", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 6" }, { "date": "Oct 22, 1972", @@ -26173,7 +38422,12 @@ "sF": "24", "sU": "23", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 6" }, { "date": "Oct 22, 1972", @@ -26183,7 +38437,12 @@ "sF": "27", "sU": "21", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 6" }, { "date": "Oct 22, 1972", @@ -26192,8 +38451,13 @@ "und": "Baltimore Colts", "sF": "24", "sU": "20", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 6" }, { "date": "Oct 22, 1972", @@ -26202,8 +38466,13 @@ "und": "New England Patriots", "sF": "33", "sU": "3", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 6" }, { "date": "Oct 22, 1972", @@ -26212,8 +38481,13 @@ "und": "Atlanta Falcons", "sF": "9", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 6" }, { "date": "Oct 22, 1972", @@ -26222,8 +38496,13 @@ "und": "Houston Oilers", "sF": "23", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 6" }, { "date": "Oct 22, 1972", @@ -26233,7 +38512,12 @@ "sF": "20", "sU": "21", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 6" }, { "date": "Oct 22, 1972", @@ -26242,8 +38526,13 @@ "und": "Cincinnati Bengals", "sF": "15", "sU": "12", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 6" }, { "date": "Oct 22, 1972", @@ -26253,7 +38542,12 @@ "sF": "23", "sU": "30", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 6" }, { "date": "Oct 22, 1972", @@ -26262,8 +38556,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "20", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 6" }, { "date": "Oct 22, 1972", @@ -26273,7 +38572,12 @@ "sF": "24", "sU": "20", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 6" }, { "date": "Oct 23, 1972", @@ -26282,8 +38586,13 @@ "und": "Chicago Bears", "sF": "10", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 6" }, { "date": "Oct 29, 1972", @@ -26293,11 +38602,12 @@ "sF": "14", "sU": "49", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 7" }, { "date": "Oct 29, 1972", @@ -26306,8 +38616,13 @@ "und": "Buffalo Bills", "sF": "38", "sU": "21", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 7" }, { "date": "Oct 29, 1972", @@ -26317,7 +38632,12 @@ "sF": "30", "sU": "7", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 7" }, { "date": "Oct 29, 1972", @@ -26327,7 +38647,12 @@ "sF": "23", "sU": "16", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 7" }, { "date": "Oct 29, 1972", @@ -26336,8 +38661,13 @@ "und": "New England Patriots", "sF": "34", "sU": "10", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 7" }, { "date": "Oct 29, 1972", @@ -26347,7 +38677,12 @@ "sF": "27", "sU": "13", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 7" }, { "date": "Oct 29, 1972", @@ -26357,7 +38692,12 @@ "sF": "21", "sU": "3", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 7" }, { "date": "Oct 29, 1972", @@ -26367,7 +38707,12 @@ "sF": "27", "sU": "10", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 7" }, { "date": "Oct 29, 1972", @@ -26376,8 +38721,13 @@ "und": "Baltimore Colts", "sF": "23", "sU": "0", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 7" }, { "date": "Oct 29, 1972", @@ -26387,7 +38737,12 @@ "sF": "20", "sU": "27", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 7" }, { "date": "Oct 29, 1972", @@ -26397,7 +38752,12 @@ "sF": "45", "sU": "17", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 7" }, { "date": "Oct 29, 1972", @@ -26407,7 +38767,12 @@ "sF": "26", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 7" }, { "date": "Oct 30, 1972", @@ -26417,7 +38782,12 @@ "sF": "28", "sU": "24", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 7" }, { "date": "Nov 5, 1972", @@ -26427,7 +38797,12 @@ "sF": "30", "sU": "16", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 8" }, { "date": "Nov 5, 1972", @@ -26437,7 +38812,12 @@ "sF": "20", "sU": "0", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 8" }, { "date": "Nov 5, 1972", @@ -26446,8 +38826,13 @@ "und": "Chicago Bears", "sF": "14", "sU": "0", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 8" }, { "date": "Nov 5, 1972", @@ -26457,7 +38842,12 @@ "sF": "29", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 8" }, { "date": "Nov 5, 1972", @@ -26467,7 +38857,12 @@ "sF": "35", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 8" }, { "date": "Nov 5, 1972", @@ -26477,7 +38872,12 @@ "sF": "6", "sU": "6", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 8" }, { "date": "Nov 5, 1972", @@ -26487,7 +38887,12 @@ "sF": "40", "sU": "17", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 8" }, { "date": "Nov 5, 1972", @@ -26497,7 +38902,12 @@ "sF": "24", "sU": "34", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 8" }, { "date": "Nov 5, 1972", @@ -26507,7 +38917,12 @@ "sF": "37", "sU": "6", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 8" }, { "date": "Nov 5, 1972", @@ -26516,8 +38931,13 @@ "und": "Oakland Raiders", "sF": "27", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 8" }, { "date": "Nov 5, 1972", @@ -26526,8 +38946,13 @@ "und": "Atlanta Falcons", "sF": "20", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 8" }, { "date": "Nov 5, 1972", @@ -26536,8 +38961,13 @@ "und": "San Diego Chargers", "sF": "34", "sU": "28", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 8" }, { "date": "Nov 6, 1972", @@ -26547,7 +38977,12 @@ "sF": "24", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 8" }, { "date": "Nov 12, 1972", @@ -26557,7 +38992,12 @@ "sF": "36", "sU": "20", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 9" }, { "date": "Nov 12, 1972", @@ -26567,7 +39007,12 @@ "sF": "20", "sU": "14", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 9" }, { "date": "Nov 12, 1972", @@ -26577,7 +39022,12 @@ "sF": "52", "sU": "0", "spread": "18", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 9" }, { "date": "Nov 12, 1972", @@ -26587,7 +39037,12 @@ "sF": "41", "sU": "3", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 9" }, { "date": "Nov 12, 1972", @@ -26596,8 +39051,13 @@ "und": "New York Giants", "sF": "27", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 9" }, { "date": "Nov 12, 1972", @@ -26607,7 +39067,12 @@ "sF": "23", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 9" }, { "date": "Nov 12, 1972", @@ -26617,7 +39082,12 @@ "sF": "33", "sU": "24", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 9" }, { "date": "Nov 12, 1972", @@ -26627,7 +39097,12 @@ "sF": "17", "sU": "18", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 9" }, { "date": "Nov 12, 1972", @@ -26637,7 +39112,12 @@ "sF": "10", "sU": "16", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 9" }, { "date": "Nov 12, 1972", @@ -26647,7 +39127,12 @@ "sF": "16", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 9" }, { "date": "Nov 12, 1972", @@ -26657,7 +39142,12 @@ "sF": "24", "sU": "21", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 9" }, { "date": "Nov 13, 1972", @@ -26667,7 +39157,12 @@ "sF": "17", "sU": "21", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 9" }, { "date": "Nov 19, 1972", @@ -26676,8 +39171,13 @@ "und": "Baltimore Colts", "sF": "19", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 10" }, { "date": "Nov 19, 1972", @@ -26686,8 +39186,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "26", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 10" }, { "date": "Nov 19, 1972", @@ -26697,7 +39202,12 @@ "sF": "27", "sU": "14", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 10" }, { "date": "Nov 19, 1972", @@ -26707,7 +39217,12 @@ "sF": "28", "sU": "24", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 10" }, { "date": "Nov 19, 1972", @@ -26716,8 +39231,13 @@ "und": "New England Patriots", "sF": "27", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 10" }, { "date": "Nov 19, 1972", @@ -26727,7 +39247,12 @@ "sF": "28", "sU": "7", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 10" }, { "date": "Nov 19, 1972", @@ -26736,8 +39261,13 @@ "und": "Chicago Bears", "sF": "34", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 10" }, { "date": "Nov 19, 1972", @@ -26747,7 +39277,12 @@ "sF": "37", "sU": "20", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 10" }, { "date": "Nov 19, 1972", @@ -26756,8 +39291,13 @@ "und": "Houston Oilers", "sF": "23", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 10" }, { "date": "Nov 19, 1972", @@ -26767,7 +39307,12 @@ "sF": "17", "sU": "27", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 10" }, { "date": "Nov 19, 1972", @@ -26776,8 +39321,13 @@ "und": "St Louis Cardinals", "sF": "13", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 10" }, { "date": "Nov 19, 1972", @@ -26787,7 +39337,12 @@ "sF": "45", "sU": "41", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 10" }, { "date": "Nov 20, 1972", @@ -26797,7 +39352,12 @@ "sF": "24", "sU": "13", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 10" }, { "date": "Nov 23, 1972", @@ -26806,8 +39366,13 @@ "und": "New York Jets", "sF": "37", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 11" }, { "date": "Nov 23, 1972", @@ -26816,12 +39381,13 @@ "und": "San Francisco 49ers", "sF": "10", "sU": "31", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 11" }, { "date": "Nov 26, 1972", @@ -26830,8 +39396,13 @@ "und": "Denver Broncos", "sF": "23", "sU": "20", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 11" }, { "date": "Nov 26, 1972", @@ -26841,7 +39412,12 @@ "sF": "27", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 11" }, { "date": "Nov 26, 1972", @@ -26851,7 +39427,12 @@ "sF": "16", "sU": "19", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 11" }, { "date": "Nov 26, 1972", @@ -26860,8 +39441,13 @@ "und": "Philadelphia Eagles", "sF": "62", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 11" }, { "date": "Nov 26, 1972", @@ -26870,8 +39456,13 @@ "und": "Pittsburgh Steelers", "sF": "10", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 11" }, { "date": "Nov 26, 1972", @@ -26881,7 +39472,12 @@ "sF": "21", "sU": "16", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 11" }, { "date": "Nov 26, 1972", @@ -26891,7 +39487,12 @@ "sF": "31", "sU": "0", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 11" }, { "date": "Nov 26, 1972", @@ -26900,8 +39501,13 @@ "und": "Chicago Bears", "sF": "13", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 11" }, { "date": "Nov 26, 1972", @@ -26910,8 +39516,13 @@ "und": "Kansas City Chiefs", "sF": "26", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 11" }, { "date": "Nov 26, 1972", @@ -26921,7 +39532,12 @@ "sF": "34", "sU": "20", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 11" }, { "date": "Nov 27, 1972", @@ -26930,8 +39546,13 @@ "und": "St Louis Cardinals", "sF": "31", "sU": "10", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 11" }, { "date": "Dec 3, 1972", @@ -26940,8 +39561,13 @@ "und": "Houston Oilers", "sF": "20", "sU": "10", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 12" }, { "date": "Dec 3, 1972", @@ -26951,7 +39577,12 @@ "sF": "37", "sU": "21", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 12" }, { "date": "Dec 3, 1972", @@ -26961,7 +39592,12 @@ "sF": "18", "sU": "17", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 12" }, { "date": "Dec 3, 1972", @@ -26971,7 +39607,12 @@ "sF": "23", "sU": "7", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 12" }, { "date": "Dec 3, 1972", @@ -26981,7 +39622,12 @@ "sF": "30", "sU": "0", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 12" }, { "date": "Dec 3, 1972", @@ -26991,7 +39637,12 @@ "sF": "35", "sU": "7", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 12" }, { "date": "Dec 3, 1972", @@ -27000,8 +39651,13 @@ "und": "Green Bay Packers", "sF": "7", "sU": "33", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 12" }, { "date": "Dec 3, 1972", @@ -27011,7 +39667,12 @@ "sF": "24", "sU": "21", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 12" }, { "date": "Dec 3, 1972", @@ -27021,7 +39682,12 @@ "sF": "23", "sU": "10", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 12" }, { "date": "Dec 3, 1972", @@ -27031,7 +39697,12 @@ "sF": "21", "sU": "19", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 12" }, { "date": "Dec 3, 1972", @@ -27041,7 +39712,12 @@ "sF": "27", "sU": "6", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 12" }, { "date": "Dec 4, 1972", @@ -27050,8 +39726,13 @@ "und": "Los Angeles Rams", "sF": "16", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 12" }, { "date": "Dec 9, 1972", @@ -27061,7 +39742,12 @@ "sF": "24", "sU": "27", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 13" }, { "date": "Dec 9, 1972", @@ -27071,7 +39757,12 @@ "sF": "34", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 13" }, { "date": "Dec 10, 1972", @@ -27081,7 +39772,12 @@ "sF": "21", "sU": "21", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 13" }, { "date": "Dec 10, 1972", @@ -27091,7 +39787,12 @@ "sF": "10", "sU": "17", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 13" }, { "date": "Dec 10, 1972", @@ -27101,7 +39802,12 @@ "sF": "23", "sU": "13", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 13" }, { "date": "Dec 10, 1972", @@ -27110,8 +39816,13 @@ "und": "Philadelphia Eagles", "sF": "21", "sU": "12", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 13" }, { "date": "Dec 10, 1972", @@ -27121,7 +39832,12 @@ "sF": "13", "sU": "38", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 13" }, { "date": "Dec 10, 1972", @@ -27130,8 +39846,13 @@ "und": "Houston Oilers", "sF": "9", "sU": "3", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 13" }, { "date": "Dec 10, 1972", @@ -27141,7 +39862,12 @@ "sF": "7", "sU": "23", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 13" }, { "date": "Dec 10, 1972", @@ -27151,7 +39877,12 @@ "sF": "14", "sU": "24", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 13" }, { "date": "Dec 10, 1972", @@ -27160,8 +39891,13 @@ "und": "Baltimore Colts", "sF": "24", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 13" }, { "date": "Dec 10, 1972", @@ -27171,7 +39907,12 @@ "sF": "20", "sU": "0", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 13" }, { "date": "Dec 11, 1972", @@ -27181,7 +39922,12 @@ "sF": "24", "sU": "16", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 13" }, { "date": "Dec 16, 1972", @@ -27190,8 +39936,13 @@ "und": "Baltimore Colts", "sF": "16", "sU": "0", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 14" }, { "date": "Dec 16, 1972", @@ -27201,7 +39952,12 @@ "sF": "20", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 14" }, { "date": "Dec 17, 1972", @@ -27211,7 +39967,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 14" }, { "date": "Dec 17, 1972", @@ -27221,7 +39982,12 @@ "sF": "26", "sU": "10", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 14" }, { "date": "Dec 17, 1972", @@ -27231,7 +39997,12 @@ "sF": "17", "sU": "24", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 14" }, { "date": "Dec 17, 1972", @@ -27241,7 +40012,12 @@ "sF": "61", "sU": "17", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 14" }, { "date": "Dec 17, 1972", @@ -27251,7 +40027,12 @@ "sF": "30", "sU": "20", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 14" }, { "date": "Dec 17, 1972", @@ -27261,7 +40042,12 @@ "sF": "24", "sU": "23", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 14" }, { "date": "Dec 17, 1972", @@ -27271,7 +40057,12 @@ "sF": "3", "sU": "23", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 14" }, { "date": "Dec 17, 1972", @@ -27281,7 +40072,12 @@ "sF": "45", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 14" }, { "date": "Dec 17, 1972", @@ -27291,7 +40087,12 @@ "sF": "17", "sU": "34", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 14" }, { "date": "Dec 17, 1972", @@ -27300,8 +40101,13 @@ "und": "Chicago Bears", "sF": "28", "sU": "21", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 14" }, { "date": "Dec 17, 1972", @@ -27311,7 +40117,12 @@ "sF": "24", "sU": "2", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Regular Season - Week 14" }, { "date": "Dec 23, 1972", @@ -27321,7 +40132,12 @@ "sF": "13", "sU": "7", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Playoffs" }, { "date": "Dec 24, 1972", @@ -27331,7 +40147,12 @@ "sF": "16", "sU": "3", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Playoffs" }, { "date": "Dec 24, 1972", @@ -27340,8 +40161,13 @@ "und": "Cleveland Browns", "sF": "20", "sU": "14", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Playoffs" }, { "date": "Dec 31, 1972", @@ -27351,7 +40177,12 @@ "sF": "21", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Playoffs" }, { "date": "Dec 31, 1972", @@ -27361,7 +40192,12 @@ "sF": "26", "sU": "3", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1972 Playoffs" }, { "date": "Jan 14, 1973", @@ -27371,7 +40207,12 @@ "sF": "14", "sU": "7", "spread": "1", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 16.0, + "sF": 17.0 + }, + "week": "1972 Playoffs" }, { "date": "Sep 16, 1973", @@ -27380,8 +40221,13 @@ "und": "Baltimore Colts", "sF": "24", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 1" }, { "date": "Sep 16, 1973", @@ -27390,12 +40236,13 @@ "und": "San Francisco 49ers", "sF": "21", "sU": "13", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 1" }, { "date": "Sep 16, 1973", @@ -27405,7 +40252,12 @@ "sF": "34", "sU": "14", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 1" }, { "date": "Sep 16, 1973", @@ -27415,7 +40267,12 @@ "sF": "34", "sU": "23", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 1" }, { "date": "Sep 16, 1973", @@ -27424,8 +40281,13 @@ "und": "San Diego Chargers", "sF": "38", "sU": "0", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 1" }, { "date": "Sep 16, 1973", @@ -27434,8 +40296,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 1" }, { "date": "Sep 16, 1973", @@ -27445,7 +40312,12 @@ "sF": "24", "sU": "16", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 1" }, { "date": "Sep 16, 1973", @@ -27455,7 +40327,12 @@ "sF": "62", "sU": "7", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 1" }, { "date": "Sep 16, 1973", @@ -27465,7 +40342,12 @@ "sF": "10", "sU": "28", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 1" }, { "date": "Sep 16, 1973", @@ -27475,7 +40357,12 @@ "sF": "13", "sU": "23", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 1" }, { "date": "Sep 16, 1973", @@ -27484,8 +40371,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 1" }, { "date": "Sep 17, 1973", @@ -27494,8 +40386,13 @@ "und": "New York Jets", "sF": "23", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 1" }, { "date": "Sep 23, 1973", @@ -27505,7 +40402,12 @@ "sF": "24", "sU": "10", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 2" }, { "date": "Sep 23, 1973", @@ -27515,7 +40417,12 @@ "sF": "10", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 2" }, { "date": "Sep 23, 1973", @@ -27525,7 +40432,12 @@ "sF": "23", "sU": "23", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 2" }, { "date": "Sep 23, 1973", @@ -27535,7 +40447,12 @@ "sF": "33", "sU": "6", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 2" }, { "date": "Sep 23, 1973", @@ -27545,7 +40462,12 @@ "sF": "34", "sU": "10", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 2" }, { "date": "Sep 23, 1973", @@ -27554,8 +40476,13 @@ "und": "Chicago Bears", "sF": "22", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 2" }, { "date": "Sep 23, 1973", @@ -27565,7 +40492,12 @@ "sF": "13", "sU": "13", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 2" }, { "date": "Sep 23, 1973", @@ -27574,8 +40506,13 @@ "und": "St Louis Cardinals", "sF": "27", "sU": "34", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 2" }, { "date": "Sep 23, 1973", @@ -27585,7 +40522,12 @@ "sF": "36", "sU": "34", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 2" }, { "date": "Sep 23, 1973", @@ -27595,7 +40537,12 @@ "sF": "31", "sU": "0", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 2" }, { "date": "Sep 23, 1973", @@ -27605,7 +40552,12 @@ "sF": "7", "sU": "12", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 2" }, { "date": "Sep 23, 1973", @@ -27615,7 +40567,12 @@ "sF": "34", "sU": "7", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 2" }, { "date": "Sep 24, 1973", @@ -27625,7 +40582,12 @@ "sF": "40", "sU": "3", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 2" }, { "date": "Sep 30, 1973", @@ -27634,8 +40596,13 @@ "und": "Buffalo Bills", "sF": "7", "sU": "9", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 3" }, { "date": "Sep 30, 1973", @@ -27645,7 +40612,12 @@ "sF": "10", "sU": "12", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 3" }, { "date": "Sep 30, 1973", @@ -27654,8 +40626,13 @@ "und": "New England Patriots", "sF": "44", "sU": "23", - "spread": "20", - "ou": -1 + "spread": "20.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 3" }, { "date": "Sep 30, 1973", @@ -27665,7 +40642,12 @@ "sF": "28", "sU": "7", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 3" }, { "date": "Sep 30, 1973", @@ -27675,7 +40657,12 @@ "sF": "14", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 3" }, { "date": "Sep 30, 1973", @@ -27685,7 +40672,12 @@ "sF": "45", "sU": "10", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 3" }, { "date": "Sep 30, 1973", @@ -27695,7 +40687,12 @@ "sF": "36", "sU": "7", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 3" }, { "date": "Sep 30, 1973", @@ -27705,7 +40702,12 @@ "sF": "11", "sU": "3", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 3" }, { "date": "Sep 30, 1973", @@ -27715,7 +40717,12 @@ "sF": "14", "sU": "33", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 3" }, { "date": "Sep 30, 1973", @@ -27725,7 +40732,12 @@ "sF": "3", "sU": "16", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 3" }, { "date": "Sep 30, 1973", @@ -27734,8 +40746,13 @@ "und": "San Diego Chargers", "sF": "20", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 3" }, { "date": "Sep 30, 1973", @@ -27744,8 +40761,13 @@ "und": "Los Angeles Rams", "sF": "20", "sU": "40", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 3" }, { "date": "Oct 1, 1973", @@ -27754,8 +40776,13 @@ "und": "Atlanta Falcons", "sF": "31", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 3" }, { "date": "Oct 7, 1973", @@ -27765,7 +40792,12 @@ "sF": "13", "sU": "9", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 4" }, { "date": "Oct 7, 1973", @@ -27774,8 +40806,13 @@ "und": "Philadelphia Eagles", "sF": "27", "sU": "26", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 4" }, { "date": "Oct 7, 1973", @@ -27785,7 +40822,12 @@ "sF": "10", "sU": "17", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 4" }, { "date": "Oct 7, 1973", @@ -27794,8 +40836,13 @@ "und": "New York Jets", "sF": "31", "sU": "3", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 4" }, { "date": "Oct 7, 1973", @@ -27805,7 +40852,12 @@ "sF": "24", "sU": "16", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 4" }, { "date": "Oct 7, 1973", @@ -27815,7 +40867,12 @@ "sF": "16", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 4" }, { "date": "Oct 7, 1973", @@ -27825,7 +40882,12 @@ "sF": "38", "sU": "21", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 4" }, { "date": "Oct 7, 1973", @@ -27835,7 +40897,12 @@ "sF": "31", "sU": "26", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 4" }, { "date": "Oct 7, 1973", @@ -27844,8 +40911,13 @@ "und": "Denver Broncos", "sF": "16", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 4" }, { "date": "Oct 7, 1973", @@ -27855,7 +40927,12 @@ "sF": "16", "sU": "21", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 4" }, { "date": "Oct 7, 1973", @@ -27864,8 +40941,13 @@ "und": "St Louis Cardinals", "sF": "17", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 4" }, { "date": "Oct 7, 1973", @@ -27875,7 +40957,12 @@ "sF": "23", "sU": "9", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 4" }, { "date": "Oct 8, 1973", @@ -27885,7 +40972,12 @@ "sF": "14", "sU": "7", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 4" }, { "date": "Oct 14, 1973", @@ -27894,8 +40986,13 @@ "und": "Baltimore Colts", "sF": "31", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 5" }, { "date": "Oct 14, 1973", @@ -27905,7 +41002,12 @@ "sF": "7", "sU": "19", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 5" }, { "date": "Oct 14, 1973", @@ -27914,8 +41016,13 @@ "und": "New York Jets", "sF": "7", "sU": "9", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 5" }, { "date": "Oct 14, 1973", @@ -27924,8 +41031,13 @@ "und": "New York Giants", "sF": "21", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 5" }, { "date": "Oct 14, 1973", @@ -27934,8 +41046,13 @@ "und": "Kansas City Chiefs", "sF": "10", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 5" }, { "date": "Oct 14, 1973", @@ -27945,7 +41062,12 @@ "sF": "48", "sU": "20", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 5" }, { "date": "Oct 14, 1973", @@ -27954,8 +41076,13 @@ "und": "New Orleans Saints", "sF": "13", "sU": "20", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 5" }, { "date": "Oct 14, 1973", @@ -27964,8 +41091,13 @@ "und": "Philadelphia Eagles", "sF": "24", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 5" }, { "date": "Oct 14, 1973", @@ -27975,7 +41107,12 @@ "sF": "27", "sU": "17", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 5" }, { "date": "Oct 14, 1973", @@ -27984,12 +41121,13 @@ "und": "San Francisco 49ers", "sF": "17", "sU": "13", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 5" }, { "date": "Oct 15, 1973", @@ -27999,7 +41137,12 @@ "sF": "17", "sU": "9", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 5" }, { "date": "Oct 21, 1973", @@ -28009,7 +41152,12 @@ "sF": "42", "sU": "13", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 6" }, { "date": "Oct 21, 1973", @@ -28019,7 +41167,12 @@ "sF": "27", "sU": "29", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 6" }, { "date": "Oct 21, 1973", @@ -28029,7 +41182,12 @@ "sF": "27", "sU": "6", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 6" }, { "date": "Oct 21, 1973", @@ -28038,8 +41196,13 @@ "und": "New York Jets", "sF": "26", "sU": "14", - "spread": "18", - "ou": -1 + "spread": "18.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 6" }, { "date": "Oct 21, 1973", @@ -28049,7 +41212,12 @@ "sF": "31", "sU": "13", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 6" }, { "date": "Oct 21, 1973", @@ -28058,8 +41226,13 @@ "und": "New England Patriots", "sF": "10", "sU": "13", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 6" }, { "date": "Oct 21, 1973", @@ -28069,7 +41242,12 @@ "sF": "28", "sU": "21", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 6" }, { "date": "Oct 21, 1973", @@ -28079,7 +41257,12 @@ "sF": "14", "sU": "6", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 6" }, { "date": "Oct 21, 1973", @@ -28089,7 +41272,12 @@ "sF": "45", "sU": "28", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 6" }, { "date": "Oct 21, 1973", @@ -28099,7 +41287,12 @@ "sF": "24", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 6" }, { "date": "Oct 21, 1973", @@ -28108,8 +41301,13 @@ "und": "San Diego Chargers", "sF": "41", "sU": "0", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 6" }, { "date": "Oct 21, 1973", @@ -28119,7 +41317,12 @@ "sF": "40", "sU": "0", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 6" }, { "date": "Oct 22, 1973", @@ -28129,7 +41332,12 @@ "sF": "23", "sU": "23", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 6" }, { "date": "Oct 28, 1973", @@ -28138,8 +41346,13 @@ "und": "San Diego Chargers", "sF": "16", "sU": "16", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 7" }, { "date": "Oct 28, 1973", @@ -28149,7 +41362,12 @@ "sF": "34", "sU": "0", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 7" }, { "date": "Oct 28, 1973", @@ -28159,7 +41377,12 @@ "sF": "30", "sU": "14", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 7" }, { "date": "Oct 28, 1973", @@ -28168,8 +41391,13 @@ "und": "New York Jets", "sF": "40", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 7" }, { "date": "Oct 28, 1973", @@ -28178,8 +41406,13 @@ "und": "Philadelphia Eagles", "sF": "16", "sU": "30", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 7" }, { "date": "Oct 28, 1973", @@ -28189,7 +41422,12 @@ "sF": "34", "sU": "21", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 7" }, { "date": "Oct 28, 1973", @@ -28198,8 +41436,13 @@ "und": "Houston Oilers", "sF": "35", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 7" }, { "date": "Oct 28, 1973", @@ -28209,7 +41452,12 @@ "sF": "10", "sU": "9", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 7" }, { "date": "Oct 28, 1973", @@ -28219,7 +41467,12 @@ "sF": "3", "sU": "19", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 7" }, { "date": "Oct 28, 1973", @@ -28229,7 +41482,12 @@ "sF": "27", "sU": "35", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 7" }, { "date": "Oct 28, 1973", @@ -28238,8 +41496,13 @@ "und": "Cincinnati Bengals", "sF": "20", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 7" }, { "date": "Oct 28, 1973", @@ -28248,8 +41511,13 @@ "und": "Atlanta Falcons", "sF": "3", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 7" }, { "date": "Oct 29, 1973", @@ -28258,8 +41526,13 @@ "und": "Buffalo Bills", "sF": "14", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 7" }, { "date": "Nov 4, 1973", @@ -28269,7 +41542,12 @@ "sF": "13", "sU": "15", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 8" }, { "date": "Nov 4, 1973", @@ -28278,8 +41556,13 @@ "und": "New York Jets", "sF": "24", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 8" }, { "date": "Nov 4, 1973", @@ -28289,7 +41572,12 @@ "sF": "24", "sU": "23", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 8" }, { "date": "Nov 4, 1973", @@ -28298,8 +41586,13 @@ "und": "Houston Oilers", "sF": "27", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 8" }, { "date": "Nov 4, 1973", @@ -28308,8 +41601,13 @@ "und": "Cincinnati Bengals", "sF": "38", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 8" }, { "date": "Nov 4, 1973", @@ -28319,7 +41617,12 @@ "sF": "17", "sU": "31", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 8" }, { "date": "Nov 4, 1973", @@ -28329,7 +41632,12 @@ "sF": "26", "sU": "3", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 8" }, { "date": "Nov 4, 1973", @@ -28338,8 +41646,13 @@ "und": "New Orleans Saints", "sF": "0", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 8" }, { "date": "Nov 4, 1973", @@ -28349,7 +41662,12 @@ "sF": "17", "sU": "17", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 8" }, { "date": "Nov 4, 1973", @@ -28358,12 +41676,13 @@ "und": "San Francisco 49ers", "sF": "30", "sU": "20", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": null, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 8" }, { "date": "Nov 4, 1973", @@ -28373,7 +41692,12 @@ "sF": "42", "sU": "0", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 8" }, { "date": "Nov 4, 1973", @@ -28383,7 +41707,12 @@ "sF": "19", "sU": "0", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 8" }, { "date": "Nov 5, 1973", @@ -28393,7 +41722,12 @@ "sF": "16", "sU": "21", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 8" }, { "date": "Nov 11, 1973", @@ -28402,8 +41736,13 @@ "und": "Buffalo Bills", "sF": "16", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 9" }, { "date": "Nov 11, 1973", @@ -28413,7 +41752,12 @@ "sF": "44", "sU": "0", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 9" }, { "date": "Nov 11, 1973", @@ -28422,8 +41766,13 @@ "und": "New York Giants", "sF": "23", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 9" }, { "date": "Nov 11, 1973", @@ -28433,7 +41782,12 @@ "sF": "33", "sU": "13", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 9" }, { "date": "Nov 11, 1973", @@ -28442,8 +41796,13 @@ "und": "Philadelphia Eagles", "sF": "44", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 9" }, { "date": "Nov 11, 1973", @@ -28452,12 +41811,13 @@ "und": "San Francisco 49ers", "sF": "33", "sU": "9", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 9" }, { "date": "Nov 11, 1973", @@ -28466,8 +41826,13 @@ "und": "St Louis Cardinals", "sF": "25", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 9" }, { "date": "Nov 11, 1973", @@ -28476,8 +41841,13 @@ "und": "Houston Oilers", "sF": "23", "sU": "13", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 9" }, { "date": "Nov 11, 1973", @@ -28487,7 +41857,12 @@ "sF": "28", "sU": "7", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 9" }, { "date": "Nov 11, 1973", @@ -28496,8 +41871,13 @@ "und": "San Diego Chargers", "sF": "30", "sU": "19", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 9" }, { "date": "Nov 11, 1973", @@ -28507,7 +41887,12 @@ "sF": "29", "sU": "7", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 9" }, { "date": "Nov 11, 1973", @@ -28516,8 +41901,13 @@ "und": "Pittsburgh Steelers", "sF": "9", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 9" }, { "date": "Nov 12, 1973", @@ -28527,7 +41917,12 @@ "sF": "19", "sU": "7", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 9" }, { "date": "Nov 18, 1973", @@ -28537,7 +41932,12 @@ "sF": "17", "sU": "0", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 10" }, { "date": "Nov 18, 1973", @@ -28547,7 +41947,12 @@ "sF": "24", "sU": "33", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 10" }, { "date": "Nov 18, 1973", @@ -28556,8 +41961,13 @@ "und": "St Louis Cardinals", "sF": "24", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 10" }, { "date": "Nov 18, 1973", @@ -28567,7 +41977,12 @@ "sF": "13", "sU": "23", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 10" }, { "date": "Nov 18, 1973", @@ -28576,8 +41991,13 @@ "und": "Baltimore Colts", "sF": "22", "sU": "14", - "spread": "19", - "ou": -1 + "spread": "19.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 10" }, { "date": "Nov 18, 1973", @@ -28587,7 +42007,12 @@ "sF": "30", "sU": "7", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 10" }, { "date": "Nov 18, 1973", @@ -28597,7 +42022,12 @@ "sF": "20", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 10" }, { "date": "Nov 18, 1973", @@ -28607,7 +42037,12 @@ "sF": "31", "sU": "10", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 10" }, { "date": "Nov 18, 1973", @@ -28617,7 +42052,12 @@ "sF": "38", "sU": "14", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 10" }, { "date": "Nov 18, 1973", @@ -28626,12 +42066,13 @@ "und": "San Francisco 49ers", "sF": "31", "sU": "13", - "spread": "10", - "ou": "49", + "spread": "10.5", + "ou": null, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 10" }, { "date": "Nov 18, 1973", @@ -28641,7 +42082,12 @@ "sF": "3", "sU": "7", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 10" }, { "date": "Nov 18, 1973", @@ -28650,8 +42096,13 @@ "und": "New Orleans Saints", "sF": "17", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 10" }, { "date": "Nov 19, 1973", @@ -28661,7 +42112,12 @@ "sF": "14", "sU": "20", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 10" }, { "date": "Nov 22, 1973", @@ -28671,7 +42127,12 @@ "sF": "20", "sU": "0", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 11" }, { "date": "Nov 22, 1973", @@ -28680,8 +42141,13 @@ "und": "Miami Dolphins", "sF": "7", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 11" }, { "date": "Nov 25, 1973", @@ -28690,8 +42156,13 @@ "und": "St Louis Cardinals", "sF": "42", "sU": "24", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 11" }, { "date": "Nov 25, 1973", @@ -28701,7 +42172,12 @@ "sF": "16", "sU": "21", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 11" }, { "date": "Nov 25, 1973", @@ -28711,7 +42187,12 @@ "sF": "16", "sU": "20", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 11" }, { "date": "Nov 25, 1973", @@ -28720,8 +42201,13 @@ "und": "Baltimore Colts", "sF": "24", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 11" }, { "date": "Nov 25, 1973", @@ -28730,8 +42216,13 @@ "und": "Houston Oilers", "sF": "32", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 11" }, { "date": "Nov 25, 1973", @@ -28741,7 +42232,12 @@ "sF": "31", "sU": "13", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 11" }, { "date": "Nov 25, 1973", @@ -28751,7 +42247,12 @@ "sF": "24", "sU": "13", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 11" }, { "date": "Nov 25, 1973", @@ -28760,8 +42261,13 @@ "und": "Kansas City Chiefs", "sF": "14", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 11" }, { "date": "Nov 25, 1973", @@ -28770,8 +42276,13 @@ "und": "New York Jets", "sF": "28", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 11" }, { "date": "Nov 25, 1973", @@ -28781,7 +42292,12 @@ "sF": "31", "sU": "3", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 11" }, { "date": "Nov 26, 1973", @@ -28791,7 +42307,12 @@ "sF": "20", "sU": "6", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 11" }, { "date": "Dec 2, 1973", @@ -28800,8 +42321,13 @@ "und": "Buffalo Bills", "sF": "6", "sU": "17", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 12" }, { "date": "Dec 2, 1973", @@ -28810,8 +42336,13 @@ "und": "Cincinnati Bengals", "sF": "0", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 12" }, { "date": "Dec 2, 1973", @@ -28821,7 +42352,12 @@ "sF": "30", "sU": "14", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 12" }, { "date": "Dec 2, 1973", @@ -28831,7 +42367,12 @@ "sF": "20", "sU": "17", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 12" }, { "date": "Dec 2, 1973", @@ -28840,8 +42381,13 @@ "und": "New York Giants", "sF": "27", "sU": "24", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 12" }, { "date": "Dec 2, 1973", @@ -28850,8 +42396,13 @@ "und": "Chicago Bears", "sF": "26", "sU": "0", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 12" }, { "date": "Dec 2, 1973", @@ -28860,8 +42411,13 @@ "und": "New Orleans Saints", "sF": "30", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 12" }, { "date": "Dec 2, 1973", @@ -28871,7 +42427,12 @@ "sF": "17", "sU": "6", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 12" }, { "date": "Dec 2, 1973", @@ -28881,7 +42442,12 @@ "sF": "20", "sU": "16", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 12" }, { "date": "Dec 2, 1973", @@ -28891,7 +42457,12 @@ "sF": "22", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 12" }, { "date": "Dec 2, 1973", @@ -28901,7 +42472,12 @@ "sF": "20", "sU": "20", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 12" }, { "date": "Dec 2, 1973", @@ -28910,8 +42486,13 @@ "und": "Philadelphia Eagles", "sF": "38", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 12" }, { "date": "Dec 3, 1973", @@ -28921,7 +42502,12 @@ "sF": "30", "sU": "26", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 12" }, { "date": "Dec 8, 1973", @@ -28931,7 +42517,12 @@ "sF": "31", "sU": "7", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 13" }, { "date": "Dec 8, 1973", @@ -28941,7 +42532,12 @@ "sF": "37", "sU": "7", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 13" }, { "date": "Dec 9, 1973", @@ -28951,7 +42547,12 @@ "sF": "10", "sU": "32", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 13" }, { "date": "Dec 9, 1973", @@ -28961,7 +42562,12 @@ "sF": "37", "sU": "13", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 13" }, { "date": "Dec 9, 1973", @@ -28971,7 +42577,12 @@ "sF": "17", "sU": "34", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 13" }, { "date": "Dec 9, 1973", @@ -28981,7 +42592,12 @@ "sF": "40", "sU": "7", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 13" }, { "date": "Dec 9, 1973", @@ -28990,8 +42606,13 @@ "und": "Philadelphia Eagles", "sF": "23", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 13" }, { "date": "Dec 9, 1973", @@ -29001,7 +42622,12 @@ "sF": "33", "sU": "7", "spread": "21", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 13" }, { "date": "Dec 9, 1973", @@ -29011,7 +42637,12 @@ "sF": "3", "sU": "16", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 13" }, { "date": "Dec 9, 1973", @@ -29021,7 +42652,12 @@ "sF": "10", "sU": "16", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 13" }, { "date": "Dec 9, 1973", @@ -29030,8 +42666,13 @@ "und": "Washington Redskins", "sF": "27", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 13" }, { "date": "Dec 9, 1973", @@ -29040,8 +42681,13 @@ "und": "San Diego Chargers", "sF": "42", "sU": "28", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 13" }, { "date": "Dec 10, 1973", @@ -29051,7 +42697,12 @@ "sF": "40", "sU": "6", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 13" }, { "date": "Dec 15, 1973", @@ -29061,7 +42712,12 @@ "sF": "34", "sU": "7", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 14" }, { "date": "Dec 15, 1973", @@ -29070,12 +42726,13 @@ "und": "San Francisco 49ers", "sF": "37", "sU": "14", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 14" }, { "date": "Dec 16, 1973", @@ -29084,8 +42741,13 @@ "und": "New Orleans Saints", "sF": "14", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 14" }, { "date": "Dec 16, 1973", @@ -29094,8 +42756,13 @@ "und": "New York Giants", "sF": "31", "sU": "7", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 14" }, { "date": "Dec 16, 1973", @@ -29104,8 +42771,13 @@ "und": "Buffalo Bills", "sF": "14", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 14" }, { "date": "Dec 16, 1973", @@ -29115,7 +42787,12 @@ "sF": "38", "sU": "20", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 14" }, { "date": "Dec 16, 1973", @@ -29125,7 +42802,12 @@ "sF": "18", "sU": "13", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 14" }, { "date": "Dec 16, 1973", @@ -29135,7 +42817,12 @@ "sF": "21", "sU": "0", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 14" }, { "date": "Dec 16, 1973", @@ -29144,8 +42831,13 @@ "und": "Houston Oilers", "sF": "27", "sU": "24", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 14" }, { "date": "Dec 16, 1973", @@ -29154,8 +42846,13 @@ "und": "San Diego Chargers", "sF": "33", "sU": "6", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 14" }, { "date": "Dec 16, 1973", @@ -29164,8 +42861,13 @@ "und": "St Louis Cardinals", "sF": "30", "sU": "3", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 14" }, { "date": "Dec 16, 1973", @@ -29175,7 +42877,12 @@ "sF": "30", "sU": "17", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 14" }, { "date": "Dec 16, 1973", @@ -29184,8 +42891,13 @@ "und": "Denver Broncos", "sF": "21", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Regular Season - Week 14" }, { "date": "Dec 22, 1973", @@ -29195,7 +42907,12 @@ "sF": "27", "sU": "20", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Playoffs" }, { "date": "Dec 22, 1973", @@ -29204,8 +42921,13 @@ "und": "Pittsburgh Steelers", "sF": "33", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Playoffs" }, { "date": "Dec 23, 1973", @@ -29215,7 +42937,12 @@ "sF": "34", "sU": "16", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Playoffs" }, { "date": "Dec 23, 1973", @@ -29224,8 +42951,13 @@ "und": "Los Angeles Rams", "sF": "27", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Playoffs" }, { "date": "Dec 30, 1973", @@ -29235,7 +42967,12 @@ "sF": "27", "sU": "10", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Playoffs" }, { "date": "Dec 30, 1973", @@ -29245,7 +42982,12 @@ "sF": "27", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1973 Playoffs" }, { "date": "Jan 13, 1974", @@ -29254,8 +42996,13 @@ "und": "Minnesota Vikings", "sF": "24", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 33.0, + "pScore": { + "sU": 13.25, + "sF": 19.75 + }, + "week": "1973 Playoffs" }, { "date": "Sep 15, 1974", @@ -29265,7 +43012,12 @@ "sF": "33", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 1" }, { "date": "Sep 15, 1974", @@ -29275,7 +43027,12 @@ "sF": "24", "sU": "34", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 1" }, { "date": "Sep 15, 1974", @@ -29285,7 +43042,12 @@ "sF": "13", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 1" }, { "date": "Sep 15, 1974", @@ -29295,7 +43057,12 @@ "sF": "30", "sU": "0", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 1" }, { "date": "Sep 15, 1974", @@ -29304,8 +43071,13 @@ "und": "Chicago Bears", "sF": "9", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 1" }, { "date": "Sep 15, 1974", @@ -29315,7 +43087,12 @@ "sF": "32", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 1" }, { "date": "Sep 15, 1974", @@ -29324,8 +43101,13 @@ "und": "San Diego Chargers", "sF": "21", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 1" }, { "date": "Sep 15, 1974", @@ -29335,11 +43117,12 @@ "sF": "13", "sU": "17", "spread": "5", - "ou": "49", + "ou": null, "pScore": { - "sU": 22, - "sF": 27 - } + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 1" }, { "date": "Sep 15, 1974", @@ -29348,8 +43131,13 @@ "und": "St Louis Cardinals", "sF": "3", "sU": "7", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 1" }, { "date": "Sep 15, 1974", @@ -29359,7 +43147,12 @@ "sF": "24", "sU": "0", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 1" }, { "date": "Sep 15, 1974", @@ -29368,8 +43161,13 @@ "und": "Denver Broncos", "sF": "17", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 1" }, { "date": "Sep 15, 1974", @@ -29378,8 +43176,13 @@ "und": "New York Jets", "sF": "24", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 1" }, { "date": "Sep 16, 1974", @@ -29389,7 +43192,12 @@ "sF": "20", "sU": "21", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 1" }, { "date": "Sep 22, 1974", @@ -29399,11 +43207,12 @@ "sF": "10", "sU": "16", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 2" }, { "date": "Sep 22, 1974", @@ -29413,7 +43222,12 @@ "sF": "24", "sU": "16", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 2" }, { "date": "Sep 22, 1974", @@ -29423,7 +43237,12 @@ "sF": "17", "sU": "20", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 2" }, { "date": "Sep 22, 1974", @@ -29432,8 +43251,13 @@ "und": "Houston Oilers", "sF": "20", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 2" }, { "date": "Sep 22, 1974", @@ -29443,7 +43267,12 @@ "sF": "7", "sU": "6", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 2" }, { "date": "Sep 22, 1974", @@ -29453,7 +43282,12 @@ "sF": "20", "sU": "28", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 2" }, { "date": "Sep 22, 1974", @@ -29463,7 +43297,12 @@ "sF": "10", "sU": "17", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 2" }, { "date": "Sep 22, 1974", @@ -29472,8 +43311,13 @@ "und": "Baltimore Colts", "sF": "20", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 2" }, { "date": "Sep 22, 1974", @@ -29482,8 +43326,13 @@ "und": "Chicago Bears", "sF": "23", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 2" }, { "date": "Sep 22, 1974", @@ -29492,8 +43341,13 @@ "und": "Denver Broncos", "sF": "35", "sU": "35", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 2" }, { "date": "Sep 22, 1974", @@ -29503,7 +43357,12 @@ "sF": "24", "sU": "0", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 2" }, { "date": "Sep 22, 1974", @@ -29512,8 +43371,13 @@ "und": "Kansas City Chiefs", "sF": "27", "sU": "7", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 2" }, { "date": "Sep 23, 1974", @@ -29522,8 +43386,13 @@ "und": "Philadelphia Eagles", "sF": "10", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 2" }, { "date": "Sep 29, 1974", @@ -29532,8 +43401,13 @@ "und": "New York Jets", "sF": "16", "sU": "12", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 3" }, { "date": "Sep 29, 1974", @@ -29542,8 +43416,13 @@ "und": "New England Patriots", "sF": "14", "sU": "20", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 3" }, { "date": "Sep 29, 1974", @@ -29553,7 +43432,12 @@ "sF": "13", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 3" }, { "date": "Sep 29, 1974", @@ -29563,7 +43447,12 @@ "sF": "30", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 3" }, { "date": "Sep 29, 1974", @@ -29573,7 +43462,12 @@ "sF": "6", "sU": "14", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 3" }, { "date": "Sep 29, 1974", @@ -29583,7 +43477,12 @@ "sF": "21", "sU": "19", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 3" }, { "date": "Sep 29, 1974", @@ -29593,7 +43492,12 @@ "sF": "17", "sU": "7", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 3" }, { "date": "Sep 29, 1974", @@ -29602,8 +43506,13 @@ "und": "Chicago Bears", "sF": "11", "sU": "7", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 3" }, { "date": "Sep 29, 1974", @@ -29613,7 +43522,12 @@ "sF": "29", "sU": "7", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 3" }, { "date": "Sep 29, 1974", @@ -29623,7 +43537,12 @@ "sF": "0", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 3" }, { "date": "Sep 29, 1974", @@ -29632,8 +43551,13 @@ "und": "San Diego Chargers", "sF": "28", "sU": "21", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 3" }, { "date": "Sep 29, 1974", @@ -29642,12 +43566,13 @@ "und": "San Francisco 49ers", "sF": "21", "sU": "3", - "spread": "4", - "ou": "49", + "spread": "4.5", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 3" }, { "date": "Sep 30, 1974", @@ -29657,7 +43582,12 @@ "sF": "30", "sU": "3", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 3" }, { "date": "Oct 6, 1974", @@ -29666,8 +43596,13 @@ "und": "Washington Redskins", "sF": "28", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 4" }, { "date": "Oct 6, 1974", @@ -29677,7 +43612,12 @@ "sF": "40", "sU": "24", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 4" }, { "date": "Oct 6, 1974", @@ -29687,7 +43627,12 @@ "sF": "42", "sU": "3", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 4" }, { "date": "Oct 6, 1974", @@ -29696,8 +43641,13 @@ "und": "Atlanta Falcons", "sF": "7", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 4" }, { "date": "Oct 6, 1974", @@ -29707,7 +43657,12 @@ "sF": "24", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 4" }, { "date": "Oct 6, 1974", @@ -29717,7 +43672,12 @@ "sF": "27", "sU": "7", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 4" }, { "date": "Oct 6, 1974", @@ -29727,7 +43687,12 @@ "sF": "13", "sU": "7", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 4" }, { "date": "Oct 6, 1974", @@ -29737,7 +43702,12 @@ "sF": "23", "sU": "21", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 4" }, { "date": "Oct 6, 1974", @@ -29747,7 +43717,12 @@ "sF": "17", "sU": "14", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 4" }, { "date": "Oct 6, 1974", @@ -29756,8 +43731,13 @@ "und": "Detroit Lions", "sF": "16", "sU": "13", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 4" }, { "date": "Oct 6, 1974", @@ -29766,8 +43746,13 @@ "und": "San Diego Chargers", "sF": "13", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 4" }, { "date": "Oct 6, 1974", @@ -29776,12 +43761,13 @@ "und": "San Francisco 49ers", "sF": "34", "sU": "9", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 4" }, { "date": "Oct 7, 1974", @@ -29791,7 +43777,12 @@ "sF": "21", "sU": "17", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 4" }, { "date": "Oct 13, 1974", @@ -29800,8 +43791,13 @@ "und": "Chicago Bears", "sF": "13", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 5" }, { "date": "Oct 13, 1974", @@ -29810,8 +43806,13 @@ "und": "Cleveland Browns", "sF": "34", "sU": "24", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 5" }, { "date": "Oct 13, 1974", @@ -29821,7 +43822,12 @@ "sF": "24", "sU": "0", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 5" }, { "date": "Oct 13, 1974", @@ -29830,8 +43836,13 @@ "und": "New York Giants", "sF": "35", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 5" }, { "date": "Oct 13, 1974", @@ -29841,7 +43852,12 @@ "sF": "17", "sU": "20", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 5" }, { "date": "Oct 13, 1974", @@ -29850,8 +43866,13 @@ "und": "Baltimore Colts", "sF": "27", "sU": "14", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 5" }, { "date": "Oct 13, 1974", @@ -29860,8 +43881,13 @@ "und": "Kansas City Chiefs", "sF": "34", "sU": "24", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 5" }, { "date": "Oct 13, 1974", @@ -29870,8 +43896,13 @@ "und": "Houston Oilers", "sF": "51", "sU": "10", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 5" }, { "date": "Oct 13, 1974", @@ -29880,8 +43911,13 @@ "und": "St Louis Cardinals", "sF": "28", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 5" }, { "date": "Oct 13, 1974", @@ -29890,8 +43926,13 @@ "und": "New Orleans Saints", "sF": "33", "sU": "17", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 5" }, { "date": "Oct 13, 1974", @@ -29900,8 +43941,13 @@ "und": "Green Bay Packers", "sF": "6", "sU": "17", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 5" }, { "date": "Oct 13, 1974", @@ -29911,7 +43957,12 @@ "sF": "14", "sU": "10", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 5" }, { "date": "Oct 14, 1974", @@ -29921,11 +43972,12 @@ "sF": "17", "sU": "13", "spread": "10", - "ou": "49", + "ou": null, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 5" }, { "date": "Oct 20, 1974", @@ -29935,7 +43987,12 @@ "sF": "3", "sU": "13", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 6" }, { "date": "Oct 20, 1974", @@ -29945,7 +44002,12 @@ "sF": "30", "sU": "28", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 6" }, { "date": "Oct 20, 1974", @@ -29954,8 +44016,13 @@ "und": "Philadelphia Eagles", "sF": "31", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 6" }, { "date": "Oct 20, 1974", @@ -29964,8 +44031,13 @@ "und": "Baltimore Colts", "sF": "20", "sU": "35", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 6" }, { "date": "Oct 20, 1974", @@ -29974,8 +44046,13 @@ "und": "Cleveland Browns", "sF": "20", "sU": "16", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 6" }, { "date": "Oct 20, 1974", @@ -29984,8 +44061,13 @@ "und": "New York Giants", "sF": "24", "sU": "3", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 6" }, { "date": "Oct 20, 1974", @@ -29994,8 +44076,13 @@ "und": "Houston Oilers", "sF": "31", "sU": "27", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 6" }, { "date": "Oct 20, 1974", @@ -30005,7 +44092,12 @@ "sF": "16", "sU": "20", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 6" }, { "date": "Oct 20, 1974", @@ -30015,7 +44107,12 @@ "sF": "27", "sU": "7", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 6" }, { "date": "Oct 20, 1974", @@ -30025,11 +44122,12 @@ "sF": "37", "sU": "14", "spread": "15", - "ou": "49", + "ou": null, "pScore": { - "sU": 17, - "sF": 32 - } + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 6" }, { "date": "Oct 20, 1974", @@ -30038,8 +44136,13 @@ "und": "Kansas City Chiefs", "sF": "9", "sU": "3", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 6" }, { "date": "Oct 20, 1974", @@ -30049,7 +44152,12 @@ "sF": "30", "sU": "27", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 6" }, { "date": "Oct 21, 1974", @@ -30059,7 +44167,12 @@ "sF": "10", "sU": "9", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 6" }, { "date": "Oct 27, 1974", @@ -30069,7 +44182,12 @@ "sF": "10", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 7" }, { "date": "Oct 27, 1974", @@ -30079,7 +44197,12 @@ "sF": "16", "sU": "6", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 7" }, { "date": "Oct 27, 1974", @@ -30089,7 +44212,12 @@ "sF": "21", "sU": "34", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 7" }, { "date": "Oct 27, 1974", @@ -30098,8 +44226,13 @@ "und": "Cleveland Browns", "sF": "21", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 7" }, { "date": "Oct 27, 1974", @@ -30108,8 +44241,13 @@ "und": "Green Bay Packers", "sF": "19", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 7" }, { "date": "Oct 27, 1974", @@ -30119,7 +44257,12 @@ "sF": "17", "sU": "7", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 7" }, { "date": "Oct 27, 1974", @@ -30128,8 +44271,13 @@ "und": "New York Giants", "sF": "21", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 7" }, { "date": "Oct 27, 1974", @@ -30138,8 +44286,13 @@ "und": "New York Jets", "sF": "20", "sU": "13", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 7" }, { "date": "Oct 27, 1974", @@ -30148,8 +44301,13 @@ "und": "New England Patriots", "sF": "14", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 7" }, { "date": "Oct 27, 1974", @@ -30158,8 +44316,13 @@ "und": "San Diego Chargers", "sF": "24", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 7" }, { "date": "Oct 27, 1974", @@ -30168,12 +44331,13 @@ "und": "San Francisco 49ers", "sF": "35", "sU": "24", - "spread": "13", - "ou": "49", + "spread": "13.5", + "ou": null, "pScore": { - "sU": 18, - "sF": 31 - } + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 7" }, { "date": "Oct 28, 1974", @@ -30183,7 +44347,12 @@ "sF": "24", "sU": "17", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 7" }, { "date": "Nov 3, 1974", @@ -30192,8 +44361,13 @@ "und": "New Orleans Saints", "sF": "19", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 8" }, { "date": "Nov 3, 1974", @@ -30202,8 +44376,13 @@ "und": "Buffalo Bills", "sF": "28", "sU": "29", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 8" }, { "date": "Nov 3, 1974", @@ -30212,8 +44391,13 @@ "und": "Houston Oilers", "sF": "22", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 8" }, { "date": "Nov 3, 1974", @@ -30223,7 +44407,12 @@ "sF": "27", "sU": "0", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 8" }, { "date": "Nov 3, 1974", @@ -30233,7 +44422,12 @@ "sF": "24", "sU": "14", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 8" }, { "date": "Nov 3, 1974", @@ -30243,7 +44437,12 @@ "sF": "17", "sU": "0", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 8" }, { "date": "Nov 3, 1974", @@ -30252,8 +44451,13 @@ "und": "St Louis Cardinals", "sF": "17", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 8" }, { "date": "Nov 3, 1974", @@ -30263,7 +44467,12 @@ "sF": "17", "sU": "6", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 8" }, { "date": "Nov 3, 1974", @@ -30272,8 +44481,13 @@ "und": "Denver Broncos", "sF": "28", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 8" }, { "date": "Nov 3, 1974", @@ -30282,8 +44496,13 @@ "und": "New York Giants", "sF": "27", "sU": "33", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 8" }, { "date": "Nov 3, 1974", @@ -30292,8 +44511,13 @@ "und": "Atlanta Falcons", "sF": "42", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 8" }, { "date": "Nov 3, 1974", @@ -30302,8 +44526,13 @@ "und": "San Diego Chargers", "sF": "35", "sU": "36", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 8" }, { "date": "Nov 4, 1974", @@ -30312,12 +44541,13 @@ "und": "San Francisco 49ers", "sF": "15", "sU": "13", - "spread": "12", - "ou": "49", + "spread": "12.5", + "ou": null, "pScore": { - "sU": 18.5, - "sF": 30.5 - } + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 8" }, { "date": "Nov 10, 1974", @@ -30326,8 +44556,13 @@ "und": "Houston Oilers", "sF": "9", "sU": "21", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 9" }, { "date": "Nov 10, 1974", @@ -30336,8 +44571,13 @@ "und": "San Diego Chargers", "sF": "7", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 9" }, { "date": "Nov 10, 1974", @@ -30346,8 +44586,13 @@ "und": "Cleveland Browns", "sF": "14", "sU": "21", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 9" }, { "date": "Nov 10, 1974", @@ -30356,8 +44601,13 @@ "und": "New York Jets", "sF": "20", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 9" }, { "date": "Nov 10, 1974", @@ -30366,8 +44616,13 @@ "und": "Philadelphia Eagles", "sF": "27", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 9" }, { "date": "Nov 10, 1974", @@ -30376,8 +44631,13 @@ "und": "Baltimore Colts", "sF": "17", "sU": "6", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 9" }, { "date": "Nov 10, 1974", @@ -30386,12 +44646,13 @@ "und": "San Francisco 49ers", "sF": "20", "sU": "14", - "spread": "13", - "ou": "49", + "spread": "13.5", + "ou": null, "pScore": { - "sU": 18, - "sF": 31 - } + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 9" }, { "date": "Nov 10, 1974", @@ -30400,8 +44661,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 9" }, { "date": "Nov 10, 1974", @@ -30411,7 +44677,12 @@ "sF": "21", "sU": "0", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 9" }, { "date": "Nov 10, 1974", @@ -30421,7 +44692,12 @@ "sF": "10", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 9" }, { "date": "Nov 10, 1974", @@ -30431,7 +44707,12 @@ "sF": "21", "sU": "0", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 9" }, { "date": "Nov 10, 1974", @@ -30441,7 +44722,12 @@ "sF": "35", "sU": "13", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 9" }, { "date": "Nov 11, 1974", @@ -30451,7 +44737,12 @@ "sF": "28", "sU": "24", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 9" }, { "date": "Nov 17, 1974", @@ -30461,7 +44752,12 @@ "sF": "7", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 10" }, { "date": "Nov 17, 1974", @@ -30471,7 +44767,12 @@ "sF": "26", "sU": "16", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 10" }, { "date": "Nov 17, 1974", @@ -30480,8 +44781,13 @@ "und": "New York Giants", "sF": "20", "sU": "19", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 10" }, { "date": "Nov 17, 1974", @@ -30491,7 +44797,12 @@ "sF": "35", "sU": "28", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 10" }, { "date": "Nov 17, 1974", @@ -30501,7 +44812,12 @@ "sF": "16", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 10" }, { "date": "Nov 17, 1974", @@ -30511,7 +44827,12 @@ "sF": "13", "sU": "3", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 10" }, { "date": "Nov 17, 1974", @@ -30521,7 +44842,12 @@ "sF": "34", "sU": "0", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 10" }, { "date": "Nov 17, 1974", @@ -30531,7 +44857,12 @@ "sF": "3", "sU": "20", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 10" }, { "date": "Nov 17, 1974", @@ -30541,7 +44872,12 @@ "sF": "7", "sU": "19", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 10" }, { "date": "Nov 17, 1974", @@ -30550,8 +44886,13 @@ "und": "New Orleans Saints", "sF": "7", "sU": "20", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 10" }, { "date": "Nov 17, 1974", @@ -30560,8 +44901,13 @@ "und": "San Diego Chargers", "sF": "17", "sU": "10", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 10" }, { "date": "Nov 17, 1974", @@ -30570,8 +44916,13 @@ "und": "Dallas Cowboys", "sF": "28", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 10" }, { "date": "Nov 18, 1974", @@ -30580,8 +44931,13 @@ "und": "Kansas City Chiefs", "sF": "34", "sU": "42", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 10" }, { "date": "Nov 24, 1974", @@ -30590,8 +44946,13 @@ "und": "Kansas City Chiefs", "sF": "33", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 11" }, { "date": "Nov 24, 1974", @@ -30601,7 +44962,12 @@ "sF": "15", "sU": "10", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 11" }, { "date": "Nov 24, 1974", @@ -30611,7 +44977,12 @@ "sF": "34", "sU": "17", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 11" }, { "date": "Nov 24, 1974", @@ -30621,7 +44992,12 @@ "sF": "23", "sU": "21", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 11" }, { "date": "Nov 24, 1974", @@ -30631,7 +45007,12 @@ "sF": "14", "sU": "17", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 11" }, { "date": "Nov 24, 1974", @@ -30641,7 +45022,12 @@ "sF": "26", "sU": "7", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 11" }, { "date": "Nov 24, 1974", @@ -30650,8 +45036,13 @@ "und": "Baltimore Colts", "sF": "27", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 11" }, { "date": "Nov 24, 1974", @@ -30660,8 +45051,13 @@ "und": "San Diego Chargers", "sF": "34", "sU": "0", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 11" }, { "date": "Nov 24, 1974", @@ -30670,8 +45066,13 @@ "und": "Houston Oilers", "sF": "10", "sU": "0", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 11" }, { "date": "Nov 24, 1974", @@ -30680,8 +45081,13 @@ "und": "Minnesota Vikings", "sF": "20", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 11" }, { "date": "Nov 24, 1974", @@ -30691,7 +45097,12 @@ "sF": "17", "sU": "20", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 11" }, { "date": "Nov 24, 1974", @@ -30701,7 +45112,12 @@ "sF": "27", "sU": "0", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 11" }, { "date": "Nov 25, 1974", @@ -30711,7 +45127,12 @@ "sF": "28", "sU": "7", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 11" }, { "date": "Nov 28, 1974", @@ -30720,8 +45141,13 @@ "und": "Denver Broncos", "sF": "27", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 12" }, { "date": "Dec 1, 1974", @@ -30730,8 +45156,13 @@ "und": "Baltimore Colts", "sF": "6", "sU": "0", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 12" }, { "date": "Dec 1, 1974", @@ -30741,7 +45172,12 @@ "sF": "0", "sU": "7", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 12" }, { "date": "Dec 1, 1974", @@ -30750,8 +45186,13 @@ "und": "San Diego Chargers", "sF": "27", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 12" }, { "date": "Dec 1, 1974", @@ -30760,8 +45201,13 @@ "und": "Philadelphia Eagles", "sF": "14", "sU": "36", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 12" }, { "date": "Dec 1, 1974", @@ -30771,7 +45217,12 @@ "sF": "10", "sU": "13", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 12" }, { "date": "Dec 1, 1974", @@ -30781,7 +45232,12 @@ "sF": "13", "sU": "16", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 12" }, { "date": "Dec 1, 1974", @@ -30791,7 +45247,12 @@ "sF": "29", "sU": "9", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 12" }, { "date": "Dec 1, 1974", @@ -30800,8 +45261,13 @@ "und": "Kansas City Chiefs", "sF": "13", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 12" }, { "date": "Dec 1, 1974", @@ -30810,8 +45276,13 @@ "und": "Atlanta Falcons", "sF": "30", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 12" }, { "date": "Dec 1, 1974", @@ -30820,8 +45291,13 @@ "und": "New England Patriots", "sF": "41", "sU": "26", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 12" }, { "date": "Dec 2, 1974", @@ -30830,8 +45306,13 @@ "und": "Cincinnati Bengals", "sF": "24", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 12" }, { "date": "Dec 7, 1974", @@ -30841,7 +45322,12 @@ "sF": "23", "sU": "10", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 13" }, { "date": "Dec 7, 1974", @@ -30850,8 +45336,13 @@ "und": "Cleveland Browns", "sF": "41", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 13" }, { "date": "Dec 8, 1974", @@ -30861,7 +45352,12 @@ "sF": "19", "sU": "23", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 13" }, { "date": "Dec 8, 1974", @@ -30870,8 +45366,13 @@ "und": "New England Patriots", "sF": "21", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 13" }, { "date": "Dec 8, 1974", @@ -30880,8 +45381,13 @@ "und": "New Orleans Saints", "sF": "0", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 13" }, { "date": "Dec 8, 1974", @@ -30890,8 +45396,13 @@ "und": "Philadelphia Eagles", "sF": "7", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 13" }, { "date": "Dec 8, 1974", @@ -30900,8 +45411,13 @@ "und": "New York Jets", "sF": "10", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 13" }, { "date": "Dec 8, 1974", @@ -30911,7 +45427,12 @@ "sF": "17", "sU": "16", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 13" }, { "date": "Dec 8, 1974", @@ -30921,7 +45442,12 @@ "sF": "37", "sU": "14", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 13" }, { "date": "Dec 8, 1974", @@ -30931,7 +45457,12 @@ "sF": "7", "sU": "6", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 13" }, { "date": "Dec 8, 1974", @@ -30941,7 +45472,12 @@ "sF": "28", "sU": "21", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 13" }, { "date": "Dec 8, 1974", @@ -30951,11 +45487,12 @@ "sF": "6", "sU": "7", "spread": "2", - "ou": "49", + "ou": null, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 13" }, { "date": "Dec 9, 1974", @@ -30965,7 +45502,12 @@ "sF": "17", "sU": "23", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 13" }, { "date": "Dec 14, 1974", @@ -30975,7 +45517,12 @@ "sF": "27", "sU": "3", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 14" }, { "date": "Dec 14, 1974", @@ -30984,8 +45531,13 @@ "und": "Kansas City Chiefs", "sF": "35", "sU": "15", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 14" }, { "date": "Dec 14, 1974", @@ -30995,7 +45547,12 @@ "sF": "27", "sU": "23", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 14" }, { "date": "Dec 15, 1974", @@ -31004,8 +45561,13 @@ "und": "Atlanta Falcons", "sF": "3", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 14" }, { "date": "Dec 15, 1974", @@ -31014,8 +45576,13 @@ "und": "New England Patriots", "sF": "34", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 14" }, { "date": "Dec 15, 1974", @@ -31024,8 +45591,13 @@ "und": "Detroit Lions", "sF": "28", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 14" }, { "date": "Dec 15, 1974", @@ -31034,8 +45606,13 @@ "und": "Chicago Bears", "sF": "42", "sU": "0", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 14" }, { "date": "Dec 15, 1974", @@ -31044,8 +45621,13 @@ "und": "Baltimore Colts", "sF": "45", "sU": "38", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 14" }, { "date": "Dec 15, 1974", @@ -31054,8 +45636,13 @@ "und": "Cleveland Browns", "sF": "28", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 14" }, { "date": "Dec 15, 1974", @@ -31064,8 +45651,13 @@ "und": "New York Giants", "sF": "26", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 14" }, { "date": "Dec 15, 1974", @@ -31075,7 +45667,12 @@ "sF": "19", "sU": "14", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 14" }, { "date": "Dec 15, 1974", @@ -31085,7 +45682,12 @@ "sF": "0", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 14" }, { "date": "Dec 15, 1974", @@ -31094,8 +45696,13 @@ "und": "New Orleans Saints", "sF": "35", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Regular Season - Week 14" }, { "date": "Dec 21, 1974", @@ -31105,7 +45712,12 @@ "sF": "30", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Playoffs" }, { "date": "Dec 21, 1974", @@ -31115,7 +45727,12 @@ "sF": "28", "sU": "26", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Playoffs" }, { "date": "Dec 22, 1974", @@ -31124,8 +45741,13 @@ "und": "Buffalo Bills", "sF": "32", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Playoffs" }, { "date": "Dec 22, 1974", @@ -31134,8 +45756,13 @@ "und": "Washington Redskins", "sF": "19", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Playoffs" }, { "date": "Dec 29, 1974", @@ -31144,8 +45771,13 @@ "und": "Los Angeles Rams", "sF": "14", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Playoffs" }, { "date": "Dec 29, 1974", @@ -31154,8 +45786,13 @@ "und": "Pittsburgh Steelers", "sF": "13", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1974 Playoffs" }, { "date": "Jan 12, 1975", @@ -31165,7 +45802,12 @@ "sF": "16", "sU": "6", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "1974 Playoffs" }, { "date": "Sep 21, 1975", @@ -31175,7 +45817,12 @@ "sF": "24", "sU": "17", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 1" }, { "date": "Sep 21, 1975", @@ -31185,7 +45832,12 @@ "sF": "7", "sU": "0", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 1" }, { "date": "Sep 21, 1975", @@ -31194,8 +45846,13 @@ "und": "New York Giants", "sF": "14", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 1" }, { "date": "Sep 21, 1975", @@ -31205,7 +45862,12 @@ "sF": "41", "sU": "3", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 1" }, { "date": "Sep 21, 1975", @@ -31215,7 +45877,12 @@ "sF": "7", "sU": "35", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 1" }, { "date": "Sep 21, 1975", @@ -31224,8 +45891,13 @@ "und": "Detroit Lions", "sF": "16", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 1" }, { "date": "Sep 21, 1975", @@ -31234,12 +45906,13 @@ "und": "San Francisco 49ers", "sF": "27", "sU": "17", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 1" }, { "date": "Sep 21, 1975", @@ -31248,8 +45921,13 @@ "und": "Atlanta Falcons", "sF": "23", "sU": "20", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 1" }, { "date": "Sep 21, 1975", @@ -31258,8 +45936,13 @@ "und": "Dallas Cowboys", "sF": "7", "sU": "18", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 1" }, { "date": "Sep 21, 1975", @@ -31268,8 +45951,13 @@ "und": "Kansas City Chiefs", "sF": "37", "sU": "33", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 1" }, { "date": "Sep 21, 1975", @@ -31278,8 +45966,13 @@ "und": "San Diego Chargers", "sF": "37", "sU": "0", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 1" }, { "date": "Sep 22, 1975", @@ -31289,7 +45982,12 @@ "sF": "31", "sU": "21", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 1" }, { "date": "Sep 28, 1975", @@ -31299,7 +45997,12 @@ "sF": "14", "sU": "17", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 2" }, { "date": "Sep 28, 1975", @@ -31308,8 +46011,13 @@ "und": "Cleveland Browns", "sF": "42", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 2" }, { "date": "Sep 28, 1975", @@ -31319,7 +46027,12 @@ "sF": "22", "sU": "14", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 2" }, { "date": "Sep 28, 1975", @@ -31329,7 +46042,12 @@ "sF": "49", "sU": "13", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 2" }, { "date": "Sep 28, 1975", @@ -31338,8 +46056,13 @@ "und": "Baltimore Colts", "sF": "31", "sU": "20", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 2" }, { "date": "Sep 28, 1975", @@ -31348,8 +46071,13 @@ "und": "Chicago Bears", "sF": "13", "sU": "15", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 2" }, { "date": "Sep 28, 1975", @@ -31358,8 +46086,13 @@ "und": "St Louis Cardinals", "sF": "37", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 2" }, { "date": "Sep 28, 1975", @@ -31369,7 +46102,12 @@ "sF": "33", "sU": "17", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 2" }, { "date": "Sep 28, 1975", @@ -31378,8 +46116,13 @@ "und": "New Orleans Saints", "sF": "21", "sU": "0", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 2" }, { "date": "Sep 28, 1975", @@ -31389,7 +46132,12 @@ "sF": "21", "sU": "30", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 2" }, { "date": "Sep 28, 1975", @@ -31399,11 +46147,12 @@ "sF": "23", "sU": "14", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 2" }, { "date": "Sep 29, 1975", @@ -31412,8 +46161,13 @@ "und": "Green Bay Packers", "sF": "23", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 2" }, { "date": "Oct 5, 1975", @@ -31422,8 +46176,13 @@ "und": "New Orleans Saints", "sF": "14", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 3" }, { "date": "Oct 5, 1975", @@ -31432,8 +46191,13 @@ "und": "Denver Broncos", "sF": "38", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 3" }, { "date": "Oct 5, 1975", @@ -31442,8 +46206,13 @@ "und": "Cleveland Browns", "sF": "42", "sU": "6", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 3" }, { "date": "Oct 5, 1975", @@ -31452,8 +46221,13 @@ "und": "New England Patriots", "sF": "36", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 3" }, { "date": "Oct 5, 1975", @@ -31462,8 +46236,13 @@ "und": "Green Bay Packers", "sF": "31", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 3" }, { "date": "Oct 5, 1975", @@ -31473,7 +46252,12 @@ "sF": "21", "sU": "19", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 3" }, { "date": "Oct 5, 1975", @@ -31483,7 +46267,12 @@ "sF": "28", "sU": "3", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 3" }, { "date": "Oct 5, 1975", @@ -31492,8 +46281,13 @@ "und": "New York Giants", "sF": "26", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 3" }, { "date": "Oct 5, 1975", @@ -31502,8 +46296,13 @@ "und": "Baltimore Colts", "sF": "24", "sU": "13", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 3" }, { "date": "Oct 5, 1975", @@ -31512,8 +46311,13 @@ "und": "Philadelphia Eagles", "sF": "10", "sU": "26", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 3" }, { "date": "Oct 5, 1975", @@ -31523,7 +46327,12 @@ "sF": "6", "sU": "0", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 3" }, { "date": "Oct 6, 1975", @@ -31533,7 +46342,12 @@ "sF": "36", "sU": "10", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 3" }, { "date": "Oct 12, 1975", @@ -31543,7 +46357,12 @@ "sF": "27", "sU": "10", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 4" }, { "date": "Oct 12, 1975", @@ -31552,8 +46371,13 @@ "und": "Cleveland Browns", "sF": "40", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 4" }, { "date": "Oct 12, 1975", @@ -31563,7 +46387,12 @@ "sF": "27", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 4" }, { "date": "Oct 12, 1975", @@ -31572,8 +46401,13 @@ "und": "Dallas Cowboys", "sF": "7", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 4" }, { "date": "Oct 12, 1975", @@ -31582,8 +46416,13 @@ "und": "Denver Broncos", "sF": "20", "sU": "9", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 4" }, { "date": "Oct 12, 1975", @@ -31592,8 +46431,13 @@ "und": "Baltimore Colts", "sF": "38", "sU": "31", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 4" }, { "date": "Oct 12, 1975", @@ -31602,8 +46446,13 @@ "und": "New York Jets", "sF": "29", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 4" }, { "date": "Oct 12, 1975", @@ -31612,8 +46461,13 @@ "und": "Green Bay Packers", "sF": "20", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 4" }, { "date": "Oct 12, 1975", @@ -31623,7 +46477,12 @@ "sF": "10", "sU": "42", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 4" }, { "date": "Oct 12, 1975", @@ -31632,8 +46491,13 @@ "und": "Philadelphia Eagles", "sF": "24", "sU": "16", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 4" }, { "date": "Oct 12, 1975", @@ -31643,7 +46507,12 @@ "sF": "10", "sU": "13", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 4" }, { "date": "Oct 12, 1975", @@ -31653,7 +46522,12 @@ "sF": "3", "sU": "17", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 4" }, { "date": "Oct 13, 1975", @@ -31663,7 +46537,12 @@ "sF": "27", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 4" }, { "date": "Oct 19, 1975", @@ -31673,7 +46552,12 @@ "sF": "21", "sU": "10", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 5" }, { "date": "Oct 19, 1975", @@ -31683,7 +46567,12 @@ "sF": "34", "sU": "3", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 5" }, { "date": "Oct 19, 1975", @@ -31693,7 +46582,12 @@ "sF": "17", "sU": "19", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 5" }, { "date": "Oct 19, 1975", @@ -31703,7 +46597,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 5" }, { "date": "Oct 19, 1975", @@ -31713,7 +46612,12 @@ "sF": "31", "sU": "20", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 5" }, { "date": "Oct 19, 1975", @@ -31723,7 +46627,12 @@ "sF": "14", "sU": "10", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 5" }, { "date": "Oct 19, 1975", @@ -31732,8 +46641,13 @@ "und": "Cleveland Browns", "sF": "16", "sU": "15", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 5" }, { "date": "Oct 19, 1975", @@ -31743,7 +46657,12 @@ "sF": "22", "sU": "7", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 5" }, { "date": "Oct 19, 1975", @@ -31752,8 +46671,13 @@ "und": "Detroit Lions", "sF": "25", "sU": "19", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 5" }, { "date": "Oct 19, 1975", @@ -31763,7 +46687,12 @@ "sF": "12", "sU": "10", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 5" }, { "date": "Oct 19, 1975", @@ -31773,7 +46702,12 @@ "sF": "35", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 5" }, { "date": "Oct 20, 1975", @@ -31782,8 +46716,13 @@ "und": "New York Giants", "sF": "14", "sU": "17", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 5" }, { "date": "Oct 25, 1975", @@ -31793,7 +46732,12 @@ "sF": "20", "sU": "13", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 6" }, { "date": "Oct 26, 1975", @@ -31803,7 +46747,12 @@ "sF": "21", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 6" }, { "date": "Oct 26, 1975", @@ -31813,7 +46762,12 @@ "sF": "23", "sU": "7", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 6" }, { "date": "Oct 26, 1975", @@ -31823,11 +46777,12 @@ "sF": "24", "sU": "16", "spread": "2", - "ou": "49", + "ou": null, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 6" }, { "date": "Oct 26, 1975", @@ -31837,7 +46792,12 @@ "sF": "28", "sU": "45", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 6" }, { "date": "Oct 26, 1975", @@ -31846,8 +46806,13 @@ "und": "Philadelphia Eagles", "sF": "20", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 6" }, { "date": "Oct 26, 1975", @@ -31856,8 +46821,13 @@ "und": "Green Bay Packers", "sF": "16", "sU": "13", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 6" }, { "date": "Oct 26, 1975", @@ -31867,7 +46837,12 @@ "sF": "24", "sU": "8", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 6" }, { "date": "Oct 26, 1975", @@ -31877,7 +46852,12 @@ "sF": "26", "sU": "13", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 6" }, { "date": "Oct 26, 1975", @@ -31886,8 +46866,13 @@ "und": "New Orleans Saints", "sF": "38", "sU": "14", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 6" }, { "date": "Oct 26, 1975", @@ -31897,7 +46882,12 @@ "sF": "25", "sU": "0", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 6" }, { "date": "Oct 27, 1975", @@ -31907,7 +46897,12 @@ "sF": "13", "sU": "9", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 6" }, { "date": "Nov 1, 1975", @@ -31916,8 +46911,13 @@ "und": "San Diego Chargers", "sF": "35", "sU": "24", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 7" }, { "date": "Nov 2, 1975", @@ -31927,7 +46927,12 @@ "sF": "30", "sU": "24", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 7" }, { "date": "Nov 2, 1975", @@ -31937,7 +46942,12 @@ "sF": "24", "sU": "23", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 7" }, { "date": "Nov 2, 1975", @@ -31947,7 +46957,12 @@ "sF": "21", "sU": "7", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 7" }, { "date": "Nov 2, 1975", @@ -31956,8 +46971,13 @@ "und": "Chicago Bears", "sF": "46", "sU": "13", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 7" }, { "date": "Nov 2, 1975", @@ -31967,7 +46987,12 @@ "sF": "28", "sU": "17", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 7" }, { "date": "Nov 2, 1975", @@ -31976,8 +47001,13 @@ "und": "Kansas City Chiefs", "sF": "17", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 7" }, { "date": "Nov 2, 1975", @@ -31986,8 +47016,13 @@ "und": "New Orleans Saints", "sF": "7", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 7" }, { "date": "Nov 2, 1975", @@ -31997,7 +47032,12 @@ "sF": "24", "sU": "17", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 7" }, { "date": "Nov 2, 1975", @@ -32006,8 +47046,13 @@ "und": "Denver Broncos", "sF": "42", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 7" }, { "date": "Nov 2, 1975", @@ -32017,7 +47062,12 @@ "sF": "17", "sU": "28", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 7" }, { "date": "Nov 2, 1975", @@ -32027,7 +47077,12 @@ "sF": "30", "sU": "24", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 7" }, { "date": "Nov 3, 1975", @@ -32036,8 +47091,13 @@ "und": "Philadelphia Eagles", "sF": "42", "sU": "3", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 7" }, { "date": "Nov 9, 1975", @@ -32047,7 +47107,12 @@ "sF": "35", "sU": "42", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 8" }, { "date": "Nov 9, 1975", @@ -32056,8 +47121,13 @@ "und": "Cleveland Browns", "sF": "21", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 8" }, { "date": "Nov 9, 1975", @@ -32067,7 +47137,12 @@ "sF": "21", "sU": "13", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 8" }, { "date": "Nov 9, 1975", @@ -32076,8 +47151,13 @@ "und": "Philadelphia Eagles", "sF": "24", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 8" }, { "date": "Nov 9, 1975", @@ -32087,7 +47167,12 @@ "sF": "24", "sU": "17", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 8" }, { "date": "Nov 9, 1975", @@ -32096,8 +47181,13 @@ "und": "Chicago Bears", "sF": "14", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 8" }, { "date": "Nov 9, 1975", @@ -32107,7 +47197,12 @@ "sF": "38", "sU": "0", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 8" }, { "date": "Nov 9, 1975", @@ -32117,7 +47212,12 @@ "sF": "17", "sU": "16", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 8" }, { "date": "Nov 9, 1975", @@ -32127,11 +47227,12 @@ "sF": "23", "sU": "24", "spread": "14", - "ou": "49", + "ou": null, "pScore": { - "sU": 17.5, - "sF": 31.5 - } + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 8" }, { "date": "Nov 9, 1975", @@ -32141,7 +47242,12 @@ "sF": "27", "sU": "7", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 8" }, { "date": "Nov 9, 1975", @@ -32151,7 +47257,12 @@ "sF": "48", "sU": "10", "spread": "18", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 8" }, { "date": "Nov 9, 1975", @@ -32161,7 +47272,12 @@ "sF": "33", "sU": "19", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 8" }, { "date": "Nov 10, 1975", @@ -32170,8 +47286,13 @@ "und": "Kansas City Chiefs", "sF": "31", "sU": "34", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 8" }, { "date": "Nov 16, 1975", @@ -32180,8 +47301,13 @@ "und": "Atlanta Falcons", "sF": "16", "sU": "7", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 9" }, { "date": "Nov 16, 1975", @@ -32191,7 +47317,12 @@ "sF": "13", "sU": "10", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 9" }, { "date": "Nov 16, 1975", @@ -32201,7 +47332,12 @@ "sF": "34", "sU": "31", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 9" }, { "date": "Nov 16, 1975", @@ -32211,7 +47347,12 @@ "sF": "10", "sU": "13", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 9" }, { "date": "Nov 16, 1975", @@ -32220,8 +47361,13 @@ "und": "Kansas City Chiefs", "sF": "28", "sU": "3", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 9" }, { "date": "Nov 16, 1975", @@ -32230,8 +47376,13 @@ "und": "New York Jets", "sF": "52", "sU": "19", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 9" }, { "date": "Nov 16, 1975", @@ -32240,8 +47391,13 @@ "und": "Houston Oilers", "sF": "19", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 9" }, { "date": "Nov 16, 1975", @@ -32250,8 +47406,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "7", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 9" }, { "date": "Nov 16, 1975", @@ -32260,8 +47421,13 @@ "und": "Cleveland Browns", "sF": "38", "sU": "17", - "spread": "21", - "ou": -1 + "spread": "21.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 9" }, { "date": "Nov 16, 1975", @@ -32270,8 +47436,13 @@ "und": "San Diego Chargers", "sF": "27", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 9" }, { "date": "Nov 16, 1975", @@ -32281,7 +47452,12 @@ "sF": "31", "sU": "3", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 9" }, { "date": "Nov 16, 1975", @@ -32291,7 +47467,12 @@ "sF": "20", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 9" }, { "date": "Nov 17, 1975", @@ -32301,7 +47482,12 @@ "sF": "33", "sU": "24", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 9" }, { "date": "Nov 23, 1975", @@ -32311,7 +47497,12 @@ "sF": "21", "sU": "35", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 10" }, { "date": "Nov 23, 1975", @@ -32320,8 +47511,13 @@ "und": "New England Patriots", "sF": "45", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 10" }, { "date": "Nov 23, 1975", @@ -32331,7 +47527,12 @@ "sF": "23", "sU": "35", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 10" }, { "date": "Nov 23, 1975", @@ -32341,7 +47542,12 @@ "sF": "17", "sU": "33", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 10" }, { "date": "Nov 23, 1975", @@ -32351,7 +47557,12 @@ "sF": "37", "sU": "6", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 10" }, { "date": "Nov 23, 1975", @@ -32360,8 +47571,13 @@ "und": "Philadelphia Eagles", "sF": "27", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 10" }, { "date": "Nov 23, 1975", @@ -32371,7 +47587,12 @@ "sF": "40", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 10" }, { "date": "Nov 23, 1975", @@ -32381,7 +47602,12 @@ "sF": "24", "sU": "21", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 10" }, { "date": "Nov 23, 1975", @@ -32391,7 +47617,12 @@ "sF": "28", "sU": "13", "spread": "21", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 10" }, { "date": "Nov 23, 1975", @@ -32401,7 +47632,12 @@ "sF": "16", "sU": "6", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 10" }, { "date": "Nov 23, 1975", @@ -32410,8 +47646,13 @@ "und": "Chicago Bears", "sF": "38", "sU": "10", - "spread": "19", - "ou": -1 + "spread": "19.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 10" }, { "date": "Nov 23, 1975", @@ -32420,8 +47661,13 @@ "und": "Washington Redskins", "sF": "26", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 10" }, { "date": "Nov 24, 1975", @@ -32430,8 +47676,13 @@ "und": "Houston Oilers", "sF": "32", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 10" }, { "date": "Nov 27, 1975", @@ -32441,7 +47692,12 @@ "sF": "20", "sU": "0", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 11" }, { "date": "Nov 27, 1975", @@ -32451,7 +47707,12 @@ "sF": "14", "sU": "32", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 11" }, { "date": "Nov 30, 1975", @@ -32461,7 +47722,12 @@ "sF": "23", "sU": "19", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 11" }, { "date": "Nov 30, 1975", @@ -32471,7 +47737,12 @@ "sF": "17", "sU": "16", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 11" }, { "date": "Nov 30, 1975", @@ -32481,7 +47752,12 @@ "sF": "20", "sU": "7", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 11" }, { "date": "Nov 30, 1975", @@ -32491,7 +47767,12 @@ "sF": "17", "sU": "27", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 11" }, { "date": "Nov 30, 1975", @@ -32500,8 +47781,13 @@ "und": "Kansas City Chiefs", "sF": "28", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 11" }, { "date": "Nov 30, 1975", @@ -32511,7 +47797,12 @@ "sF": "14", "sU": "3", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 11" }, { "date": "Nov 30, 1975", @@ -32521,7 +47812,12 @@ "sF": "28", "sU": "7", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 11" }, { "date": "Nov 30, 1975", @@ -32530,8 +47826,13 @@ "und": "San Diego Chargers", "sF": "13", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 11" }, { "date": "Nov 30, 1975", @@ -32541,7 +47842,12 @@ "sF": "37", "sU": "34", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 11" }, { "date": "Nov 30, 1975", @@ -32550,8 +47856,13 @@ "und": "Washington Redskins", "sF": "30", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 11" }, { "date": "Dec 1, 1975", @@ -32560,8 +47871,13 @@ "und": "New England Patriots", "sF": "20", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 11" }, { "date": "Dec 7, 1975", @@ -32570,8 +47886,13 @@ "und": "Atlanta Falcons", "sF": "30", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 12" }, { "date": "Dec 7, 1975", @@ -32580,8 +47901,13 @@ "und": "New York Jets", "sF": "28", "sU": "30", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 12" }, { "date": "Dec 7, 1975", @@ -32591,7 +47917,12 @@ "sF": "21", "sU": "0", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 12" }, { "date": "Dec 7, 1975", @@ -32601,7 +47932,12 @@ "sF": "31", "sU": "0", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 12" }, { "date": "Dec 7, 1975", @@ -32611,7 +47947,12 @@ "sF": "31", "sU": "17", "spread": "18", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 12" }, { "date": "Dec 7, 1975", @@ -32620,8 +47961,13 @@ "und": "Chicago Bears", "sF": "21", "sU": "25", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 12" }, { "date": "Dec 7, 1975", @@ -32631,7 +47977,12 @@ "sF": "20", "sU": "28", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 12" }, { "date": "Dec 7, 1975", @@ -32640,8 +47991,13 @@ "und": "Green Bay Packers", "sF": "24", "sU": "3", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 12" }, { "date": "Dec 7, 1975", @@ -32651,7 +48007,12 @@ "sF": "14", "sU": "7", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 12" }, { "date": "Dec 7, 1975", @@ -32661,7 +48022,12 @@ "sF": "31", "sU": "17", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 12" }, { "date": "Dec 7, 1975", @@ -32671,7 +48037,12 @@ "sF": "21", "sU": "31", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 12" }, { "date": "Dec 7, 1975", @@ -32680,12 +48051,13 @@ "und": "San Francisco 49ers", "sF": "27", "sU": "13", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": null, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 12" }, { "date": "Dec 8, 1975", @@ -32694,8 +48066,13 @@ "und": "Denver Broncos", "sF": "17", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 12" }, { "date": "Dec 13, 1975", @@ -32704,8 +48081,13 @@ "und": "Cincinnati Bengals", "sF": "35", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 13" }, { "date": "Dec 13, 1975", @@ -32714,8 +48096,13 @@ "und": "Washington Redskins", "sF": "31", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 13" }, { "date": "Dec 14, 1975", @@ -32725,11 +48112,12 @@ "sF": "31", "sU": "9", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 13" }, { "date": "Dec 14, 1975", @@ -32738,8 +48126,13 @@ "und": "Kansas City Chiefs", "sF": "40", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 13" }, { "date": "Dec 14, 1975", @@ -32749,7 +48142,12 @@ "sF": "34", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 13" }, { "date": "Dec 14, 1975", @@ -32759,7 +48157,12 @@ "sF": "28", "sU": "14", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 13" }, { "date": "Dec 14, 1975", @@ -32769,7 +48172,12 @@ "sF": "10", "sU": "7", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 13" }, { "date": "Dec 14, 1975", @@ -32778,8 +48186,13 @@ "und": "Chicago Bears", "sF": "34", "sU": "20", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 13" }, { "date": "Dec 14, 1975", @@ -32788,8 +48201,13 @@ "und": "Philadelphia Eagles", "sF": "25", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 13" }, { "date": "Dec 14, 1975", @@ -32799,7 +48217,12 @@ "sF": "10", "sU": "17", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 13" }, { "date": "Dec 14, 1975", @@ -32808,8 +48231,13 @@ "und": "Green Bay Packers", "sF": "22", "sU": "5", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 13" }, { "date": "Dec 14, 1975", @@ -32818,8 +48246,13 @@ "und": "Houston Oilers", "sF": "26", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 13" }, { "date": "Dec 15, 1975", @@ -32828,8 +48261,13 @@ "und": "San Diego Chargers", "sF": "16", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 13" }, { "date": "Dec 20, 1975", @@ -32838,8 +48276,13 @@ "und": "Buffalo Bills", "sF": "35", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 14" }, { "date": "Dec 20, 1975", @@ -32849,7 +48292,12 @@ "sF": "14", "sU": "13", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 14" }, { "date": "Dec 20, 1975", @@ -32859,7 +48307,12 @@ "sF": "3", "sU": "10", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 14" }, { "date": "Dec 21, 1975", @@ -32869,7 +48322,12 @@ "sF": "47", "sU": "17", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 14" }, { "date": "Dec 21, 1975", @@ -32878,8 +48336,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 14" }, { "date": "Dec 21, 1975", @@ -32888,8 +48351,13 @@ "und": "New York Jets", "sF": "31", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 14" }, { "date": "Dec 21, 1975", @@ -32898,8 +48366,13 @@ "und": "Philadelphia Eagles", "sF": "3", "sU": "26", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 14" }, { "date": "Dec 21, 1975", @@ -32908,8 +48381,13 @@ "und": "New England Patriots", "sF": "34", "sU": "21", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 14" }, { "date": "Dec 21, 1975", @@ -32918,8 +48396,13 @@ "und": "Atlanta Falcons", "sF": "22", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 14" }, { "date": "Dec 21, 1975", @@ -32928,8 +48411,13 @@ "und": "Cleveland Browns", "sF": "21", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 14" }, { "date": "Dec 21, 1975", @@ -32939,7 +48427,12 @@ "sF": "17", "sU": "42", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 14" }, { "date": "Dec 21, 1975", @@ -32949,7 +48442,12 @@ "sF": "28", "sU": "20", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 14" }, { "date": "Dec 21, 1975", @@ -32958,8 +48456,13 @@ "und": "New York Giants", "sF": "23", "sU": "26", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Regular Season - Week 14" }, { "date": "Dec 27, 1975", @@ -32968,8 +48471,13 @@ "und": "Baltimore Colts (3)", "sF": "28", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Playoffs" }, { "date": "Dec 27, 1975", @@ -32978,8 +48486,13 @@ "und": "St Louis Cardinals (3)", "sF": "35", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Playoffs" }, { "date": "Dec 28, 1975", @@ -32989,7 +48502,12 @@ "sF": "14", "sU": "17", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Playoffs" }, { "date": "Dec 28, 1975", @@ -32998,8 +48516,13 @@ "und": "Cincinnati Bengals (4)", "sF": "31", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Playoffs" }, { "date": "Jan 4, 1976", @@ -33008,8 +48531,13 @@ "und": "Oakland Raiders (2)", "sF": "16", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Playoffs" }, { "date": "Jan 4, 1976", @@ -33018,8 +48546,13 @@ "und": "Dallas Cowboys (4)", "sF": "7", "sU": "37", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1975 Playoffs" }, { "date": "Jan 18, 1976", @@ -33029,7 +48562,12 @@ "sF": "21", "sU": "17", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1975 Playoffs" }, { "date": "Sep 12, 1976", @@ -33038,8 +48576,13 @@ "und": "Atlanta Falcons", "sF": "30", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 1" }, { "date": "Sep 12, 1976", @@ -33049,7 +48592,12 @@ "sF": "38", "sU": "17", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 1" }, { "date": "Sep 12, 1976", @@ -33058,8 +48606,13 @@ "und": "New England Patriots", "sF": "27", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 1" }, { "date": "Sep 12, 1976", @@ -33068,8 +48621,13 @@ "und": "New York Giants", "sF": "19", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 1" }, { "date": "Sep 12, 1976", @@ -33079,7 +48637,12 @@ "sF": "3", "sU": "10", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 1" }, { "date": "Sep 12, 1976", @@ -33089,7 +48652,12 @@ "sF": "17", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 1" }, { "date": "Sep 12, 1976", @@ -33099,7 +48667,12 @@ "sF": "27", "sU": "7", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 1" }, { "date": "Sep 12, 1976", @@ -33108,8 +48681,13 @@ "und": "Green Bay Packers", "sF": "26", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 1" }, { "date": "Sep 12, 1976", @@ -33119,7 +48697,12 @@ "sF": "20", "sU": "0", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 1" }, { "date": "Sep 12, 1976", @@ -33129,7 +48712,12 @@ "sF": "16", "sU": "30", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 1" }, { "date": "Sep 12, 1976", @@ -33138,8 +48726,13 @@ "und": "New Orleans Saints", "sF": "40", "sU": "9", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 1" }, { "date": "Sep 12, 1976", @@ -33149,7 +48742,12 @@ "sF": "28", "sU": "31", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 1" }, { "date": "Sep 12, 1976", @@ -33158,8 +48756,13 @@ "und": "Seattle Seahawks", "sF": "30", "sU": "24", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 1" }, { "date": "Sep 13, 1976", @@ -33168,8 +48771,13 @@ "und": "Buffalo Bills", "sF": "30", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 1" }, { "date": "Sep 19, 1976", @@ -33178,8 +48786,13 @@ "und": "Houston Oilers", "sF": "3", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 2" }, { "date": "Sep 19, 1976", @@ -33188,8 +48801,13 @@ "und": "Atlanta Falcons", "sF": "24", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 2" }, { "date": "Sep 19, 1976", @@ -33199,7 +48817,12 @@ "sF": "14", "sU": "30", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 2" }, { "date": "Sep 19, 1976", @@ -33209,7 +48832,12 @@ "sF": "7", "sU": "20", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 2" }, { "date": "Sep 19, 1976", @@ -33218,8 +48846,13 @@ "und": "Cleveland Browns", "sF": "31", "sU": "14", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 2" }, { "date": "Sep 19, 1976", @@ -33229,7 +48862,12 @@ "sF": "23", "sU": "0", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 2" }, { "date": "Sep 19, 1976", @@ -33239,7 +48877,12 @@ "sF": "31", "sU": "7", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 2" }, { "date": "Sep 19, 1976", @@ -33249,7 +48892,12 @@ "sF": "28", "sU": "27", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 2" }, { "date": "Sep 19, 1976", @@ -33258,8 +48906,13 @@ "und": "New Orleans Saints", "sF": "24", "sU": "6", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 2" }, { "date": "Sep 19, 1976", @@ -33268,8 +48921,13 @@ "und": "Green Bay Packers", "sF": "29", "sU": "0", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 2" }, { "date": "Sep 19, 1976", @@ -33279,7 +48937,12 @@ "sF": "46", "sU": "3", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 2" }, { "date": "Sep 19, 1976", @@ -33289,7 +48952,12 @@ "sF": "10", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 2" }, { "date": "Sep 19, 1976", @@ -33299,7 +48967,12 @@ "sF": "12", "sU": "19", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 2" }, { "date": "Sep 20, 1976", @@ -33309,7 +48982,12 @@ "sF": "24", "sU": "21", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 2" }, { "date": "Sep 26, 1976", @@ -33319,7 +48997,12 @@ "sF": "28", "sU": "7", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 3" }, { "date": "Sep 26, 1976", @@ -33329,7 +49012,12 @@ "sF": "16", "sU": "0", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 3" }, { "date": "Sep 26, 1976", @@ -33338,8 +49026,13 @@ "und": "New England Patriots", "sF": "27", "sU": "30", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 3" }, { "date": "Sep 26, 1976", @@ -33348,8 +49041,13 @@ "und": "Tampa Bay Buccaneers", "sF": "14", "sU": "9", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 3" }, { "date": "Sep 26, 1976", @@ -33359,7 +49057,12 @@ "sF": "0", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 3" }, { "date": "Sep 26, 1976", @@ -33369,7 +49072,12 @@ "sF": "10", "sU": "9", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 3" }, { "date": "Sep 26, 1976", @@ -33379,7 +49087,12 @@ "sF": "14", "sU": "13", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 3" }, { "date": "Sep 26, 1976", @@ -33389,7 +49102,12 @@ "sF": "17", "sU": "27", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 3" }, { "date": "Sep 26, 1976", @@ -33398,8 +49116,13 @@ "und": "Baltimore Colts", "sF": "30", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 3" }, { "date": "Sep 26, 1976", @@ -33408,8 +49131,13 @@ "und": "Cleveland Browns", "sF": "44", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 3" }, { "date": "Sep 26, 1976", @@ -33419,7 +49147,12 @@ "sF": "24", "sU": "10", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 3" }, { "date": "Sep 26, 1976", @@ -33429,7 +49162,12 @@ "sF": "24", "sU": "43", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 3" }, { "date": "Sep 26, 1976", @@ -33438,8 +49176,13 @@ "und": "Seattle Seahawks", "sF": "37", "sU": "21", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 3" }, { "date": "Sep 27, 1976", @@ -33448,8 +49191,13 @@ "und": "Philadelphia Eagles", "sF": "20", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 3" }, { "date": "Oct 3, 1976", @@ -33458,8 +49206,13 @@ "und": "Philadelphia Eagles", "sF": "13", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 4" }, { "date": "Oct 3, 1976", @@ -33468,8 +49221,13 @@ "und": "Kansas City Chiefs", "sF": "50", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 4" }, { "date": "Oct 3, 1976", @@ -33478,8 +49236,13 @@ "und": "Cleveland Browns", "sF": "45", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 4" }, { "date": "Oct 3, 1976", @@ -33489,7 +49252,12 @@ "sF": "17", "sU": "48", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 4" }, { "date": "Oct 3, 1976", @@ -33498,8 +49266,13 @@ "und": "Tampa Bay Buccaneers", "sF": "42", "sU": "17", - "spread": "19", - "ou": -1 + "spread": "19.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 4" }, { "date": "Oct 3, 1976", @@ -33508,8 +49281,13 @@ "und": "Chicago Bears", "sF": "7", "sU": "33", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 4" }, { "date": "Oct 3, 1976", @@ -33519,7 +49297,12 @@ "sF": "14", "sU": "24", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 4" }, { "date": "Oct 3, 1976", @@ -33529,7 +49312,12 @@ "sF": "31", "sU": "26", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 4" }, { "date": "Oct 3, 1976", @@ -33538,8 +49326,13 @@ "und": "New York Giants", "sF": "27", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 4" }, { "date": "Oct 3, 1976", @@ -33548,8 +49341,13 @@ "und": "San Diego Chargers", "sF": "26", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 4" }, { "date": "Oct 3, 1976", @@ -33558,8 +49356,13 @@ "und": "Miami Dolphins", "sF": "31", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 4" }, { "date": "Oct 3, 1976", @@ -33569,7 +49372,12 @@ "sF": "17", "sU": "6", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 4" }, { "date": "Oct 3, 1976", @@ -33578,8 +49386,13 @@ "und": "Seattle Seahawks", "sF": "28", "sU": "13", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 4" }, { "date": "Oct 4, 1976", @@ -33588,8 +49401,13 @@ "und": "Minnesota Vikings", "sF": "6", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 4" }, { "date": "Oct 10, 1976", @@ -33599,7 +49417,12 @@ "sF": "21", "sU": "0", "spread": "21", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 5" }, { "date": "Oct 10, 1976", @@ -33608,8 +49431,13 @@ "und": "Cleveland Browns", "sF": "16", "sU": "18", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 5" }, { "date": "Oct 10, 1976", @@ -33619,7 +49447,12 @@ "sF": "10", "sU": "30", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 5" }, { "date": "Oct 10, 1976", @@ -33628,8 +49461,13 @@ "und": "New York Giants", "sF": "24", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 5" }, { "date": "Oct 10, 1976", @@ -33638,8 +49476,13 @@ "und": "New York Jets", "sF": "14", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 5" }, { "date": "Oct 10, 1976", @@ -33649,7 +49492,12 @@ "sF": "30", "sU": "33", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 5" }, { "date": "Oct 10, 1976", @@ -33658,8 +49506,13 @@ "und": "Seattle Seahawks", "sF": "27", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 5" }, { "date": "Oct 10, 1976", @@ -33669,7 +49522,12 @@ "sF": "17", "sU": "3", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 5" }, { "date": "Oct 10, 1976", @@ -33678,8 +49536,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "19", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 5" }, { "date": "Oct 10, 1976", @@ -33689,7 +49552,12 @@ "sF": "33", "sU": "14", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 5" }, { "date": "Oct 10, 1976", @@ -33699,7 +49567,12 @@ "sF": "28", "sU": "14", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 5" }, { "date": "Oct 10, 1976", @@ -33708,8 +49581,13 @@ "und": "San Diego Chargers", "sF": "27", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 5" }, { "date": "Oct 11, 1976", @@ -33719,11 +49597,12 @@ "sF": "0", "sU": "16", "spread": "13", - "ou": "49", + "ou": null, "pScore": { - "sU": 18, - "sF": 31 - } + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 5" }, { "date": "Oct 17, 1976", @@ -33732,8 +49611,13 @@ "und": "Atlanta Falcons", "sF": "20", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 6" }, { "date": "Oct 17, 1976", @@ -33742,8 +49626,13 @@ "und": "Buffalo Bills", "sF": "31", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 6" }, { "date": "Oct 17, 1976", @@ -33752,8 +49641,13 @@ "und": "Kansas City Chiefs", "sF": "17", "sU": "20", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 6" }, { "date": "Oct 17, 1976", @@ -33763,7 +49657,12 @@ "sF": "6", "sU": "23", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 6" }, { "date": "Oct 17, 1976", @@ -33773,7 +49672,12 @@ "sF": "20", "sU": "7", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 6" }, { "date": "Oct 17, 1976", @@ -33783,7 +49687,12 @@ "sF": "28", "sU": "13", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 6" }, { "date": "Oct 17, 1976", @@ -33792,8 +49701,13 @@ "und": "New York Giants", "sF": "24", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 6" }, { "date": "Oct 17, 1976", @@ -33803,7 +49717,12 @@ "sF": "17", "sU": "10", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 6" }, { "date": "Oct 17, 1976", @@ -33812,8 +49731,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "12", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 6" }, { "date": "Oct 17, 1976", @@ -33822,8 +49746,13 @@ "und": "San Diego Chargers", "sF": "27", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 6" }, { "date": "Oct 17, 1976", @@ -33833,7 +49762,12 @@ "sF": "33", "sU": "3", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 6" }, { "date": "Oct 17, 1976", @@ -33843,7 +49777,12 @@ "sF": "17", "sU": "21", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 6" }, { "date": "Oct 18, 1976", @@ -33853,7 +49792,12 @@ "sF": "41", "sU": "7", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 6" }, { "date": "Oct 23, 1976", @@ -33863,7 +49807,12 @@ "sF": "15", "sU": "0", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 7" }, { "date": "Oct 24, 1976", @@ -33873,7 +49822,12 @@ "sF": "26", "sU": "22", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 7" }, { "date": "Oct 24, 1976", @@ -33883,7 +49837,12 @@ "sF": "21", "sU": "17", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 7" }, { "date": "Oct 24, 1976", @@ -33892,8 +49851,13 @@ "und": "New York Giants", "sF": "27", "sU": "0", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 7" }, { "date": "Oct 24, 1976", @@ -33903,7 +49867,12 @@ "sF": "20", "sU": "0", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 7" }, { "date": "Oct 24, 1976", @@ -33913,7 +49882,12 @@ "sF": "31", "sU": "12", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 7" }, { "date": "Oct 24, 1976", @@ -33923,7 +49897,12 @@ "sF": "31", "sU": "21", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 7" }, { "date": "Oct 24, 1976", @@ -33932,8 +49911,13 @@ "und": "Kansas City Chiefs", "sF": "35", "sU": "26", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 7" }, { "date": "Oct 24, 1976", @@ -33943,7 +49927,12 @@ "sF": "16", "sU": "10", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 7" }, { "date": "Oct 24, 1976", @@ -33953,7 +49942,12 @@ "sF": "27", "sU": "7", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 7" }, { "date": "Oct 24, 1976", @@ -33963,7 +49957,12 @@ "sF": "18", "sU": "14", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 7" }, { "date": "Oct 24, 1976", @@ -33973,7 +49972,12 @@ "sF": "41", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 7" }, { "date": "Oct 24, 1976", @@ -33982,8 +49986,13 @@ "und": "Tampa Bay Buccaneers", "sF": "23", "sU": "20", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 7" }, { "date": "Oct 25, 1976", @@ -33992,8 +50001,13 @@ "und": "Washington Redskins", "sF": "10", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 7" }, { "date": "Oct 31, 1976", @@ -34003,7 +50017,12 @@ "sF": "14", "sU": "19", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 8" }, { "date": "Oct 31, 1976", @@ -34013,7 +50032,12 @@ "sF": "13", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 8" }, { "date": "Oct 31, 1976", @@ -34023,7 +50047,12 @@ "sF": "21", "sU": "6", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 8" }, { "date": "Oct 31, 1976", @@ -34033,7 +50062,12 @@ "sF": "27", "sU": "6", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 8" }, { "date": "Oct 31, 1976", @@ -34043,7 +50077,12 @@ "sF": "3", "sU": "10", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 8" }, { "date": "Oct 31, 1976", @@ -34053,7 +50092,12 @@ "sF": "0", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 8" }, { "date": "Oct 31, 1976", @@ -34062,8 +50106,13 @@ "und": "San Diego Chargers", "sF": "23", "sU": "0", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 8" }, { "date": "Oct 31, 1976", @@ -34073,7 +50122,12 @@ "sF": "28", "sU": "19", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 8" }, { "date": "Oct 31, 1976", @@ -34083,11 +50137,12 @@ "sF": "23", "sU": "20", "spread": "4", - "ou": "49", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 8" }, { "date": "Oct 31, 1976", @@ -34097,7 +50152,12 @@ "sF": "45", "sU": "6", "spread": "21", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 8" }, { "date": "Oct 31, 1976", @@ -34106,8 +50166,13 @@ "und": "Denver Broncos", "sF": "19", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 8" }, { "date": "Oct 31, 1976", @@ -34117,7 +50182,12 @@ "sF": "20", "sU": "7", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 8" }, { "date": "Nov 1, 1976", @@ -34126,8 +50196,13 @@ "und": "Houston Oilers", "sF": "38", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 8" }, { "date": "Nov 7, 1976", @@ -34137,7 +50212,12 @@ "sF": "20", "sU": "10", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 9" }, { "date": "Nov 7, 1976", @@ -34146,8 +50226,13 @@ "und": "New York Jets", "sF": "27", "sU": "7", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 9" }, { "date": "Nov 7, 1976", @@ -34156,8 +50241,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 9" }, { "date": "Nov 7, 1976", @@ -34167,7 +50257,12 @@ "sF": "28", "sU": "27", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 9" }, { "date": "Nov 7, 1976", @@ -34176,8 +50271,13 @@ "und": "New York Giants", "sF": "9", "sU": "3", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 9" }, { "date": "Nov 7, 1976", @@ -34187,7 +50287,12 @@ "sF": "32", "sU": "27", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 9" }, { "date": "Nov 7, 1976", @@ -34196,8 +50301,13 @@ "und": "Cleveland Browns", "sF": "7", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 9" }, { "date": "Nov 7, 1976", @@ -34206,8 +50316,13 @@ "und": "Kansas City Chiefs", "sF": "45", "sU": "0", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 9" }, { "date": "Nov 7, 1976", @@ -34216,8 +50331,13 @@ "und": "Tampa Bay Buccaneers", "sF": "48", "sU": "13", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 9" }, { "date": "Nov 7, 1976", @@ -34227,7 +50347,12 @@ "sF": "31", "sU": "23", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 9" }, { "date": "Nov 7, 1976", @@ -34237,7 +50362,12 @@ "sF": "37", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 9" }, { "date": "Nov 7, 1976", @@ -34247,7 +50377,12 @@ "sF": "21", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 9" }, { "date": "Nov 7, 1976", @@ -34256,8 +50391,13 @@ "und": "Seattle Seahawks", "sF": "13", "sU": "30", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 9" }, { "date": "Nov 8, 1976", @@ -34267,7 +50407,12 @@ "sF": "20", "sU": "12", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 9" }, { "date": "Nov 14, 1976", @@ -34277,7 +50422,12 @@ "sF": "16", "sU": "21", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 10" }, { "date": "Nov 14, 1976", @@ -34287,7 +50437,12 @@ "sF": "31", "sU": "27", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 10" }, { "date": "Nov 14, 1976", @@ -34297,7 +50452,12 @@ "sF": "24", "sU": "3", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 10" }, { "date": "Nov 14, 1976", @@ -34306,8 +50466,13 @@ "und": "New York Giants", "sF": "9", "sU": "12", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 10" }, { "date": "Nov 14, 1976", @@ -34316,8 +50481,13 @@ "und": "Tampa Bay Buccaneers", "sF": "34", "sU": "0", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 10" }, { "date": "Nov 14, 1976", @@ -34327,7 +50497,12 @@ "sF": "14", "sU": "21", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 10" }, { "date": "Nov 14, 1976", @@ -34337,7 +50512,12 @@ "sF": "24", "sU": "13", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 10" }, { "date": "Nov 14, 1976", @@ -34346,8 +50526,13 @@ "und": "Seattle Seahawks", "sF": "27", "sU": "21", - "spread": "20", - "ou": -1 + "spread": "20.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 10" }, { "date": "Nov 14, 1976", @@ -34357,7 +50542,12 @@ "sF": "16", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 10" }, { "date": "Nov 14, 1976", @@ -34367,7 +50557,12 @@ "sF": "28", "sU": "30", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 10" }, { "date": "Nov 14, 1976", @@ -34377,7 +50572,12 @@ "sF": "21", "sU": "10", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 10" }, { "date": "Nov 14, 1976", @@ -34386,8 +50586,13 @@ "und": "Miami Dolphins", "sF": "14", "sU": "3", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 10" }, { "date": "Nov 14, 1976", @@ -34397,7 +50602,12 @@ "sF": "17", "sU": "0", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 10" }, { "date": "Nov 15, 1976", @@ -34406,8 +50616,13 @@ "und": "Buffalo Bills", "sF": "17", "sU": "10", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 10" }, { "date": "Nov 21, 1976", @@ -34417,7 +50632,12 @@ "sF": "10", "sU": "17", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 11" }, { "date": "Nov 21, 1976", @@ -34427,7 +50647,12 @@ "sF": "13", "sU": "34", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 11" }, { "date": "Nov 21, 1976", @@ -34436,8 +50661,13 @@ "und": "New York Jets", "sF": "38", "sU": "24", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 11" }, { "date": "Nov 21, 1976", @@ -34447,7 +50677,12 @@ "sF": "26", "sU": "7", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 11" }, { "date": "Nov 21, 1976", @@ -34456,8 +50691,13 @@ "und": "Houston Oilers", "sF": "32", "sU": "16", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 11" }, { "date": "Nov 21, 1976", @@ -34467,7 +50707,12 @@ "sF": "24", "sU": "7", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 11" }, { "date": "Nov 21, 1976", @@ -34477,7 +50722,12 @@ "sF": "10", "sU": "14", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 11" }, { "date": "Nov 21, 1976", @@ -34487,7 +50737,12 @@ "sF": "17", "sU": "10", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 11" }, { "date": "Nov 21, 1976", @@ -34497,7 +50752,12 @@ "sF": "27", "sU": "24", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 11" }, { "date": "Nov 21, 1976", @@ -34506,8 +50766,13 @@ "und": "New York Giants", "sF": "14", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 11" }, { "date": "Nov 21, 1976", @@ -34516,12 +50781,13 @@ "und": "San Francisco 49ers", "sF": "23", "sU": "3", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 11" }, { "date": "Nov 21, 1976", @@ -34531,7 +50797,12 @@ "sF": "51", "sU": "27", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 11" }, { "date": "Nov 21, 1976", @@ -34540,8 +50811,13 @@ "und": "Washington Redskins", "sF": "10", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 11" }, { "date": "Nov 22, 1976", @@ -34551,7 +50827,12 @@ "sF": "17", "sU": "16", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 11" }, { "date": "Nov 25, 1976", @@ -34560,8 +50841,13 @@ "und": "Buffalo Bills", "sF": "27", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 12" }, { "date": "Nov 25, 1976", @@ -34571,7 +50857,12 @@ "sF": "19", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 12" }, { "date": "Nov 28, 1976", @@ -34580,8 +50871,13 @@ "und": "Miami Dolphins", "sF": "17", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 12" }, { "date": "Nov 28, 1976", @@ -34591,7 +50887,12 @@ "sF": "38", "sU": "14", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 12" }, { "date": "Nov 28, 1976", @@ -34601,7 +50902,12 @@ "sF": "28", "sU": "16", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 12" }, { "date": "Nov 28, 1976", @@ -34610,8 +50916,13 @@ "und": "Philadelphia Eagles", "sF": "24", "sU": "0", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 12" }, { "date": "Nov 28, 1976", @@ -34621,7 +50932,12 @@ "sF": "33", "sU": "16", "spread": "19", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 12" }, { "date": "Nov 28, 1976", @@ -34630,8 +50946,13 @@ "und": "Green Bay Packers", "sF": "16", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 12" }, { "date": "Nov 28, 1976", @@ -34641,7 +50962,12 @@ "sF": "20", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 12" }, { "date": "Nov 28, 1976", @@ -34651,7 +50977,12 @@ "sF": "7", "sU": "3", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 12" }, { "date": "Nov 28, 1976", @@ -34660,8 +50991,13 @@ "und": "New Orleans Saints", "sF": "33", "sU": "14", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 12" }, { "date": "Nov 28, 1976", @@ -34671,7 +51007,12 @@ "sF": "49", "sU": "16", "spread": "22", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 12" }, { "date": "Nov 28, 1976", @@ -34680,8 +51021,13 @@ "und": "Kansas City Chiefs", "sF": "20", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 12" }, { "date": "Nov 29, 1976", @@ -34691,11 +51037,12 @@ "sF": "16", "sU": "20", "spread": "6", - "ou": "49", + "ou": null, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 12" }, { "date": "Dec 4, 1976", @@ -34705,7 +51052,12 @@ "sF": "17", "sU": "24", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 13" }, { "date": "Dec 4, 1976", @@ -34715,7 +51067,12 @@ "sF": "59", "sU": "0", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 13" }, { "date": "Dec 5, 1976", @@ -34725,7 +51082,12 @@ "sF": "13", "sU": "10", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 13" }, { "date": "Dec 5, 1976", @@ -34735,7 +51097,12 @@ "sF": "27", "sU": "6", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 13" }, { "date": "Dec 5, 1976", @@ -34745,7 +51112,12 @@ "sF": "10", "sU": "24", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 13" }, { "date": "Dec 5, 1976", @@ -34755,7 +51127,12 @@ "sF": "37", "sU": "16", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 13" }, { "date": "Dec 5, 1976", @@ -34765,7 +51142,12 @@ "sF": "26", "sU": "7", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 13" }, { "date": "Dec 5, 1976", @@ -34775,7 +51157,12 @@ "sF": "42", "sU": "0", "spread": "27", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 13" }, { "date": "Dec 5, 1976", @@ -34784,8 +51171,13 @@ "und": "Green Bay Packers", "sF": "20", "sU": "9", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 13" }, { "date": "Dec 5, 1976", @@ -34794,8 +51186,13 @@ "und": "Kansas City Chiefs", "sF": "17", "sU": "16", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 13" }, { "date": "Dec 5, 1976", @@ -34804,8 +51201,13 @@ "und": "Buffalo Bills", "sF": "45", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 13" }, { "date": "Dec 5, 1976", @@ -34814,8 +51216,13 @@ "und": "Seattle Seahawks", "sF": "34", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 13" }, { "date": "Dec 6, 1976", @@ -34824,8 +51231,13 @@ "und": "Cincinnati Bengals", "sF": "35", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 13" }, { "date": "Dec 11, 1976", @@ -34834,8 +51246,13 @@ "und": "Miami Dolphins", "sF": "29", "sU": "7", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 14" }, { "date": "Dec 11, 1976", @@ -34844,8 +51261,13 @@ "und": "Houston Oilers", "sF": "21", "sU": "0", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 14" }, { "date": "Dec 11, 1976", @@ -34855,7 +51277,12 @@ "sF": "20", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 14" }, { "date": "Dec 12, 1976", @@ -34865,7 +51292,12 @@ "sF": "20", "sU": "24", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 14" }, { "date": "Dec 12, 1976", @@ -34875,7 +51307,12 @@ "sF": "17", "sU": "14", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 14" }, { "date": "Dec 12, 1976", @@ -34884,8 +51321,13 @@ "und": "New York Jets", "sF": "42", "sU": "3", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 14" }, { "date": "Dec 12, 1976", @@ -34895,7 +51337,12 @@ "sF": "27", "sU": "10", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 14" }, { "date": "Dec 12, 1976", @@ -34905,7 +51352,12 @@ "sF": "31", "sU": "14", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 14" }, { "date": "Dec 12, 1976", @@ -34914,8 +51366,13 @@ "und": "Buffalo Bills", "sF": "58", "sU": "20", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 14" }, { "date": "Dec 12, 1976", @@ -34925,7 +51382,12 @@ "sF": "14", "sU": "28", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 14" }, { "date": "Dec 12, 1976", @@ -34934,8 +51396,13 @@ "und": "Kansas City Chiefs", "sF": "14", "sU": "39", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 14" }, { "date": "Dec 12, 1976", @@ -34945,11 +51412,12 @@ "sF": "7", "sU": "27", "spread": "3", - "ou": "49", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 14" }, { "date": "Dec 12, 1976", @@ -34958,8 +51426,13 @@ "und": "Washington Redskins", "sF": "14", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 14" }, { "date": "Dec 12, 1976", @@ -34969,7 +51442,12 @@ "sF": "24", "sU": "0", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Regular Season - Week 14" }, { "date": "Dec 18, 1976", @@ -34979,7 +51457,12 @@ "sF": "35", "sU": "20", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Playoffs" }, { "date": "Dec 18, 1976", @@ -34989,7 +51472,12 @@ "sF": "24", "sU": "21", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Playoffs" }, { "date": "Dec 19, 1976", @@ -34998,8 +51486,13 @@ "und": "Baltimore Colts (2)", "sF": "40", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Playoffs" }, { "date": "Dec 19, 1976", @@ -35008,8 +51501,13 @@ "und": "Los Angeles Rams (3)", "sF": "12", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Playoffs" }, { "date": "Dec 26, 1976", @@ -35019,7 +51517,12 @@ "sF": "24", "sU": "13", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Playoffs" }, { "date": "Dec 26, 1976", @@ -35029,7 +51532,12 @@ "sF": "7", "sU": "24", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1976 Playoffs" }, { "date": "Jan 9, 1977", @@ -35039,7 +51547,12 @@ "sF": "32", "sU": "14", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1976 Playoffs" }, { "date": "Sep 18, 1977", @@ -35049,7 +51562,12 @@ "sF": "6", "sU": "17", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 1" }, { "date": "Sep 18, 1977", @@ -35058,8 +51576,13 @@ "und": "Buffalo Bills", "sF": "13", "sU": "0", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 1" }, { "date": "Sep 18, 1977", @@ -35069,7 +51592,12 @@ "sF": "3", "sU": "13", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 1" }, { "date": "Sep 18, 1977", @@ -35078,8 +51606,13 @@ "und": "Kansas City Chiefs", "sF": "21", "sU": "17", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 1" }, { "date": "Sep 18, 1977", @@ -35089,7 +51622,12 @@ "sF": "17", "sU": "20", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 1" }, { "date": "Sep 18, 1977", @@ -35099,7 +51637,12 @@ "sF": "13", "sU": "3", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 1" }, { "date": "Sep 18, 1977", @@ -35108,8 +51651,13 @@ "und": "Detroit Lions", "sF": "30", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 1" }, { "date": "Sep 18, 1977", @@ -35118,8 +51666,13 @@ "und": "Dallas Cowboys", "sF": "10", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 1" }, { "date": "Sep 18, 1977", @@ -35129,7 +51682,12 @@ "sF": "20", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 1" }, { "date": "Sep 18, 1977", @@ -35138,8 +51696,13 @@ "und": "St Louis Cardinals", "sF": "7", "sU": "0", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 1" }, { "date": "Sep 18, 1977", @@ -35149,7 +51712,12 @@ "sF": "20", "sU": "0", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 1" }, { "date": "Sep 18, 1977", @@ -35158,8 +51726,13 @@ "und": "San Diego Chargers", "sF": "24", "sU": "0", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 1" }, { "date": "Sep 18, 1977", @@ -35169,7 +51742,12 @@ "sF": "29", "sU": "14", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 1" }, { "date": "Sep 19, 1977", @@ -35179,11 +51757,12 @@ "sF": "27", "sU": "0", "spread": "14", - "ou": "49", + "ou": null, "pScore": { - "sU": 17.5, - "sF": 31.5 - } + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 1" }, { "date": "Sep 24, 1977", @@ -35192,8 +51771,13 @@ "und": "Tampa Bay Buccaneers", "sF": "9", "sU": "3", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 2" }, { "date": "Sep 25, 1977", @@ -35203,7 +51787,12 @@ "sF": "42", "sU": "20", "spread": "20", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 2" }, { "date": "Sep 25, 1977", @@ -35213,7 +51802,12 @@ "sF": "20", "sU": "12", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 2" }, { "date": "Sep 25, 1977", @@ -35223,7 +51817,12 @@ "sF": "16", "sU": "7", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 2" }, { "date": "Sep 25, 1977", @@ -35233,7 +51832,12 @@ "sF": "10", "sU": "6", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 2" }, { "date": "Sep 25, 1977", @@ -35242,8 +51846,13 @@ "und": "New York Giants", "sF": "41", "sU": "21", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 2" }, { "date": "Sep 25, 1977", @@ -35252,8 +51861,13 @@ "und": "New Orleans Saints", "sF": "23", "sU": "19", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 2" }, { "date": "Sep 25, 1977", @@ -35263,7 +51877,12 @@ "sF": "16", "sU": "10", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 2" }, { "date": "Sep 25, 1977", @@ -35272,8 +51891,13 @@ "und": "San Diego Chargers", "sF": "7", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 2" }, { "date": "Sep 25, 1977", @@ -35282,8 +51906,13 @@ "und": "Chicago Bears", "sF": "16", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 2" }, { "date": "Sep 25, 1977", @@ -35293,7 +51922,12 @@ "sF": "26", "sU": "6", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 2" }, { "date": "Sep 25, 1977", @@ -35302,8 +51936,13 @@ "und": "Philadelphia Eagles", "sF": "20", "sU": "0", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 2" }, { "date": "Sep 25, 1977", @@ -35312,12 +51951,13 @@ "und": "San Francisco 49ers", "sF": "19", "sU": "15", - "spread": "4", - "ou": "49", + "spread": "4.5", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 2" }, { "date": "Sep 26, 1977", @@ -35326,8 +51966,13 @@ "und": "Cleveland Browns", "sF": "27", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 2" }, { "date": "Oct 2, 1977", @@ -35336,8 +51981,13 @@ "und": "New York Giants", "sF": "17", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 3" }, { "date": "Oct 2, 1977", @@ -35346,8 +51996,13 @@ "und": "Cleveland Browns", "sF": "28", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 3" }, { "date": "Oct 2, 1977", @@ -35356,8 +52011,13 @@ "und": "Tampa Bay Buccaneers", "sF": "23", "sU": "7", - "spread": "22", - "ou": -1 + "spread": "22.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 3" }, { "date": "Oct 2, 1977", @@ -35366,8 +52026,13 @@ "und": "New York Jets", "sF": "27", "sU": "30", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 3" }, { "date": "Oct 2, 1977", @@ -35377,7 +52042,12 @@ "sF": "17", "sU": "14", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 3" }, { "date": "Oct 2, 1977", @@ -35386,8 +52056,13 @@ "und": "New Orleans Saints", "sF": "24", "sU": "42", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 3" }, { "date": "Oct 2, 1977", @@ -35396,8 +52071,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 3" }, { "date": "Oct 2, 1977", @@ -35406,8 +52086,13 @@ "und": "Green Bay Packers", "sF": "19", "sU": "7", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 3" }, { "date": "Oct 2, 1977", @@ -35416,12 +52101,13 @@ "und": "San Francisco 49ers", "sF": "34", "sU": "14", - "spread": "12", - "ou": "49", + "spread": "12.5", + "ou": null, "pScore": { - "sU": 18.5, - "sF": 30.5 - } + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 3" }, { "date": "Oct 2, 1977", @@ -35430,8 +52116,13 @@ "und": "Houston Oilers", "sF": "27", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 3" }, { "date": "Oct 2, 1977", @@ -35441,7 +52132,12 @@ "sF": "3", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 3" }, { "date": "Oct 2, 1977", @@ -35450,8 +52146,13 @@ "und": "Seattle Seahawks", "sF": "24", "sU": "13", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 3" }, { "date": "Oct 2, 1977", @@ -35460,8 +52161,13 @@ "und": "Washington Redskins", "sF": "14", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 3" }, { "date": "Oct 3, 1977", @@ -35471,7 +52177,12 @@ "sF": "37", "sU": "28", "spread": "13", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 13.75, + "sF": 26.75 + }, + "week": "1977 Regular Season - Week 3" }, { "date": "Oct 9, 1977", @@ -35481,7 +52192,12 @@ "sF": "19", "sU": "24", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 4" }, { "date": "Oct 9, 1977", @@ -35490,8 +52206,13 @@ "und": "Cleveland Browns", "sF": "26", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 4" }, { "date": "Oct 9, 1977", @@ -35500,8 +52221,13 @@ "und": "Seattle Seahawks", "sF": "31", "sU": "0", - "spread": "19", - "ou": -1 + "spread": "19.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 4" }, { "date": "Oct 9, 1977", @@ -35511,7 +52237,12 @@ "sF": "10", "sU": "28", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 4" }, { "date": "Oct 9, 1977", @@ -35521,7 +52252,12 @@ "sF": "45", "sU": "28", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 4" }, { "date": "Oct 9, 1977", @@ -35531,7 +52267,12 @@ "sF": "17", "sU": "7", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 4" }, { "date": "Oct 9, 1977", @@ -35541,7 +52282,12 @@ "sF": "10", "sU": "27", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 4" }, { "date": "Oct 9, 1977", @@ -35550,8 +52296,13 @@ "und": "Detroit Lions", "sF": "14", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 4" }, { "date": "Oct 9, 1977", @@ -35561,7 +52312,12 @@ "sF": "0", "sU": "14", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 4" }, { "date": "Oct 9, 1977", @@ -35571,7 +52327,12 @@ "sF": "30", "sU": "24", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 4" }, { "date": "Oct 9, 1977", @@ -35580,8 +52341,13 @@ "und": "Kansas City Chiefs", "sF": "23", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 4" }, { "date": "Oct 9, 1977", @@ -35590,8 +52356,13 @@ "und": "Atlanta Falcons", "sF": "0", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 4" }, { "date": "Oct 9, 1977", @@ -35601,7 +52372,12 @@ "sF": "10", "sU": "0", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 4" }, { "date": "Oct 10, 1977", @@ -35610,8 +52386,13 @@ "und": "Chicago Bears", "sF": "23", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.5, + "pScore": { + "sU": 16.5, + "sF": 21.0 + }, + "week": "1977 Regular Season - Week 4" }, { "date": "Oct 16, 1977", @@ -35620,8 +52401,13 @@ "und": "Buffalo Bills", "sF": "0", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 5" }, { "date": "Oct 16, 1977", @@ -35630,8 +52416,13 @@ "und": "Kansas City Chiefs", "sF": "17", "sU": "6", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 5" }, { "date": "Oct 16, 1977", @@ -35640,8 +52431,13 @@ "und": "New York Giants", "sF": "17", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 5" }, { "date": "Oct 16, 1977", @@ -35650,8 +52446,13 @@ "und": "Philadelphia Eagles", "sF": "21", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 5" }, { "date": "Oct 16, 1977", @@ -35661,7 +52462,12 @@ "sF": "10", "sU": "6", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 5" }, { "date": "Oct 16, 1977", @@ -35670,8 +52476,13 @@ "und": "Cleveland Browns", "sF": "23", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 5" }, { "date": "Oct 16, 1977", @@ -35681,7 +52492,12 @@ "sF": "22", "sU": "16", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 5" }, { "date": "Oct 16, 1977", @@ -35690,8 +52506,13 @@ "und": "Washington Redskins", "sF": "34", "sU": "16", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 5" }, { "date": "Oct 16, 1977", @@ -35701,7 +52522,12 @@ "sF": "14", "sU": "7", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 5" }, { "date": "Oct 16, 1977", @@ -35711,7 +52537,12 @@ "sF": "21", "sU": "17", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 5" }, { "date": "Oct 16, 1977", @@ -35721,7 +52552,12 @@ "sF": "7", "sU": "30", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 5" }, { "date": "Oct 16, 1977", @@ -35731,7 +52567,12 @@ "sF": "30", "sU": "23", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 5" }, { "date": "Oct 23, 1977", @@ -35741,7 +52582,12 @@ "sF": "27", "sU": "16", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 6" }, { "date": "Oct 23, 1977", @@ -35750,8 +52596,13 @@ "und": "Atlanta Falcons", "sF": "10", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 6" }, { "date": "Oct 23, 1977", @@ -35760,8 +52611,13 @@ "und": "Cincinnati Bengals", "sF": "24", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 6" }, { "date": "Oct 23, 1977", @@ -35770,8 +52626,13 @@ "und": "Seattle Seahawks", "sF": "31", "sU": "13", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 6" }, { "date": "Oct 23, 1977", @@ -35780,8 +52641,13 @@ "und": "New York Jets", "sF": "28", "sU": "27", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 6" }, { "date": "Oct 23, 1977", @@ -35791,7 +52657,12 @@ "sF": "16", "sU": "10", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 6" }, { "date": "Oct 23, 1977", @@ -35801,7 +52672,12 @@ "sF": "27", "sU": "10", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 6" }, { "date": "Oct 23, 1977", @@ -35811,7 +52687,12 @@ "sF": "13", "sU": "0", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 6" }, { "date": "Oct 23, 1977", @@ -35821,7 +52702,12 @@ "sF": "6", "sU": "17", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 6" }, { "date": "Oct 23, 1977", @@ -35831,7 +52717,12 @@ "sF": "49", "sU": "31", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 6" }, { "date": "Oct 23, 1977", @@ -35840,8 +52731,13 @@ "und": "Baltimore Colts", "sF": "17", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 6" }, { "date": "Oct 23, 1977", @@ -35850,8 +52746,13 @@ "und": "Kansas City Chiefs", "sF": "16", "sU": "21", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 6" }, { "date": "Oct 23, 1977", @@ -35861,11 +52762,12 @@ "sF": "7", "sU": "28", "spread": "2", - "ou": "49", + "ou": null, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 6" }, { "date": "Oct 24, 1977", @@ -35875,7 +52777,12 @@ "sF": "35", "sU": "3", "spread": "3", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 15.25, + "sF": 18.25 + }, + "week": "1977 Regular Season - Week 6" }, { "date": "Oct 30, 1977", @@ -35884,8 +52791,13 @@ "und": "Atlanta Falcons", "sF": "14", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 7" }, { "date": "Oct 30, 1977", @@ -35895,7 +52807,12 @@ "sF": "13", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 7" }, { "date": "Oct 30, 1977", @@ -35904,8 +52821,13 @@ "und": "Kansas City Chiefs", "sF": "44", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 7" }, { "date": "Oct 30, 1977", @@ -35915,7 +52837,12 @@ "sF": "13", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 7" }, { "date": "Oct 30, 1977", @@ -35925,7 +52852,12 @@ "sF": "24", "sU": "13", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 7" }, { "date": "Oct 30, 1977", @@ -35934,8 +52866,13 @@ "und": "Philadelphia Eagles", "sF": "23", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 7" }, { "date": "Oct 30, 1977", @@ -35944,8 +52881,13 @@ "und": "Detroit Lions", "sF": "37", "sU": "0", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 7" }, { "date": "Oct 30, 1977", @@ -35955,7 +52897,12 @@ "sF": "26", "sU": "0", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 7" }, { "date": "Oct 30, 1977", @@ -35965,7 +52912,12 @@ "sF": "26", "sU": "27", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 7" }, { "date": "Oct 30, 1977", @@ -35974,8 +52926,13 @@ "und": "Pittsburgh Steelers", "sF": "31", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 7" }, { "date": "Oct 30, 1977", @@ -35985,7 +52942,12 @@ "sF": "24", "sU": "14", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 7" }, { "date": "Oct 30, 1977", @@ -35995,7 +52957,12 @@ "sF": "20", "sU": "10", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 7" }, { "date": "Oct 30, 1977", @@ -36005,7 +52972,12 @@ "sF": "17", "sU": "56", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 7" }, { "date": "Oct 31, 1977", @@ -36015,7 +52987,12 @@ "sF": "28", "sU": "0", "spread": "11", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 15.25, + "sF": 26.25 + }, + "week": "1977 Regular Season - Week 7" }, { "date": "Nov 6, 1977", @@ -36025,11 +53002,12 @@ "sF": "3", "sU": "10", "spread": "4", - "ou": "49", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 8" }, { "date": "Nov 6, 1977", @@ -36038,8 +53016,13 @@ "und": "Cincinnati Bengals", "sF": "7", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 8" }, { "date": "Nov 6, 1977", @@ -36049,7 +53032,12 @@ "sF": "14", "sU": "24", "spread": "18", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 8" }, { "date": "Nov 6, 1977", @@ -36059,7 +53047,12 @@ "sF": "24", "sU": "10", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 8" }, { "date": "Nov 6, 1977", @@ -36069,7 +53062,12 @@ "sF": "14", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 8" }, { "date": "Nov 6, 1977", @@ -36078,8 +53076,13 @@ "und": "New Orleans Saints", "sF": "28", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 8" }, { "date": "Nov 6, 1977", @@ -36088,8 +53091,13 @@ "und": "Houston Oilers", "sF": "0", "sU": "47", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 8" }, { "date": "Nov 6, 1977", @@ -36098,8 +53106,13 @@ "und": "Green Bay Packers", "sF": "20", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 8" }, { "date": "Nov 6, 1977", @@ -36108,8 +53121,13 @@ "und": "Pittsburgh Steelers", "sF": "21", "sU": "7", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 8" }, { "date": "Nov 6, 1977", @@ -36118,8 +53136,13 @@ "und": "Detroit Lions", "sF": "0", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 8" }, { "date": "Nov 6, 1977", @@ -36129,7 +53152,12 @@ "sF": "31", "sU": "0", "spread": "21", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 8" }, { "date": "Nov 6, 1977", @@ -36138,8 +53166,13 @@ "und": "St Louis Cardinals", "sF": "7", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 8" }, { "date": "Nov 6, 1977", @@ -36148,8 +53181,13 @@ "und": "Seattle Seahawks", "sF": "44", "sU": "7", - "spread": "19", - "ou": -1 + "spread": "19.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 8" }, { "date": "Nov 7, 1977", @@ -36158,8 +53196,13 @@ "und": "Washington Redskins", "sF": "10", "sU": "3", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 39.5, + "pScore": { + "sU": 14.5, + "sF": 25.0 + }, + "week": "1977 Regular Season - Week 8" }, { "date": "Nov 13, 1977", @@ -36168,8 +53211,13 @@ "und": "Detroit Lions", "sF": "17", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 9" }, { "date": "Nov 13, 1977", @@ -36179,7 +53227,12 @@ "sF": "31", "sU": "13", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 9" }, { "date": "Nov 13, 1977", @@ -36189,7 +53242,12 @@ "sF": "5", "sU": "17", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 9" }, { "date": "Nov 13, 1977", @@ -36198,8 +53256,13 @@ "und": "Seattle Seahawks", "sF": "0", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 9" }, { "date": "Nov 13, 1977", @@ -36209,7 +53272,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 9" }, { "date": "Nov 13, 1977", @@ -36218,8 +53286,13 @@ "und": "Cleveland Browns", "sF": "35", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 9" }, { "date": "Nov 13, 1977", @@ -36228,8 +53301,13 @@ "und": "Tampa Bay Buccaneers", "sF": "10", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 9" }, { "date": "Nov 13, 1977", @@ -36238,8 +53316,13 @@ "und": "Kansas City Chiefs", "sF": "28", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 9" }, { "date": "Nov 13, 1977", @@ -36249,7 +53332,12 @@ "sF": "24", "sU": "6", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 9" }, { "date": "Nov 13, 1977", @@ -36259,7 +53347,12 @@ "sF": "10", "sU": "7", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 9" }, { "date": "Nov 13, 1977", @@ -36269,7 +53362,12 @@ "sF": "42", "sU": "10", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 9" }, { "date": "Nov 13, 1977", @@ -36279,7 +53377,12 @@ "sF": "34", "sU": "29", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 9" }, { "date": "Nov 13, 1977", @@ -36289,7 +53392,12 @@ "sF": "17", "sU": "14", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 9" }, { "date": "Nov 14, 1977", @@ -36298,8 +53406,13 @@ "und": "St Louis Cardinals", "sF": "17", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.5, + "pScore": { + "sU": 18.0, + "sF": 24.5 + }, + "week": "1977 Regular Season - Week 9" }, { "date": "Nov 20, 1977", @@ -36309,7 +53422,12 @@ "sF": "20", "sU": "7", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 10" }, { "date": "Nov 20, 1977", @@ -36318,8 +53436,13 @@ "und": "Minnesota Vikings", "sF": "10", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 10" }, { "date": "Nov 20, 1977", @@ -36329,7 +53452,12 @@ "sF": "17", "sU": "23", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 10" }, { "date": "Nov 20, 1977", @@ -36338,8 +53466,13 @@ "und": "New York Giants", "sF": "21", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 10" }, { "date": "Nov 20, 1977", @@ -36349,7 +53482,12 @@ "sF": "33", "sU": "12", "spread": "16", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 10" }, { "date": "Nov 20, 1977", @@ -36358,8 +53496,13 @@ "und": "Tampa Bay Buccaneers", "sF": "16", "sU": "7", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 10" }, { "date": "Nov 20, 1977", @@ -36368,8 +53511,13 @@ "und": "Kansas City Chiefs", "sF": "14", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 10" }, { "date": "Nov 20, 1977", @@ -36379,7 +53527,12 @@ "sF": "20", "sU": "21", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 10" }, { "date": "Nov 20, 1977", @@ -36389,7 +53542,12 @@ "sF": "21", "sU": "16", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 10" }, { "date": "Nov 20, 1977", @@ -36399,7 +53557,12 @@ "sF": "28", "sU": "13", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 10" }, { "date": "Nov 20, 1977", @@ -36408,8 +53571,13 @@ "und": "San Diego Chargers", "sF": "7", "sU": "12", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 10" }, { "date": "Nov 20, 1977", @@ -36418,12 +53586,13 @@ "und": "San Francisco 49ers", "sF": "23", "sU": "10", - "spread": "4", - "ou": "49", + "spread": "4.5", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 10" }, { "date": "Nov 20, 1977", @@ -36433,7 +53602,12 @@ "sF": "22", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 10" }, { "date": "Nov 21, 1977", @@ -36443,7 +53617,12 @@ "sF": "10", "sU": "9", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 10" }, { "date": "Nov 24, 1977", @@ -36452,8 +53631,13 @@ "und": "Detroit Lions", "sF": "31", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 11" }, { "date": "Nov 24, 1977", @@ -36463,7 +53647,12 @@ "sF": "14", "sU": "55", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 11" }, { "date": "Nov 27, 1977", @@ -36473,7 +53662,12 @@ "sF": "30", "sU": "13", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 11" }, { "date": "Nov 27, 1977", @@ -36483,7 +53677,12 @@ "sF": "9", "sU": "0", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 11" }, { "date": "Nov 27, 1977", @@ -36492,8 +53691,13 @@ "und": "Philadelphia Eagles", "sF": "14", "sU": "6", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 11" }, { "date": "Nov 27, 1977", @@ -36502,8 +53706,13 @@ "und": "New York Jets", "sF": "23", "sU": "20", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 11" }, { "date": "Nov 27, 1977", @@ -36513,7 +53722,12 @@ "sF": "17", "sU": "0", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 11" }, { "date": "Nov 27, 1977", @@ -36522,8 +53736,13 @@ "und": "Green Bay Packers", "sF": "13", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 11" }, { "date": "Nov 27, 1977", @@ -36532,8 +53751,13 @@ "und": "Kansas City Chiefs", "sF": "34", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 11" }, { "date": "Nov 27, 1977", @@ -36543,7 +53767,12 @@ "sF": "27", "sU": "13", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 11" }, { "date": "Nov 27, 1977", @@ -36553,7 +53782,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 11" }, { "date": "Nov 27, 1977", @@ -36563,7 +53797,12 @@ "sF": "30", "sU": "28", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 11" }, { "date": "Nov 27, 1977", @@ -36572,8 +53811,13 @@ "und": "Washington Redskins", "sF": "14", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 11" }, { "date": "Nov 28, 1977", @@ -36583,7 +53827,12 @@ "sF": "34", "sU": "13", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 11" }, { "date": "Dec 4, 1977", @@ -36592,8 +53841,13 @@ "und": "Atlanta Falcons", "sF": "16", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 12" }, { "date": "Dec 4, 1977", @@ -36603,7 +53857,12 @@ "sF": "10", "sU": "0", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 12" }, { "date": "Dec 4, 1977", @@ -36612,8 +53871,13 @@ "und": "Houston Oilers", "sF": "24", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 12" }, { "date": "Dec 4, 1977", @@ -36623,7 +53887,12 @@ "sF": "7", "sU": "27", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 12" }, { "date": "Dec 4, 1977", @@ -36632,8 +53901,13 @@ "und": "Seattle Seahawks", "sF": "30", "sU": "20", - "spread": "20", - "ou": -1 + "spread": "20.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 12" }, { "date": "Dec 4, 1977", @@ -36643,7 +53917,12 @@ "sF": "10", "sU": "0", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 12" }, { "date": "Dec 4, 1977", @@ -36652,8 +53931,13 @@ "und": "Philadelphia Eagles", "sF": "24", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 12" }, { "date": "Dec 4, 1977", @@ -36663,7 +53947,12 @@ "sF": "10", "sU": "9", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 12" }, { "date": "Dec 4, 1977", @@ -36672,8 +53961,13 @@ "und": "Kansas City Chiefs", "sF": "27", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 12" }, { "date": "Dec 4, 1977", @@ -36683,11 +53977,12 @@ "sF": "28", "sU": "27", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 12" }, { "date": "Dec 4, 1977", @@ -36696,8 +53991,13 @@ "und": "Los Angeles Rams", "sF": "14", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 12" }, { "date": "Dec 4, 1977", @@ -36706,8 +54006,13 @@ "und": "New York Jets", "sF": "13", "sU": "16", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 12" }, { "date": "Dec 4, 1977", @@ -36716,8 +54021,13 @@ "und": "Cleveland Browns", "sF": "37", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 12" }, { "date": "Dec 5, 1977", @@ -36727,7 +54037,12 @@ "sF": "6", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 12" }, { "date": "Dec 10, 1977", @@ -36737,7 +54052,12 @@ "sF": "10", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 13" }, { "date": "Dec 10, 1977", @@ -36747,7 +54067,12 @@ "sF": "20", "sU": "26", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 13" }, { "date": "Dec 11, 1977", @@ -36757,7 +54082,12 @@ "sF": "19", "sU": "15", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 13" }, { "date": "Dec 11, 1977", @@ -36767,7 +54097,12 @@ "sF": "14", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 13" }, { "date": "Dec 11, 1977", @@ -36776,8 +54111,13 @@ "und": "Buffalo Bills", "sF": "10", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 13" }, { "date": "Dec 11, 1977", @@ -36786,8 +54126,13 @@ "und": "New York Giants", "sF": "17", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 13" }, { "date": "Dec 11, 1977", @@ -36796,8 +54141,13 @@ "und": "Detroit Lions", "sF": "10", "sU": "13", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 13" }, { "date": "Dec 11, 1977", @@ -36806,8 +54156,13 @@ "und": "Green Bay Packers", "sF": "21", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 13" }, { "date": "Dec 11, 1977", @@ -36816,8 +54171,13 @@ "und": "Seattle Seahawks", "sF": "31", "sU": "34", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 13" }, { "date": "Dec 11, 1977", @@ -36827,7 +54187,12 @@ "sF": "14", "sU": "33", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 13" }, { "date": "Dec 11, 1977", @@ -36836,8 +54201,13 @@ "und": "San Diego Chargers", "sF": "17", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 13" }, { "date": "Dec 11, 1977", @@ -36846,8 +54216,13 @@ "und": "Atlanta Falcons", "sF": "23", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 13" }, { "date": "Dec 11, 1977", @@ -36856,8 +54231,13 @@ "und": "Minnesota Vikings", "sF": "35", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 13" }, { "date": "Dec 12, 1977", @@ -36867,11 +54247,12 @@ "sF": "42", "sU": "35", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 13" }, { "date": "Dec 17, 1977", @@ -36881,7 +54262,12 @@ "sF": "14", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 14" }, { "date": "Dec 17, 1977", @@ -36891,7 +54277,12 @@ "sF": "31", "sU": "14", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 14" }, { "date": "Dec 17, 1977", @@ -36901,7 +54292,12 @@ "sF": "30", "sU": "21", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 14" }, { "date": "Dec 18, 1977", @@ -36911,7 +54307,12 @@ "sF": "35", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 14" }, { "date": "Dec 18, 1977", @@ -36920,8 +54321,13 @@ "und": "New York Giants", "sF": "12", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 14" }, { "date": "Dec 18, 1977", @@ -36930,8 +54336,13 @@ "und": "New York Jets", "sF": "27", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 14" }, { "date": "Dec 18, 1977", @@ -36940,8 +54351,13 @@ "und": "Tampa Bay Buccaneers", "sF": "7", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 14" }, { "date": "Dec 18, 1977", @@ -36951,7 +54367,12 @@ "sF": "14", "sU": "6", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 14" }, { "date": "Dec 18, 1977", @@ -36961,11 +54382,12 @@ "sF": "16", "sU": "14", "spread": "2", - "ou": "49", + "ou": null, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 14" }, { "date": "Dec 18, 1977", @@ -36974,8 +54396,13 @@ "und": "Houston Oilers", "sF": "16", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 14" }, { "date": "Dec 18, 1977", @@ -36984,8 +54411,13 @@ "und": "New England Patriots", "sF": "30", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 14" }, { "date": "Dec 18, 1977", @@ -36994,8 +54426,13 @@ "und": "Kansas City Chiefs", "sF": "21", "sU": "20", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 14" }, { "date": "Dec 18, 1977", @@ -37004,8 +54441,13 @@ "und": "Pittsburgh Steelers", "sF": "9", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 14" }, { "date": "Dec 18, 1977", @@ -37014,8 +54456,13 @@ "und": "Cleveland Browns", "sF": "20", "sU": "19", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Regular Season - Week 14" }, { "date": "Dec 24, 1977", @@ -37024,8 +54471,13 @@ "und": "Baltimore Colts (2)", "sF": "37", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Playoffs" }, { "date": "Dec 24, 1977", @@ -37034,8 +54486,13 @@ "und": "Pittsburgh Steelers (3)", "sF": "34", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1977 Playoffs" }, { "date": "Dec 26, 1977", @@ -37045,7 +54502,12 @@ "sF": "37", "sU": "7", "spread": "11", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 13.75, + "sF": 24.75 + }, + "week": "1977 Playoffs" }, { "date": "Dec 26, 1977", @@ -37055,7 +54517,12 @@ "sF": "7", "sU": "14", "spread": "10", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 11.75, + "sF": 21.75 + }, + "week": "1977 Playoffs" }, { "date": "Jan 1, 1978", @@ -37065,7 +54532,12 @@ "sF": "17", "sU": "20", "spread": "4", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 15.25, + "sF": 19.25 + }, + "week": "1977 Playoffs" }, { "date": "Jan 1, 1978", @@ -37075,7 +54547,12 @@ "sF": "23", "sU": "6", "spread": "11", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 12.75, + "sF": 23.75 + }, + "week": "1977 Playoffs" }, { "date": "Jan 15, 1978", @@ -37085,7 +54562,12 @@ "sF": "27", "sU": "10", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1977 Playoffs" }, { "date": "Sep 2, 1978", @@ -37095,7 +54577,12 @@ "sF": "13", "sU": "19", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 1" }, { "date": "Sep 3, 1978", @@ -37104,8 +54591,13 @@ "und": "Atlanta Falcons", "sF": "14", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 1" }, { "date": "Sep 3, 1978", @@ -37114,8 +54606,13 @@ "und": "Buffalo Bills", "sF": "28", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 1" }, { "date": "Sep 3, 1978", @@ -37125,7 +54622,12 @@ "sF": "23", "sU": "24", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 1" }, { "date": "Sep 3, 1978", @@ -37134,12 +54636,13 @@ "und": "San Francisco 49ers", "sF": "24", "sU": "7", - "spread": "4", - "ou": "49", + "spread": "4.5", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 1" }, { "date": "Sep 3, 1978", @@ -37149,7 +54652,12 @@ "sF": "7", "sU": "13", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 1" }, { "date": "Sep 3, 1978", @@ -37158,8 +54666,13 @@ "und": "Washington Redskins", "sF": "14", "sU": "16", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 1" }, { "date": "Sep 3, 1978", @@ -37168,8 +54681,13 @@ "und": "New Orleans Saints", "sF": "24", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 1" }, { "date": "Sep 3, 1978", @@ -37179,7 +54697,12 @@ "sF": "20", "sU": "33", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 1" }, { "date": "Sep 3, 1978", @@ -37189,7 +54712,12 @@ "sF": "16", "sU": "14", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 1" }, { "date": "Sep 3, 1978", @@ -37198,8 +54726,13 @@ "und": "St Louis Cardinals", "sF": "17", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 1" }, { "date": "Sep 3, 1978", @@ -37209,7 +54742,12 @@ "sF": "6", "sU": "14", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 1" }, { "date": "Sep 3, 1978", @@ -37219,7 +54757,12 @@ "sF": "24", "sU": "20", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 1" }, { "date": "Sep 4, 1978", @@ -37228,8 +54771,13 @@ "und": "Baltimore Colts", "sF": "38", "sU": "0", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 1" }, { "date": "Sep 9, 1978", @@ -37239,7 +54787,12 @@ "sF": "15", "sU": "7", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 2" }, { "date": "Sep 10, 1978", @@ -37248,8 +54801,13 @@ "und": "Green Bay Packers", "sF": "17", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 2" }, { "date": "Sep 10, 1978", @@ -37259,7 +54817,12 @@ "sF": "34", "sU": "24", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 2" }, { "date": "Sep 10, 1978", @@ -37268,8 +54831,13 @@ "und": "Seattle Seahawks", "sF": "21", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 2" }, { "date": "Sep 10, 1978", @@ -37278,8 +54846,13 @@ "und": "Philadelphia Eagles", "sF": "35", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 2" }, { "date": "Sep 10, 1978", @@ -37288,8 +54861,13 @@ "und": "Cincinnati Bengals", "sF": "13", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 2" }, { "date": "Sep 10, 1978", @@ -37298,8 +54876,13 @@ "und": "Kansas City Chiefs", "sF": "20", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 2" }, { "date": "Sep 10, 1978", @@ -37308,8 +54891,13 @@ "und": "St Louis Cardinals", "sF": "16", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 2" }, { "date": "Sep 10, 1978", @@ -37319,7 +54907,12 @@ "sF": "42", "sU": "0", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 2" }, { "date": "Sep 10, 1978", @@ -37329,7 +54922,12 @@ "sF": "21", "sU": "20", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 2" }, { "date": "Sep 10, 1978", @@ -37339,7 +54937,12 @@ "sF": "10", "sU": "0", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 2" }, { "date": "Sep 10, 1978", @@ -37348,8 +54951,13 @@ "und": "San Diego Chargers", "sF": "21", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 2" }, { "date": "Sep 10, 1978", @@ -37358,12 +54966,13 @@ "und": "San Francisco 49ers", "sF": "16", "sU": "13", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": null, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 2" }, { "date": "Sep 17, 1978", @@ -37372,8 +54981,13 @@ "und": "Cincinnati Bengals", "sF": "28", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 3" }, { "date": "Sep 17, 1978", @@ -37382,8 +54996,13 @@ "und": "Detroit Lions", "sF": "19", "sU": "0", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 3" }, { "date": "Sep 17, 1978", @@ -37392,8 +55011,13 @@ "und": "Kansas City Chiefs", "sF": "26", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 3" }, { "date": "Sep 17, 1978", @@ -37403,7 +55027,12 @@ "sF": "17", "sU": "24", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 3" }, { "date": "Sep 17, 1978", @@ -37412,8 +55041,13 @@ "und": "Green Bay Packers", "sF": "28", "sU": "3", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 3" }, { "date": "Sep 17, 1978", @@ -37422,12 +55056,13 @@ "und": "San Francisco 49ers", "sF": "20", "sU": "19", - "spread": "9", - "ou": "49", + "spread": "9.5", + "ou": null, "pScore": { - "sU": 20, - "sF": 29 - } + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 3" }, { "date": "Sep 17, 1978", @@ -37437,7 +55072,12 @@ "sF": "10", "sU": "16", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 3" }, { "date": "Sep 17, 1978", @@ -37446,8 +55086,13 @@ "und": "St Louis Cardinals", "sF": "28", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 3" }, { "date": "Sep 17, 1978", @@ -37456,8 +55101,13 @@ "und": "San Diego Chargers", "sF": "27", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 3" }, { "date": "Sep 17, 1978", @@ -37467,7 +55117,12 @@ "sF": "14", "sU": "27", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 3" }, { "date": "Sep 17, 1978", @@ -37477,7 +55132,12 @@ "sF": "31", "sU": "24", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 3" }, { "date": "Sep 18, 1978", @@ -37486,8 +55146,13 @@ "und": "Baltimore Colts", "sF": "27", "sU": "34", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": 38.0, + "pScore": { + "sU": 10.25, + "sF": 27.75 + }, + "week": "1978 Regular Season - Week 3" }, { "date": "Sep 24, 1978", @@ -37496,8 +55161,13 @@ "und": "Baltimore Colts", "sF": "24", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 4" }, { "date": "Sep 24, 1978", @@ -37507,7 +55177,12 @@ "sF": "18", "sU": "20", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 4" }, { "date": "Sep 24, 1978", @@ -37516,8 +55191,13 @@ "und": "Houston Oilers", "sF": "10", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 4" }, { "date": "Sep 24, 1978", @@ -37526,8 +55206,13 @@ "und": "Philadelphia Eagles", "sF": "3", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 4" }, { "date": "Sep 24, 1978", @@ -37536,8 +55221,13 @@ "und": "Cleveland Browns", "sF": "15", "sU": "9", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 4" }, { "date": "Sep 24, 1978", @@ -37546,8 +55236,13 @@ "und": "New York Jets", "sF": "23", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 4" }, { "date": "Sep 24, 1978", @@ -37557,7 +55252,12 @@ "sF": "23", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 4" }, { "date": "Sep 24, 1978", @@ -37567,7 +55267,12 @@ "sF": "21", "sU": "12", "spread": "17", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 4" }, { "date": "Sep 24, 1978", @@ -37576,12 +55281,13 @@ "und": "San Francisco 49ers", "sF": "27", "sU": "10", - "spread": "4", - "ou": "49", + "spread": "4.5", + "ou": null, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 4" }, { "date": "Sep 24, 1978", @@ -37591,7 +55297,12 @@ "sF": "3", "sU": "24", "spread": "10", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 4" }, { "date": "Sep 24, 1978", @@ -37601,7 +55312,12 @@ "sF": "28", "sU": "16", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 4" }, { "date": "Sep 24, 1978", @@ -37610,8 +55326,13 @@ "und": "Tampa Bay Buccaneers", "sF": "9", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 4" }, { "date": "Sep 24, 1978", @@ -37620,8 +55341,13 @@ "und": "New England Patriots", "sF": "14", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 4" }, { "date": "Sep 25, 1978", @@ -37631,7 +55357,12 @@ "sF": "20", "sU": "24", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "1978 Regular Season - Week 4" }, { "date": "Oct 1, 1978", @@ -37641,7 +55372,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 5" }, { "date": "Oct 1, 1978", @@ -37651,7 +55387,12 @@ "sF": "28", "sU": "13", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 5" }, { "date": "Oct 1, 1978", @@ -37661,7 +55402,12 @@ "sF": "13", "sU": "16", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 5" }, { "date": "Oct 1, 1978", @@ -37671,7 +55417,12 @@ "sF": "24", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 5" }, { "date": "Oct 1, 1978", @@ -37680,8 +55431,13 @@ "und": "San Diego Chargers", "sF": "28", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 5" }, { "date": "Oct 1, 1978", @@ -37690,8 +55446,13 @@ "und": "New York Jets", "sF": "28", "sU": "17", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 5" }, { "date": "Oct 1, 1978", @@ -37701,7 +55462,12 @@ "sF": "24", "sU": "7", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 5" }, { "date": "Oct 1, 1978", @@ -37710,8 +55476,13 @@ "und": "Baltimore Colts", "sF": "17", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 5" }, { "date": "Oct 1, 1978", @@ -37721,7 +55492,12 @@ "sF": "35", "sU": "14", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 5" }, { "date": "Oct 1, 1978", @@ -37730,8 +55506,13 @@ "und": "New Orleans Saints", "sF": "26", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 5" }, { "date": "Oct 1, 1978", @@ -37740,8 +55521,13 @@ "und": "Chicago Bears", "sF": "25", "sU": "19", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 5" }, { "date": "Oct 1, 1978", @@ -37751,7 +55537,12 @@ "sF": "28", "sU": "7", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 5" }, { "date": "Oct 1, 1978", @@ -37760,12 +55551,13 @@ "und": "San Francisco 49ers", "sF": "12", "sU": "28", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": null, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 5" }, { "date": "Oct 2, 1978", @@ -37774,8 +55566,13 @@ "und": "Washington Redskins", "sF": "5", "sU": "9", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.0, + "pScore": { + "sU": 16.25, + "sF": 20.75 + }, + "week": "1978 Regular Season - Week 5" }, { "date": "Oct 8, 1978", @@ -37785,7 +55582,12 @@ "sF": "21", "sU": "19", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 6" }, { "date": "Oct 8, 1978", @@ -37795,7 +55597,12 @@ "sF": "24", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 6" }, { "date": "Oct 8, 1978", @@ -37804,8 +55611,13 @@ "und": "New York Jets", "sF": "14", "sU": "45", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 6" }, { "date": "Oct 8, 1978", @@ -37815,7 +55627,12 @@ "sF": "31", "sU": "7", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 6" }, { "date": "Oct 8, 1978", @@ -37825,7 +55642,12 @@ "sF": "24", "sU": "3", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 6" }, { "date": "Oct 8, 1978", @@ -37834,8 +55656,13 @@ "und": "Green Bay Packers", "sF": "14", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 6" }, { "date": "Oct 8, 1978", @@ -37844,8 +55671,13 @@ "und": "Tampa Bay Buccaneers", "sF": "13", "sU": "30", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 6" }, { "date": "Oct 8, 1978", @@ -37854,8 +55686,13 @@ "und": "New Orleans Saints", "sF": "24", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 6" }, { "date": "Oct 8, 1978", @@ -37864,8 +55701,13 @@ "und": "Baltimore Colts", "sF": "17", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 6" }, { "date": "Oct 8, 1978", @@ -37874,12 +55716,13 @@ "und": "San Francisco 49ers", "sF": "27", "sU": "10", - "spread": "13", - "ou": "49", + "spread": "13.5", + "ou": null, "pScore": { - "sU": 18, - "sF": 31 - } + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 6" }, { "date": "Oct 8, 1978", @@ -37888,8 +55731,13 @@ "und": "Houston Oilers", "sF": "21", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 6" }, { "date": "Oct 8, 1978", @@ -37899,7 +55747,12 @@ "sF": "0", "sU": "23", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 6" }, { "date": "Oct 8, 1978", @@ -37909,7 +55762,12 @@ "sF": "28", "sU": "29", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 6" }, { "date": "Oct 9, 1978", @@ -37918,8 +55776,13 @@ "und": "Cincinnati Bengals", "sF": "21", "sU": "0", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 38.0, + "pScore": { + "sU": 13.75, + "sF": 24.25 + }, + "week": "1978 Regular Season - Week 6" }, { "date": "Oct 15, 1978", @@ -37929,7 +55792,12 @@ "sF": "14", "sU": "0", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 7" }, { "date": "Oct 15, 1978", @@ -37939,7 +55807,12 @@ "sF": "10", "sU": "3", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 7" }, { "date": "Oct 15, 1978", @@ -37949,7 +55822,12 @@ "sF": "34", "sU": "14", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 7" }, { "date": "Oct 15, 1978", @@ -37958,8 +55836,13 @@ "und": "Seattle Seahawks", "sF": "45", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 7" }, { "date": "Oct 15, 1978", @@ -37968,8 +55851,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 7" }, { "date": "Oct 15, 1978", @@ -37978,8 +55866,13 @@ "und": "Philadelphia Eagles", "sF": "10", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 7" }, { "date": "Oct 15, 1978", @@ -37988,8 +55881,13 @@ "und": "New York Jets", "sF": "10", "sU": "33", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 7" }, { "date": "Oct 15, 1978", @@ -37998,8 +55896,13 @@ "und": "Buffalo Bills", "sF": "17", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 7" }, { "date": "Oct 15, 1978", @@ -38008,8 +55911,13 @@ "und": "St Louis Cardinals", "sF": "24", "sU": "21", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 7" }, { "date": "Oct 15, 1978", @@ -38019,7 +55927,12 @@ "sF": "34", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 7" }, { "date": "Oct 15, 1978", @@ -38028,8 +55941,13 @@ "und": "Kansas City Chiefs", "sF": "28", "sU": "6", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 7" }, { "date": "Oct 15, 1978", @@ -38039,7 +55957,12 @@ "sF": "21", "sU": "28", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 7" }, { "date": "Oct 15, 1978", @@ -38049,7 +55972,12 @@ "sF": "7", "sU": "14", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 7" }, { "date": "Oct 16, 1978", @@ -38059,7 +55987,12 @@ "sF": "16", "sU": "7", "spread": "7", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 13.5, + "sF": 20.5 + }, + "week": "1978 Regular Season - Week 7" }, { "date": "Oct 22, 1978", @@ -38068,8 +56001,13 @@ "und": "Cincinnati Bengals", "sF": "5", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 8" }, { "date": "Oct 22, 1978", @@ -38079,7 +56017,12 @@ "sF": "6", "sU": "17", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 8" }, { "date": "Oct 22, 1978", @@ -38089,7 +56032,12 @@ "sF": "23", "sU": "10", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 8" }, { "date": "Oct 22, 1978", @@ -38099,7 +56047,12 @@ "sF": "19", "sU": "33", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 8" }, { "date": "Oct 22, 1978", @@ -38109,7 +56062,12 @@ "sF": "14", "sU": "7", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 8" }, { "date": "Oct 22, 1978", @@ -38118,8 +56076,13 @@ "und": "Detroit Lions", "sF": "14", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 8" }, { "date": "Oct 22, 1978", @@ -38128,8 +56091,13 @@ "und": "Kansas City Chiefs", "sF": "3", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 8" }, { "date": "Oct 22, 1978", @@ -38138,8 +56106,13 @@ "und": "Green Bay Packers", "sF": "21", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 8" }, { "date": "Oct 22, 1978", @@ -38148,8 +56121,13 @@ "und": "Baltimore Colts", "sF": "6", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 8" }, { "date": "Oct 22, 1978", @@ -38158,8 +56136,13 @@ "und": "New Orleans Saints", "sF": "3", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 8" }, { "date": "Oct 22, 1978", @@ -38168,8 +56151,13 @@ "und": "Miami Dolphins", "sF": "33", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 8" }, { "date": "Oct 22, 1978", @@ -38179,11 +56167,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": "49", + "ou": null, "pScore": { - "sU": 23, - "sF": 26 - } + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 8" }, { "date": "Oct 22, 1978", @@ -38193,7 +56182,12 @@ "sF": "7", "sU": "27", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 8" }, { "date": "Oct 23, 1978", @@ -38202,8 +56196,13 @@ "und": "Houston Oilers", "sF": "17", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.0, + "pScore": { + "sU": 14.25, + "sF": 21.75 + }, + "week": "1978 Regular Season - Week 8" }, { "date": "Oct 26, 1978", @@ -38212,8 +56211,13 @@ "und": "Minnesota Vikings", "sF": "10", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.0, + "pScore": { + "sU": 14.75, + "sF": 22.25 + }, + "week": "1978 Regular Season - Week 9" }, { "date": "Oct 29, 1978", @@ -38223,7 +56227,12 @@ "sF": "13", "sU": "28", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 9" }, { "date": "Oct 29, 1978", @@ -38233,7 +56242,12 @@ "sF": "41", "sU": "20", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 9" }, { "date": "Oct 29, 1978", @@ -38243,7 +56257,12 @@ "sF": "55", "sU": "21", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 9" }, { "date": "Oct 29, 1978", @@ -38253,7 +56272,12 @@ "sF": "10", "sU": "16", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 9" }, { "date": "Oct 29, 1978", @@ -38263,7 +56287,12 @@ "sF": "27", "sU": "24", "spread": "14", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 9" }, { "date": "Oct 29, 1978", @@ -38273,11 +56302,12 @@ "sF": "38", "sU": "20", "spread": "10", - "ou": "49", + "ou": null, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 9" }, { "date": "Oct 29, 1978", @@ -38287,7 +56317,12 @@ "sF": "17", "sU": "21", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 9" }, { "date": "Oct 29, 1978", @@ -38297,7 +56332,12 @@ "sF": "9", "sU": "7", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 9" }, { "date": "Oct 29, 1978", @@ -38307,7 +56347,12 @@ "sF": "28", "sU": "17", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 9" }, { "date": "Oct 29, 1978", @@ -38316,8 +56361,13 @@ "und": "Baltimore Colts", "sF": "26", "sU": "8", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 9" }, { "date": "Oct 29, 1978", @@ -38326,8 +56376,13 @@ "und": "San Diego Chargers", "sF": "23", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 9" }, { "date": "Oct 29, 1978", @@ -38337,7 +56392,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 9" }, { "date": "Oct 30, 1978", @@ -38346,8 +56406,13 @@ "und": "Atlanta Falcons", "sF": "7", "sU": "15", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 34.5, + "pScore": { + "sU": 14.0, + "sF": 20.5 + }, + "week": "1978 Regular Season - Week 9" }, { "date": "Nov 5, 1978", @@ -38357,11 +56422,12 @@ "sF": "21", "sU": "10", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 10" }, { "date": "Nov 5, 1978", @@ -38371,7 +56437,12 @@ "sF": "14", "sU": "10", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 10" }, { "date": "Nov 5, 1978", @@ -38381,7 +56452,12 @@ "sF": "29", "sU": "31", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 10" }, { "date": "Nov 5, 1978", @@ -38391,7 +56467,12 @@ "sF": "17", "sU": "7", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 10" }, { "date": "Nov 5, 1978", @@ -38400,8 +56481,13 @@ "und": "Green Bay Packers", "sF": "10", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 10" }, { "date": "Nov 5, 1978", @@ -38410,8 +56496,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 10" }, { "date": "Nov 5, 1978", @@ -38421,7 +56512,12 @@ "sF": "20", "sU": "10", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 10" }, { "date": "Nov 5, 1978", @@ -38431,7 +56527,12 @@ "sF": "14", "sU": "10", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 10" }, { "date": "Nov 5, 1978", @@ -38440,8 +56541,13 @@ "und": "Kansas City Chiefs", "sF": "20", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 10" }, { "date": "Nov 5, 1978", @@ -38451,7 +56557,12 @@ "sF": "28", "sU": "31", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 10" }, { "date": "Nov 5, 1978", @@ -38460,8 +56571,13 @@ "und": "Tampa Bay Buccaneers", "sF": "26", "sU": "23", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 10" }, { "date": "Nov 5, 1978", @@ -38471,7 +56587,12 @@ "sF": "23", "sU": "16", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 10" }, { "date": "Nov 5, 1978", @@ -38481,7 +56602,12 @@ "sF": "22", "sU": "13", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 10" }, { "date": "Nov 6, 1978", @@ -38490,8 +56616,13 @@ "und": "Baltimore Colts", "sF": "17", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1978 Regular Season - Week 10" }, { "date": "Nov 12, 1978", @@ -38500,8 +56631,13 @@ "und": "Buffalo Bills", "sF": "25", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 11" }, { "date": "Nov 12, 1978", @@ -38511,7 +56647,12 @@ "sF": "19", "sU": "7", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 11" }, { "date": "Nov 12, 1978", @@ -38521,7 +56662,12 @@ "sF": "23", "sU": "26", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 11" }, { "date": "Nov 12, 1978", @@ -38531,7 +56677,12 @@ "sF": "17", "sU": "9", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 11" }, { "date": "Nov 12, 1978", @@ -38540,8 +56691,13 @@ "und": "New York Giants", "sF": "16", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 11" }, { "date": "Nov 12, 1978", @@ -38551,7 +56707,12 @@ "sF": "34", "sU": "23", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 11" }, { "date": "Nov 12, 1978", @@ -38561,7 +56722,12 @@ "sF": "17", "sU": "20", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 11" }, { "date": "Nov 12, 1978", @@ -38571,7 +56737,12 @@ "sF": "42", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 11" }, { "date": "Nov 12, 1978", @@ -38581,7 +56752,12 @@ "sF": "17", "sU": "14", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 11" }, { "date": "Nov 12, 1978", @@ -38590,8 +56766,13 @@ "und": "Kansas City Chiefs", "sF": "29", "sU": "23", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 11" }, { "date": "Nov 12, 1978", @@ -38601,11 +56782,12 @@ "sF": "16", "sU": "10", "spread": "5", - "ou": "49", + "ou": null, "pScore": { - "sU": 22, - "sF": 27 - } + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 11" }, { "date": "Nov 12, 1978", @@ -38614,8 +56796,13 @@ "und": "Baltimore Colts", "sF": "14", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 11" }, { "date": "Nov 12, 1978", @@ -38625,7 +56812,12 @@ "sF": "10", "sU": "7", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 11" }, { "date": "Nov 13, 1978", @@ -38635,7 +56827,12 @@ "sF": "34", "sU": "21", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "1978 Regular Season - Week 11" }, { "date": "Nov 19, 1978", @@ -38644,8 +56841,13 @@ "und": "San Diego Chargers", "sF": "7", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 12" }, { "date": "Nov 19, 1978", @@ -38655,7 +56857,12 @@ "sF": "19", "sU": "17", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 12" }, { "date": "Nov 19, 1978", @@ -38665,7 +56872,12 @@ "sF": "19", "sU": "17", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 12" }, { "date": "Nov 19, 1978", @@ -38674,8 +56886,13 @@ "und": "Buffalo Bills", "sF": "31", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 12" }, { "date": "Nov 19, 1978", @@ -38684,8 +56901,13 @@ "und": "St Louis Cardinals", "sF": "17", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 12" }, { "date": "Nov 19, 1978", @@ -38695,7 +56917,12 @@ "sF": "24", "sU": "45", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 12" }, { "date": "Nov 19, 1978", @@ -38705,7 +56932,12 @@ "sF": "7", "sU": "13", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 12" }, { "date": "Nov 19, 1978", @@ -38715,7 +56947,12 @@ "sF": "27", "sU": "7", "spread": "13", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 12" }, { "date": "Nov 19, 1978", @@ -38725,7 +56962,12 @@ "sF": "10", "sU": "13", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 12" }, { "date": "Nov 19, 1978", @@ -38735,7 +56977,12 @@ "sF": "16", "sU": "3", "spread": "9", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 12" }, { "date": "Nov 19, 1978", @@ -38745,7 +56992,12 @@ "sF": "29", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 12" }, { "date": "Nov 19, 1978", @@ -38755,7 +57007,12 @@ "sF": "7", "sU": "6", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 12" }, { "date": "Nov 19, 1978", @@ -38765,11 +57022,12 @@ "sF": "31", "sU": "28", "spread": "10", - "ou": "49", + "ou": null, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 12" }, { "date": "Nov 20, 1978", @@ -38779,7 +57037,12 @@ "sF": "35", "sU": "30", "spread": "2", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.5, + "sF": 20.5 + }, + "week": "1978 Regular Season - Week 12" }, { "date": "Nov 23, 1978", @@ -38788,8 +57051,13 @@ "und": "Detroit Lions", "sF": "14", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 13" }, { "date": "Nov 23, 1978", @@ -38798,8 +57066,13 @@ "und": "Washington Redskins", "sF": "37", "sU": "10", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 13" }, { "date": "Nov 26, 1978", @@ -38808,8 +57081,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 13" }, { "date": "Nov 26, 1978", @@ -38819,7 +57097,12 @@ "sF": "41", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 13" }, { "date": "Nov 26, 1978", @@ -38828,8 +57111,13 @@ "und": "Cleveland Browns", "sF": "19", "sU": "30", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 13" }, { "date": "Nov 26, 1978", @@ -38838,8 +57126,13 @@ "und": "New York Jets", "sF": "13", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 13" }, { "date": "Nov 26, 1978", @@ -38848,8 +57141,13 @@ "und": "Tampa Bay Buccaneers", "sF": "14", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 13" }, { "date": "Nov 26, 1978", @@ -38858,8 +57156,13 @@ "und": "Green Bay Packers", "sF": "10", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 13" }, { "date": "Nov 26, 1978", @@ -38868,8 +57171,13 @@ "und": "Cincinnati Bengals", "sF": "17", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 13" }, { "date": "Nov 26, 1978", @@ -38878,8 +57186,13 @@ "und": "Kansas City Chiefs", "sF": "0", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 13" }, { "date": "Nov 26, 1978", @@ -38888,8 +57201,13 @@ "und": "Philadelphia Eagles", "sF": "10", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 13" }, { "date": "Nov 26, 1978", @@ -38899,7 +57217,12 @@ "sF": "35", "sU": "14", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 13" }, { "date": "Nov 26, 1978", @@ -38909,7 +57232,12 @@ "sF": "16", "sU": "17", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 13" }, { "date": "Nov 27, 1978", @@ -38918,12 +57246,13 @@ "und": "San Francisco 49ers", "sF": "24", "sU": "7", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": 36.0, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 14.25, + "sF": 21.75 + }, + "week": "1978 Regular Season - Week 13" }, { "date": "Dec 3, 1978", @@ -38932,8 +57261,13 @@ "und": "Atlanta Falcons", "sF": "37", "sU": "7", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 14" }, { "date": "Dec 3, 1978", @@ -38942,8 +57276,13 @@ "und": "New York Giants", "sF": "20", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 14" }, { "date": "Dec 3, 1978", @@ -38953,7 +57292,12 @@ "sF": "24", "sU": "16", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 14" }, { "date": "Dec 3, 1978", @@ -38962,8 +57306,13 @@ "und": "Green Bay Packers", "sF": "7", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 14" }, { "date": "Dec 3, 1978", @@ -38973,7 +57322,12 @@ "sF": "16", "sU": "0", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 14" }, { "date": "Dec 3, 1978", @@ -38983,7 +57337,12 @@ "sF": "14", "sU": "10", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 14" }, { "date": "Dec 3, 1978", @@ -38993,7 +57352,12 @@ "sF": "28", "sU": "27", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 14" }, { "date": "Dec 3, 1978", @@ -39003,11 +57367,12 @@ "sF": "24", "sU": "13", "spread": "7", - "ou": "49", + "ou": null, "pScore": { - "sU": 21, - "sF": 28 - } + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 14" }, { "date": "Dec 3, 1978", @@ -39017,7 +57382,12 @@ "sF": "21", "sU": "14", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 14" }, { "date": "Dec 3, 1978", @@ -39026,8 +57396,13 @@ "und": "New England Patriots", "sF": "17", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 14" }, { "date": "Dec 3, 1978", @@ -39036,8 +57411,13 @@ "und": "Pittsburgh Steelers", "sF": "3", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 14" }, { "date": "Dec 3, 1978", @@ -39047,7 +57427,12 @@ "sF": "47", "sU": "24", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 14" }, { "date": "Dec 3, 1978", @@ -39057,7 +57442,12 @@ "sF": "6", "sU": "21", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 14" }, { "date": "Dec 4, 1978", @@ -39067,7 +57457,12 @@ "sF": "40", "sU": "7", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1978 Regular Season - Week 14" }, { "date": "Dec 9, 1978", @@ -39076,8 +57471,13 @@ "und": "Baltimore Colts", "sF": "35", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 15" }, { "date": "Dec 9, 1978", @@ -39086,8 +57486,13 @@ "und": "Detroit Lions", "sF": "14", "sU": "45", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 15" }, { "date": "Dec 10, 1978", @@ -39096,8 +57501,13 @@ "und": "Washington Redskins", "sF": "20", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 15" }, { "date": "Dec 10, 1978", @@ -39106,8 +57516,13 @@ "und": "Buffalo Bills", "sF": "26", "sU": "24", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 15" }, { "date": "Dec 10, 1978", @@ -39116,8 +57531,13 @@ "und": "New York Giants", "sF": "0", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 15" }, { "date": "Dec 10, 1978", @@ -39126,8 +57546,13 @@ "und": "Philadelphia Eagles", "sF": "31", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 15" }, { "date": "Dec 10, 1978", @@ -39136,8 +57561,13 @@ "und": "Chicago Bears", "sF": "0", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 15" }, { "date": "Dec 10, 1978", @@ -39147,7 +57577,12 @@ "sF": "17", "sU": "12", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 15" }, { "date": "Dec 10, 1978", @@ -39157,7 +57592,12 @@ "sF": "24", "sU": "3", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 15" }, { "date": "Dec 10, 1978", @@ -39167,7 +57607,12 @@ "sF": "23", "sU": "6", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 15" }, { "date": "Dec 10, 1978", @@ -39177,7 +57622,12 @@ "sF": "37", "sU": "10", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 15" }, { "date": "Dec 10, 1978", @@ -39186,8 +57636,13 @@ "und": "Tampa Bay Buccaneers", "sF": "6", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 15" }, { "date": "Dec 11, 1978", @@ -39196,8 +57651,13 @@ "und": "Cincinnati Bengals", "sF": "19", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "1978 Regular Season - Week 15" }, { "date": "Dec 16, 1978", @@ -39207,7 +57667,12 @@ "sF": "10", "sU": "14", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 16" }, { "date": "Dec 16, 1978", @@ -39216,8 +57681,13 @@ "und": "Pittsburgh Steelers", "sF": "17", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 16" }, { "date": "Dec 17, 1978", @@ -39226,8 +57696,13 @@ "und": "Cleveland Browns", "sF": "48", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 16" }, { "date": "Dec 17, 1978", @@ -39237,11 +57712,12 @@ "sF": "33", "sU": "14", "spread": "10", - "ou": "49", + "ou": null, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 16" }, { "date": "Dec 17, 1978", @@ -39251,7 +57727,12 @@ "sF": "30", "sU": "7", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 16" }, { "date": "Dec 17, 1978", @@ -39260,8 +57741,13 @@ "und": "New York Giants", "sF": "20", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 16" }, { "date": "Dec 17, 1978", @@ -39270,8 +57756,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 16" }, { "date": "Dec 17, 1978", @@ -39281,7 +57772,12 @@ "sF": "14", "sU": "21", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 16" }, { "date": "Dec 17, 1978", @@ -39291,7 +57787,12 @@ "sF": "42", "sU": "21", "spread": "1", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 16" }, { "date": "Dec 17, 1978", @@ -39300,8 +57801,13 @@ "und": "San Diego Chargers", "sF": "24", "sU": "45", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 16" }, { "date": "Dec 17, 1978", @@ -39311,7 +57817,12 @@ "sF": "31", "sU": "14", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 16" }, { "date": "Dec 17, 1978", @@ -39321,7 +57832,12 @@ "sF": "27", "sU": "20", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 16" }, { "date": "Dec 17, 1978", @@ -39330,8 +57846,13 @@ "und": "Kansas City Chiefs", "sF": "23", "sU": "19", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Regular Season - Week 16" }, { "date": "Dec 18, 1978", @@ -39340,8 +57861,13 @@ "und": "New England Patriots", "sF": "23", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1978 Regular Season - Week 16" }, { "date": "Dec 24, 1978", @@ -39350,8 +57876,13 @@ "und": "Philadelphia Eagles (5)", "sF": "14", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Playoffs" }, { "date": "Dec 24, 1978", @@ -39360,8 +57891,13 @@ "und": "Houston Oilers (5)", "sF": "9", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Playoffs" }, { "date": "Dec 30, 1978", @@ -39371,7 +57907,12 @@ "sF": "33", "sU": "10", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Playoffs" }, { "date": "Dec 30, 1978", @@ -39381,7 +57922,12 @@ "sF": "27", "sU": "20", "spread": "15", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1978 Playoffs" }, { "date": "Dec 31, 1978", @@ -39391,7 +57937,12 @@ "sF": "14", "sU": "31", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1978 Playoffs" }, { "date": "Dec 31, 1978", @@ -39400,8 +57951,13 @@ "und": "Minnesota Vikings (3)", "sF": "34", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.0, + "pScore": { + "sU": 14.25, + "sF": 21.75 + }, + "week": "1978 Playoffs" }, { "date": "Jan 7, 1979", @@ -39411,7 +57967,12 @@ "sF": "34", "sU": "5", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1978 Playoffs" }, { "date": "Jan 7, 1979", @@ -39420,8 +57981,13 @@ "und": "Los Angeles Rams (1)", "sF": "28", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "1978 Playoffs" }, { "date": "Jan 21, 1979", @@ -39430,8 +57996,13 @@ "und": "Dallas Cowboys (2)", "sF": "35", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1978 Playoffs" }, { "date": "Sep 1, 1979", @@ -39441,7 +58012,12 @@ "sF": "31", "sU": "16", "spread": "3", - "ou": -1 + "ou": 30.0, + "pScore": { + "sU": 13.5, + "sF": 16.5 + }, + "week": "1979 Regular Season - Week 1" }, { "date": "Sep 2, 1979", @@ -39451,7 +58027,12 @@ "sF": "9", "sU": "7", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 1" }, { "date": "Sep 2, 1979", @@ -39461,11 +58042,12 @@ "sF": "28", "sU": "22", "spread": "7", - "ou": "49", + "ou": 32.0, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 12.5, + "sF": 19.5 + }, + "week": "1979 Regular Season - Week 1" }, { "date": "Sep 2, 1979", @@ -39475,7 +58057,12 @@ "sF": "23", "sU": "17", "spread": "7", - "ou": -1 + "ou": 31.5, + "pScore": { + "sU": 12.25, + "sF": 19.25 + }, + "week": "1979 Regular Season - Week 1" }, { "date": "Sep 2, 1979", @@ -39485,7 +58072,12 @@ "sF": "29", "sU": "27", "spread": "4", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 14.5, + "sF": 18.5 + }, + "week": "1979 Regular Season - Week 1" }, { "date": "Sep 2, 1979", @@ -39495,7 +58087,12 @@ "sF": "6", "sU": "3", "spread": "3", - "ou": -1 + "ou": 31.0, + "pScore": { + "sU": 14.0, + "sF": 17.0 + }, + "week": "1979 Regular Season - Week 1" }, { "date": "Sep 2, 1979", @@ -39505,7 +58102,12 @@ "sF": "34", "sU": "40", "spread": "5", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 13.5, + "sF": 18.5 + }, + "week": "1979 Regular Season - Week 1" }, { "date": "Sep 2, 1979", @@ -39515,7 +58117,12 @@ "sF": "22", "sU": "21", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1979 Regular Season - Week 1" }, { "date": "Sep 2, 1979", @@ -39525,7 +58132,12 @@ "sF": "10", "sU": "0", "spread": "3", - "ou": -1 + "ou": 31.5, + "pScore": { + "sU": 14.25, + "sF": 17.25 + }, + "week": "1979 Regular Season - Week 1" }, { "date": "Sep 2, 1979", @@ -39535,7 +58147,12 @@ "sF": "14", "sU": "0", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1979 Regular Season - Week 1" }, { "date": "Sep 2, 1979", @@ -39545,7 +58162,12 @@ "sF": "17", "sU": "24", "spread": "4", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.25, + "sF": 20.25 + }, + "week": "1979 Regular Season - Week 1" }, { "date": "Sep 2, 1979", @@ -39555,7 +58177,12 @@ "sF": "22", "sU": "25", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 1" }, { "date": "Sep 2, 1979", @@ -39565,7 +58192,12 @@ "sF": "16", "sU": "33", "spread": "2", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.25, + "sF": 22.25 + }, + "week": "1979 Regular Season - Week 1" }, { "date": "Sep 3, 1979", @@ -39575,7 +58207,12 @@ "sF": "16", "sU": "13", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1979 Regular Season - Week 1" }, { "date": "Sep 6, 1979", @@ -39585,7 +58222,12 @@ "sF": "9", "sU": "13", "spread": "2", - "ou": -1 + "ou": 31.5, + "pScore": { + "sU": 14.75, + "sF": 16.75 + }, + "week": "1979 Regular Season - Week 2" }, { "date": "Sep 9, 1979", @@ -39595,7 +58237,12 @@ "sF": "24", "sU": "51", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "1979 Regular Season - Week 2" }, { "date": "Sep 9, 1979", @@ -39605,7 +58252,12 @@ "sF": "26", "sU": "7", "spread": "6", - "ou": -1 + "ou": 31.5, + "pScore": { + "sU": 12.75, + "sF": 18.75 + }, + "week": "1979 Regular Season - Week 2" }, { "date": "Sep 9, 1979", @@ -39615,7 +58267,12 @@ "sF": "28", "sU": "19", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1979 Regular Season - Week 2" }, { "date": "Sep 9, 1979", @@ -39625,7 +58282,12 @@ "sF": "27", "sU": "14", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1979 Regular Season - Week 2" }, { "date": "Sep 9, 1979", @@ -39635,7 +58297,12 @@ "sF": "38", "sU": "7", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 2" }, { "date": "Sep 9, 1979", @@ -39645,7 +58312,12 @@ "sF": "19", "sU": "10", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "1979 Regular Season - Week 2" }, { "date": "Sep 9, 1979", @@ -39655,7 +58327,12 @@ "sF": "56", "sU": "3", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "1979 Regular Season - Week 2" }, { "date": "Sep 9, 1979", @@ -39665,7 +58342,12 @@ "sF": "30", "sU": "10", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 2" }, { "date": "Sep 9, 1979", @@ -39675,11 +58357,12 @@ "sF": "21", "sU": "13", "spread": "13", - "ou": "49", + "ou": 39.0, "pScore": { - "sU": 18, - "sF": 31 - } + "sU": 13.0, + "sF": 26.0 + }, + "week": "1979 Regular Season - Week 2" }, { "date": "Sep 10, 1979", @@ -39689,7 +58372,12 @@ "sF": "10", "sU": "14", "spread": "4", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 15.75, + "sF": 19.75 + }, + "week": "1979 Regular Season - Week 2" }, { "date": "Sep 16, 1979", @@ -39699,7 +58387,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 14.5, + "sF": 17.5 + }, + "week": "1979 Regular Season - Week 3" }, { "date": "Sep 16, 1979", @@ -39709,7 +58402,12 @@ "sF": "20", "sU": "14", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1979 Regular Season - Week 3" }, { "date": "Sep 16, 1979", @@ -39719,7 +58417,12 @@ "sF": "13", "sU": "10", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1979 Regular Season - Week 3" }, { "date": "Sep 16, 1979", @@ -39729,7 +58432,12 @@ "sF": "14", "sU": "26", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 3" }, { "date": "Sep 16, 1979", @@ -39739,7 +58447,12 @@ "sF": "31", "sU": "10", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1979 Regular Season - Week 3" }, { "date": "Sep 16, 1979", @@ -39749,7 +58462,12 @@ "sF": "10", "sU": "21", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "1979 Regular Season - Week 3" }, { "date": "Sep 16, 1979", @@ -39759,7 +58477,12 @@ "sF": "20", "sU": "6", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 3" }, { "date": "Sep 16, 1979", @@ -39769,7 +58492,12 @@ "sF": "27", "sU": "12", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 3" }, { "date": "Sep 16, 1979", @@ -39779,7 +58507,12 @@ "sF": "24", "sU": "20", "spread": "9", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.0, + "sF": 23.0 + }, + "week": "1979 Regular Season - Week 3" }, { "date": "Sep 16, 1979", @@ -39789,11 +58522,12 @@ "sF": "27", "sU": "24", "spread": "13", - "ou": "49", + "ou": 39.0, "pScore": { - "sU": 18, - "sF": 31 - } + "sU": 13.0, + "sF": 26.0 + }, + "week": "1979 Regular Season - Week 3" }, { "date": "Sep 16, 1979", @@ -39803,7 +58537,12 @@ "sF": "27", "sU": "19", "spread": "9", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.5, + "sF": 26.5 + }, + "week": "1979 Regular Season - Week 3" }, { "date": "Sep 16, 1979", @@ -39813,7 +58552,12 @@ "sF": "27", "sU": "10", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1979 Regular Season - Week 3" }, { "date": "Sep 16, 1979", @@ -39823,7 +58567,12 @@ "sF": "24", "sU": "21", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1979 Regular Season - Week 3" }, { "date": "Sep 17, 1979", @@ -39833,7 +58582,12 @@ "sF": "27", "sU": "0", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 3" }, { "date": "Sep 23, 1979", @@ -39843,7 +58597,12 @@ "sF": "46", "sU": "31", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 4" }, { "date": "Sep 23, 1979", @@ -39853,7 +58612,12 @@ "sF": "30", "sU": "27", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1979 Regular Season - Week 4" }, { "date": "Sep 23, 1979", @@ -39863,7 +58627,12 @@ "sF": "23", "sU": "24", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 4" }, { "date": "Sep 23, 1979", @@ -39873,7 +58642,12 @@ "sF": "27", "sU": "21", "spread": "1", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 16.5, + "sF": 17.5 + }, + "week": "1979 Regular Season - Week 4" }, { "date": "Sep 23, 1979", @@ -39883,7 +58657,12 @@ "sF": "27", "sU": "21", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1979 Regular Season - Week 4" }, { "date": "Sep 23, 1979", @@ -39893,7 +58672,12 @@ "sF": "17", "sU": "13", "spread": "14", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 12.0, + "sF": 26.0 + }, + "week": "1979 Regular Season - Week 4" }, { "date": "Sep 23, 1979", @@ -39903,7 +58687,12 @@ "sF": "7", "sU": "35", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 4" }, { "date": "Sep 23, 1979", @@ -39913,7 +58702,12 @@ "sF": "7", "sU": "17", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 4" }, { "date": "Sep 23, 1979", @@ -39923,7 +58717,12 @@ "sF": "37", "sU": "34", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 4" }, { "date": "Sep 23, 1979", @@ -39933,7 +58732,12 @@ "sF": "31", "sU": "16", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 4" }, { "date": "Sep 23, 1979", @@ -39943,7 +58747,12 @@ "sF": "17", "sU": "13", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 4" }, { "date": "Sep 23, 1979", @@ -39953,7 +58762,12 @@ "sF": "6", "sU": "21", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1979 Regular Season - Week 4" }, { "date": "Sep 24, 1979", @@ -39963,7 +58777,12 @@ "sF": "7", "sU": "26", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 4" }, { "date": "Sep 30, 1979", @@ -39973,7 +58792,12 @@ "sF": "7", "sU": "16", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1979 Regular Season - Week 5" }, { "date": "Sep 30, 1979", @@ -39983,7 +58807,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 5" }, { "date": "Sep 30, 1979", @@ -39993,7 +58822,12 @@ "sF": "24", "sU": "14", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 5" }, { "date": "Sep 30, 1979", @@ -40003,7 +58837,12 @@ "sF": "27", "sU": "33", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "1979 Regular Season - Week 5" }, { "date": "Sep 30, 1979", @@ -40013,7 +58852,12 @@ "sF": "14", "sU": "17", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1979 Regular Season - Week 5" }, { "date": "Sep 30, 1979", @@ -40023,7 +58867,12 @@ "sF": "13", "sU": "31", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 5" }, { "date": "Sep 30, 1979", @@ -40033,7 +58882,12 @@ "sF": "13", "sU": "17", "spread": "1", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 16.5, + "sF": 17.5 + }, + "week": "1979 Regular Season - Week 5" }, { "date": "Sep 30, 1979", @@ -40043,7 +58897,12 @@ "sF": "31", "sU": "10", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 5" }, { "date": "Sep 30, 1979", @@ -40053,7 +58912,12 @@ "sF": "38", "sU": "13", "spread": "10", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.0, + "sF": 25.0 + }, + "week": "1979 Regular Season - Week 5" }, { "date": "Sep 30, 1979", @@ -40063,7 +58927,12 @@ "sF": "21", "sU": "0", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 5" }, { "date": "Sep 30, 1979", @@ -40073,7 +58942,12 @@ "sF": "3", "sU": "27", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1979 Regular Season - Week 5" }, { "date": "Sep 30, 1979", @@ -40083,11 +58957,12 @@ "sF": "31", "sU": "9", "spread": "13", - "ou": "49", + "ou": 44.0, "pScore": { - "sU": 18, - "sF": 31 - } + "sU": 15.5, + "sF": 28.5 + }, + "week": "1979 Regular Season - Week 5" }, { "date": "Sep 30, 1979", @@ -40097,7 +58972,12 @@ "sF": "6", "sU": "24", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1979 Regular Season - Week 5" }, { "date": "Oct 1, 1979", @@ -40107,7 +58987,12 @@ "sF": "14", "sU": "27", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1979 Regular Season - Week 5" }, { "date": "Oct 7, 1979", @@ -40117,7 +59002,12 @@ "sF": "25", "sU": "7", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "1979 Regular Season - Week 6" }, { "date": "Oct 7, 1979", @@ -40127,7 +59017,12 @@ "sF": "0", "sU": "7", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 6" }, { "date": "Oct 7, 1979", @@ -40137,7 +59032,12 @@ "sF": "24", "sU": "17", "spread": "13", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 13.5, + "sF": 26.5 + }, + "week": "1979 Regular Season - Week 6" }, { "date": "Oct 7, 1979", @@ -40147,7 +59047,12 @@ "sF": "14", "sU": "17", "spread": "6", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 14.0, + "sF": 20.0 + }, + "week": "1979 Regular Season - Week 6" }, { "date": "Oct 7, 1979", @@ -40157,7 +59062,12 @@ "sF": "28", "sU": "17", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1979 Regular Season - Week 6" }, { "date": "Oct 7, 1979", @@ -40167,7 +59077,12 @@ "sF": "17", "sU": "24", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1979 Regular Season - Week 6" }, { "date": "Oct 7, 1979", @@ -40177,7 +59092,12 @@ "sF": "8", "sU": "10", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 6" }, { "date": "Oct 7, 1979", @@ -40187,7 +59107,12 @@ "sF": "51", "sU": "35", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1979 Regular Season - Week 6" }, { "date": "Oct 7, 1979", @@ -40197,7 +59122,12 @@ "sF": "0", "sU": "7", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1979 Regular Season - Week 6" }, { "date": "Oct 7, 1979", @@ -40207,7 +59137,12 @@ "sF": "36", "sU": "20", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1979 Regular Season - Week 6" }, { "date": "Oct 7, 1979", @@ -40217,7 +59152,12 @@ "sF": "35", "sU": "17", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 6" }, { "date": "Oct 7, 1979", @@ -40227,11 +59167,12 @@ "sF": "35", "sU": "24", "spread": "5", - "ou": "49", + "ou": 43.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 19.0, + "sF": 24.0 + }, + "week": "1979 Regular Season - Week 6" }, { "date": "Oct 8, 1979", @@ -40241,7 +59182,12 @@ "sF": "3", "sU": "13", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "1979 Regular Season - Week 6" }, { "date": "Oct 14, 1979", @@ -40251,7 +59197,12 @@ "sF": "10", "sU": "34", "spread": "10", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.5, + "sF": 24.5 + }, + "week": "1979 Regular Season - Week 7" }, { "date": "Oct 14, 1979", @@ -40261,7 +59212,12 @@ "sF": "9", "sU": "13", "spread": "4", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.0, + "sF": 19.0 + }, + "week": "1979 Regular Season - Week 7" }, { "date": "Oct 14, 1979", @@ -40271,7 +59227,12 @@ "sF": "17", "sU": "7", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1979 Regular Season - Week 7" }, { "date": "Oct 14, 1979", @@ -40281,11 +59242,12 @@ "sF": "32", "sU": "16", "spread": "4", - "ou": "49", + "ou": 38.0, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sU": 17.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 7" }, { "date": "Oct 14, 1979", @@ -40295,7 +59257,12 @@ "sF": "20", "sU": "24", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1979 Regular Season - Week 7" }, { "date": "Oct 14, 1979", @@ -40305,7 +59272,12 @@ "sF": "14", "sU": "42", "spread": "8", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.0, + "sF": 23.0 + }, + "week": "1979 Regular Season - Week 7" }, { "date": "Oct 14, 1979", @@ -40315,7 +59287,12 @@ "sF": "28", "sU": "16", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 7" }, { "date": "Oct 14, 1979", @@ -40325,7 +59302,12 @@ "sF": "27", "sU": "7", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1979 Regular Season - Week 7" }, { "date": "Oct 14, 1979", @@ -40335,7 +59317,12 @@ "sF": "24", "sU": "16", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1979 Regular Season - Week 7" }, { "date": "Oct 14, 1979", @@ -40345,7 +59332,12 @@ "sF": "24", "sU": "10", "spread": "1", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 16.5, + "sF": 17.5 + }, + "week": "1979 Regular Season - Week 7" }, { "date": "Oct 14, 1979", @@ -40355,7 +59347,12 @@ "sF": "50", "sU": "19", "spread": "10", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.5, + "sF": 23.5 + }, + "week": "1979 Regular Season - Week 7" }, { "date": "Oct 14, 1979", @@ -40365,7 +59362,12 @@ "sF": "20", "sU": "10", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "1979 Regular Season - Week 7" }, { "date": "Oct 14, 1979", @@ -40375,7 +59377,12 @@ "sF": "30", "sU": "6", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 7" }, { "date": "Oct 15, 1979", @@ -40385,7 +59392,12 @@ "sF": "14", "sU": "7", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1979 Regular Season - Week 7" }, { "date": "Oct 21, 1979", @@ -40395,7 +59407,12 @@ "sF": "13", "sU": "14", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 8" }, { "date": "Oct 21, 1979", @@ -40405,7 +59422,12 @@ "sF": "28", "sU": "27", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 8" }, { "date": "Oct 21, 1979", @@ -40415,7 +59437,12 @@ "sF": "28", "sU": "13", "spread": "5", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 8" }, { "date": "Oct 21, 1979", @@ -40425,7 +59452,12 @@ "sF": "19", "sU": "28", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 8" }, { "date": "Oct 21, 1979", @@ -40435,7 +59467,12 @@ "sF": "21", "sU": "3", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 8" }, { "date": "Oct 21, 1979", @@ -40445,7 +59482,12 @@ "sF": "7", "sU": "17", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1979 Regular Season - Week 8" }, { "date": "Oct 21, 1979", @@ -40455,7 +59497,12 @@ "sF": "22", "sU": "13", "spread": "10", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.5, + "sF": 24.5 + }, + "week": "1979 Regular Season - Week 8" }, { "date": "Oct 21, 1979", @@ -40465,7 +59512,12 @@ "sF": "30", "sU": "27", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "1979 Regular Season - Week 8" }, { "date": "Oct 21, 1979", @@ -40475,7 +59527,12 @@ "sF": "17", "sU": "7", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1979 Regular Season - Week 8" }, { "date": "Oct 21, 1979", @@ -40485,7 +59542,12 @@ "sF": "17", "sU": "21", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 8" }, { "date": "Oct 21, 1979", @@ -40495,7 +59557,12 @@ "sF": "40", "sU": "16", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1979 Regular Season - Week 8" }, { "date": "Oct 21, 1979", @@ -40505,11 +59572,12 @@ "sF": "15", "sU": "20", "spread": "4", - "ou": "49", + "ou": 42.0, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sU": 19.0, + "sF": 23.0 + }, + "week": "1979 Regular Season - Week 8" }, { "date": "Oct 21, 1979", @@ -40519,7 +59587,12 @@ "sF": "14", "sU": "34", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 8" }, { "date": "Oct 22, 1979", @@ -40529,7 +59602,12 @@ "sF": "42", "sU": "7", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 8" }, { "date": "Oct 25, 1979", @@ -40539,7 +59617,12 @@ "sF": "22", "sU": "45", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 9" }, { "date": "Oct 28, 1979", @@ -40549,7 +59632,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1979 Regular Season - Week 9" }, { "date": "Oct 28, 1979", @@ -40559,7 +59647,12 @@ "sF": "27", "sU": "24", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1979 Regular Season - Week 9" }, { "date": "Oct 28, 1979", @@ -40569,7 +59662,12 @@ "sF": "14", "sU": "3", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 9" }, { "date": "Oct 28, 1979", @@ -40579,7 +59677,12 @@ "sF": "10", "sU": "14", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1979 Regular Season - Week 9" }, { "date": "Oct 28, 1979", @@ -40589,7 +59692,12 @@ "sF": "26", "sU": "31", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1979 Regular Season - Week 9" }, { "date": "Oct 28, 1979", @@ -40599,7 +59707,12 @@ "sF": "20", "sU": "38", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 9" }, { "date": "Oct 28, 1979", @@ -40609,7 +59722,12 @@ "sF": "37", "sU": "13", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1979 Regular Season - Week 9" }, { "date": "Oct 28, 1979", @@ -40619,7 +59737,12 @@ "sF": "20", "sU": "3", "spread": "7", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 13.5, + "sF": 20.5 + }, + "week": "1979 Regular Season - Week 9" }, { "date": "Oct 28, 1979", @@ -40629,7 +59752,12 @@ "sF": "14", "sU": "20", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 9" }, { "date": "Oct 28, 1979", @@ -40639,7 +59767,12 @@ "sF": "27", "sU": "7", "spread": "11", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 12.5, + "sF": 23.5 + }, + "week": "1979 Regular Season - Week 9" }, { "date": "Oct 28, 1979", @@ -40649,11 +59782,12 @@ "sF": "28", "sU": "27", "spread": "3", - "ou": "49", + "ou": 39.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 18.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 9" }, { "date": "Oct 29, 1979", @@ -40663,7 +59797,12 @@ "sF": "31", "sU": "28", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 9" }, { "date": "Nov 4, 1979", @@ -40673,7 +59812,12 @@ "sF": "17", "sU": "14", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1979 Regular Season - Week 10" }, { "date": "Nov 4, 1979", @@ -40683,7 +59827,12 @@ "sF": "26", "sU": "6", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "1979 Regular Season - Week 10" }, { "date": "Nov 4, 1979", @@ -40693,7 +59842,12 @@ "sF": "16", "sU": "14", "spread": "8", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.0, + "sF": 23.0 + }, + "week": "1979 Regular Season - Week 10" }, { "date": "Nov 4, 1979", @@ -40703,7 +59857,12 @@ "sF": "19", "sU": "24", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 10" }, { "date": "Nov 4, 1979", @@ -40713,7 +59872,12 @@ "sF": "38", "sU": "7", "spread": "11", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.0, + "sF": 24.0 + }, + "week": "1979 Regular Season - Week 10" }, { "date": "Nov 4, 1979", @@ -40723,7 +59887,12 @@ "sF": "38", "sU": "28", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 10" }, { "date": "Nov 4, 1979", @@ -40733,7 +59902,12 @@ "sF": "20", "sU": "14", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 10" }, { "date": "Nov 4, 1979", @@ -40743,7 +59917,12 @@ "sF": "37", "sU": "7", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 10" }, { "date": "Nov 4, 1979", @@ -40753,7 +59932,12 @@ "sF": "35", "sU": "7", "spread": "7", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 10" }, { "date": "Nov 4, 1979", @@ -40763,7 +59947,12 @@ "sF": "10", "sU": "3", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 10" }, { "date": "Nov 4, 1979", @@ -40773,7 +59962,12 @@ "sF": "27", "sU": "22", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 10" }, { "date": "Nov 4, 1979", @@ -40783,11 +59977,12 @@ "sF": "23", "sU": "10", "spread": "12", - "ou": "49", + "ou": 44.0, "pScore": { - "sU": 18.5, - "sF": 30.5 - } + "sU": 16.0, + "sF": 28.0 + }, + "week": "1979 Regular Season - Week 10" }, { "date": "Nov 4, 1979", @@ -40797,7 +59992,12 @@ "sF": "0", "sU": "24", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 10" }, { "date": "Nov 5, 1979", @@ -40807,7 +60007,12 @@ "sF": "6", "sU": "9", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 10" }, { "date": "Nov 11, 1979", @@ -40817,7 +60022,12 @@ "sF": "26", "sU": "24", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "1979 Regular Season - Week 11" }, { "date": "Nov 11, 1979", @@ -40827,7 +60037,12 @@ "sF": "24", "sU": "29", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1979 Regular Season - Week 11" }, { "date": "Nov 11, 1979", @@ -40837,7 +60052,12 @@ "sF": "16", "sU": "14", "spread": "5", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.0, + "sF": 20.0 + }, + "week": "1979 Regular Season - Week 11" }, { "date": "Nov 11, 1979", @@ -40847,7 +60067,12 @@ "sF": "31", "sU": "17", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "1979 Regular Season - Week 11" }, { "date": "Nov 11, 1979", @@ -40857,7 +60082,12 @@ "sF": "30", "sU": "3", "spread": "10", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.0, + "sF": 24.0 + }, + "week": "1979 Regular Season - Week 11" }, { "date": "Nov 11, 1979", @@ -40867,7 +60097,12 @@ "sF": "19", "sU": "0", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 11" }, { "date": "Nov 11, 1979", @@ -40877,7 +60112,12 @@ "sF": "12", "sU": "14", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1979 Regular Season - Week 11" }, { "date": "Nov 11, 1979", @@ -40887,7 +60127,12 @@ "sF": "30", "sU": "28", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 11" }, { "date": "Nov 11, 1979", @@ -40897,7 +60142,12 @@ "sF": "19", "sU": "7", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1979 Regular Season - Week 11" }, { "date": "Nov 11, 1979", @@ -40907,11 +60157,12 @@ "sF": "31", "sU": "20", "spread": "7", - "ou": "49", + "ou": 42.0, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 17.5, + "sF": 24.5 + }, + "week": "1979 Regular Season - Week 11" }, { "date": "Nov 11, 1979", @@ -40921,7 +60172,12 @@ "sF": "10", "sU": "45", "spread": "1", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 16.5, + "sF": 17.5 + }, + "week": "1979 Regular Season - Week 11" }, { "date": "Nov 11, 1979", @@ -40931,7 +60187,12 @@ "sF": "24", "sU": "3", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "1979 Regular Season - Week 11" }, { "date": "Nov 12, 1979", @@ -40941,7 +60202,12 @@ "sF": "21", "sU": "31", "spread": "10", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.0, + "sF": 24.0 + }, + "week": "1979 Regular Season - Week 11" }, { "date": "Nov 18, 1979", @@ -40951,7 +60217,12 @@ "sF": "19", "sU": "12", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 12" }, { "date": "Nov 18, 1979", @@ -40961,7 +60232,12 @@ "sF": "23", "sU": "13", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 12" }, { "date": "Nov 18, 1979", @@ -40971,7 +60247,12 @@ "sF": "50", "sU": "21", "spread": "10", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.0, + "sF": 25.0 + }, + "week": "1979 Regular Season - Week 12" }, { "date": "Nov 18, 1979", @@ -40981,7 +60262,12 @@ "sF": "16", "sU": "13", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 12" }, { "date": "Nov 18, 1979", @@ -40991,7 +60277,12 @@ "sF": "20", "sU": "34", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1979 Regular Season - Week 12" }, { "date": "Nov 18, 1979", @@ -41001,7 +60292,12 @@ "sF": "14", "sU": "7", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1979 Regular Season - Week 12" }, { "date": "Nov 18, 1979", @@ -41011,7 +60307,12 @@ "sF": "42", "sU": "21", "spread": "8", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.5, + "sF": 25.5 + }, + "week": "1979 Regular Season - Week 12" }, { "date": "Nov 18, 1979", @@ -41021,7 +60322,12 @@ "sF": "21", "sU": "24", "spread": "12", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 13.0, + "sF": 25.0 + }, + "week": "1979 Regular Season - Week 12" }, { "date": "Nov 18, 1979", @@ -41031,7 +60337,12 @@ "sF": "7", "sU": "35", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 12" }, { "date": "Nov 18, 1979", @@ -41041,11 +60352,12 @@ "sF": "38", "sU": "28", "spread": "9", - "ou": "49", + "ou": 39.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 15.0, + "sF": 24.0 + }, + "week": "1979 Regular Season - Week 12" }, { "date": "Nov 18, 1979", @@ -41055,7 +60367,12 @@ "sF": "38", "sU": "24", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 12" }, { "date": "Nov 18, 1979", @@ -41065,7 +60382,12 @@ "sF": "31", "sU": "3", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "1979 Regular Season - Week 12" }, { "date": "Nov 19, 1979", @@ -41075,7 +60397,12 @@ "sF": "20", "sU": "14", "spread": "7", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 12" }, { "date": "Nov 22, 1979", @@ -41085,7 +60412,12 @@ "sF": "0", "sU": "20", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 13" }, { "date": "Nov 22, 1979", @@ -41095,7 +60427,12 @@ "sF": "24", "sU": "30", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 13" }, { "date": "Nov 25, 1979", @@ -41105,7 +60442,12 @@ "sF": "37", "sU": "6", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 13" }, { "date": "Nov 25, 1979", @@ -41115,7 +60457,12 @@ "sF": "34", "sU": "28", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 13" }, { "date": "Nov 25, 1979", @@ -41125,7 +60472,12 @@ "sF": "13", "sU": "16", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "1979 Regular Season - Week 13" }, { "date": "Nov 25, 1979", @@ -41135,7 +60487,12 @@ "sF": "6", "sU": "14", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1979 Regular Season - Week 13" }, { "date": "Nov 25, 1979", @@ -41145,7 +60502,12 @@ "sF": "33", "sU": "30", "spread": "10", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.0, + "sF": 26.0 + }, + "week": "1979 Regular Season - Week 13" }, { "date": "Nov 25, 1979", @@ -41155,7 +60517,12 @@ "sF": "22", "sU": "23", "spread": "8", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 13" }, { "date": "Nov 25, 1979", @@ -41165,7 +60532,12 @@ "sF": "21", "sU": "10", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1979 Regular Season - Week 13" }, { "date": "Nov 25, 1979", @@ -41175,7 +60547,12 @@ "sF": "28", "sU": "24", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1979 Regular Season - Week 13" }, { "date": "Nov 25, 1979", @@ -41185,7 +60562,12 @@ "sF": "10", "sU": "14", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1979 Regular Season - Week 13" }, { "date": "Nov 25, 1979", @@ -41195,7 +60577,12 @@ "sF": "28", "sU": "7", "spread": "10", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.0, + "sF": 24.0 + }, + "week": "1979 Regular Season - Week 13" }, { "date": "Nov 25, 1979", @@ -41205,11 +60592,12 @@ "sF": "26", "sU": "20", "spread": "6", - "ou": "49", + "ou": 39.0, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 16.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 13" }, { "date": "Nov 26, 1979", @@ -41219,7 +60607,12 @@ "sF": "30", "sU": "7", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "1979 Regular Season - Week 13" }, { "date": "Nov 29, 1979", @@ -41229,7 +60622,12 @@ "sF": "39", "sU": "24", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 14" }, { "date": "Dec 2, 1979", @@ -41239,7 +60637,12 @@ "sF": "19", "sU": "16", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "1979 Regular Season - Week 14" }, { "date": "Dec 2, 1979", @@ -41249,7 +60652,12 @@ "sF": "14", "sU": "7", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 14" }, { "date": "Dec 2, 1979", @@ -41259,7 +60667,12 @@ "sF": "30", "sU": "17", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 14" }, { "date": "Dec 2, 1979", @@ -41269,7 +60682,12 @@ "sF": "44", "sU": "7", "spread": "8", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 14" }, { "date": "Dec 2, 1979", @@ -41279,7 +60697,12 @@ "sF": "37", "sU": "17", "spread": "14", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 15.0, + "sF": 29.0 + }, + "week": "1979 Regular Season - Week 14" }, { "date": "Dec 2, 1979", @@ -41289,7 +60712,12 @@ "sF": "0", "sU": "14", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1979 Regular Season - Week 14" }, { "date": "Dec 2, 1979", @@ -41299,7 +60727,12 @@ "sF": "38", "sU": "21", "spread": "9", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 12.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 14" }, { "date": "Dec 2, 1979", @@ -41309,7 +60742,12 @@ "sF": "21", "sU": "37", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 14" }, { "date": "Dec 2, 1979", @@ -41319,11 +60757,12 @@ "sF": "13", "sU": "10", "spread": "6", - "ou": "49", + "ou": 43.0, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 18.5, + "sF": 24.5 + }, + "week": "1979 Regular Season - Week 14" }, { "date": "Dec 2, 1979", @@ -41333,7 +60772,12 @@ "sF": "28", "sU": "7", "spread": "11", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 13.5, + "sF": 24.5 + }, + "week": "1979 Regular Season - Week 14" }, { "date": "Dec 2, 1979", @@ -41343,7 +60787,12 @@ "sF": "27", "sU": "21", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 14" }, { "date": "Dec 2, 1979", @@ -41353,7 +60802,12 @@ "sF": "26", "sU": "28", "spread": "14", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 14.0, + "sF": 28.0 + }, + "week": "1979 Regular Season - Week 14" }, { "date": "Dec 3, 1979", @@ -41363,7 +60817,12 @@ "sF": "35", "sU": "42", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1979 Regular Season - Week 14" }, { "date": "Dec 8, 1979", @@ -41373,7 +60832,12 @@ "sF": "24", "sU": "17", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 15" }, { "date": "Dec 8, 1979", @@ -41383,7 +60847,12 @@ "sF": "23", "sU": "28", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 15" }, { "date": "Dec 9, 1979", @@ -41393,7 +60862,12 @@ "sF": "34", "sU": "13", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 15" }, { "date": "Dec 9, 1979", @@ -41403,7 +60877,12 @@ "sF": "28", "sU": "10", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 15" }, { "date": "Dec 9, 1979", @@ -41413,7 +60892,12 @@ "sF": "15", "sU": "14", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1979 Regular Season - Week 15" }, { "date": "Dec 9, 1979", @@ -41423,7 +60907,12 @@ "sF": "29", "sU": "20", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "1979 Regular Season - Week 15" }, { "date": "Dec 9, 1979", @@ -41433,7 +60922,12 @@ "sF": "28", "sU": "14", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1979 Regular Season - Week 15" }, { "date": "Dec 9, 1979", @@ -41443,7 +60937,12 @@ "sF": "10", "sU": "3", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "1979 Regular Season - Week 15" }, { "date": "Dec 9, 1979", @@ -41453,7 +60952,12 @@ "sF": "0", "sU": "35", "spread": "4", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.5, + "sF": 24.5 + }, + "week": "1979 Regular Season - Week 15" }, { "date": "Dec 9, 1979", @@ -41463,7 +60967,12 @@ "sF": "26", "sU": "27", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1979 Regular Season - Week 15" }, { "date": "Dec 9, 1979", @@ -41473,7 +60982,12 @@ "sF": "19", "sU": "14", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "1979 Regular Season - Week 15" }, { "date": "Dec 9, 1979", @@ -41483,11 +60997,12 @@ "sF": "7", "sU": "23", "spread": "3", - "ou": "49", + "ou": 38.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 17.5, + "sF": 20.5 + }, + "week": "1979 Regular Season - Week 15" }, { "date": "Dec 10, 1979", @@ -41497,7 +61012,12 @@ "sF": "17", "sU": "20", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "1979 Regular Season - Week 15" }, { "date": "Dec 15, 1979", @@ -41507,7 +61027,12 @@ "sF": "24", "sU": "27", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "1979 Regular Season - Week 16" }, { "date": "Dec 15, 1979", @@ -41517,7 +61042,12 @@ "sF": "13", "sU": "18", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "1979 Regular Season - Week 16" }, { "date": "Dec 16, 1979", @@ -41527,11 +61057,12 @@ "sF": "31", "sU": "21", "spread": "3", - "ou": "49", + "ou": 45.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 21.0, + "sF": 24.0 + }, + "week": "1979 Regular Season - Week 16" }, { "date": "Dec 16, 1979", @@ -41541,7 +61072,12 @@ "sF": "16", "sU": "12", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1979 Regular Season - Week 16" }, { "date": "Dec 16, 1979", @@ -41551,7 +61087,12 @@ "sF": "27", "sU": "23", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "1979 Regular Season - Week 16" }, { "date": "Dec 16, 1979", @@ -41561,7 +61102,12 @@ "sF": "7", "sU": "31", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 16" }, { "date": "Dec 16, 1979", @@ -41571,7 +61117,12 @@ "sF": "28", "sU": "0", "spread": "12", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 13.5, + "sF": 25.5 + }, + "week": "1979 Regular Season - Week 16" }, { "date": "Dec 16, 1979", @@ -41581,7 +61132,12 @@ "sF": "3", "sU": "0", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "1979 Regular Season - Week 16" }, { "date": "Dec 16, 1979", @@ -41591,7 +61147,12 @@ "sF": "42", "sU": "6", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1979 Regular Season - Week 16" }, { "date": "Dec 16, 1979", @@ -41601,7 +61162,12 @@ "sF": "35", "sU": "34", "spread": "8", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 15.75, + "sF": 23.75 + }, + "week": "1979 Regular Season - Week 16" }, { "date": "Dec 16, 1979", @@ -41611,7 +61177,12 @@ "sF": "20", "sU": "26", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "1979 Regular Season - Week 16" }, { "date": "Dec 16, 1979", @@ -41621,7 +61192,12 @@ "sF": "14", "sU": "29", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1979 Regular Season - Week 16" }, { "date": "Dec 16, 1979", @@ -41631,7 +61207,12 @@ "sF": "24", "sU": "29", "spread": "8", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 18.5, + "sF": 26.5 + }, + "week": "1979 Regular Season - Week 16" }, { "date": "Dec 17, 1979", @@ -41641,7 +61222,12 @@ "sF": "17", "sU": "7", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1979 Regular Season - Week 16" }, { "date": "Dec 23, 1979", @@ -41650,8 +61236,13 @@ "und": "Chicago Bears (5)", "sF": "27", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "1979 Playoffs" }, { "date": "Dec 23, 1979", @@ -41661,7 +61252,12 @@ "sF": "13", "sU": "7", "spread": "7", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 13.75, + "sF": 20.75 + }, + "week": "1979 Playoffs" }, { "date": "Dec 29, 1979", @@ -41670,8 +61266,13 @@ "und": "Tampa Bay Buccaneers (2)", "sF": "17", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 34.0, + "pScore": { + "sU": 14.75, + "sF": 19.25 + }, + "week": "1979 Playoffs" }, { "date": "Dec 29, 1979", @@ -41681,7 +61282,12 @@ "sF": "14", "sU": "17", "spread": "8", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.5, + "sF": 22.5 + }, + "week": "1979 Playoffs" }, { "date": "Dec 30, 1979", @@ -41690,8 +61296,13 @@ "und": "Miami Dolphins (3)", "sF": "34", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 38.5, + "pScore": { + "sU": 14.5, + "sF": 24.0 + }, + "week": "1979 Playoffs" }, { "date": "Dec 30, 1979", @@ -41700,8 +61311,13 @@ "und": "Los Angeles Rams (3)", "sF": "19", "sU": "21", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 39.0, + "pScore": { + "sU": 15.25, + "sF": 23.75 + }, + "week": "1979 Playoffs" }, { "date": "Jan 6, 1980", @@ -41710,8 +61326,13 @@ "und": "Houston Oilers (4)", "sF": "27", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 39.5, + "pScore": { + "sU": 15.0, + "sF": 24.5 + }, + "week": "1979 Playoffs" }, { "date": "Jan 6, 1980", @@ -41720,8 +61341,13 @@ "und": "Tampa Bay Buccaneers (2)", "sF": "9", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 32.5, + "pScore": { + "sU": 14.5, + "sF": 18.0 + }, + "week": "1979 Playoffs" }, { "date": "Jan 20, 1980", @@ -41731,7 +61357,12 @@ "sF": "31", "sU": "19", "spread": "10", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 13.0, + "sF": 23.0 + }, + "week": "1979 Playoffs" }, { "date": "Sep 7, 1980", @@ -41741,7 +61372,12 @@ "sF": "7", "sU": "17", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1980 Regular Season - Week 1" }, { "date": "Sep 7, 1980", @@ -41751,7 +61387,12 @@ "sF": "17", "sU": "12", "spread": "1", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 16.5, + "sF": 17.5 + }, + "week": "1980 Regular Season - Week 1" }, { "date": "Sep 7, 1980", @@ -41761,7 +61402,12 @@ "sF": "6", "sU": "12", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "1980 Regular Season - Week 1" }, { "date": "Sep 7, 1980", @@ -41771,7 +61417,12 @@ "sF": "24", "sU": "23", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 1" }, { "date": "Sep 7, 1980", @@ -41781,7 +61432,12 @@ "sF": "34", "sU": "17", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 1" }, { "date": "Sep 7, 1980", @@ -41791,11 +61447,12 @@ "sF": "23", "sU": "26", "spread": "4", - "ou": "49", + "ou": 45.0, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sU": 20.5, + "sF": 24.5 + }, + "week": "1980 Regular Season - Week 1" }, { "date": "Sep 7, 1980", @@ -41805,7 +61462,12 @@ "sF": "31", "sU": "17", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 1" }, { "date": "Sep 7, 1980", @@ -41815,7 +61477,12 @@ "sF": "35", "sU": "41", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1980 Regular Season - Week 1" }, { "date": "Sep 7, 1980", @@ -41825,7 +61492,12 @@ "sF": "14", "sU": "27", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1980 Regular Season - Week 1" }, { "date": "Sep 7, 1980", @@ -41835,7 +61507,12 @@ "sF": "20", "sU": "41", "spread": "9", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 1" }, { "date": "Sep 7, 1980", @@ -41845,7 +61522,12 @@ "sF": "14", "sU": "17", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 1" }, { "date": "Sep 7, 1980", @@ -41855,7 +61537,12 @@ "sF": "27", "sU": "6", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1980 Regular Season - Week 1" }, { "date": "Sep 7, 1980", @@ -41865,7 +61552,12 @@ "sF": "34", "sU": "13", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 1" }, { "date": "Sep 8, 1980", @@ -41875,7 +61567,12 @@ "sF": "3", "sU": "17", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 1" }, { "date": "Sep 11, 1980", @@ -41885,7 +61582,12 @@ "sF": "10", "sU": "9", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1980 Regular Season - Week 2" }, { "date": "Sep 14, 1980", @@ -41895,7 +61597,12 @@ "sF": "7", "sU": "42", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 2" }, { "date": "Sep 14, 1980", @@ -41905,7 +61612,12 @@ "sF": "21", "sU": "37", "spread": "8", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 20.5, + "sF": 28.5 + }, + "week": "1980 Regular Season - Week 2" }, { "date": "Sep 14, 1980", @@ -41915,7 +61627,12 @@ "sF": "20", "sU": "17", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 2" }, { "date": "Sep 14, 1980", @@ -41925,7 +61642,12 @@ "sF": "22", "sU": "3", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1980 Regular Season - Week 2" }, { "date": "Sep 14, 1980", @@ -41935,7 +61657,12 @@ "sF": "29", "sU": "7", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1980 Regular Season - Week 2" }, { "date": "Sep 14, 1980", @@ -41945,7 +61672,12 @@ "sF": "16", "sU": "17", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1980 Regular Season - Week 2" }, { "date": "Sep 14, 1980", @@ -41955,7 +61687,12 @@ "sF": "41", "sU": "20", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1980 Regular Season - Week 2" }, { "date": "Sep 14, 1980", @@ -41965,7 +61702,12 @@ "sF": "17", "sU": "16", "spread": "7", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.0, + "sF": 21.0 + }, + "week": "1980 Regular Season - Week 2" }, { "date": "Sep 14, 1980", @@ -41975,7 +61717,12 @@ "sF": "23", "sU": "21", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1980 Regular Season - Week 2" }, { "date": "Sep 14, 1980", @@ -41985,7 +61732,12 @@ "sF": "30", "sU": "24", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "1980 Regular Season - Week 2" }, { "date": "Sep 14, 1980", @@ -41995,7 +61747,12 @@ "sF": "24", "sU": "21", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1980 Regular Season - Week 2" }, { "date": "Sep 15, 1980", @@ -42005,7 +61762,12 @@ "sF": "16", "sU": "7", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1980 Regular Season - Week 2" }, { "date": "Sep 21, 1980", @@ -42015,7 +61777,12 @@ "sF": "17", "sU": "20", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1980 Regular Season - Week 3" }, { "date": "Sep 21, 1980", @@ -42025,7 +61792,12 @@ "sF": "14", "sU": "34", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1980 Regular Season - Week 3" }, { "date": "Sep 21, 1980", @@ -42035,7 +61807,12 @@ "sF": "28", "sU": "30", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 3" }, { "date": "Sep 21, 1980", @@ -42045,7 +61822,12 @@ "sF": "20", "sU": "13", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1980 Regular Season - Week 3" }, { "date": "Sep 21, 1980", @@ -42054,8 +61836,13 @@ "und": "St Louis Cardinals", "sF": "20", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "1980 Regular Season - Week 3" }, { "date": "Sep 21, 1980", @@ -42065,11 +61852,12 @@ "sF": "27", "sU": "37", "spread": "5", - "ou": "49", + "ou": 39.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 17.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 3" }, { "date": "Sep 21, 1980", @@ -42079,7 +61867,12 @@ "sF": "21", "sU": "16", "spread": "7", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.0, + "sF": 21.0 + }, + "week": "1980 Regular Season - Week 3" }, { "date": "Sep 21, 1980", @@ -42089,7 +61882,12 @@ "sF": "26", "sU": "35", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1980 Regular Season - Week 3" }, { "date": "Sep 21, 1980", @@ -42099,7 +61897,12 @@ "sF": "28", "sU": "17", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1980 Regular Season - Week 3" }, { "date": "Sep 21, 1980", @@ -42109,7 +61912,12 @@ "sF": "13", "sU": "30", "spread": "2", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.5, + "sF": 24.5 + }, + "week": "1980 Regular Season - Week 3" }, { "date": "Sep 21, 1980", @@ -42119,7 +61927,12 @@ "sF": "51", "sU": "21", "spread": "14", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 12.0, + "sF": 26.0 + }, + "week": "1980 Regular Season - Week 3" }, { "date": "Sep 21, 1980", @@ -42129,7 +61942,12 @@ "sF": "24", "sU": "21", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 3" }, { "date": "Sep 21, 1980", @@ -42139,7 +61957,12 @@ "sF": "31", "sU": "37", "spread": "2", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.5, + "sF": 24.5 + }, + "week": "1980 Regular Season - Week 3" }, { "date": "Sep 22, 1980", @@ -42149,7 +61972,12 @@ "sF": "35", "sU": "3", "spread": "10", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.0, + "sF": 25.0 + }, + "week": "1980 Regular Season - Week 3" }, { "date": "Sep 28, 1980", @@ -42159,7 +61987,12 @@ "sF": "24", "sU": "7", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 4" }, { "date": "Sep 28, 1980", @@ -42169,7 +62002,12 @@ "sF": "13", "sU": "10", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1980 Regular Season - Week 4" }, { "date": "Sep 28, 1980", @@ -42179,7 +62017,12 @@ "sF": "27", "sU": "7", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1980 Regular Season - Week 4" }, { "date": "Sep 28, 1980", @@ -42189,7 +62032,12 @@ "sF": "28", "sU": "7", "spread": "10", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.0, + "sF": 26.0 + }, + "week": "1980 Regular Season - Week 4" }, { "date": "Sep 28, 1980", @@ -42199,7 +62047,12 @@ "sF": "21", "sU": "16", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 4" }, { "date": "Sep 28, 1980", @@ -42209,7 +62062,12 @@ "sF": "28", "sU": "7", "spread": "5", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 4" }, { "date": "Sep 28, 1980", @@ -42219,7 +62077,12 @@ "sF": "38", "sU": "3", "spread": "13", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 13.0, + "sF": 26.0 + }, + "week": "1980 Regular Season - Week 4" }, { "date": "Sep 28, 1980", @@ -42229,7 +62092,12 @@ "sF": "27", "sU": "34", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1980 Regular Season - Week 4" }, { "date": "Sep 28, 1980", @@ -42239,7 +62107,12 @@ "sF": "14", "sU": "24", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "1980 Regular Season - Week 4" }, { "date": "Sep 28, 1980", @@ -42249,7 +62122,12 @@ "sF": "35", "sU": "21", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1980 Regular Season - Week 4" }, { "date": "Sep 28, 1980", @@ -42259,7 +62137,12 @@ "sF": "24", "sU": "7", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1980 Regular Season - Week 4" }, { "date": "Sep 28, 1980", @@ -42269,7 +62152,12 @@ "sF": "17", "sU": "20", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "1980 Regular Season - Week 4" }, { "date": "Sep 28, 1980", @@ -42279,7 +62167,12 @@ "sF": "0", "sU": "14", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 4" }, { "date": "Sep 29, 1980", @@ -42289,7 +62182,12 @@ "sF": "23", "sU": "14", "spread": "4", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.0, + "sF": 26.0 + }, + "week": "1980 Regular Season - Week 4" }, { "date": "Oct 5, 1980", @@ -42299,7 +62197,12 @@ "sF": "28", "sU": "43", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 5" }, { "date": "Oct 5, 1980", @@ -42309,7 +62212,12 @@ "sF": "16", "sU": "19", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 5" }, { "date": "Oct 5, 1980", @@ -42319,7 +62227,12 @@ "sF": "9", "sU": "14", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1980 Regular Season - Week 5" }, { "date": "Oct 5, 1980", @@ -42329,7 +62242,12 @@ "sF": "7", "sU": "26", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 5" }, { "date": "Oct 5, 1980", @@ -42339,7 +62257,12 @@ "sF": "17", "sU": "30", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "1980 Regular Season - Week 5" }, { "date": "Oct 5, 1980", @@ -42349,7 +62272,12 @@ "sF": "23", "sU": "17", "spread": "8", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.0, + "sF": 27.0 + }, + "week": "1980 Regular Season - Week 5" }, { "date": "Oct 5, 1980", @@ -42359,7 +62287,12 @@ "sF": "40", "sU": "7", "spread": "1", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 22.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 5" }, { "date": "Oct 5, 1980", @@ -42369,7 +62302,12 @@ "sF": "21", "sU": "11", "spread": "4", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 22.5, + "sF": 26.5 + }, + "week": "1980 Regular Season - Week 5" }, { "date": "Oct 5, 1980", @@ -42379,7 +62317,12 @@ "sF": "24", "sU": "14", "spread": "7", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.0, + "sF": 21.0 + }, + "week": "1980 Regular Season - Week 5" }, { "date": "Oct 5, 1980", @@ -42389,7 +62332,12 @@ "sF": "24", "sU": "3", "spread": "12", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 15.0, + "sF": 27.0 + }, + "week": "1980 Regular Season - Week 5" }, { "date": "Oct 5, 1980", @@ -42399,11 +62347,12 @@ "sF": "48", "sU": "26", "spread": "9", - "ou": "49", + "ou": 48.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 19.5, + "sF": 28.5 + }, + "week": "1980 Regular Season - Week 5" }, { "date": "Oct 5, 1980", @@ -42413,7 +62362,12 @@ "sF": "17", "sU": "31", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 5" }, { "date": "Oct 5, 1980", @@ -42423,7 +62377,12 @@ "sF": "24", "sU": "26", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "1980 Regular Season - Week 5" }, { "date": "Oct 6, 1980", @@ -42433,7 +62392,12 @@ "sF": "0", "sU": "23", "spread": "1", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 17.0, + "sF": 18.0 + }, + "week": "1980 Regular Season - Week 5" }, { "date": "Oct 12, 1980", @@ -42443,7 +62407,12 @@ "sF": "12", "sU": "17", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1980 Regular Season - Week 6" }, { "date": "Oct 12, 1980", @@ -42453,7 +62422,12 @@ "sF": "34", "sU": "0", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1980 Regular Season - Week 6" }, { "date": "Oct 12, 1980", @@ -42463,7 +62437,12 @@ "sF": "31", "sU": "16", "spread": "8", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.5, + "sF": 24.5 + }, + "week": "1980 Regular Season - Week 6" }, { "date": "Oct 12, 1980", @@ -42473,7 +62452,12 @@ "sF": "16", "sU": "17", "spread": "13", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 13.5, + "sF": 26.5 + }, + "week": "1980 Regular Season - Week 6" }, { "date": "Oct 12, 1980", @@ -42483,7 +62467,12 @@ "sF": "14", "sU": "14", "spread": "8", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 6" }, { "date": "Oct 12, 1980", @@ -42493,11 +62482,12 @@ "sF": "59", "sU": "14", "spread": "9", - "ou": "49", + "ou": 48.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 19.5, + "sF": 28.5 + }, + "week": "1980 Regular Season - Week 6" }, { "date": "Oct 12, 1980", @@ -42507,7 +62497,12 @@ "sF": "13", "sU": "7", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1980 Regular Season - Week 6" }, { "date": "Oct 12, 1980", @@ -42517,7 +62512,12 @@ "sF": "21", "sU": "13", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "1980 Regular Season - Week 6" }, { "date": "Oct 12, 1980", @@ -42527,7 +62527,12 @@ "sF": "7", "sU": "14", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "1980 Regular Season - Week 6" }, { "date": "Oct 12, 1980", @@ -42537,7 +62542,12 @@ "sF": "24", "sU": "13", "spread": "11", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.0, + "sF": 28.0 + }, + "week": "1980 Regular Season - Week 6" }, { "date": "Oct 12, 1980", @@ -42547,7 +62557,12 @@ "sF": "20", "sU": "21", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1980 Regular Season - Week 6" }, { "date": "Oct 12, 1980", @@ -42557,7 +62572,12 @@ "sF": "24", "sU": "38", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "1980 Regular Season - Week 6" }, { "date": "Oct 12, 1980", @@ -42567,7 +62587,12 @@ "sF": "3", "sU": "27", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 6" }, { "date": "Oct 13, 1980", @@ -42577,7 +62602,12 @@ "sF": "20", "sU": "17", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "1980 Regular Season - Week 6" }, { "date": "Oct 19, 1980", @@ -42587,7 +62617,12 @@ "sF": "14", "sU": "0", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1980 Regular Season - Week 7" }, { "date": "Oct 19, 1980", @@ -42597,7 +62632,12 @@ "sF": "26", "sU": "21", "spread": "9", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 7" }, { "date": "Oct 19, 1980", @@ -42607,7 +62647,12 @@ "sF": "14", "sU": "17", "spread": "2", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.5, + "sF": 18.5 + }, + "week": "1980 Regular Season - Week 7" }, { "date": "Oct 19, 1980", @@ -42617,7 +62662,12 @@ "sF": "17", "sU": "27", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1980 Regular Season - Week 7" }, { "date": "Oct 19, 1980", @@ -42627,7 +62677,12 @@ "sF": "17", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 7" }, { "date": "Oct 19, 1980", @@ -42637,7 +62692,12 @@ "sF": "23", "sU": "0", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "1980 Regular Season - Week 7" }, { "date": "Oct 19, 1980", @@ -42647,7 +62707,12 @@ "sF": "21", "sU": "37", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 7" }, { "date": "Oct 19, 1980", @@ -42657,7 +62722,12 @@ "sF": "7", "sU": "24", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1980 Regular Season - Week 7" }, { "date": "Oct 19, 1980", @@ -42667,7 +62737,12 @@ "sF": "17", "sU": "23", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 7" }, { "date": "Oct 19, 1980", @@ -42677,7 +62752,12 @@ "sF": "41", "sU": "14", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 7" }, { "date": "Oct 19, 1980", @@ -42687,7 +62767,12 @@ "sF": "20", "sU": "14", "spread": "9", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 12.5, + "sF": 21.5 + }, + "week": "1980 Regular Season - Week 7" }, { "date": "Oct 19, 1980", @@ -42697,7 +62782,12 @@ "sF": "44", "sU": "7", "spread": "15", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 16.0, + "sF": 31.0 + }, + "week": "1980 Regular Season - Week 7" }, { "date": "Oct 19, 1980", @@ -42707,11 +62797,12 @@ "sF": "31", "sU": "17", "spread": "9", - "ou": "49", + "ou": 50.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 20.5, + "sF": 29.5 + }, + "week": "1980 Regular Season - Week 7" }, { "date": "Oct 20, 1980", @@ -42721,7 +62812,12 @@ "sF": "34", "sU": "45", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "1980 Regular Season - Week 7" }, { "date": "Oct 26, 1980", @@ -42731,7 +62827,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 8" }, { "date": "Oct 26, 1980", @@ -42741,7 +62842,12 @@ "sF": "13", "sU": "31", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 8" }, { "date": "Oct 26, 1980", @@ -42751,7 +62857,12 @@ "sF": "26", "sU": "27", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 8" }, { "date": "Oct 26, 1980", @@ -42761,7 +62872,12 @@ "sF": "16", "sU": "3", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "1980 Regular Season - Week 8" }, { "date": "Oct 26, 1980", @@ -42771,7 +62887,12 @@ "sF": "14", "sU": "9", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 8" }, { "date": "Oct 26, 1980", @@ -42781,7 +62902,12 @@ "sF": "22", "sU": "14", "spread": "10", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.0, + "sF": 24.0 + }, + "week": "1980 Regular Season - Week 8" }, { "date": "Oct 26, 1980", @@ -42791,7 +62917,12 @@ "sF": "10", "sU": "17", "spread": "8", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.5, + "sF": 24.5 + }, + "week": "1980 Regular Season - Week 8" }, { "date": "Oct 26, 1980", @@ -42801,7 +62932,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1980 Regular Season - Week 8" }, { "date": "Oct 26, 1980", @@ -42811,7 +62947,12 @@ "sF": "23", "sU": "3", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "1980 Regular Season - Week 8" }, { "date": "Oct 26, 1980", @@ -42821,7 +62962,12 @@ "sF": "33", "sU": "14", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1980 Regular Season - Week 8" }, { "date": "Oct 26, 1980", @@ -42831,7 +62977,12 @@ "sF": "17", "sU": "14", "spread": "7", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 13.5, + "sF": 20.5 + }, + "week": "1980 Regular Season - Week 8" }, { "date": "Oct 26, 1980", @@ -42841,11 +62992,12 @@ "sF": "24", "sU": "23", "spread": "2", - "ou": "49", + "ou": 45.0, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 21.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 8" }, { "date": "Oct 26, 1980", @@ -42855,7 +63007,12 @@ "sF": "42", "sU": "31", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 8" }, { "date": "Oct 27, 1980", @@ -42865,7 +63022,12 @@ "sF": "17", "sU": "14", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1980 Regular Season - Week 8" }, { "date": "Nov 2, 1980", @@ -42875,7 +63037,12 @@ "sF": "14", "sU": "30", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1980 Regular Season - Week 9" }, { "date": "Nov 2, 1980", @@ -42885,7 +63052,12 @@ "sF": "31", "sU": "14", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 9" }, { "date": "Nov 2, 1980", @@ -42895,11 +63067,12 @@ "sF": "17", "sU": "13", "spread": "9", - "ou": "49", + "ou": 42.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 16.5, + "sF": 25.5 + }, + "week": "1980 Regular Season - Week 9" }, { "date": "Nov 2, 1980", @@ -42909,7 +63082,12 @@ "sF": "24", "sU": "31", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "1980 Regular Season - Week 9" }, { "date": "Nov 2, 1980", @@ -42919,7 +63097,12 @@ "sF": "22", "sU": "20", "spread": "13", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 14.0, + "sF": 27.0 + }, + "week": "1980 Regular Season - Week 9" }, { "date": "Nov 2, 1980", @@ -42929,7 +63112,12 @@ "sF": "30", "sU": "13", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 9" }, { "date": "Nov 2, 1980", @@ -42939,7 +63127,12 @@ "sF": "27", "sU": "24", "spread": "5", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 9" }, { "date": "Nov 2, 1980", @@ -42949,7 +63142,12 @@ "sF": "20", "sU": "16", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1980 Regular Season - Week 9" }, { "date": "Nov 2, 1980", @@ -42959,7 +63157,12 @@ "sF": "45", "sU": "31", "spread": "14", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 15.5, + "sF": 29.5 + }, + "week": "1980 Regular Season - Week 9" }, { "date": "Nov 2, 1980", @@ -42969,7 +63172,12 @@ "sF": "34", "sU": "21", "spread": "9", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.0, + "sF": 26.0 + }, + "week": "1980 Regular Season - Week 9" }, { "date": "Nov 2, 1980", @@ -42979,7 +63187,12 @@ "sF": "16", "sU": "10", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1980 Regular Season - Week 9" }, { "date": "Nov 2, 1980", @@ -42989,7 +63202,12 @@ "sF": "27", "sU": "20", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1980 Regular Season - Week 9" }, { "date": "Nov 2, 1980", @@ -42999,7 +63217,12 @@ "sF": "14", "sU": "39", "spread": "9", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 12.0, + "sF": 21.0 + }, + "week": "1980 Regular Season - Week 9" }, { "date": "Nov 3, 1980", @@ -43009,7 +63232,12 @@ "sF": "27", "sU": "21", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "1980 Regular Season - Week 9" }, { "date": "Nov 9, 1980", @@ -43019,7 +63247,12 @@ "sF": "35", "sU": "21", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "1980 Regular Season - Week 10" }, { "date": "Nov 9, 1980", @@ -43029,7 +63262,12 @@ "sF": "35", "sU": "38", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "1980 Regular Season - Week 10" }, { "date": "Nov 9, 1980", @@ -43039,7 +63277,12 @@ "sF": "24", "sU": "21", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1980 Regular Season - Week 10" }, { "date": "Nov 9, 1980", @@ -43049,7 +63292,12 @@ "sF": "27", "sU": "28", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 10" }, { "date": "Nov 9, 1980", @@ -43059,11 +63307,12 @@ "sF": "23", "sU": "16", "spread": "3", - "ou": "49", + "ou": 42.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 19.5, + "sF": 22.5 + }, + "week": "1980 Regular Season - Week 10" }, { "date": "Nov 9, 1980", @@ -43073,7 +63322,12 @@ "sF": "34", "sU": "0", "spread": "2", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.5, + "sF": 20.5 + }, + "week": "1980 Regular Season - Week 10" }, { "date": "Nov 9, 1980", @@ -43083,7 +63337,12 @@ "sF": "33", "sU": "27", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 10" }, { "date": "Nov 9, 1980", @@ -43093,7 +63352,12 @@ "sF": "14", "sU": "35", "spread": "11", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.0, + "sF": 26.0 + }, + "week": "1980 Regular Season - Week 10" }, { "date": "Nov 9, 1980", @@ -43103,7 +63367,12 @@ "sF": "34", "sU": "21", "spread": "9", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.0, + "sF": 26.0 + }, + "week": "1980 Regular Season - Week 10" }, { "date": "Nov 9, 1980", @@ -43113,7 +63382,12 @@ "sF": "31", "sU": "24", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1980 Regular Season - Week 10" }, { "date": "Nov 9, 1980", @@ -43123,7 +63397,12 @@ "sF": "28", "sU": "17", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1980 Regular Season - Week 10" }, { "date": "Nov 9, 1980", @@ -43133,7 +63412,12 @@ "sF": "13", "sU": "20", "spread": "9", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 18.0, + "sF": 27.0 + }, + "week": "1980 Regular Season - Week 10" }, { "date": "Nov 9, 1980", @@ -43143,7 +63427,12 @@ "sF": "30", "sU": "31", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1980 Regular Season - Week 10" }, { "date": "Nov 10, 1980", @@ -43153,7 +63442,12 @@ "sF": "38", "sU": "34", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 10" }, { "date": "Nov 16, 1980", @@ -43163,7 +63457,12 @@ "sF": "31", "sU": "13", "spread": "12", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 17.0, + "sF": 29.0 + }, + "week": "1980 Regular Season - Week 11" }, { "date": "Nov 16, 1980", @@ -43173,7 +63472,12 @@ "sF": "14", "sU": "0", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "1980 Regular Season - Week 11" }, { "date": "Nov 16, 1980", @@ -43183,7 +63487,12 @@ "sF": "10", "sU": "9", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1980 Regular Season - Week 11" }, { "date": "Nov 16, 1980", @@ -43193,7 +63502,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "1980 Regular Season - Week 11" }, { "date": "Nov 16, 1980", @@ -43203,7 +63517,12 @@ "sF": "21", "sU": "27", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1980 Regular Season - Week 11" }, { "date": "Nov 16, 1980", @@ -43213,7 +63532,12 @@ "sF": "16", "sU": "13", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "1980 Regular Season - Week 11" }, { "date": "Nov 16, 1980", @@ -43223,7 +63547,12 @@ "sF": "24", "sU": "0", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 11" }, { "date": "Nov 16, 1980", @@ -43233,7 +63562,12 @@ "sF": "31", "sU": "21", "spread": "9", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.5, + "sF": 26.5 + }, + "week": "1980 Regular Season - Week 11" }, { "date": "Nov 16, 1980", @@ -43243,7 +63577,12 @@ "sF": "38", "sU": "30", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1980 Regular Season - Week 11" }, { "date": "Nov 16, 1980", @@ -43253,7 +63592,12 @@ "sF": "10", "sU": "6", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1980 Regular Season - Week 11" }, { "date": "Nov 16, 1980", @@ -43263,7 +63607,12 @@ "sF": "31", "sU": "24", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 11" }, { "date": "Nov 16, 1980", @@ -43273,11 +63622,12 @@ "sF": "17", "sU": "13", "spread": "8", - "ou": "49", + "ou": 43.0, "pScore": { - "sU": 20.5, - "sF": 28.5 - } + "sU": 17.5, + "sF": 25.5 + }, + "week": "1980 Regular Season - Week 11" }, { "date": "Nov 16, 1980", @@ -43287,7 +63637,12 @@ "sF": "20", "sU": "7", "spread": "8", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.0, + "sF": 27.0 + }, + "week": "1980 Regular Season - Week 11" }, { "date": "Nov 17, 1980", @@ -43297,7 +63652,12 @@ "sF": "19", "sU": "17", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1980 Regular Season - Week 11" }, { "date": "Nov 20, 1980", @@ -43307,7 +63667,12 @@ "sF": "27", "sU": "24", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 12" }, { "date": "Nov 23, 1980", @@ -43317,7 +63682,12 @@ "sF": "28", "sU": "17", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1980 Regular Season - Week 12" }, { "date": "Nov 23, 1980", @@ -43327,7 +63697,12 @@ "sF": "13", "sU": "28", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 12" }, { "date": "Nov 23, 1980", @@ -43337,7 +63712,12 @@ "sF": "31", "sU": "7", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 12" }, { "date": "Nov 23, 1980", @@ -43347,7 +63727,12 @@ "sF": "47", "sU": "21", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "1980 Regular Season - Week 12" }, { "date": "Nov 23, 1980", @@ -43357,7 +63742,12 @@ "sF": "28", "sU": "31", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 12" }, { "date": "Nov 23, 1980", @@ -43367,7 +63757,12 @@ "sF": "10", "sU": "7", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1980 Regular Season - Week 12" }, { "date": "Nov 23, 1980", @@ -43377,7 +63772,12 @@ "sF": "10", "sU": "24", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1980 Regular Season - Week 12" }, { "date": "Nov 23, 1980", @@ -43387,7 +63787,12 @@ "sF": "13", "sU": "25", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1980 Regular Season - Week 12" }, { "date": "Nov 23, 1980", @@ -43397,7 +63802,12 @@ "sF": "13", "sU": "21", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 12" }, { "date": "Nov 23, 1980", @@ -43407,7 +63817,12 @@ "sF": "14", "sU": "10", "spread": "12", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 15.0, + "sF": 27.0 + }, + "week": "1980 Regular Season - Week 12" }, { "date": "Nov 23, 1980", @@ -43417,7 +63832,12 @@ "sF": "36", "sU": "20", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 12" }, { "date": "Nov 23, 1980", @@ -43427,7 +63847,12 @@ "sF": "12", "sU": "0", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "1980 Regular Season - Week 12" }, { "date": "Nov 24, 1980", @@ -43437,7 +63862,12 @@ "sF": "27", "sU": "7", "spread": "10", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 18.5, + "sF": 28.5 + }, + "week": "1980 Regular Season - Week 12" }, { "date": "Nov 27, 1980", @@ -43447,7 +63877,12 @@ "sF": "17", "sU": "23", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1980 Regular Season - Week 13" }, { "date": "Nov 27, 1980", @@ -43457,7 +63892,12 @@ "sF": "51", "sU": "7", "spread": "10", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 19.0, + "sF": 29.0 + }, + "week": "1980 Regular Season - Week 13" }, { "date": "Nov 30, 1980", @@ -43467,7 +63907,12 @@ "sF": "10", "sU": "6", "spread": "10", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.0, + "sF": 25.0 + }, + "week": "1980 Regular Season - Week 13" }, { "date": "Nov 30, 1980", @@ -43477,7 +63922,12 @@ "sF": "23", "sU": "7", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "1980 Regular Season - Week 13" }, { "date": "Nov 30, 1980", @@ -43487,7 +63937,12 @@ "sF": "23", "sU": "10", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 13" }, { "date": "Nov 30, 1980", @@ -43497,7 +63952,12 @@ "sF": "24", "sU": "28", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1980 Regular Season - Week 13" }, { "date": "Nov 30, 1980", @@ -43507,7 +63967,12 @@ "sF": "17", "sU": "20", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1980 Regular Season - Week 13" }, { "date": "Nov 30, 1980", @@ -43517,7 +63982,12 @@ "sF": "6", "sU": "20", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1980 Regular Season - Week 13" }, { "date": "Nov 30, 1980", @@ -43527,7 +63997,12 @@ "sF": "23", "sU": "20", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1980 Regular Season - Week 13" }, { "date": "Nov 30, 1980", @@ -43537,7 +64012,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1980 Regular Season - Week 13" }, { "date": "Nov 30, 1980", @@ -43547,7 +64027,12 @@ "sF": "38", "sU": "13", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "1980 Regular Season - Week 13" }, { "date": "Nov 30, 1980", @@ -43557,7 +64042,12 @@ "sF": "22", "sU": "21", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1980 Regular Season - Week 13" }, { "date": "Nov 30, 1980", @@ -43567,11 +64057,12 @@ "sF": "17", "sU": "21", "spread": "7", - "ou": "49", + "ou": 48.0, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 20.5, + "sF": 27.5 + }, + "week": "1980 Regular Season - Week 13" }, { "date": "Dec 1, 1980", @@ -43581,7 +64072,12 @@ "sF": "9", "sU": "3", "spread": "5", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 13" }, { "date": "Dec 4, 1980", @@ -43591,7 +64087,12 @@ "sF": "6", "sU": "0", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1980 Regular Season - Week 14" }, { "date": "Dec 7, 1980", @@ -43601,7 +64102,12 @@ "sF": "33", "sU": "34", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1980 Regular Season - Week 14" }, { "date": "Dec 7, 1980", @@ -43611,7 +64117,12 @@ "sF": "17", "sU": "14", "spread": "9", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.0, + "sF": 26.0 + }, + "week": "1980 Regular Season - Week 14" }, { "date": "Dec 7, 1980", @@ -43621,7 +64132,12 @@ "sF": "17", "sU": "20", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 14" }, { "date": "Dec 7, 1980", @@ -43631,7 +64147,12 @@ "sF": "10", "sU": "21", "spread": "2", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.5, + "sF": 20.5 + }, + "week": "1980 Regular Season - Week 14" }, { "date": "Dec 7, 1980", @@ -43641,7 +64162,12 @@ "sF": "17", "sU": "40", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 14" }, { "date": "Dec 7, 1980", @@ -43651,7 +64177,12 @@ "sF": "61", "sU": "7", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "1980 Regular Season - Week 14" }, { "date": "Dec 7, 1980", @@ -43661,7 +64192,12 @@ "sF": "24", "sU": "23", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1980 Regular Season - Week 14" }, { "date": "Dec 7, 1980", @@ -43671,7 +64207,12 @@ "sF": "14", "sU": "31", "spread": "2", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.5, + "sF": 20.5 + }, + "week": "1980 Regular Season - Week 14" }, { "date": "Dec 7, 1980", @@ -43681,7 +64222,12 @@ "sF": "19", "sU": "13", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 14" }, { "date": "Dec 7, 1980", @@ -43691,7 +64237,12 @@ "sF": "38", "sU": "35", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "1980 Regular Season - Week 14" }, { "date": "Dec 7, 1980", @@ -43701,7 +64252,12 @@ "sF": "21", "sU": "27", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1980 Regular Season - Week 14" }, { "date": "Dec 8, 1980", @@ -43711,7 +64267,12 @@ "sF": "13", "sU": "16", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 14" }, { "date": "Dec 13, 1980", @@ -43721,7 +64282,12 @@ "sF": "16", "sU": "13", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 15" }, { "date": "Dec 13, 1980", @@ -43731,7 +64297,12 @@ "sF": "21", "sU": "14", "spread": "11", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 17.5, + "sF": 28.5 + }, + "week": "1980 Regular Season - Week 15" }, { "date": "Dec 14, 1980", @@ -43741,11 +64312,12 @@ "sF": "35", "sU": "10", "spread": "9", - "ou": "49", + "ou": 45.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 18.0, + "sF": 27.0 + }, + "week": "1980 Regular Season - Week 15" }, { "date": "Dec 14, 1980", @@ -43755,7 +64327,12 @@ "sF": "22", "sU": "3", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1980 Regular Season - Week 15" }, { "date": "Dec 14, 1980", @@ -43765,7 +64342,12 @@ "sF": "23", "sU": "28", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1980 Regular Season - Week 15" }, { "date": "Dec 14, 1980", @@ -43775,7 +64357,12 @@ "sF": "24", "sU": "2", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1980 Regular Season - Week 15" }, { "date": "Dec 14, 1980", @@ -43785,7 +64372,12 @@ "sF": "20", "sU": "21", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "1980 Regular Season - Week 15" }, { "date": "Dec 14, 1980", @@ -43795,7 +64387,12 @@ "sF": "17", "sU": "3", "spread": "9", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.0, + "sF": 24.0 + }, + "week": "1980 Regular Season - Week 15" }, { "date": "Dec 14, 1980", @@ -43805,7 +64402,12 @@ "sF": "21", "sU": "16", "spread": "8", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.5, + "sF": 24.5 + }, + "week": "1980 Regular Season - Week 15" }, { "date": "Dec 14, 1980", @@ -43815,7 +64417,12 @@ "sF": "14", "sU": "17", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "1980 Regular Season - Week 15" }, { "date": "Dec 14, 1980", @@ -43825,7 +64432,12 @@ "sF": "14", "sU": "24", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1980 Regular Season - Week 15" }, { "date": "Dec 14, 1980", @@ -43835,7 +64447,12 @@ "sF": "24", "sU": "21", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1980 Regular Season - Week 15" }, { "date": "Dec 14, 1980", @@ -43845,7 +64462,12 @@ "sF": "27", "sU": "14", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1980 Regular Season - Week 15" }, { "date": "Dec 15, 1980", @@ -43855,7 +64477,12 @@ "sF": "14", "sU": "38", "spread": "2", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.0, + "sF": 24.0 + }, + "week": "1980 Regular Season - Week 15" }, { "date": "Dec 20, 1980", @@ -43865,7 +64492,12 @@ "sF": "17", "sU": "24", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1980 Regular Season - Week 16" }, { "date": "Dec 20, 1980", @@ -43875,7 +64507,12 @@ "sF": "14", "sU": "13", "spread": "1", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 17.0, + "sF": 18.0 + }, + "week": "1980 Regular Season - Week 16" }, { "date": "Dec 21, 1980", @@ -43885,7 +64522,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1980 Regular Season - Week 16" }, { "date": "Dec 21, 1980", @@ -43895,7 +64537,12 @@ "sF": "24", "sU": "3", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 16" }, { "date": "Dec 21, 1980", @@ -43905,7 +64552,12 @@ "sF": "20", "sU": "16", "spread": "10", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 16" }, { "date": "Dec 21, 1980", @@ -43915,7 +64567,12 @@ "sF": "38", "sU": "27", "spread": "9", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 19.5, + "sF": 28.5 + }, + "week": "1980 Regular Season - Week 16" }, { "date": "Dec 21, 1980", @@ -43925,7 +64582,12 @@ "sF": "33", "sU": "17", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "1980 Regular Season - Week 16" }, { "date": "Dec 21, 1980", @@ -43935,7 +64597,12 @@ "sF": "7", "sU": "31", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1980 Regular Season - Week 16" }, { "date": "Dec 21, 1980", @@ -43945,7 +64612,12 @@ "sF": "28", "sU": "38", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1980 Regular Season - Week 16" }, { "date": "Dec 21, 1980", @@ -43955,7 +64627,12 @@ "sF": "35", "sU": "27", "spread": "5", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 16" }, { "date": "Dec 21, 1980", @@ -43965,7 +64642,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1980 Regular Season - Week 16" }, { "date": "Dec 21, 1980", @@ -43975,11 +64657,12 @@ "sF": "18", "sU": "13", "spread": "6", - "ou": "49", + "ou": 42.0, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 18.0, + "sF": 24.0 + }, + "week": "1980 Regular Season - Week 16" }, { "date": "Dec 21, 1980", @@ -43989,7 +64672,12 @@ "sF": "17", "sU": "25", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1980 Regular Season - Week 16" }, { "date": "Dec 22, 1980", @@ -43999,7 +64687,12 @@ "sF": "26", "sU": "17", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1980 Regular Season - Week 16" }, { "date": "Dec 28, 1980", @@ -44009,7 +64702,12 @@ "sF": "34", "sU": "13", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1980 Playoffs" }, { "date": "Dec 28, 1980", @@ -44019,7 +64717,12 @@ "sF": "7", "sU": "27", "spread": "1", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.5, + "sF": 19.5 + }, + "week": "1980 Playoffs" }, { "date": "Jan 3, 1981", @@ -44029,7 +64732,12 @@ "sF": "31", "sU": "16", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1980 Playoffs" }, { "date": "Jan 3, 1981", @@ -44039,7 +64747,12 @@ "sF": "20", "sU": "14", "spread": "6", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 16.25, + "sF": 22.25 + }, + "week": "1980 Playoffs" }, { "date": "Jan 4, 1981", @@ -44048,8 +64761,13 @@ "und": "Oakland Raiders (4)", "sF": "12", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "1980 Playoffs" }, { "date": "Jan 4, 1981", @@ -44058,8 +64776,13 @@ "und": "Dallas Cowboys (4)", "sF": "27", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "1980 Playoffs" }, { "date": "Jan 11, 1981", @@ -44069,7 +64792,12 @@ "sF": "7", "sU": "20", "spread": "1", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 19.25, + "sF": 20.25 + }, + "week": "1980 Playoffs" }, { "date": "Jan 11, 1981", @@ -44079,7 +64807,12 @@ "sF": "27", "sU": "34", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1980 Playoffs" }, { "date": "Jan 25, 1981", @@ -44089,7 +64822,12 @@ "sF": "10", "sU": "27", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "1980 Playoffs" }, { "date": "Sep 5, 1981", @@ -44099,7 +64837,12 @@ "sF": "21", "sU": "13", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1981 Regular Season - Week 1" }, { "date": "Sep 6, 1981", @@ -44109,7 +64852,12 @@ "sF": "27", "sU": "0", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "1981 Regular Season - Week 1" }, { "date": "Sep 6, 1981", @@ -44119,7 +64867,12 @@ "sF": "27", "sU": "21", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1981 Regular Season - Week 1" }, { "date": "Sep 6, 1981", @@ -44129,11 +64882,12 @@ "sF": "24", "sU": "17", "spread": "4", - "ou": "49", + "ou": 40.0, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sU": 18.0, + "sF": 22.0 + }, + "week": "1981 Regular Season - Week 1" }, { "date": "Sep 6, 1981", @@ -44143,7 +64897,12 @@ "sF": "28", "sU": "29", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "1981 Regular Season - Week 1" }, { "date": "Sep 6, 1981", @@ -44153,7 +64912,12 @@ "sF": "24", "sU": "10", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1981 Regular Season - Week 1" }, { "date": "Sep 6, 1981", @@ -44163,7 +64927,12 @@ "sF": "33", "sU": "37", "spread": "10", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.5, + "sF": 23.5 + }, + "week": "1981 Regular Season - Week 1" }, { "date": "Sep 6, 1981", @@ -44173,7 +64942,12 @@ "sF": "26", "sU": "10", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1981 Regular Season - Week 1" }, { "date": "Sep 6, 1981", @@ -44183,7 +64957,12 @@ "sF": "9", "sU": "16", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1981 Regular Season - Week 1" }, { "date": "Sep 6, 1981", @@ -44193,7 +64972,12 @@ "sF": "31", "sU": "0", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1981 Regular Season - Week 1" }, { "date": "Sep 6, 1981", @@ -44203,7 +64987,12 @@ "sF": "7", "sU": "9", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1981 Regular Season - Week 1" }, { "date": "Sep 6, 1981", @@ -44213,7 +65002,12 @@ "sF": "20", "sU": "27", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1981 Regular Season - Week 1" }, { "date": "Sep 7, 1981", @@ -44223,7 +65017,12 @@ "sF": "14", "sU": "44", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "1981 Regular Season - Week 1" }, { "date": "Sep 10, 1981", @@ -44233,7 +65032,12 @@ "sF": "30", "sU": "10", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1981 Regular Season - Week 2" }, { "date": "Sep 13, 1981", @@ -44243,7 +65047,12 @@ "sF": "3", "sU": "9", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "1981 Regular Season - Week 2" }, { "date": "Sep 13, 1981", @@ -44253,7 +65062,12 @@ "sF": "31", "sU": "17", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "1981 Regular Season - Week 2" }, { "date": "Sep 13, 1981", @@ -44263,7 +65077,12 @@ "sF": "19", "sU": "10", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1981 Regular Season - Week 2" }, { "date": "Sep 13, 1981", @@ -44273,7 +65092,12 @@ "sF": "17", "sU": "23", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1981 Regular Season - Week 2" }, { "date": "Sep 13, 1981", @@ -44283,7 +65107,12 @@ "sF": "7", "sU": "17", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1981 Regular Season - Week 2" }, { "date": "Sep 13, 1981", @@ -44293,7 +65122,12 @@ "sF": "35", "sU": "3", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "1981 Regular Season - Week 2" }, { "date": "Sep 13, 1981", @@ -44303,7 +65137,12 @@ "sF": "30", "sU": "17", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "1981 Regular Season - Week 2" }, { "date": "Sep 13, 1981", @@ -44312,8 +65151,13 @@ "und": "Cincinnati Bengals", "sF": "30", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1981 Regular Season - Week 2" }, { "date": "Sep 13, 1981", @@ -44322,8 +65166,13 @@ "und": "New England Patriots", "sF": "13", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1981 Regular Season - Week 2" }, { "date": "Sep 13, 1981", @@ -44333,7 +65182,12 @@ "sF": "28", "sU": "23", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1981 Regular Season - Week 2" }, { "date": "Sep 14, 1981", @@ -44343,7 +65197,12 @@ "sF": "36", "sU": "10", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1981 Regular Season - Week 2" }, { "date": "Sep 17, 1981", @@ -44353,7 +65212,12 @@ "sF": "14", "sU": "20", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1981 Regular Season - Week 3" }, { "date": "Sep 20, 1981", @@ -44363,11 +65227,12 @@ "sF": "34", "sU": "17", "spread": "9", - "ou": "49", + "ou": 41.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 16.0, + "sF": 25.0 + }, + "week": "1981 Regular Season - Week 3" }, { "date": "Sep 20, 1981", @@ -44377,7 +65242,12 @@ "sF": "17", "sU": "20", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1981 Regular Season - Week 3" }, { "date": "Sep 20, 1981", @@ -44387,7 +65257,12 @@ "sF": "10", "sU": "16", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1981 Regular Season - Week 3" }, { "date": "Sep 20, 1981", @@ -44396,8 +65271,13 @@ "und": "Minnesota Vikings", "sF": "24", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1981 Regular Season - Week 3" }, { "date": "Sep 20, 1981", @@ -44406,8 +65286,13 @@ "und": "New York Jets", "sF": "38", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "1981 Regular Season - Week 3" }, { "date": "Sep 20, 1981", @@ -44417,7 +65302,12 @@ "sF": "40", "sU": "30", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1981 Regular Season - Week 3" }, { "date": "Sep 20, 1981", @@ -44427,7 +65317,12 @@ "sF": "28", "sU": "17", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1981 Regular Season - Week 3" }, { "date": "Sep 20, 1981", @@ -44437,7 +65332,12 @@ "sF": "42", "sU": "31", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1981 Regular Season - Week 3" }, { "date": "Sep 20, 1981", @@ -44447,7 +65347,12 @@ "sF": "28", "sU": "10", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1981 Regular Season - Week 3" }, { "date": "Sep 20, 1981", @@ -44457,7 +65362,12 @@ "sF": "35", "sU": "23", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1981 Regular Season - Week 3" }, { "date": "Sep 20, 1981", @@ -44467,7 +65377,12 @@ "sF": "20", "sU": "7", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1981 Regular Season - Week 3" }, { "date": "Sep 20, 1981", @@ -44477,7 +65392,12 @@ "sF": "20", "sU": "10", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "1981 Regular Season - Week 3" }, { "date": "Sep 21, 1981", @@ -44487,7 +65407,12 @@ "sF": "35", "sU": "21", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1981 Regular Season - Week 3" }, { "date": "Sep 27, 1981", @@ -44497,7 +65422,12 @@ "sF": "24", "sU": "27", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "1981 Regular Season - Week 4" }, { "date": "Sep 27, 1981", @@ -44507,7 +65437,12 @@ "sF": "17", "sU": "28", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "1981 Regular Season - Week 4" }, { "date": "Sep 27, 1981", @@ -44517,7 +65452,12 @@ "sF": "0", "sU": "16", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1981 Regular Season - Week 4" }, { "date": "Sep 27, 1981", @@ -44527,7 +65467,12 @@ "sF": "17", "sU": "33", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1981 Regular Season - Week 4" }, { "date": "Sep 27, 1981", @@ -44537,7 +65482,12 @@ "sF": "36", "sU": "13", "spread": "9", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.0, + "sF": 23.0 + }, + "week": "1981 Regular Season - Week 4" }, { "date": "Sep 27, 1981", @@ -44547,7 +65497,12 @@ "sF": "27", "sU": "21", "spread": "4", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.0, + "sF": 25.0 + }, + "week": "1981 Regular Season - Week 4" }, { "date": "Sep 27, 1981", @@ -44557,7 +65512,12 @@ "sF": "31", "sU": "28", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1981 Regular Season - Week 4" }, { "date": "Sep 27, 1981", @@ -44567,7 +65527,12 @@ "sF": "13", "sU": "30", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1981 Regular Season - Week 4" }, { "date": "Sep 27, 1981", @@ -44577,7 +65542,12 @@ "sF": "18", "sU": "10", "spread": "11", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 14.5, + "sF": 25.5 + }, + "week": "1981 Regular Season - Week 4" }, { "date": "Sep 27, 1981", @@ -44587,7 +65557,12 @@ "sF": "24", "sU": "42", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1981 Regular Season - Week 4" }, { "date": "Sep 27, 1981", @@ -44597,7 +65572,12 @@ "sF": "21", "sU": "14", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1981 Regular Season - Week 4" }, { "date": "Sep 27, 1981", @@ -44607,7 +65587,12 @@ "sF": "14", "sU": "20", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1981 Regular Season - Week 4" }, { "date": "Sep 27, 1981", @@ -44617,7 +65602,12 @@ "sF": "20", "sU": "10", "spread": "1", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.5, + "sF": 19.5 + }, + "week": "1981 Regular Season - Week 4" }, { "date": "Sep 28, 1981", @@ -44627,7 +65617,12 @@ "sF": "24", "sU": "7", "spread": "1", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.5, + "sF": 19.5 + }, + "week": "1981 Regular Season - Week 4" }, { "date": "Oct 4, 1981", @@ -44637,7 +65632,12 @@ "sF": "23", "sU": "17", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1981 Regular Season - Week 5" }, { "date": "Oct 4, 1981", @@ -44647,7 +65647,12 @@ "sF": "24", "sU": "21", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "1981 Regular Season - Week 5" }, { "date": "Oct 4, 1981", @@ -44657,7 +65662,12 @@ "sF": "33", "sU": "17", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "1981 Regular Season - Week 5" }, { "date": "Oct 4, 1981", @@ -44667,7 +65677,12 @@ "sF": "14", "sU": "27", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1981 Regular Season - Week 5" }, { "date": "Oct 4, 1981", @@ -44676,8 +65691,13 @@ "und": "St Louis Cardinals", "sF": "17", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "1981 Regular Season - Week 5" }, { "date": "Oct 4, 1981", @@ -44687,11 +65707,12 @@ "sF": "17", "sU": "30", "spread": "2", - "ou": "49", + "ou": 43.0, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 20.5, + "sF": 22.5 + }, + "week": "1981 Regular Season - Week 5" }, { "date": "Oct 4, 1981", @@ -44700,8 +65721,13 @@ "und": "Cincinnati Bengals", "sF": "17", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1981 Regular Season - Week 5" }, { "date": "Oct 4, 1981", @@ -44711,7 +65737,12 @@ "sF": "20", "sU": "6", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "1981 Regular Season - Week 5" }, { "date": "Oct 4, 1981", @@ -44720,8 +65751,13 @@ "und": "Cleveland Browns", "sF": "27", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1981 Regular Season - Week 5" }, { "date": "Oct 4, 1981", @@ -44731,7 +65767,12 @@ "sF": "28", "sU": "28", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1981 Regular Season - Week 5" }, { "date": "Oct 4, 1981", @@ -44741,7 +65782,12 @@ "sF": "0", "sU": "17", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1981 Regular Season - Week 5" }, { "date": "Oct 4, 1981", @@ -44751,7 +65797,12 @@ "sF": "24", "sU": "10", "spread": "9", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.5, + "sF": 27.5 + }, + "week": "1981 Regular Season - Week 5" }, { "date": "Oct 4, 1981", @@ -44761,7 +65812,12 @@ "sF": "28", "sU": "10", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "1981 Regular Season - Week 5" }, { "date": "Oct 5, 1981", @@ -44771,7 +65827,12 @@ "sF": "16", "sU": "13", "spread": "2", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.5, + "sF": 20.5 + }, + "week": "1981 Regular Season - Week 5" }, { "date": "Oct 11, 1981", @@ -44781,7 +65842,12 @@ "sF": "35", "sU": "37", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1981 Regular Season - Week 6" }, { "date": "Oct 11, 1981", @@ -44791,7 +65857,12 @@ "sF": "31", "sU": "14", "spread": "9", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.0, + "sF": 23.0 + }, + "week": "1981 Regular Season - Week 6" }, { "date": "Oct 11, 1981", @@ -44800,8 +65871,13 @@ "und": "New York Jets", "sF": "24", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "1981 Regular Season - Week 6" }, { "date": "Oct 11, 1981", @@ -44810,8 +65886,13 @@ "und": "Cleveland Browns", "sF": "13", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "1981 Regular Season - Week 6" }, { "date": "Oct 11, 1981", @@ -44821,7 +65902,12 @@ "sF": "19", "sU": "41", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1981 Regular Season - Week 6" }, { "date": "Oct 11, 1981", @@ -44831,7 +65917,12 @@ "sF": "7", "sU": "24", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1981 Regular Season - Week 6" }, { "date": "Oct 11, 1981", @@ -44841,7 +65932,12 @@ "sF": "10", "sU": "21", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1981 Regular Season - Week 6" }, { "date": "Oct 11, 1981", @@ -44851,7 +65947,12 @@ "sF": "35", "sU": "17", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1981 Regular Season - Week 6" }, { "date": "Oct 11, 1981", @@ -44861,7 +65962,12 @@ "sF": "0", "sU": "27", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1981 Regular Season - Week 6" }, { "date": "Oct 11, 1981", @@ -44871,7 +65977,12 @@ "sF": "27", "sU": "21", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1981 Regular Season - Week 6" }, { "date": "Oct 11, 1981", @@ -44881,7 +65992,12 @@ "sF": "34", "sU": "14", "spread": "1", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.5, + "sF": 19.5 + }, + "week": "1981 Regular Season - Week 6" }, { "date": "Oct 11, 1981", @@ -44891,7 +66007,12 @@ "sF": "31", "sU": "33", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "1981 Regular Season - Week 6" }, { "date": "Oct 11, 1981", @@ -44901,11 +66022,12 @@ "sF": "14", "sU": "45", "spread": "5", - "ou": "49", + "ou": 45.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 20.0, + "sF": 25.0 + }, + "week": "1981 Regular Season - Week 6" }, { "date": "Oct 12, 1981", @@ -44915,7 +66037,12 @@ "sF": "31", "sU": "21", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "1981 Regular Season - Week 6" }, { "date": "Oct 18, 1981", @@ -44925,7 +66052,12 @@ "sF": "41", "sU": "20", "spread": "8", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 18.5, + "sF": 26.5 + }, + "week": "1981 Regular Season - Week 7" }, { "date": "Oct 18, 1981", @@ -44935,7 +66067,12 @@ "sF": "7", "sU": "34", "spread": "1", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 22.0, + "sF": 23.0 + }, + "week": "1981 Regular Season - Week 7" }, { "date": "Oct 18, 1981", @@ -44945,7 +66082,12 @@ "sF": "20", "sU": "17", "spread": "11", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.0, + "sF": 26.0 + }, + "week": "1981 Regular Season - Week 7" }, { "date": "Oct 18, 1981", @@ -44955,7 +66097,12 @@ "sF": "13", "sU": "3", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "1981 Regular Season - Week 7" }, { "date": "Oct 18, 1981", @@ -44965,7 +66112,12 @@ "sF": "13", "sU": "10", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "1981 Regular Season - Week 7" }, { "date": "Oct 18, 1981", @@ -44974,8 +66126,13 @@ "und": "Minnesota Vikings", "sF": "23", "sU": "35", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1981 Regular Season - Week 7" }, { "date": "Oct 18, 1981", @@ -44984,8 +66141,13 @@ "und": "Houston Oilers", "sF": "38", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1981 Regular Season - Week 7" }, { "date": "Oct 18, 1981", @@ -44995,7 +66157,12 @@ "sF": "14", "sU": "33", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "1981 Regular Season - Week 7" }, { "date": "Oct 18, 1981", @@ -45004,8 +66171,13 @@ "und": "Baltimore Colts", "sF": "43", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 51.0, + "pScore": { + "sU": 23.25, + "sF": 27.75 + }, + "week": "1981 Regular Season - Week 7" }, { "date": "Oct 18, 1981", @@ -45015,7 +66187,12 @@ "sF": "18", "sU": "16", "spread": "4", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.5, + "sF": 19.5 + }, + "week": "1981 Regular Season - Week 7" }, { "date": "Oct 18, 1981", @@ -45025,7 +66202,12 @@ "sF": "0", "sU": "32", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "1981 Regular Season - Week 7" }, { "date": "Oct 18, 1981", @@ -45035,7 +66217,12 @@ "sF": "29", "sU": "17", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1981 Regular Season - Week 7" }, { "date": "Oct 19, 1981", @@ -45045,7 +66232,12 @@ "sF": "48", "sU": "17", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "1981 Regular Season - Week 7" }, { "date": "Oct 25, 1981", @@ -45055,7 +66247,12 @@ "sF": "24", "sU": "27", "spread": "8", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.5, + "sF": 25.5 + }, + "week": "1981 Regular Season - Week 8" }, { "date": "Oct 25, 1981", @@ -45065,7 +66262,12 @@ "sF": "9", "sU": "7", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "1981 Regular Season - Week 8" }, { "date": "Oct 25, 1981", @@ -45075,7 +66277,12 @@ "sF": "42", "sU": "28", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "1981 Regular Season - Week 8" }, { "date": "Oct 25, 1981", @@ -45084,8 +66291,13 @@ "und": "Green Bay Packers", "sF": "31", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "1981 Regular Season - Week 8" }, { "date": "Oct 25, 1981", @@ -45094,8 +66306,13 @@ "und": "Tampa Bay Buccaneers", "sF": "20", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 37.0, + "pScore": { + "sU": 13.75, + "sF": 23.25 + }, + "week": "1981 Regular Season - Week 8" }, { "date": "Oct 25, 1981", @@ -45104,8 +66321,13 @@ "und": "St Louis Cardinals", "sF": "17", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 50.0, + "pScore": { + "sU": 23.75, + "sF": 26.25 + }, + "week": "1981 Regular Season - Week 8" }, { "date": "Oct 25, 1981", @@ -45115,7 +66337,12 @@ "sF": "22", "sU": "24", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1981 Regular Season - Week 8" }, { "date": "Oct 25, 1981", @@ -45125,7 +66352,12 @@ "sF": "7", "sU": "17", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1981 Regular Season - Week 8" }, { "date": "Oct 25, 1981", @@ -45135,7 +66367,12 @@ "sF": "17", "sU": "20", "spread": "11", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 18.0, + "sF": 29.0 + }, + "week": "1981 Regular Season - Week 8" }, { "date": "Oct 25, 1981", @@ -45145,7 +66382,12 @@ "sF": "28", "sU": "27", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1981 Regular Season - Week 8" }, { "date": "Oct 25, 1981", @@ -45155,7 +66397,12 @@ "sF": "3", "sU": "19", "spread": "9", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 18.0, + "sF": 27.0 + }, + "week": "1981 Regular Season - Week 8" }, { "date": "Oct 25, 1981", @@ -45165,7 +66412,12 @@ "sF": "17", "sU": "28", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1981 Regular Season - Week 8" }, { "date": "Oct 25, 1981", @@ -45175,7 +66427,12 @@ "sF": "20", "sU": "17", "spread": "1", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.5, + "sF": 23.5 + }, + "week": "1981 Regular Season - Week 8" }, { "date": "Oct 26, 1981", @@ -45184,8 +66441,13 @@ "und": "Houston Oilers", "sF": "26", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "1981 Regular Season - Week 8" }, { "date": "Nov 1, 1981", @@ -45195,7 +66457,12 @@ "sF": "22", "sU": "13", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "1981 Regular Season - Week 9" }, { "date": "Nov 1, 1981", @@ -45205,7 +66472,12 @@ "sF": "34", "sU": "21", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1981 Regular Season - Week 9" }, { "date": "Nov 1, 1981", @@ -45215,7 +66487,12 @@ "sF": "27", "sU": "10", "spread": "7", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.5, + "sF": 27.5 + }, + "week": "1981 Regular Season - Week 9" }, { "date": "Nov 1, 1981", @@ -45224,8 +66501,13 @@ "und": "New Orleans Saints", "sF": "41", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1981 Regular Season - Week 9" }, { "date": "Nov 1, 1981", @@ -45235,7 +66517,12 @@ "sF": "7", "sU": "26", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "1981 Regular Season - Week 9" }, { "date": "Nov 1, 1981", @@ -45245,11 +66532,12 @@ "sF": "14", "sU": "17", "spread": "5", - "ou": "49", + "ou": 45.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 20.0, + "sF": 25.0 + }, + "week": "1981 Regular Season - Week 9" }, { "date": "Nov 1, 1981", @@ -45259,7 +66547,12 @@ "sF": "20", "sU": "10", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "1981 Regular Season - Week 9" }, { "date": "Nov 1, 1981", @@ -45269,7 +66562,12 @@ "sF": "34", "sU": "24", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "1981 Regular Season - Week 9" }, { "date": "Nov 1, 1981", @@ -45279,7 +66577,12 @@ "sF": "20", "sU": "13", "spread": "6", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.5, + "sF": 26.5 + }, + "week": "1981 Regular Season - Week 9" }, { "date": "Nov 1, 1981", @@ -45289,7 +66592,12 @@ "sF": "27", "sU": "17", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "1981 Regular Season - Week 9" }, { "date": "Nov 1, 1981", @@ -45299,7 +66607,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1981 Regular Season - Week 9" }, { "date": "Nov 1, 1981", @@ -45309,7 +66622,12 @@ "sF": "22", "sU": "20", "spread": "6", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.5, + "sF": 27.5 + }, + "week": "1981 Regular Season - Week 9" }, { "date": "Nov 1, 1981", @@ -45319,7 +66637,12 @@ "sF": "42", "sU": "21", "spread": "4", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.0, + "sF": 25.0 + }, + "week": "1981 Regular Season - Week 9" }, { "date": "Nov 2, 1981", @@ -45329,7 +66652,12 @@ "sF": "19", "sU": "17", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1981 Regular Season - Week 9" }, { "date": "Nov 8, 1981", @@ -45339,7 +66667,12 @@ "sF": "26", "sU": "24", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1981 Regular Season - Week 10" }, { "date": "Nov 8, 1981", @@ -45349,7 +66682,12 @@ "sF": "25", "sU": "10", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "1981 Regular Season - Week 10" }, { "date": "Nov 8, 1981", @@ -45359,7 +66697,12 @@ "sF": "27", "sU": "30", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "1981 Regular Season - Week 10" }, { "date": "Nov 8, 1981", @@ -45368,8 +66711,13 @@ "und": "St Louis Cardinals", "sF": "52", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.0, + "pScore": { + "sU": 18.75, + "sF": 23.25 + }, + "week": "1981 Regular Season - Week 10" }, { "date": "Nov 8, 1981", @@ -45379,7 +66727,12 @@ "sF": "33", "sU": "31", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "1981 Regular Season - Week 10" }, { "date": "Nov 8, 1981", @@ -45389,7 +66742,12 @@ "sF": "13", "sU": "16", "spread": "8", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.0, + "sF": 24.0 + }, + "week": "1981 Regular Season - Week 10" }, { "date": "Nov 8, 1981", @@ -45399,7 +66757,12 @@ "sF": "41", "sU": "14", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "1981 Regular Season - Week 10" }, { "date": "Nov 8, 1981", @@ -45409,7 +66772,12 @@ "sF": "23", "sU": "20", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1981 Regular Season - Week 10" }, { "date": "Nov 8, 1981", @@ -45419,7 +66787,12 @@ "sF": "13", "sU": "21", "spread": "11", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 15.5, + "sF": 26.5 + }, + "week": "1981 Regular Season - Week 10" }, { "date": "Nov 8, 1981", @@ -45429,7 +66802,12 @@ "sF": "17", "sU": "40", "spread": "4", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.0, + "sF": 26.0 + }, + "week": "1981 Regular Season - Week 10" }, { "date": "Nov 8, 1981", @@ -45438,12 +66816,13 @@ "und": "San Francisco 49ers", "sF": "14", "sU": "17", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": 44.0, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 20.75, + "sF": 23.25 + }, + "week": "1981 Regular Season - Week 10" }, { "date": "Nov 8, 1981", @@ -45453,7 +66832,12 @@ "sF": "21", "sU": "24", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1981 Regular Season - Week 10" }, { "date": "Nov 9, 1981", @@ -45462,8 +66846,13 @@ "und": "Buffalo Bills", "sF": "27", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1981 Regular Season - Week 10" }, { "date": "Nov 15, 1981", @@ -45473,7 +66862,12 @@ "sF": "20", "sU": "34", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "1981 Regular Season - Week 11" }, { "date": "Nov 15, 1981", @@ -45482,8 +66876,13 @@ "und": "Los Angeles Rams", "sF": "24", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1981 Regular Season - Week 11" }, { "date": "Nov 15, 1981", @@ -45493,7 +66892,12 @@ "sF": "21", "sU": "17", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1981 Regular Season - Week 11" }, { "date": "Nov 15, 1981", @@ -45503,7 +66907,12 @@ "sF": "17", "sU": "33", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "1981 Regular Season - Week 11" }, { "date": "Nov 15, 1981", @@ -45513,7 +66922,12 @@ "sF": "20", "sU": "10", "spread": "8", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.0, + "sF": 26.0 + }, + "week": "1981 Regular Season - Week 11" }, { "date": "Nov 15, 1981", @@ -45522,8 +66936,13 @@ "und": "New York Jets", "sF": "6", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 51.0, + "pScore": { + "sU": 24.25, + "sF": 26.75 + }, + "week": "1981 Regular Season - Week 11" }, { "date": "Nov 15, 1981", @@ -45533,7 +66952,12 @@ "sF": "38", "sU": "13", "spread": "14", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 17.0, + "sF": 31.0 + }, + "week": "1981 Regular Season - Week 11" }, { "date": "Nov 15, 1981", @@ -45542,8 +66966,13 @@ "und": "St Louis Cardinals", "sF": "0", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "1981 Regular Season - Week 11" }, { "date": "Nov 15, 1981", @@ -45553,7 +66982,12 @@ "sF": "24", "sU": "7", "spread": "1", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 17.0, + "sF": 18.0 + }, + "week": "1981 Regular Season - Week 11" }, { "date": "Nov 15, 1981", @@ -45563,7 +66997,12 @@ "sF": "23", "sU": "10", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "1981 Regular Season - Week 11" }, { "date": "Nov 15, 1981", @@ -45573,7 +67012,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "1981 Regular Season - Week 11" }, { "date": "Nov 15, 1981", @@ -45583,7 +67027,12 @@ "sF": "27", "sU": "30", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "1981 Regular Season - Week 11" }, { "date": "Nov 15, 1981", @@ -45593,7 +67042,12 @@ "sF": "12", "sU": "15", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1981 Regular Season - Week 11" }, { "date": "Nov 16, 1981", @@ -45603,7 +67057,12 @@ "sF": "23", "sU": "44", "spread": "6", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 22.0, + "sF": 28.0 + }, + "week": "1981 Regular Season - Week 11" }, { "date": "Nov 22, 1981", @@ -45613,7 +67072,12 @@ "sF": "20", "sU": "17", "spread": "7", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 13.5, + "sF": 20.5 + }, + "week": "1981 Regular Season - Week 12" }, { "date": "Nov 22, 1981", @@ -45623,7 +67087,12 @@ "sF": "23", "sU": "7", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "1981 Regular Season - Week 12" }, { "date": "Nov 22, 1981", @@ -45632,8 +67101,13 @@ "und": "Denver Broncos", "sF": "38", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1981 Regular Season - Week 12" }, { "date": "Nov 22, 1981", @@ -45643,7 +67117,12 @@ "sF": "10", "sU": "32", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1981 Regular Season - Week 12" }, { "date": "Nov 22, 1981", @@ -45653,7 +67132,12 @@ "sF": "24", "sU": "27", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "1981 Regular Season - Week 12" }, { "date": "Nov 22, 1981", @@ -45663,7 +67147,12 @@ "sF": "10", "sU": "20", "spread": "10", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.0, + "sF": 24.0 + }, + "week": "1981 Regular Season - Week 12" }, { "date": "Nov 22, 1981", @@ -45673,7 +67162,12 @@ "sF": "37", "sU": "3", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "1981 Regular Season - Week 12" }, { "date": "Nov 22, 1981", @@ -45683,7 +67177,12 @@ "sF": "35", "sU": "24", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1981 Regular Season - Week 12" }, { "date": "Nov 22, 1981", @@ -45693,7 +67192,12 @@ "sF": "40", "sU": "13", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1981 Regular Season - Week 12" }, { "date": "Nov 22, 1981", @@ -45703,7 +67207,12 @@ "sF": "24", "sU": "10", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "1981 Regular Season - Week 12" }, { "date": "Nov 22, 1981", @@ -45713,11 +67222,12 @@ "sF": "31", "sU": "33", "spread": "3", - "ou": "49", + "ou": 42.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 19.5, + "sF": 22.5 + }, + "week": "1981 Regular Season - Week 12" }, { "date": "Nov 22, 1981", @@ -45726,8 +67236,13 @@ "und": "Miami Dolphins", "sF": "16", "sU": "15", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "1981 Regular Season - Week 12" }, { "date": "Nov 22, 1981", @@ -45737,7 +67252,12 @@ "sF": "21", "sU": "55", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1981 Regular Season - Week 12" }, { "date": "Nov 23, 1981", @@ -45747,7 +67267,12 @@ "sF": "31", "sU": "30", "spread": "4", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 22.5, + "sF": 26.5 + }, + "week": "1981 Regular Season - Week 12" }, { "date": "Nov 26, 1981", @@ -45757,7 +67282,12 @@ "sF": "27", "sU": "10", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1981 Regular Season - Week 13" }, { "date": "Nov 26, 1981", @@ -45767,7 +67297,12 @@ "sF": "10", "sU": "9", "spread": "13", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 14.5, + "sF": 27.5 + }, + "week": "1981 Regular Season - Week 13" }, { "date": "Nov 29, 1981", @@ -45777,7 +67312,12 @@ "sF": "21", "sU": "14", "spread": "5", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.5, + "sF": 23.5 + }, + "week": "1981 Regular Season - Week 13" }, { "date": "Nov 29, 1981", @@ -45787,7 +67327,12 @@ "sF": "41", "sU": "21", "spread": "2", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.0, + "sF": 24.0 + }, + "week": "1981 Regular Season - Week 13" }, { "date": "Nov 29, 1981", @@ -45797,7 +67342,12 @@ "sF": "23", "sU": "35", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1981 Regular Season - Week 13" }, { "date": "Nov 29, 1981", @@ -45807,7 +67357,12 @@ "sF": "20", "sU": "27", "spread": "4", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.0, + "sF": 26.0 + }, + "week": "1981 Regular Season - Week 13" }, { "date": "Nov 29, 1981", @@ -45817,7 +67372,12 @@ "sF": "25", "sU": "0", "spread": "11", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 19.5, + "sF": 30.5 + }, + "week": "1981 Regular Season - Week 13" }, { "date": "Nov 29, 1981", @@ -45826,8 +67386,13 @@ "und": "Los Angeles Rams", "sF": "24", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1981 Regular Season - Week 13" }, { "date": "Nov 29, 1981", @@ -45837,7 +67402,12 @@ "sF": "31", "sU": "14", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "1981 Regular Season - Week 13" }, { "date": "Nov 29, 1981", @@ -45847,7 +67417,12 @@ "sF": "31", "sU": "27", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1981 Regular Season - Week 13" }, { "date": "Nov 29, 1981", @@ -45857,7 +67432,12 @@ "sF": "34", "sU": "17", "spread": "4", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.0, + "sF": 25.0 + }, + "week": "1981 Regular Season - Week 13" }, { "date": "Nov 29, 1981", @@ -45867,7 +67447,12 @@ "sF": "17", "sU": "10", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "1981 Regular Season - Week 13" }, { "date": "Nov 30, 1981", @@ -45877,7 +67462,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1981 Regular Season - Week 13" }, { "date": "Dec 3, 1981", @@ -45886,8 +67476,13 @@ "und": "Cleveland Browns", "sF": "17", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1981 Regular Season - Week 14" }, { "date": "Dec 6, 1981", @@ -45897,7 +67492,12 @@ "sF": "9", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1981 Regular Season - Week 14" }, { "date": "Dec 6, 1981", @@ -45907,11 +67507,12 @@ "sF": "3", "sU": "21", "spread": "7", - "ou": "49", + "ou": 42.0, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 17.5, + "sF": 24.5 + }, + "week": "1981 Regular Season - Week 14" }, { "date": "Dec 6, 1981", @@ -45921,7 +67522,12 @@ "sF": "17", "sU": "31", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1981 Regular Season - Week 14" }, { "date": "Dec 6, 1981", @@ -45930,8 +67536,13 @@ "und": "New England Patriots", "sF": "24", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "1981 Regular Season - Week 14" }, { "date": "Dec 6, 1981", @@ -45940,8 +67551,13 @@ "und": "Los Angeles Rams", "sF": "10", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1981 Regular Season - Week 14" }, { "date": "Dec 6, 1981", @@ -45950,8 +67566,13 @@ "und": "New Orleans Saints", "sF": "30", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1981 Regular Season - Week 14" }, { "date": "Dec 6, 1981", @@ -45961,7 +67582,12 @@ "sF": "13", "sU": "15", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1981 Regular Season - Week 14" }, { "date": "Dec 6, 1981", @@ -45970,8 +67596,13 @@ "und": "Baltimore Colts", "sF": "37", "sU": "13", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 45.0, + "pScore": { + "sU": 15.75, + "sF": 29.25 + }, + "week": "1981 Regular Season - Week 14" }, { "date": "Dec 6, 1981", @@ -45980,8 +67611,13 @@ "und": "Kansas City Chiefs", "sF": "16", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1981 Regular Season - Week 14" }, { "date": "Dec 6, 1981", @@ -45990,8 +67626,13 @@ "und": "Buffalo Bills", "sF": "27", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.0, + "pScore": { + "sU": 20.75, + "sF": 25.25 + }, + "week": "1981 Regular Season - Week 14" }, { "date": "Dec 6, 1981", @@ -46001,7 +67642,12 @@ "sF": "23", "sU": "27", "spread": "9", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.5, + "sF": 24.5 + }, + "week": "1981 Regular Season - Week 14" }, { "date": "Dec 6, 1981", @@ -46011,7 +67657,12 @@ "sF": "23", "sU": "24", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1981 Regular Season - Week 14" }, { "date": "Dec 7, 1981", @@ -46021,7 +67672,12 @@ "sF": "27", "sU": "30", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1981 Regular Season - Week 14" }, { "date": "Dec 12, 1981", @@ -46030,8 +67686,13 @@ "und": "Cleveland Browns", "sF": "14", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1981 Regular Season - Week 15" }, { "date": "Dec 12, 1981", @@ -46041,7 +67702,12 @@ "sF": "45", "sU": "7", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "1981 Regular Season - Week 15" }, { "date": "Dec 13, 1981", @@ -46050,8 +67716,13 @@ "und": "New England Patriots", "sF": "19", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1981 Regular Season - Week 15" }, { "date": "Dec 13, 1981", @@ -46061,7 +67732,12 @@ "sF": "35", "sU": "7", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1981 Regular Season - Week 15" }, { "date": "Dec 13, 1981", @@ -46071,7 +67747,12 @@ "sF": "10", "sU": "20", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1981 Regular Season - Week 15" }, { "date": "Dec 13, 1981", @@ -46081,7 +67762,12 @@ "sF": "24", "sU": "23", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "1981 Regular Season - Week 15" }, { "date": "Dec 13, 1981", @@ -46091,7 +67777,12 @@ "sF": "38", "sU": "14", "spread": "14", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 15.5, + "sF": 29.5 + }, + "week": "1981 Regular Season - Week 15" }, { "date": "Dec 13, 1981", @@ -46101,7 +67792,12 @@ "sF": "7", "sU": "17", "spread": "2", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.5, + "sF": 20.5 + }, + "week": "1981 Regular Season - Week 15" }, { "date": "Dec 13, 1981", @@ -46110,8 +67806,13 @@ "und": "Philadelphia Eagles", "sF": "21", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1981 Regular Season - Week 15" }, { "date": "Dec 13, 1981", @@ -46121,7 +67822,12 @@ "sF": "23", "sU": "13", "spread": "9", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.5, + "sF": 24.5 + }, + "week": "1981 Regular Season - Week 15" }, { "date": "Dec 13, 1981", @@ -46131,7 +67837,12 @@ "sF": "6", "sU": "23", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1981 Regular Season - Week 15" }, { "date": "Dec 13, 1981", @@ -46141,7 +67852,12 @@ "sF": "28", "sU": "6", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1981 Regular Season - Week 15" }, { "date": "Dec 14, 1981", @@ -46151,7 +67867,12 @@ "sF": "16", "sU": "21", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1981 Regular Season - Week 15" }, { "date": "Dec 19, 1981", @@ -46161,7 +67882,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1981 Regular Season - Week 16" }, { "date": "Dec 19, 1981", @@ -46171,7 +67897,12 @@ "sF": "16", "sU": "6", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1981 Regular Season - Week 16" }, { "date": "Dec 20, 1981", @@ -46181,7 +67912,12 @@ "sF": "24", "sU": "35", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "1981 Regular Season - Week 16" }, { "date": "Dec 20, 1981", @@ -46191,7 +67927,12 @@ "sF": "17", "sU": "20", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1981 Regular Season - Week 16" }, { "date": "Dec 20, 1981", @@ -46200,8 +67941,13 @@ "und": "Kansas City Chiefs", "sF": "6", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "1981 Regular Season - Week 16" }, { "date": "Dec 20, 1981", @@ -46210,8 +67956,13 @@ "und": "Green Bay Packers", "sF": "28", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1981 Regular Season - Week 16" }, { "date": "Dec 20, 1981", @@ -46221,7 +67972,12 @@ "sF": "38", "sU": "0", "spread": "9", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.0, + "sF": 24.0 + }, + "week": "1981 Regular Season - Week 16" }, { "date": "Dec 20, 1981", @@ -46231,7 +67987,12 @@ "sF": "21", "sU": "23", "spread": "6", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.5, + "sF": 26.5 + }, + "week": "1981 Regular Season - Week 16" }, { "date": "Dec 20, 1981", @@ -46241,7 +68002,12 @@ "sF": "21", "sU": "17", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1981 Regular Season - Week 16" }, { "date": "Dec 20, 1981", @@ -46251,7 +68017,12 @@ "sF": "30", "sU": "28", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1981 Regular Season - Week 16" }, { "date": "Dec 20, 1981", @@ -46261,7 +68032,12 @@ "sF": "30", "sU": "7", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "1981 Regular Season - Week 16" }, { "date": "Dec 20, 1981", @@ -46271,7 +68047,12 @@ "sF": "42", "sU": "21", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "1981 Regular Season - Week 16" }, { "date": "Dec 21, 1981", @@ -46280,8 +68061,13 @@ "und": "Oakland Raiders", "sF": "23", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1981 Regular Season - Week 16" }, { "date": "Dec 27, 1981", @@ -46291,7 +68077,12 @@ "sF": "27", "sU": "31", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1981 Playoffs" }, { "date": "Dec 27, 1981", @@ -46301,7 +68092,12 @@ "sF": "21", "sU": "27", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1981 Playoffs" }, { "date": "Jan 2, 1982", @@ -46311,7 +68107,12 @@ "sF": "38", "sU": "0", "spread": "8", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.5, + "sF": 22.5 + }, + "week": "1981 Playoffs" }, { "date": "Jan 2, 1982", @@ -46320,8 +68121,13 @@ "und": "Miami Dolphins (2)", "sF": "41", "sU": "38", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1981 Playoffs" }, { "date": "Jan 3, 1982", @@ -46331,7 +68137,12 @@ "sF": "28", "sU": "21", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1981 Playoffs" }, { "date": "Jan 3, 1982", @@ -46341,7 +68152,12 @@ "sF": "38", "sU": "24", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1981 Playoffs" }, { "date": "Jan 10, 1982", @@ -46350,8 +68166,13 @@ "und": "San Diego Chargers (3)", "sF": "27", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.0, + "pScore": { + "sU": 20.25, + "sF": 24.75 + }, + "week": "1981 Playoffs" }, { "date": "Jan 10, 1982", @@ -46361,11 +68182,12 @@ "sF": "27", "sU": "28", "spread": "3", - "ou": "49", + "ou": 42.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 19.5, + "sF": 22.5 + }, + "week": "1981 Playoffs" }, { "date": "Jan 24, 1982", @@ -46375,7 +68197,12 @@ "sF": "26", "sU": "21", "spread": "1", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.5, + "sF": 24.5 + }, + "week": "1981 Playoffs" }, { "date": "Sep 12, 1982", @@ -46384,8 +68211,13 @@ "und": "Kansas City Chiefs", "sF": "14", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "1982 Regular Season - Week 1" }, { "date": "Sep 12, 1982", @@ -46395,7 +68227,12 @@ "sF": "27", "sU": "6", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "1982 Regular Season - Week 1" }, { "date": "Sep 12, 1982", @@ -46404,8 +68241,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.0, + "pScore": { + "sU": 15.75, + "sF": 21.25 + }, + "week": "1982 Regular Season - Week 1" }, { "date": "Sep 12, 1982", @@ -46415,7 +68257,12 @@ "sF": "23", "sU": "35", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "1982 Regular Season - Week 1" }, { "date": "Sep 12, 1982", @@ -46425,7 +68272,12 @@ "sF": "17", "sU": "10", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1982 Regular Season - Week 1" }, { "date": "Sep 12, 1982", @@ -46435,7 +68287,12 @@ "sF": "21", "sU": "7", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "1982 Regular Season - Week 1" }, { "date": "Sep 12, 1982", @@ -46444,8 +68301,13 @@ "und": "Atlanta Falcons", "sF": "14", "sU": "16", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.0, + "pScore": { + "sU": 17.75, + "sF": 19.25 + }, + "week": "1982 Regular Season - Week 1" }, { "date": "Sep 12, 1982", @@ -46454,8 +68316,13 @@ "und": "Washington Redskins", "sF": "34", "sU": "37", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "1982 Regular Season - Week 1" }, { "date": "Sep 12, 1982", @@ -46465,7 +68332,12 @@ "sF": "24", "sU": "13", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "1982 Regular Season - Week 1" }, { "date": "Sep 12, 1982", @@ -46475,7 +68347,12 @@ "sF": "3", "sU": "23", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "1982 Regular Season - Week 1" }, { "date": "Sep 12, 1982", @@ -46485,7 +68362,12 @@ "sF": "28", "sU": "45", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1982 Regular Season - Week 1" }, { "date": "Sep 12, 1982", @@ -46495,7 +68377,12 @@ "sF": "17", "sU": "23", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1982 Regular Season - Week 1" }, { "date": "Sep 12, 1982", @@ -46504,8 +68391,13 @@ "und": "Seattle Seahawks", "sF": "21", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1982 Regular Season - Week 1" }, { "date": "Sep 13, 1982", @@ -46514,8 +68406,13 @@ "und": "Pittsburgh Steelers", "sF": "28", "sU": "36", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.0, + "pScore": { + "sU": 18.25, + "sF": 23.75 + }, + "week": "1982 Regular Season - Week 1" }, { "date": "Sep 16, 1982", @@ -46525,7 +68422,12 @@ "sF": "23", "sU": "22", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1982 Regular Season - Week 2" }, { "date": "Sep 19, 1982", @@ -46535,7 +68437,12 @@ "sF": "14", "sU": "38", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1982 Regular Season - Week 2" }, { "date": "Sep 19, 1982", @@ -46544,8 +68451,13 @@ "und": "New Orleans Saints", "sF": "0", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 34.0, + "pScore": { + "sU": 14.75, + "sF": 19.25 + }, + "week": "1982 Regular Season - Week 2" }, { "date": "Sep 19, 1982", @@ -46554,8 +68466,13 @@ "und": "Philadelphia Eagles", "sF": "21", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1982 Regular Season - Week 2" }, { "date": "Sep 19, 1982", @@ -46565,7 +68482,12 @@ "sF": "12", "sU": "19", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1982 Regular Season - Week 2" }, { "date": "Sep 19, 1982", @@ -46575,7 +68497,12 @@ "sF": "31", "sU": "7", "spread": "1", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.5, + "sF": 23.5 + }, + "week": "1982 Regular Season - Week 2" }, { "date": "Sep 19, 1982", @@ -46585,7 +68512,12 @@ "sF": "20", "sU": "26", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "1982 Regular Season - Week 2" }, { "date": "Sep 19, 1982", @@ -46595,7 +68527,12 @@ "sF": "24", "sU": "7", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "1982 Regular Season - Week 2" }, { "date": "Sep 19, 1982", @@ -46605,11 +68542,12 @@ "sF": "24", "sU": "21", "spread": "1", - "ou": "49", + "ou": 40.0, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 19.5, + "sF": 20.5 + }, + "week": "1982 Regular Season - Week 2" }, { "date": "Sep 19, 1982", @@ -46618,8 +68556,13 @@ "und": "Seattle Seahawks", "sF": "23", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "1982 Regular Season - Week 2" }, { "date": "Sep 19, 1982", @@ -46628,8 +68571,13 @@ "und": "Detroit Lions", "sF": "14", "sU": "19", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.0, + "pScore": { + "sU": 21.25, + "sF": 22.75 + }, + "week": "1982 Regular Season - Week 2" }, { "date": "Sep 19, 1982", @@ -46638,8 +68586,13 @@ "und": "Baltimore Colts", "sF": "24", "sU": "20", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 45.0, + "pScore": { + "sU": 16.25, + "sF": 28.75 + }, + "week": "1982 Regular Season - Week 2" }, { "date": "Sep 19, 1982", @@ -46648,8 +68601,13 @@ "und": "Washington Redskins", "sF": "13", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1982 Regular Season - Week 2" }, { "date": "Sep 20, 1982", @@ -46658,8 +68616,13 @@ "und": "Green Bay Packers", "sF": "19", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1982 Regular Season - Week 2" }, { "date": "Nov 21, 1982", @@ -46668,8 +68631,13 @@ "und": "Los Angeles Rams", "sF": "34", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1982 Regular Season - Week 11" }, { "date": "Nov 21, 1982", @@ -46679,7 +68647,12 @@ "sF": "7", "sU": "9", "spread": "1", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 17.0, + "sF": 18.0 + }, + "week": "1982 Regular Season - Week 11" }, { "date": "Nov 21, 1982", @@ -46688,8 +68661,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 32.0, + "pScore": { + "sU": 14.25, + "sF": 17.75 + }, + "week": "1982 Regular Season - Week 11" }, { "date": "Nov 21, 1982", @@ -46698,8 +68676,13 @@ "und": "New England Patriots", "sF": "10", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "1982 Regular Season - Week 11" }, { "date": "Nov 21, 1982", @@ -46709,7 +68692,12 @@ "sF": "14", "sU": "9", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1982 Regular Season - Week 11" }, { "date": "Nov 21, 1982", @@ -46719,7 +68707,12 @@ "sF": "26", "sU": "7", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1982 Regular Season - Week 11" }, { "date": "Nov 21, 1982", @@ -46728,8 +68721,13 @@ "und": "Houston Oilers", "sF": "24", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "1982 Regular Season - Week 11" }, { "date": "Nov 21, 1982", @@ -46738,8 +68736,13 @@ "und": "New Orleans Saints", "sF": "17", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 31.0, + "pScore": { + "sU": 14.25, + "sF": 16.75 + }, + "week": "1982 Regular Season - Week 11" }, { "date": "Nov 21, 1982", @@ -46749,7 +68752,12 @@ "sF": "37", "sU": "0", "spread": "8", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.5, + "sF": 23.5 + }, + "week": "1982 Regular Season - Week 11" }, { "date": "Nov 21, 1982", @@ -46759,7 +68767,12 @@ "sF": "14", "sU": "18", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "1982 Regular Season - Week 11" }, { "date": "Nov 21, 1982", @@ -46768,8 +68781,13 @@ "und": "Seattle Seahawks", "sF": "10", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.0, + "pScore": { + "sU": 14.25, + "sF": 21.75 + }, + "week": "1982 Regular Season - Week 11" }, { "date": "Nov 21, 1982", @@ -46779,7 +68797,12 @@ "sF": "31", "sU": "20", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1982 Regular Season - Week 11" }, { "date": "Nov 22, 1982", @@ -46789,7 +68812,12 @@ "sF": "28", "sU": "24", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1982 Regular Season - Week 11" }, { "date": "Nov 25, 1982", @@ -46799,7 +68827,12 @@ "sF": "6", "sU": "13", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1982 Regular Season - Week 12" }, { "date": "Nov 25, 1982", @@ -46808,8 +68841,13 @@ "und": "Cleveland Browns", "sF": "31", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "1982 Regular Season - Week 12" }, { "date": "Nov 28, 1982", @@ -46819,7 +68857,12 @@ "sF": "20", "sU": "23", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1982 Regular Season - Week 12" }, { "date": "Nov 28, 1982", @@ -46829,7 +68872,12 @@ "sF": "20", "sU": "0", "spread": "13", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 11.5, + "sF": 24.5 + }, + "week": "1982 Regular Season - Week 12" }, { "date": "Nov 28, 1982", @@ -46838,8 +68886,13 @@ "und": "Los Angeles Raiders", "sF": "31", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "1982 Regular Season - Week 12" }, { "date": "Nov 28, 1982", @@ -46848,8 +68901,13 @@ "und": "Chicago Bears", "sF": "35", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 36.0, + "pScore": { + "sU": 15.25, + "sF": 20.75 + }, + "week": "1982 Regular Season - Week 12" }, { "date": "Nov 28, 1982", @@ -46858,8 +68916,13 @@ "und": "Houston Oilers", "sF": "29", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "1982 Regular Season - Week 12" }, { "date": "Nov 28, 1982", @@ -46868,8 +68931,13 @@ "und": "Green Bay Packers", "sF": "15", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1982 Regular Season - Week 12" }, { "date": "Nov 28, 1982", @@ -46878,8 +68946,13 @@ "und": "Philadelphia Eagles", "sF": "13", "sU": "9", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1982 Regular Season - Week 12" }, { "date": "Nov 28, 1982", @@ -46889,7 +68962,12 @@ "sF": "20", "sU": "14", "spread": "2", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.5, + "sF": 20.5 + }, + "week": "1982 Regular Season - Week 12" }, { "date": "Nov 28, 1982", @@ -46898,8 +68976,13 @@ "und": "Denver Broncos", "sF": "30", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1982 Regular Season - Week 12" }, { "date": "Nov 28, 1982", @@ -46908,8 +68991,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.0, + "pScore": { + "sU": 15.25, + "sF": 22.75 + }, + "week": "1982 Regular Season - Week 12" }, { "date": "Nov 28, 1982", @@ -46919,7 +69007,12 @@ "sF": "0", "sU": "16", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1982 Regular Season - Week 12" }, { "date": "Nov 29, 1982", @@ -46929,7 +69022,12 @@ "sF": "17", "sU": "23", "spread": "2", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.5, + "sF": 17.5 + }, + "week": "1982 Regular Season - Week 12" }, { "date": "Dec 2, 1982", @@ -46938,8 +69036,13 @@ "und": "Los Angeles Rams", "sF": "30", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1982 Regular Season - Week 13" }, { "date": "Dec 5, 1982", @@ -46949,7 +69052,12 @@ "sF": "26", "sU": "13", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "1982 Regular Season - Week 13" }, { "date": "Dec 5, 1982", @@ -46959,7 +69067,12 @@ "sF": "30", "sU": "13", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1982 Regular Season - Week 13" }, { "date": "Dec 5, 1982", @@ -46968,8 +69081,13 @@ "und": "Buffalo Bills", "sF": "33", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1982 Regular Season - Week 13" }, { "date": "Dec 5, 1982", @@ -46979,7 +69097,12 @@ "sF": "22", "sU": "14", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1982 Regular Season - Week 13" }, { "date": "Dec 5, 1982", @@ -46988,8 +69111,13 @@ "und": "Tampa Bay Buccaneers", "sF": "10", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.0, + "pScore": { + "sU": 16.25, + "sF": 18.75 + }, + "week": "1982 Regular Season - Week 13" }, { "date": "Dec 5, 1982", @@ -46999,7 +69127,12 @@ "sF": "17", "sU": "14", "spread": "7", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.0, + "sF": 21.0 + }, + "week": "1982 Regular Season - Week 13" }, { "date": "Dec 5, 1982", @@ -47008,8 +69141,13 @@ "und": "St Louis Cardinals", "sF": "20", "sU": "23", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.0, + "pScore": { + "sU": 16.75, + "sF": 22.25 + }, + "week": "1982 Regular Season - Week 13" }, { "date": "Dec 5, 1982", @@ -47018,8 +69156,13 @@ "und": "Kansas City Chiefs", "sF": "35", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1982 Regular Season - Week 13" }, { "date": "Dec 5, 1982", @@ -47028,8 +69171,13 @@ "und": "Baltimore Colts", "sF": "20", "sU": "17", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 38.0, + "pScore": { + "sU": 11.75, + "sF": 26.25 + }, + "week": "1982 Regular Season - Week 13" }, { "date": "Dec 5, 1982", @@ -47038,8 +69186,13 @@ "und": "Atlanta Falcons", "sF": "27", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1982 Regular Season - Week 13" }, { "date": "Dec 5, 1982", @@ -47048,8 +69201,13 @@ "und": "Seattle Seahawks", "sF": "28", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1982 Regular Season - Week 13" }, { "date": "Dec 5, 1982", @@ -47059,7 +69217,12 @@ "sF": "24", "sU": "10", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1982 Regular Season - Week 13" }, { "date": "Dec 6, 1982", @@ -47069,7 +69232,12 @@ "sF": "13", "sU": "28", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "1982 Regular Season - Week 13" }, { "date": "Dec 11, 1982", @@ -47079,7 +69247,12 @@ "sF": "23", "sU": "7", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1982 Regular Season - Week 14" }, { "date": "Dec 11, 1982", @@ -47089,7 +69262,12 @@ "sF": "37", "sU": "41", "spread": "2", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.5, + "sF": 24.5 + }, + "week": "1982 Regular Season - Week 14" }, { "date": "Dec 12, 1982", @@ -47099,7 +69277,12 @@ "sF": "23", "sU": "10", "spread": "8", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.0, + "sF": 26.0 + }, + "week": "1982 Regular Season - Week 14" }, { "date": "Dec 12, 1982", @@ -47108,8 +69291,13 @@ "und": "Detroit Lions", "sF": "10", "sU": "30", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.0, + "pScore": { + "sU": 17.75, + "sF": 23.25 + }, + "week": "1982 Regular Season - Week 14" }, { "date": "Dec 12, 1982", @@ -47119,7 +69307,12 @@ "sF": "13", "sU": "10", "spread": "12", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 13.0, + "sF": 25.0 + }, + "week": "1982 Regular Season - Week 14" }, { "date": "Dec 12, 1982", @@ -47129,7 +69322,12 @@ "sF": "0", "sU": "3", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1982 Regular Season - Week 14" }, { "date": "Dec 12, 1982", @@ -47138,8 +69336,13 @@ "und": "Tampa Bay Buccaneers", "sF": "32", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "1982 Regular Season - Week 14" }, { "date": "Dec 12, 1982", @@ -47149,7 +69352,12 @@ "sF": "12", "sU": "7", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "1982 Regular Season - Week 14" }, { "date": "Dec 12, 1982", @@ -47158,8 +69366,13 @@ "und": "New Orleans Saints", "sF": "35", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1982 Regular Season - Week 14" }, { "date": "Dec 12, 1982", @@ -47169,7 +69382,12 @@ "sF": "21", "sU": "16", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1982 Regular Season - Week 14" }, { "date": "Dec 12, 1982", @@ -47178,8 +69396,13 @@ "und": "Denver Broncos", "sF": "24", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1982 Regular Season - Week 14" }, { "date": "Dec 12, 1982", @@ -47188,8 +69411,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "1982 Regular Season - Week 14" }, { "date": "Dec 13, 1982", @@ -47198,8 +69426,13 @@ "und": "Houston Oilers", "sF": "37", "sU": "7", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.0, + "pScore": { + "sU": 14.75, + "sF": 23.25 + }, + "week": "1982 Regular Season - Week 14" }, { "date": "Dec 18, 1982", @@ -47209,7 +69442,12 @@ "sF": "37", "sU": "31", "spread": "8", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.5, + "sF": 27.5 + }, + "week": "1982 Regular Season - Week 15" }, { "date": "Dec 19, 1982", @@ -47219,7 +69457,12 @@ "sF": "10", "sU": "7", "spread": "1", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 17.0, + "sF": 18.0 + }, + "week": "1982 Regular Season - Week 15" }, { "date": "Dec 19, 1982", @@ -47228,8 +69471,13 @@ "und": "Cleveland Browns", "sF": "9", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1982 Regular Season - Week 15" }, { "date": "Dec 19, 1982", @@ -47239,7 +69487,12 @@ "sF": "31", "sU": "34", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1982 Regular Season - Week 15" }, { "date": "Dec 19, 1982", @@ -47249,7 +69502,12 @@ "sF": "35", "sU": "14", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "1982 Regular Season - Week 15" }, { "date": "Dec 19, 1982", @@ -47258,8 +69516,13 @@ "und": "New York Giants", "sF": "15", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1982 Regular Season - Week 15" }, { "date": "Dec 19, 1982", @@ -47269,7 +69532,12 @@ "sF": "20", "sU": "20", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1982 Regular Season - Week 15" }, { "date": "Dec 19, 1982", @@ -47279,7 +69547,12 @@ "sF": "21", "sU": "7", "spread": "10", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.5, + "sF": 24.5 + }, + "week": "1982 Regular Season - Week 15" }, { "date": "Dec 19, 1982", @@ -47288,8 +69561,13 @@ "und": "Kansas City Chiefs", "sF": "16", "sU": "37", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "1982 Regular Season - Week 15" }, { "date": "Dec 19, 1982", @@ -47299,7 +69577,12 @@ "sF": "0", "sU": "16", "spread": "4", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 14.5, + "sF": 18.5 + }, + "week": "1982 Regular Season - Week 15" }, { "date": "Dec 19, 1982", @@ -47309,7 +69592,12 @@ "sF": "24", "sU": "23", "spread": "1", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 16.5, + "sF": 17.5 + }, + "week": "1982 Regular Season - Week 15" }, { "date": "Dec 19, 1982", @@ -47319,7 +69607,12 @@ "sF": "7", "sU": "17", "spread": "4", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.0, + "sF": 27.0 + }, + "week": "1982 Regular Season - Week 15" }, { "date": "Dec 20, 1982", @@ -47329,7 +69622,12 @@ "sF": "50", "sU": "34", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "1982 Regular Season - Week 15" }, { "date": "Dec 26, 1982", @@ -47338,8 +69636,13 @@ "und": "Green Bay Packers", "sF": "7", "sU": "38", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "1982 Regular Season - Week 16" }, { "date": "Dec 26, 1982", @@ -47349,7 +69652,12 @@ "sF": "24", "sU": "10", "spread": "10", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.0, + "sF": 25.0 + }, + "week": "1982 Regular Season - Week 16" }, { "date": "Dec 26, 1982", @@ -47359,7 +69667,12 @@ "sF": "20", "sU": "14", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1982 Regular Season - Week 16" }, { "date": "Dec 26, 1982", @@ -47369,7 +69682,12 @@ "sF": "26", "sU": "13", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1982 Regular Season - Week 16" }, { "date": "Dec 26, 1982", @@ -47379,7 +69697,12 @@ "sF": "37", "sU": "14", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1982 Regular Season - Week 16" }, { "date": "Dec 26, 1982", @@ -47389,7 +69712,12 @@ "sF": "24", "sU": "21", "spread": "1", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 16.5, + "sF": 17.5 + }, + "week": "1982 Regular Season - Week 16" }, { "date": "Dec 26, 1982", @@ -47398,8 +69726,13 @@ "und": "Detroit Lions", "sF": "23", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1982 Regular Season - Week 16" }, { "date": "Dec 26, 1982", @@ -47409,7 +69742,12 @@ "sF": "20", "sU": "24", "spread": "8", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.5, + "sF": 24.5 + }, + "week": "1982 Regular Season - Week 16" }, { "date": "Dec 26, 1982", @@ -47418,8 +69756,13 @@ "und": "Denver Broncos", "sF": "27", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "1982 Regular Season - Week 16" }, { "date": "Dec 26, 1982", @@ -47429,7 +69772,12 @@ "sF": "26", "sU": "34", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1982 Regular Season - Week 16" }, { "date": "Dec 26, 1982", @@ -47438,8 +69786,13 @@ "und": "Minnesota Vikings", "sF": "42", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1982 Regular Season - Week 16" }, { "date": "Dec 26, 1982", @@ -47449,7 +69802,12 @@ "sF": "27", "sU": "10", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "1982 Regular Season - Week 16" }, { "date": "Dec 26, 1982", @@ -47458,8 +69816,13 @@ "und": "Baltimore Colts", "sF": "44", "sU": "26", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 45.0, + "pScore": { + "sU": 15.75, + "sF": 29.25 + }, + "week": "1982 Regular Season - Week 16" }, { "date": "Dec 27, 1982", @@ -47469,7 +69832,12 @@ "sF": "27", "sU": "10", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1982 Regular Season - Week 16" }, { "date": "Jan 2, 1983", @@ -47479,7 +69847,12 @@ "sF": "6", "sU": "35", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "1982 Regular Season - Week 17" }, { "date": "Jan 2, 1983", @@ -47489,7 +69862,12 @@ "sF": "35", "sU": "27", "spread": "10", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.0, + "sF": 24.0 + }, + "week": "1982 Regular Season - Week 17" }, { "date": "Jan 2, 1983", @@ -47499,7 +69877,12 @@ "sF": "13", "sU": "37", "spread": "5", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.5, + "sF": 23.5 + }, + "week": "1982 Regular Season - Week 17" }, { "date": "Jan 2, 1983", @@ -47508,8 +69891,13 @@ "und": "New England Patriots", "sF": "19", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1982 Regular Season - Week 17" }, { "date": "Jan 2, 1983", @@ -47519,7 +69907,12 @@ "sF": "24", "sU": "26", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1982 Regular Season - Week 17" }, { "date": "Jan 2, 1983", @@ -47529,7 +69922,12 @@ "sF": "37", "sU": "21", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1982 Regular Season - Week 17" }, { "date": "Jan 2, 1983", @@ -47539,7 +69937,12 @@ "sF": "26", "sU": "23", "spread": "5", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.5, + "sF": 20.5 + }, + "week": "1982 Regular Season - Week 17" }, { "date": "Jan 2, 1983", @@ -47549,7 +69952,12 @@ "sF": "28", "sU": "0", "spread": "5", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 14.0, + "sF": 19.0 + }, + "week": "1982 Regular Season - Week 17" }, { "date": "Jan 2, 1983", @@ -47559,7 +69967,12 @@ "sF": "34", "sU": "7", "spread": "8", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.0, + "sF": 22.0 + }, + "week": "1982 Regular Season - Week 17" }, { "date": "Jan 2, 1983", @@ -47568,8 +69981,13 @@ "und": "Los Angeles Raiders", "sF": "34", "sU": "41", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 54.0, + "pScore": { + "sU": 25.25, + "sF": 28.75 + }, + "week": "1982 Regular Season - Week 17" }, { "date": "Jan 2, 1983", @@ -47579,7 +69997,12 @@ "sF": "20", "sU": "21", "spread": "10", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 20.5, + "sF": 30.5 + }, + "week": "1982 Regular Season - Week 17" }, { "date": "Jan 2, 1983", @@ -47589,7 +70012,12 @@ "sF": "13", "sU": "11", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1982 Regular Season - Week 17" }, { "date": "Jan 3, 1983", @@ -47599,7 +70027,12 @@ "sF": "27", "sU": "31", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "1982 Regular Season - Week 17" }, { "date": "Jan 8, 1983", @@ -47608,8 +70041,13 @@ "und": "St Louis Cardinals (6)", "sF": "41", "sU": "16", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.5, + "pScore": { + "sU": 16.5, + "sF": 21.0 + }, + "week": "1982 Playoffs" }, { "date": "Jan 8, 1983", @@ -47619,7 +70057,12 @@ "sF": "31", "sU": "7", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1982 Playoffs" }, { "date": "Jan 8, 1983", @@ -47628,8 +70071,13 @@ "und": "New England Patriots (7)", "sF": "28", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.0, + "pScore": { + "sU": 14.25, + "sF": 21.75 + }, + "week": "1982 Playoffs" }, { "date": "Jan 8, 1983", @@ -47638,8 +70086,13 @@ "und": "Cleveland Browns (8)", "sF": "27", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 44.5, + "pScore": { + "sU": 18.0, + "sF": 26.5 + }, + "week": "1982 Playoffs" }, { "date": "Jan 9, 1983", @@ -47649,7 +70102,12 @@ "sF": "17", "sU": "44", "spread": "4", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.25, + "sF": 24.25 + }, + "week": "1982 Playoffs" }, { "date": "Jan 9, 1983", @@ -47659,7 +70117,12 @@ "sF": "28", "sU": "31", "spread": "1", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 26.0, + "sF": 27.0 + }, + "week": "1982 Playoffs" }, { "date": "Jan 9, 1983", @@ -47669,7 +70132,12 @@ "sF": "30", "sU": "24", "spread": "2", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.25, + "sF": 24.25 + }, + "week": "1982 Playoffs" }, { "date": "Jan 9, 1983", @@ -47679,7 +70147,12 @@ "sF": "30", "sU": "17", "spread": "8", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.25, + "sF": 23.25 + }, + "week": "1982 Playoffs" }, { "date": "Jan 15, 1983", @@ -47689,7 +70162,12 @@ "sF": "21", "sU": "7", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "1982 Playoffs" }, { "date": "Jan 15, 1983", @@ -47698,8 +70176,13 @@ "und": "New York Jets (6)", "sF": "14", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "1982 Playoffs" }, { "date": "Jan 16, 1983", @@ -47708,8 +70191,13 @@ "und": "Miami Dolphins (2)", "sF": "13", "sU": "34", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 53.0, + "pScore": { + "sU": 25.75, + "sF": 27.25 + }, + "week": "1982 Playoffs" }, { "date": "Jan 16, 1983", @@ -47719,7 +70207,12 @@ "sF": "37", "sU": "26", "spread": "7", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.5, + "sF": 27.5 + }, + "week": "1982 Playoffs" }, { "date": "Jan 22, 1983", @@ -47729,7 +70222,12 @@ "sF": "17", "sU": "31", "spread": "2", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.25, + "sF": 20.25 + }, + "week": "1982 Playoffs" }, { "date": "Jan 23, 1983", @@ -47739,7 +70237,12 @@ "sF": "14", "sU": "0", "spread": "1", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.75, + "sF": 19.75 + }, + "week": "1982 Playoffs" }, { "date": "Jan 30, 1983", @@ -47749,7 +70252,12 @@ "sF": "17", "sU": "27", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "1982 Playoffs" }, { "date": "Sep 3, 1983", @@ -47758,8 +70266,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "22", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "1983 Regular Season - Week 1" }, { "date": "Sep 4, 1983", @@ -47768,8 +70281,13 @@ "und": "St Louis Cardinals", "sF": "28", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1983 Regular Season - Week 1" }, { "date": "Sep 4, 1983", @@ -47779,7 +70297,12 @@ "sF": "12", "sU": "0", "spread": "4", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.25, + "sF": 20.25 + }, + "week": "1983 Regular Season - Week 1" }, { "date": "Sep 4, 1983", @@ -47789,7 +70312,12 @@ "sF": "17", "sU": "20", "spread": "1", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.75, + "sF": 19.75 + }, + "week": "1983 Regular Season - Week 1" }, { "date": "Sep 4, 1983", @@ -47799,7 +70327,12 @@ "sF": "10", "sU": "20", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1983 Regular Season - Week 1" }, { "date": "Sep 4, 1983", @@ -47808,8 +70341,13 @@ "und": "Minnesota Vikings", "sF": "21", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.0, + "pScore": { + "sU": 19.75, + "sF": 21.25 + }, + "week": "1983 Regular Season - Week 1" }, { "date": "Sep 4, 1983", @@ -47818,8 +70356,13 @@ "und": "Houston Oilers", "sF": "41", "sU": "38", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "1983 Regular Season - Week 1" }, { "date": "Sep 4, 1983", @@ -47829,7 +70372,12 @@ "sF": "23", "sU": "29", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1983 Regular Season - Week 1" }, { "date": "Sep 4, 1983", @@ -47839,7 +70387,12 @@ "sF": "6", "sU": "16", "spread": "4", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.25, + "sF": 21.25 + }, + "week": "1983 Regular Season - Week 1" }, { "date": "Sep 4, 1983", @@ -47849,7 +70402,12 @@ "sF": "10", "sU": "14", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "1983 Regular Season - Week 1" }, { "date": "Sep 4, 1983", @@ -47859,7 +70417,12 @@ "sF": "0", "sU": "11", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1983 Regular Season - Week 1" }, { "date": "Sep 4, 1983", @@ -47869,7 +70432,12 @@ "sF": "17", "sU": "13", "spread": "2", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.25, + "sF": 19.25 + }, + "week": "1983 Regular Season - Week 1" }, { "date": "Sep 4, 1983", @@ -47878,8 +70446,13 @@ "und": "New York Jets", "sF": "29", "sU": "41", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "1983 Regular Season - Week 1" }, { "date": "Sep 5, 1983", @@ -47888,8 +70461,13 @@ "und": "Washington Redskins", "sF": "31", "sU": "30", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.0, + "pScore": { + "sU": 19.75, + "sF": 21.25 + }, + "week": "1983 Regular Season - Week 1" }, { "date": "Sep 8, 1983", @@ -47899,11 +70477,12 @@ "sF": "17", "sU": "48", "spread": "3", - "ou": "49", + "ou": 42.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 19.5, + "sF": 22.5 + }, + "week": "1983 Regular Season - Week 2" }, { "date": "Sep 11, 1983", @@ -47912,8 +70491,13 @@ "und": "New York Giants", "sF": "13", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1983 Regular Season - Week 2" }, { "date": "Sep 11, 1983", @@ -47922,8 +70506,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.5, + "pScore": { + "sU": 16.5, + "sF": 19.0 + }, + "week": "1983 Regular Season - Week 2" }, { "date": "Sep 11, 1983", @@ -47933,7 +70522,12 @@ "sF": "6", "sU": "10", "spread": "7", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 14.75, + "sF": 21.75 + }, + "week": "1983 Regular Season - Week 2" }, { "date": "Sep 11, 1983", @@ -47943,7 +70537,12 @@ "sF": "26", "sU": "31", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1983 Regular Season - Week 2" }, { "date": "Sep 11, 1983", @@ -47953,7 +70552,12 @@ "sF": "21", "sU": "25", "spread": "1", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 22.0, + "sF": 23.0 + }, + "week": "1983 Regular Season - Week 2" }, { "date": "Sep 11, 1983", @@ -47963,7 +70567,12 @@ "sF": "34", "sU": "17", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1983 Regular Season - Week 2" }, { "date": "Sep 11, 1983", @@ -47973,7 +70582,12 @@ "sF": "17", "sU": "10", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1983 Regular Season - Week 2" }, { "date": "Sep 11, 1983", @@ -47983,7 +70597,12 @@ "sF": "20", "sU": "6", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "1983 Regular Season - Week 2" }, { "date": "Sep 11, 1983", @@ -47993,7 +70612,12 @@ "sF": "30", "sU": "27", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1983 Regular Season - Week 2" }, { "date": "Sep 11, 1983", @@ -48002,8 +70626,13 @@ "und": "New England Patriots", "sF": "34", "sU": "24", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 36.0, + "pScore": { + "sU": 13.25, + "sF": 22.75 + }, + "week": "1983 Regular Season - Week 2" }, { "date": "Sep 11, 1983", @@ -48013,7 +70642,12 @@ "sF": "10", "sU": "17", "spread": "9", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 15.25, + "sF": 24.25 + }, + "week": "1983 Regular Season - Week 2" }, { "date": "Sep 12, 1983", @@ -48022,8 +70656,13 @@ "und": "Kansas City Chiefs", "sF": "17", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "1983 Regular Season - Week 2" }, { "date": "Sep 15, 1983", @@ -48033,7 +70672,12 @@ "sF": "17", "sU": "7", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "1983 Regular Season - Week 3" }, { "date": "Sep 18, 1983", @@ -48043,7 +70687,12 @@ "sF": "28", "sU": "23", "spread": "5", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 14.0, + "sF": 19.0 + }, + "week": "1983 Regular Season - Week 3" }, { "date": "Sep 18, 1983", @@ -48053,7 +70702,12 @@ "sF": "14", "sU": "30", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "1983 Regular Season - Week 3" }, { "date": "Sep 18, 1983", @@ -48063,7 +70717,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "1983 Regular Season - Week 3" }, { "date": "Sep 18, 1983", @@ -48072,8 +70731,13 @@ "und": "Houston Oilers", "sF": "40", "sU": "28", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "1983 Regular Season - Week 3" }, { "date": "Sep 18, 1983", @@ -48083,7 +70747,12 @@ "sF": "13", "sU": "23", "spread": "6", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.25, + "sF": 25.25 + }, + "week": "1983 Regular Season - Week 3" }, { "date": "Sep 18, 1983", @@ -48093,7 +70762,12 @@ "sF": "34", "sU": "31", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "1983 Regular Season - Week 3" }, { "date": "Sep 18, 1983", @@ -48102,8 +70776,13 @@ "und": "St Louis Cardinals", "sF": "42", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "1983 Regular Season - Week 3" }, { "date": "Sep 18, 1983", @@ -48113,7 +70792,12 @@ "sF": "27", "sU": "12", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1983 Regular Season - Week 3" }, { "date": "Sep 18, 1983", @@ -48123,7 +70807,12 @@ "sF": "28", "sU": "13", "spread": "8", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 14.75, + "sF": 22.75 + }, + "week": "1983 Regular Season - Week 3" }, { "date": "Sep 18, 1983", @@ -48132,8 +70821,13 @@ "und": "Philadelphia Eagles", "sF": "10", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 34.5, + "pScore": { + "sU": 16.0, + "sF": 18.5 + }, + "week": "1983 Regular Season - Week 3" }, { "date": "Sep 18, 1983", @@ -48142,8 +70836,13 @@ "und": "Seattle Seahawks", "sF": "31", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "1983 Regular Season - Week 3" }, { "date": "Sep 18, 1983", @@ -48153,7 +70852,12 @@ "sF": "19", "sU": "16", "spread": "1", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 17.0, + "sF": 18.0 + }, + "week": "1983 Regular Season - Week 3" }, { "date": "Sep 19, 1983", @@ -48162,8 +70866,13 @@ "und": "Miami Dolphins", "sF": "27", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.5, + "pScore": { + "sU": 19.0, + "sF": 20.5 + }, + "week": "1983 Regular Season - Week 3" }, { "date": "Sep 25, 1983", @@ -48173,7 +70882,12 @@ "sF": "30", "sU": "13", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1983 Regular Season - Week 4" }, { "date": "Sep 25, 1983", @@ -48182,8 +70896,13 @@ "und": "New Orleans Saints", "sF": "21", "sU": "20", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 46.0, + "pScore": { + "sU": 18.75, + "sF": 27.25 + }, + "week": "1983 Regular Season - Week 4" }, { "date": "Sep 25, 1983", @@ -48192,8 +70911,13 @@ "und": "Kansas City Chiefs", "sF": "14", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.0, + "pScore": { + "sU": 14.75, + "sF": 22.25 + }, + "week": "1983 Regular Season - Week 4" }, { "date": "Sep 25, 1983", @@ -48202,8 +70926,13 @@ "und": "Detroit Lions", "sF": "20", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1983 Regular Season - Week 4" }, { "date": "Sep 25, 1983", @@ -48213,7 +70942,12 @@ "sF": "11", "sU": "14", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1983 Regular Season - Week 4" }, { "date": "Sep 25, 1983", @@ -48222,8 +70956,13 @@ "und": "New England Patriots", "sF": "23", "sU": "28", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 45.0, + "pScore": { + "sU": 18.25, + "sF": 26.75 + }, + "week": "1983 Regular Season - Week 4" }, { "date": "Sep 25, 1983", @@ -48233,7 +70972,12 @@ "sF": "17", "sU": "23", "spread": "2", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.5, + "sF": 17.5 + }, + "week": "1983 Regular Season - Week 4" }, { "date": "Sep 25, 1983", @@ -48243,7 +70987,12 @@ "sF": "19", "sU": "22", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1983 Regular Season - Week 4" }, { "date": "Sep 25, 1983", @@ -48252,8 +71001,13 @@ "und": "Denver Broncos", "sF": "22", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 34.0, + "pScore": { + "sU": 15.25, + "sF": 18.75 + }, + "week": "1983 Regular Season - Week 4" }, { "date": "Sep 25, 1983", @@ -48262,8 +71016,13 @@ "und": "Los Angeles Rams", "sF": "27", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.0, + "pScore": { + "sU": 20.25, + "sF": 25.75 + }, + "week": "1983 Regular Season - Week 4" }, { "date": "Sep 25, 1983", @@ -48272,8 +71031,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "30", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 52.0, + "pScore": { + "sU": 22.75, + "sF": 29.25 + }, + "week": "1983 Regular Season - Week 4" }, { "date": "Sep 25, 1983", @@ -48282,8 +71046,13 @@ "und": "Atlanta Falcons", "sF": "24", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.0, + "pScore": { + "sU": 21.75, + "sF": 26.25 + }, + "week": "1983 Regular Season - Week 4" }, { "date": "Sep 25, 1983", @@ -48292,8 +71061,13 @@ "und": "Seattle Seahawks", "sF": "27", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.0, + "pScore": { + "sU": 19.75, + "sF": 21.25 + }, + "week": "1983 Regular Season - Week 4" }, { "date": "Sep 26, 1983", @@ -48302,8 +71076,13 @@ "und": "Green Bay Packers", "sF": "27", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1983 Regular Season - Week 4" }, { "date": "Oct 2, 1983", @@ -48312,8 +71091,13 @@ "und": "Philadelphia Eagles", "sF": "24", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.5, + "pScore": { + "sU": 17.0, + "sF": 20.5 + }, + "week": "1983 Regular Season - Week 5" }, { "date": "Oct 2, 1983", @@ -48322,8 +71106,13 @@ "und": "Denver Broncos", "sF": "31", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 34.5, + "pScore": { + "sU": 16.5, + "sF": 18.0 + }, + "week": "1983 Regular Season - Week 5" }, { "date": "Oct 2, 1983", @@ -48333,7 +71122,12 @@ "sF": "31", "sU": "34", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1983 Regular Season - Week 5" }, { "date": "Oct 2, 1983", @@ -48342,8 +71136,13 @@ "und": "Seattle Seahawks", "sF": "9", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1983 Regular Season - Week 5" }, { "date": "Oct 2, 1983", @@ -48352,8 +71151,13 @@ "und": "Tampa Bay Buccaneers", "sF": "55", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "1983 Regular Season - Week 5" }, { "date": "Oct 2, 1983", @@ -48362,8 +71166,13 @@ "und": "Minnesota Vikings", "sF": "37", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "1983 Regular Season - Week 5" }, { "date": "Oct 2, 1983", @@ -48373,7 +71182,12 @@ "sF": "33", "sU": "13", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "1983 Regular Season - Week 5" }, { "date": "Oct 2, 1983", @@ -48383,7 +71197,12 @@ "sF": "17", "sU": "10", "spread": "11", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.0, + "sF": 28.0 + }, + "week": "1983 Regular Season - Week 5" }, { "date": "Oct 2, 1983", @@ -48393,7 +71212,12 @@ "sF": "37", "sU": "35", "spread": "2", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.25, + "sF": 20.25 + }, + "week": "1983 Regular Season - Week 5" }, { "date": "Oct 2, 1983", @@ -48402,8 +71226,13 @@ "und": "St Louis Cardinals", "sF": "38", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1983 Regular Season - Week 5" }, { "date": "Oct 2, 1983", @@ -48412,8 +71241,13 @@ "und": "Detroit Lions", "sF": "21", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.5, + "pScore": { + "sU": 19.5, + "sF": 24.0 + }, + "week": "1983 Regular Season - Week 5" }, { "date": "Oct 2, 1983", @@ -48423,7 +71257,12 @@ "sF": "7", "sU": "17", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "1983 Regular Season - Week 5" }, { "date": "Oct 2, 1983", @@ -48433,7 +71272,12 @@ "sF": "34", "sU": "41", "spread": "1", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.75, + "sF": 21.75 + }, + "week": "1983 Regular Season - Week 5" }, { "date": "Oct 3, 1983", @@ -48443,7 +71287,12 @@ "sF": "34", "sU": "10", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "1983 Regular Season - Week 5" }, { "date": "Oct 9, 1983", @@ -48452,8 +71301,13 @@ "und": "New Orleans Saints", "sF": "17", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "1983 Regular Season - Week 6" }, { "date": "Oct 9, 1983", @@ -48463,7 +71317,12 @@ "sF": "14", "sU": "23", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "1983 Regular Season - Week 6" }, { "date": "Oct 9, 1983", @@ -48473,7 +71332,12 @@ "sF": "7", "sU": "10", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "1983 Regular Season - Week 6" }, { "date": "Oct 9, 1983", @@ -48483,7 +71347,12 @@ "sF": "14", "sU": "38", "spread": "1", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.5, + "sF": 24.5 + }, + "week": "1983 Regular Season - Week 6" }, { "date": "Oct 9, 1983", @@ -48493,7 +71362,12 @@ "sF": "26", "sU": "14", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1983 Regular Season - Week 6" }, { "date": "Oct 9, 1983", @@ -48503,7 +71377,12 @@ "sF": "35", "sU": "38", "spread": "6", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 14.25, + "sF": 20.25 + }, + "week": "1983 Regular Season - Week 6" }, { "date": "Oct 9, 1983", @@ -48513,7 +71392,12 @@ "sF": "38", "sU": "14", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "1983 Regular Season - Week 6" }, { "date": "Oct 9, 1983", @@ -48523,7 +71407,12 @@ "sF": "27", "sU": "24", "spread": "13", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 15.0, + "sF": 28.0 + }, + "week": "1983 Regular Season - Week 6" }, { "date": "Oct 9, 1983", @@ -48533,7 +71422,12 @@ "sF": "21", "sU": "20", "spread": "9", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.75, + "sF": 24.75 + }, + "week": "1983 Regular Season - Week 6" }, { "date": "Oct 9, 1983", @@ -48543,7 +71437,12 @@ "sF": "13", "sU": "17", "spread": "2", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.75, + "sF": 19.75 + }, + "week": "1983 Regular Season - Week 6" }, { "date": "Oct 9, 1983", @@ -48553,7 +71452,12 @@ "sF": "28", "sU": "21", "spread": "4", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 23.5, + "sF": 27.5 + }, + "week": "1983 Regular Season - Week 6" }, { "date": "Oct 9, 1983", @@ -48562,8 +71466,13 @@ "und": "Los Angeles Rams", "sF": "7", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.0, + "pScore": { + "sU": 21.75, + "sF": 26.25 + }, + "week": "1983 Regular Season - Week 6" }, { "date": "Oct 10, 1983", @@ -48573,7 +71482,12 @@ "sF": "24", "sU": "14", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "1983 Regular Season - Week 6" }, { "date": "Oct 16, 1983", @@ -48583,7 +71497,12 @@ "sF": "31", "sU": "17", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "1983 Regular Season - Week 7" }, { "date": "Oct 16, 1983", @@ -48592,8 +71511,13 @@ "und": "Houston Oilers", "sF": "34", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "1983 Regular Season - Week 7" }, { "date": "Oct 16, 1983", @@ -48602,8 +71526,13 @@ "und": "New England Patriots", "sF": "21", "sU": "37", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 50.0, + "pScore": { + "sU": 22.75, + "sF": 27.25 + }, + "week": "1983 Regular Season - Week 7" }, { "date": "Oct 16, 1983", @@ -48613,11 +71542,12 @@ "sF": "13", "sU": "32", "spread": "1", - "ou": "49", + "ou": 44.5, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 21.75, + "sF": 22.75 + }, + "week": "1983 Regular Season - Week 7" }, { "date": "Oct 16, 1983", @@ -48627,7 +71557,12 @@ "sF": "14", "sU": "32", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1983 Regular Season - Week 7" }, { "date": "Oct 16, 1983", @@ -48636,8 +71571,13 @@ "und": "Cleveland Browns", "sF": "44", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "1983 Regular Season - Week 7" }, { "date": "Oct 16, 1983", @@ -48647,7 +71587,12 @@ "sF": "27", "sU": "34", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1983 Regular Season - Week 7" }, { "date": "Oct 16, 1983", @@ -48657,7 +71602,12 @@ "sF": "30", "sU": "7", "spread": "1", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 19.25, + "sF": 20.25 + }, + "week": "1983 Regular Season - Week 7" }, { "date": "Oct 16, 1983", @@ -48667,7 +71617,12 @@ "sF": "37", "sU": "7", "spread": "8", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.5, + "sF": 25.5 + }, + "week": "1983 Regular Season - Week 7" }, { "date": "Oct 16, 1983", @@ -48676,8 +71631,13 @@ "und": "Cincinnati Bengals", "sF": "24", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "1983 Regular Season - Week 7" }, { "date": "Oct 16, 1983", @@ -48687,7 +71647,12 @@ "sF": "38", "sU": "17", "spread": "2", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.75, + "sF": 19.75 + }, + "week": "1983 Regular Season - Week 7" }, { "date": "Oct 16, 1983", @@ -48696,8 +71661,13 @@ "und": "Atlanta Falcons", "sF": "27", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1983 Regular Season - Week 7" }, { "date": "Oct 16, 1983", @@ -48707,7 +71677,12 @@ "sF": "36", "sU": "38", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "1983 Regular Season - Week 7" }, { "date": "Oct 17, 1983", @@ -48717,7 +71692,12 @@ "sF": "47", "sU": "48", "spread": "3", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 24.5, + "sF": 27.5 + }, + "week": "1983 Regular Season - Week 7" }, { "date": "Oct 23, 1983", @@ -48726,8 +71706,13 @@ "und": "New England Patriots", "sF": "0", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "1983 Regular Season - Week 8" }, { "date": "Oct 23, 1983", @@ -48737,7 +71722,12 @@ "sF": "17", "sU": "20", "spread": "1", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 25.5, + "sF": 26.5 + }, + "week": "1983 Regular Season - Week 8" }, { "date": "Oct 23, 1983", @@ -48746,8 +71736,13 @@ "und": "Houston Oilers", "sF": "13", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "1983 Regular Season - Week 8" }, { "date": "Oct 23, 1983", @@ -48756,8 +71751,13 @@ "und": "Atlanta Falcons", "sF": "21", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "1983 Regular Season - Week 8" }, { "date": "Oct 23, 1983", @@ -48767,7 +71767,12 @@ "sF": "6", "sU": "7", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1983 Regular Season - Week 8" }, { "date": "Oct 23, 1983", @@ -48776,8 +71781,13 @@ "und": "Detroit Lions", "sF": "38", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.0, + "pScore": { + "sU": 17.75, + "sF": 25.25 + }, + "week": "1983 Regular Season - Week 8" }, { "date": "Oct 23, 1983", @@ -48786,8 +71796,13 @@ "und": "Baltimore Colts", "sF": "21", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1983 Regular Season - Week 8" }, { "date": "Oct 23, 1983", @@ -48797,7 +71812,12 @@ "sF": "6", "sU": "14", "spread": "2", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.5, + "sF": 24.5 + }, + "week": "1983 Regular Season - Week 8" }, { "date": "Oct 23, 1983", @@ -48806,8 +71826,13 @@ "und": "Tampa Bay Buccaneers", "sF": "24", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1983 Regular Season - Week 8" }, { "date": "Oct 23, 1983", @@ -48817,7 +71842,12 @@ "sF": "38", "sU": "40", "spread": "4", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.0, + "sF": 25.0 + }, + "week": "1983 Regular Season - Week 8" }, { "date": "Oct 24, 1983", @@ -48827,7 +71857,12 @@ "sF": "20", "sU": "20", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "1983 Regular Season - Week 8" }, { "date": "Oct 30, 1983", @@ -48837,7 +71872,12 @@ "sF": "24", "sU": "13", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "1983 Regular Season - Week 9" }, { "date": "Oct 30, 1983", @@ -48847,7 +71887,12 @@ "sF": "27", "sU": "21", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "1983 Regular Season - Week 9" }, { "date": "Oct 30, 1983", @@ -48856,8 +71901,13 @@ "und": "Detroit Lions", "sF": "17", "sU": "38", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "1983 Regular Season - Week 9" }, { "date": "Oct 30, 1983", @@ -48867,7 +71917,12 @@ "sF": "25", "sU": "19", "spread": "9", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.0, + "sF": 25.0 + }, + "week": "1983 Regular Season - Week 9" }, { "date": "Oct 30, 1983", @@ -48877,7 +71932,12 @@ "sF": "38", "sU": "20", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "1983 Regular Season - Week 9" }, { "date": "Oct 30, 1983", @@ -48886,8 +71946,13 @@ "und": "Baltimore Colts", "sF": "21", "sU": "22", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "1983 Regular Season - Week 9" }, { "date": "Oct 30, 1983", @@ -48896,8 +71961,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "12", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.5, + "pScore": { + "sU": 16.5, + "sF": 27.0 + }, + "week": "1983 Regular Season - Week 9" }, { "date": "Oct 30, 1983", @@ -48906,8 +71976,13 @@ "und": "St Louis Cardinals", "sF": "31", "sU": "41", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "1983 Regular Season - Week 9" }, { "date": "Oct 30, 1983", @@ -48916,8 +71991,13 @@ "und": "Green Bay Packers", "sF": "34", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 51.0, + "pScore": { + "sU": 24.75, + "sF": 26.25 + }, + "week": "1983 Regular Season - Week 9" }, { "date": "Oct 30, 1983", @@ -48926,8 +72006,13 @@ "und": "Kansas City Chiefs", "sF": "27", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.0, + "pScore": { + "sU": 16.25, + "sF": 18.75 + }, + "week": "1983 Regular Season - Week 9" }, { "date": "Oct 30, 1983", @@ -48937,7 +72022,12 @@ "sF": "21", "sU": "34", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "1983 Regular Season - Week 9" }, { "date": "Oct 30, 1983", @@ -48947,7 +72037,12 @@ "sF": "30", "sU": "14", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1983 Regular Season - Week 9" }, { "date": "Oct 30, 1983", @@ -48957,7 +72052,12 @@ "sF": "13", "sU": "27", "spread": "6", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.75, + "sF": 26.75 + }, + "week": "1983 Regular Season - Week 9" }, { "date": "Oct 31, 1983", @@ -48966,8 +72066,13 @@ "und": "San Diego Chargers", "sF": "27", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 52.5, + "pScore": { + "sU": 24.0, + "sF": 28.5 + }, + "week": "1983 Regular Season - Week 9" }, { "date": "Nov 6, 1983", @@ -48977,7 +72082,12 @@ "sF": "35", "sU": "21", "spread": "2", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 25.5, + "sF": 27.5 + }, + "week": "1983 Regular Season - Week 10" }, { "date": "Nov 6, 1983", @@ -48986,8 +72096,13 @@ "und": "Houston Oilers", "sF": "55", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.0, + "pScore": { + "sU": 20.25, + "sF": 24.75 + }, + "week": "1983 Regular Season - Week 10" }, { "date": "Nov 6, 1983", @@ -48996,8 +72111,13 @@ "und": "Kansas City Chiefs", "sF": "28", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "1983 Regular Season - Week 10" }, { "date": "Nov 6, 1983", @@ -49007,7 +72127,12 @@ "sF": "12", "sU": "17", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "1983 Regular Season - Week 10" }, { "date": "Nov 6, 1983", @@ -49017,7 +72142,12 @@ "sF": "21", "sU": "7", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "1983 Regular Season - Week 10" }, { "date": "Nov 6, 1983", @@ -49027,7 +72157,12 @@ "sF": "27", "sU": "10", "spread": "1", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 22.0, + "sF": 23.0 + }, + "week": "1983 Regular Season - Week 10" }, { "date": "Nov 6, 1983", @@ -49036,8 +72171,13 @@ "und": "Philadelphia Eagles", "sF": "27", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1983 Regular Season - Week 10" }, { "date": "Nov 6, 1983", @@ -49047,7 +72187,12 @@ "sF": "26", "sU": "3", "spread": "5", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.0, + "sF": 26.0 + }, + "week": "1983 Regular Season - Week 10" }, { "date": "Nov 6, 1983", @@ -49056,8 +72201,13 @@ "und": "Chicago Bears", "sF": "21", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "1983 Regular Season - Week 10" }, { "date": "Nov 6, 1983", @@ -49066,8 +72216,13 @@ "und": "Baltimore Colts", "sF": "14", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "1983 Regular Season - Week 10" }, { "date": "Nov 6, 1983", @@ -49077,7 +72232,12 @@ "sF": "17", "sU": "20", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "1983 Regular Season - Week 10" }, { "date": "Nov 6, 1983", @@ -49087,7 +72247,12 @@ "sF": "27", "sU": "19", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1983 Regular Season - Week 10" }, { "date": "Nov 6, 1983", @@ -49097,7 +72262,12 @@ "sF": "45", "sU": "7", "spread": "10", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 21.0, + "sF": 31.0 + }, + "week": "1983 Regular Season - Week 10" }, { "date": "Nov 7, 1983", @@ -49107,7 +72277,12 @@ "sF": "15", "sU": "9", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "1983 Regular Season - Week 10" }, { "date": "Nov 13, 1983", @@ -49116,8 +72291,13 @@ "und": "Tampa Bay Buccaneers", "sF": "20", "sU": "0", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "1983 Regular Season - Week 11" }, { "date": "Nov 13, 1983", @@ -49127,7 +72307,12 @@ "sF": "17", "sU": "27", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "1983 Regular Season - Week 11" }, { "date": "Nov 13, 1983", @@ -49137,7 +72322,12 @@ "sF": "15", "sU": "20", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "1983 Regular Season - Week 11" }, { "date": "Nov 13, 1983", @@ -49146,8 +72336,13 @@ "und": "Green Bay Packers", "sF": "21", "sU": "29", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 51.0, + "pScore": { + "sU": 24.25, + "sF": 26.75 + }, + "week": "1983 Regular Season - Week 11" }, { "date": "Nov 13, 1983", @@ -49156,8 +72351,13 @@ "und": "New England Patriots", "sF": "6", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1983 Regular Season - Week 11" }, { "date": "Nov 13, 1983", @@ -49166,8 +72366,13 @@ "und": "Buffalo Bills", "sF": "17", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "1983 Regular Season - Week 11" }, { "date": "Nov 13, 1983", @@ -49177,7 +72382,12 @@ "sF": "28", "sU": "33", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "1983 Regular Season - Week 11" }, { "date": "Nov 13, 1983", @@ -49186,8 +72396,13 @@ "und": "Baltimore Colts", "sF": "24", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "1983 Regular Season - Week 11" }, { "date": "Nov 13, 1983", @@ -49197,7 +72412,12 @@ "sF": "22", "sU": "20", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1983 Regular Season - Week 11" }, { "date": "Nov 13, 1983", @@ -49206,8 +72426,13 @@ "und": "New York Giants", "sF": "33", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "1983 Regular Season - Week 11" }, { "date": "Nov 13, 1983", @@ -49217,7 +72442,12 @@ "sF": "23", "sU": "24", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "1983 Regular Season - Week 11" }, { "date": "Nov 13, 1983", @@ -49227,7 +72457,12 @@ "sF": "27", "sU": "0", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1983 Regular Season - Week 11" }, { "date": "Nov 14, 1983", @@ -49236,8 +72471,13 @@ "und": "Los Angeles Rams", "sF": "13", "sU": "36", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "1983 Regular Season - Week 11" }, { "date": "Nov 20, 1983", @@ -49247,7 +72487,12 @@ "sF": "27", "sU": "24", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1983 Regular Season - Week 12" }, { "date": "Nov 20, 1983", @@ -49257,7 +72502,12 @@ "sF": "38", "sU": "10", "spread": "9", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.75, + "sF": 26.75 + }, + "week": "1983 Regular Season - Week 12" }, { "date": "Nov 20, 1983", @@ -49267,7 +72517,12 @@ "sF": "20", "sU": "23", "spread": "4", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.25, + "sF": 26.25 + }, + "week": "1983 Regular Season - Week 12" }, { "date": "Nov 20, 1983", @@ -49276,8 +72531,13 @@ "und": "Baltimore Colts", "sF": "37", "sU": "0", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.0, + "pScore": { + "sU": 14.75, + "sF": 23.25 + }, + "week": "1983 Regular Season - Week 12" }, { "date": "Nov 20, 1983", @@ -49286,8 +72546,13 @@ "und": "Cleveland Browns", "sF": "0", "sU": "30", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "1983 Regular Season - Week 12" }, { "date": "Nov 20, 1983", @@ -49297,7 +72562,12 @@ "sF": "0", "sU": "23", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "1983 Regular Season - Week 12" }, { "date": "Nov 20, 1983", @@ -49307,7 +72577,12 @@ "sF": "14", "sU": "17", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1983 Regular Season - Week 12" }, { "date": "Nov 20, 1983", @@ -49317,7 +72592,12 @@ "sF": "14", "sU": "44", "spread": "1", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 25.75, + "sF": 26.75 + }, + "week": "1983 Regular Season - Week 12" }, { "date": "Nov 20, 1983", @@ -49326,8 +72606,13 @@ "und": "Atlanta Falcons", "sF": "24", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "1983 Regular Season - Week 12" }, { "date": "Nov 20, 1983", @@ -49337,7 +72622,12 @@ "sF": "41", "sU": "21", "spread": "9", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.0, + "sF": 28.0 + }, + "week": "1983 Regular Season - Week 12" }, { "date": "Nov 20, 1983", @@ -49346,8 +72636,13 @@ "und": "Seattle Seahawks", "sF": "38", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.0, + "pScore": { + "sU": 18.75, + "sF": 20.25 + }, + "week": "1983 Regular Season - Week 12" }, { "date": "Nov 20, 1983", @@ -49357,7 +72652,12 @@ "sF": "42", "sU": "20", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "1983 Regular Season - Week 12" }, { "date": "Nov 21, 1983", @@ -49367,7 +72667,12 @@ "sF": "28", "sU": "31", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1983 Regular Season - Week 12" }, { "date": "Nov 24, 1983", @@ -49376,8 +72681,13 @@ "und": "Detroit Lions", "sF": "3", "sU": "45", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "1983 Regular Season - Week 13" }, { "date": "Nov 24, 1983", @@ -49387,7 +72697,12 @@ "sF": "35", "sU": "17", "spread": "10", - "ou": -1 + "ou": 54.5, + "pScore": { + "sU": 22.25, + "sF": 32.25 + }, + "week": "1983 Regular Season - Week 13" }, { "date": "Nov 27, 1983", @@ -49397,7 +72712,12 @@ "sF": "3", "sU": "13", "spread": "4", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.75, + "sF": 22.75 + }, + "week": "1983 Regular Season - Week 13" }, { "date": "Nov 27, 1983", @@ -49407,7 +72727,12 @@ "sF": "41", "sU": "23", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "1983 Regular Season - Week 13" }, { "date": "Nov 27, 1983", @@ -49416,8 +72741,13 @@ "und": "Minnesota Vikings", "sF": "17", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1983 Regular Season - Week 13" }, { "date": "Nov 27, 1983", @@ -49427,7 +72757,12 @@ "sF": "26", "sU": "3", "spread": "5", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 17.25, + "sF": 22.25 + }, + "week": "1983 Regular Season - Week 13" }, { "date": "Nov 27, 1983", @@ -49437,7 +72772,12 @@ "sF": "33", "sU": "24", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1983 Regular Season - Week 13" }, { "date": "Nov 27, 1983", @@ -49447,7 +72787,12 @@ "sF": "28", "sU": "24", "spread": "15", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 15.5, + "sF": 30.5 + }, + "week": "1983 Regular Season - Week 13" }, { "date": "Nov 27, 1983", @@ -49456,8 +72801,13 @@ "und": "Green Bay Packers", "sF": "47", "sU": "41", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "1983 Regular Season - Week 13" }, { "date": "Nov 27, 1983", @@ -49467,7 +72817,12 @@ "sF": "27", "sU": "12", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "1983 Regular Season - Week 13" }, { "date": "Nov 27, 1983", @@ -49476,8 +72831,13 @@ "und": "Buffalo Bills", "sF": "41", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1983 Regular Season - Week 13" }, { "date": "Nov 27, 1983", @@ -49486,8 +72846,13 @@ "und": "Denver Broncos", "sF": "31", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "1983 Regular Season - Week 13" }, { "date": "Nov 27, 1983", @@ -49496,8 +72861,13 @@ "und": "Kansas City Chiefs", "sF": "51", "sU": "48", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "1983 Regular Season - Week 13" }, { "date": "Nov 28, 1983", @@ -49506,8 +72876,13 @@ "und": "Cincinnati Bengals", "sF": "38", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "1983 Regular Season - Week 13" }, { "date": "Dec 1, 1983", @@ -49516,8 +72891,13 @@ "und": "San Diego Chargers", "sF": "42", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 54.0, + "pScore": { + "sU": 26.25, + "sF": 27.75 + }, + "week": "1983 Regular Season - Week 14" }, { "date": "Dec 4, 1983", @@ -49527,7 +72907,12 @@ "sF": "31", "sU": "28", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "1983 Regular Season - Week 14" }, { "date": "Dec 4, 1983", @@ -49537,7 +72922,12 @@ "sF": "24", "sU": "17", "spread": "9", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.5, + "sF": 26.5 + }, + "week": "1983 Regular Season - Week 14" }, { "date": "Dec 4, 1983", @@ -49547,7 +72937,12 @@ "sF": "9", "sU": "14", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "1983 Regular Season - Week 14" }, { "date": "Dec 4, 1983", @@ -49557,7 +72952,12 @@ "sF": "10", "sU": "6", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1983 Regular Season - Week 14" }, { "date": "Dec 4, 1983", @@ -49567,7 +72967,12 @@ "sF": "9", "sU": "13", "spread": "4", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.25, + "sF": 21.25 + }, + "week": "1983 Regular Season - Week 14" }, { "date": "Dec 4, 1983", @@ -49577,7 +72982,12 @@ "sF": "10", "sU": "23", "spread": "4", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.75, + "sF": 22.75 + }, + "week": "1983 Regular Season - Week 14" }, { "date": "Dec 4, 1983", @@ -49587,7 +72997,12 @@ "sF": "37", "sU": "21", "spread": "9", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 21.0, + "sF": 30.0 + }, + "week": "1983 Regular Season - Week 14" }, { "date": "Dec 4, 1983", @@ -49596,8 +73011,13 @@ "und": "Baltimore Colts", "sF": "10", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1983 Regular Season - Week 14" }, { "date": "Dec 4, 1983", @@ -49606,8 +73026,13 @@ "und": "Denver Broncos", "sF": "6", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.5, + "pScore": { + "sU": 18.0, + "sF": 19.5 + }, + "week": "1983 Regular Season - Week 14" }, { "date": "Dec 4, 1983", @@ -49617,7 +73042,12 @@ "sF": "35", "sU": "21", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "1983 Regular Season - Week 14" }, { "date": "Dec 4, 1983", @@ -49627,7 +73057,12 @@ "sF": "35", "sU": "10", "spread": "6", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 24.5, + "sF": 30.5 + }, + "week": "1983 Regular Season - Week 14" }, { "date": "Dec 5, 1983", @@ -49637,7 +73072,12 @@ "sF": "13", "sU": "2", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "1983 Regular Season - Week 14" }, { "date": "Dec 10, 1983", @@ -49647,7 +73087,12 @@ "sF": "7", "sU": "34", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1983 Regular Season - Week 15" }, { "date": "Dec 10, 1983", @@ -49656,8 +73101,13 @@ "und": "Atlanta Falcons", "sF": "31", "sU": "24", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.5, + "pScore": { + "sU": 17.5, + "sF": 26.0 + }, + "week": "1983 Regular Season - Week 15" }, { "date": "Dec 11, 1983", @@ -49666,8 +73116,13 @@ "und": "Buffalo Bills", "sF": "23", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.0, + "pScore": { + "sU": 18.75, + "sF": 20.25 + }, + "week": "1983 Regular Season - Week 15" }, { "date": "Dec 11, 1983", @@ -49677,7 +73132,12 @@ "sF": "17", "sU": "9", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1983 Regular Season - Week 15" }, { "date": "Dec 11, 1983", @@ -49686,8 +73146,13 @@ "und": "Houston Oilers", "sF": "27", "sU": "34", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1983 Regular Season - Week 15" }, { "date": "Dec 11, 1983", @@ -49697,7 +73162,12 @@ "sF": "13", "sU": "19", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "1983 Regular Season - Week 15" }, { "date": "Dec 11, 1983", @@ -49707,7 +73177,12 @@ "sF": "17", "sU": "12", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1983 Regular Season - Week 15" }, { "date": "Dec 11, 1983", @@ -49717,7 +73192,12 @@ "sF": "17", "sU": "20", "spread": "1", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 17.25, + "sF": 18.25 + }, + "week": "1983 Regular Season - Week 15" }, { "date": "Dec 11, 1983", @@ -49727,7 +73207,12 @@ "sF": "10", "sU": "31", "spread": "3", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 25.25, + "sF": 28.25 + }, + "week": "1983 Regular Season - Week 15" }, { "date": "Dec 11, 1983", @@ -49736,8 +73221,13 @@ "und": "Baltimore Colts", "sF": "21", "sU": "19", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 36.5, + "pScore": { + "sU": 14.0, + "sF": 22.5 + }, + "week": "1983 Regular Season - Week 15" }, { "date": "Dec 11, 1983", @@ -49747,7 +73237,12 @@ "sF": "24", "sU": "34", "spread": "9", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 19.25, + "sF": 28.25 + }, + "week": "1983 Regular Season - Week 15" }, { "date": "Dec 11, 1983", @@ -49756,8 +73251,13 @@ "und": "New England Patriots", "sF": "7", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1983 Regular Season - Week 15" }, { "date": "Dec 11, 1983", @@ -49767,7 +73267,12 @@ "sF": "41", "sU": "38", "spread": "4", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 24.75, + "sF": 28.75 + }, + "week": "1983 Regular Season - Week 15" }, { "date": "Dec 12, 1983", @@ -49777,7 +73282,12 @@ "sF": "12", "sU": "9", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "1983 Regular Season - Week 15" }, { "date": "Dec 16, 1983", @@ -49787,7 +73297,12 @@ "sF": "34", "sU": "14", "spread": "8", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 16.75, + "sF": 24.75 + }, + "week": "1983 Regular Season - Week 16" }, { "date": "Dec 17, 1983", @@ -49796,8 +73311,13 @@ "und": "New York Giants", "sF": "31", "sU": "22", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 44.5, + "pScore": { + "sU": 14.5, + "sF": 30.0 + }, + "week": "1983 Regular Season - Week 16" }, { "date": "Dec 17, 1983", @@ -49807,7 +73327,12 @@ "sF": "14", "sU": "20", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "1983 Regular Season - Week 16" }, { "date": "Dec 18, 1983", @@ -49817,7 +73342,12 @@ "sF": "31", "sU": "14", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "1983 Regular Season - Week 16" }, { "date": "Dec 18, 1983", @@ -49827,7 +73357,12 @@ "sF": "21", "sU": "23", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "1983 Regular Season - Week 16" }, { "date": "Dec 18, 1983", @@ -49837,7 +73372,12 @@ "sF": "30", "sU": "17", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "1983 Regular Season - Week 16" }, { "date": "Dec 18, 1983", @@ -49846,8 +73386,13 @@ "und": "Kansas City Chiefs", "sF": "17", "sU": "48", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1983 Regular Season - Week 16" }, { "date": "Dec 18, 1983", @@ -49857,7 +73402,12 @@ "sF": "24", "sU": "26", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1983 Regular Season - Week 16" }, { "date": "Dec 18, 1983", @@ -49867,7 +73417,12 @@ "sF": "31", "sU": "7", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1983 Regular Season - Week 16" }, { "date": "Dec 18, 1983", @@ -49877,7 +73432,12 @@ "sF": "20", "sU": "10", "spread": "4", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.25, + "sF": 22.25 + }, + "week": "1983 Regular Season - Week 16" }, { "date": "Dec 18, 1983", @@ -49887,7 +73447,12 @@ "sF": "23", "sU": "20", "spread": "10", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 14.75, + "sF": 24.75 + }, + "week": "1983 Regular Season - Week 16" }, { "date": "Dec 18, 1983", @@ -49897,7 +73462,12 @@ "sF": "30", "sU": "14", "spread": "9", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 22.25, + "sF": 31.25 + }, + "week": "1983 Regular Season - Week 16" }, { "date": "Dec 18, 1983", @@ -49906,8 +73476,13 @@ "und": "New England Patriots", "sF": "24", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "1983 Regular Season - Week 16" }, { "date": "Dec 24, 1983", @@ -49916,8 +73491,13 @@ "und": "Denver Broncos (5)", "sF": "31", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1983 Playoffs" }, { "date": "Dec 26, 1983", @@ -49927,7 +73507,12 @@ "sF": "17", "sU": "24", "spread": "8", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 18.75, + "sF": 26.75 + }, + "week": "1983 Playoffs" }, { "date": "Dec 31, 1983", @@ -49937,7 +73522,12 @@ "sF": "20", "sU": "27", "spread": "8", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.0, + "sF": 26.0 + }, + "week": "1983 Playoffs" }, { "date": "Dec 31, 1983", @@ -49946,8 +73536,13 @@ "und": "Detroit Lions (3)", "sF": "24", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.5, + "pScore": { + "sU": 18.5, + "sF": 26.0 + }, + "week": "1983 Playoffs" }, { "date": "Jan 1, 1984", @@ -49956,8 +73551,13 @@ "und": "Los Angeles Rams (5)", "sF": "51", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 48.5, + "pScore": { + "sU": 19.5, + "sF": 29.0 + }, + "week": "1983 Playoffs" }, { "date": "Jan 1, 1984", @@ -49967,7 +73567,12 @@ "sF": "38", "sU": "10", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1983 Playoffs" }, { "date": "Jan 8, 1984", @@ -49977,11 +73582,12 @@ "sF": "24", "sU": "21", "spread": "10", - "ou": "49", + "ou": 51.0, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sU": 20.5, + "sF": 30.5 + }, + "week": "1983 Playoffs" }, { "date": "Jan 8, 1984", @@ -49991,7 +73597,12 @@ "sF": "30", "sU": "14", "spread": "7", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 21.5, + "sF": 28.5 + }, + "week": "1983 Playoffs" }, { "date": "Jan 22, 1984", @@ -50001,7 +73612,12 @@ "sF": "9", "sU": "38", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "1983 Playoffs" }, { "date": "Sep 2, 1984", @@ -50011,7 +73627,12 @@ "sF": "21", "sU": "17", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1984 Regular Season - Week 1" }, { "date": "Sep 2, 1984", @@ -50021,7 +73642,12 @@ "sF": "34", "sU": "14", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "1984 Regular Season - Week 1" }, { "date": "Sep 2, 1984", @@ -50030,8 +73656,13 @@ "und": "Detroit Lions", "sF": "30", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1984 Regular Season - Week 1" }, { "date": "Sep 2, 1984", @@ -50040,8 +73671,13 @@ "und": "St Louis Cardinals", "sF": "24", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "1984 Regular Season - Week 1" }, { "date": "Sep 2, 1984", @@ -50051,7 +73687,12 @@ "sF": "42", "sU": "13", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "1984 Regular Season - Week 1" }, { "date": "Sep 2, 1984", @@ -50061,7 +73702,12 @@ "sF": "28", "sU": "36", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "1984 Regular Season - Week 1" }, { "date": "Sep 2, 1984", @@ -50071,7 +73717,12 @@ "sF": "28", "sU": "27", "spread": "2", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.5, + "sF": 18.5 + }, + "week": "1984 Regular Season - Week 1" }, { "date": "Sep 2, 1984", @@ -50080,8 +73731,13 @@ "und": "Kansas City Chiefs", "sF": "27", "sU": "37", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.5, + "pScore": { + "sU": 17.0, + "sF": 23.5 + }, + "week": "1984 Regular Season - Week 1" }, { "date": "Sep 2, 1984", @@ -50090,8 +73746,13 @@ "und": "Miami Dolphins", "sF": "17", "sU": "35", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.0, + "pScore": { + "sU": 20.75, + "sF": 25.25 + }, + "week": "1984 Regular Season - Week 1" }, { "date": "Sep 2, 1984", @@ -50101,7 +73762,12 @@ "sF": "20", "sU": "17", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1984 Regular Season - Week 1" }, { "date": "Sep 2, 1984", @@ -50111,7 +73777,12 @@ "sF": "24", "sU": "14", "spread": "6", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 21.25, + "sF": 27.25 + }, + "week": "1984 Regular Season - Week 1" }, { "date": "Sep 2, 1984", @@ -50121,7 +73792,12 @@ "sF": "23", "sU": "14", "spread": "2", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.5, + "sF": 18.5 + }, + "week": "1984 Regular Season - Week 1" }, { "date": "Sep 3, 1984", @@ -50130,8 +73806,13 @@ "und": "Cleveland Browns", "sF": "33", "sU": "0", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "1984 Regular Season - Week 1" }, { "date": "Sep 3, 1984", @@ -50141,7 +73822,12 @@ "sF": "13", "sU": "20", "spread": "2", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.75, + "sF": 24.75 + }, + "week": "1984 Regular Season - Week 1" }, { "date": "Sep 6, 1984", @@ -50151,7 +73837,12 @@ "sF": "23", "sU": "17", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "1984 Regular Season - Week 2" }, { "date": "Sep 9, 1984", @@ -50161,7 +73852,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "1984 Regular Season - Week 2" }, { "date": "Sep 9, 1984", @@ -50170,8 +73866,13 @@ "und": "Denver Broncos", "sF": "27", "sU": "0", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "1984 Regular Season - Week 2" }, { "date": "Sep 9, 1984", @@ -50181,7 +73882,12 @@ "sF": "22", "sU": "27", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "1984 Regular Season - Week 2" }, { "date": "Sep 9, 1984", @@ -50191,7 +73897,12 @@ "sF": "28", "sU": "7", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1984 Regular Season - Week 2" }, { "date": "Sep 9, 1984", @@ -50201,7 +73912,12 @@ "sF": "17", "sU": "13", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1984 Regular Season - Week 2" }, { "date": "Sep 9, 1984", @@ -50210,8 +73926,13 @@ "und": "New York Giants", "sF": "7", "sU": "28", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.0, + "pScore": { + "sU": 20.25, + "sF": 25.75 + }, + "week": "1984 Regular Season - Week 2" }, { "date": "Sep 9, 1984", @@ -50221,7 +73942,12 @@ "sF": "19", "sU": "17", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "1984 Regular Season - Week 2" }, { "date": "Sep 9, 1984", @@ -50231,7 +73957,12 @@ "sF": "37", "sU": "7", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1984 Regular Season - Week 2" }, { "date": "Sep 9, 1984", @@ -50240,8 +73971,13 @@ "und": "Indianapolis Colts", "sF": "21", "sU": "35", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "1984 Regular Season - Week 2" }, { "date": "Sep 9, 1984", @@ -50251,7 +73987,12 @@ "sF": "28", "sU": "7", "spread": "7", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 21.5, + "sF": 28.5 + }, + "week": "1984 Regular Season - Week 2" }, { "date": "Sep 9, 1984", @@ -50261,7 +74002,12 @@ "sF": "20", "sU": "17", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "1984 Regular Season - Week 2" }, { "date": "Sep 9, 1984", @@ -50271,7 +74017,12 @@ "sF": "17", "sU": "31", "spread": "1", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 25.5, + "sF": 26.5 + }, + "week": "1984 Regular Season - Week 2" }, { "date": "Sep 10, 1984", @@ -50281,7 +74032,12 @@ "sF": "37", "sU": "31", "spread": "2", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 25.0, + "sF": 27.0 + }, + "week": "1984 Regular Season - Week 2" }, { "date": "Sep 16, 1984", @@ -50291,7 +74047,12 @@ "sF": "7", "sU": "9", "spread": "2", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.75, + "sF": 22.75 + }, + "week": "1984 Regular Season - Week 3" }, { "date": "Sep 16, 1984", @@ -50300,8 +74061,13 @@ "und": "Indianapolis Colts", "sF": "34", "sU": "33", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.5, + "pScore": { + "sU": 19.5, + "sF": 25.0 + }, + "week": "1984 Regular Season - Week 3" }, { "date": "Sep 16, 1984", @@ -50311,7 +74077,12 @@ "sF": "22", "sU": "20", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "1984 Regular Season - Week 3" }, { "date": "Sep 16, 1984", @@ -50321,7 +74092,12 @@ "sF": "20", "sU": "27", "spread": "2", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.0, + "sF": 24.0 + }, + "week": "1984 Regular Season - Week 3" }, { "date": "Sep 16, 1984", @@ -50331,7 +74107,12 @@ "sF": "38", "sU": "23", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1984 Regular Season - Week 3" }, { "date": "Sep 16, 1984", @@ -50341,7 +74122,12 @@ "sF": "23", "sU": "43", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1984 Regular Season - Week 3" }, { "date": "Sep 16, 1984", @@ -50351,7 +74137,12 @@ "sF": "23", "sU": "17", "spread": "8", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.5, + "sF": 25.5 + }, + "week": "1984 Regular Season - Week 3" }, { "date": "Sep 16, 1984", @@ -50360,8 +74151,13 @@ "und": "Los Angeles Rams", "sF": "24", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1984 Regular Season - Week 3" }, { "date": "Sep 16, 1984", @@ -50370,8 +74166,13 @@ "und": "Houston Oilers", "sF": "31", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 52.0, + "pScore": { + "sU": 20.75, + "sF": 31.25 + }, + "week": "1984 Regular Season - Week 3" }, { "date": "Sep 16, 1984", @@ -50380,8 +74181,13 @@ "und": "New Orleans Saints", "sF": "30", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.0, + "pScore": { + "sU": 19.75, + "sF": 25.25 + }, + "week": "1984 Regular Season - Week 3" }, { "date": "Sep 16, 1984", @@ -50390,8 +74196,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "1984 Regular Season - Week 3" }, { "date": "Sep 16, 1984", @@ -50401,7 +74212,12 @@ "sF": "30", "sU": "14", "spread": "6", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.75, + "sF": 26.75 + }, + "week": "1984 Regular Season - Week 3" }, { "date": "Sep 16, 1984", @@ -50410,8 +74226,13 @@ "und": "Denver Broncos", "sF": "14", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.5, + "pScore": { + "sU": 17.5, + "sF": 22.0 + }, + "week": "1984 Regular Season - Week 3" }, { "date": "Sep 17, 1984", @@ -50420,8 +74241,13 @@ "und": "Buffalo Bills", "sF": "21", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 41.0, + "pScore": { + "sU": 16.25, + "sF": 24.75 + }, + "week": "1984 Regular Season - Week 3" }, { "date": "Sep 23, 1984", @@ -50431,7 +74257,12 @@ "sF": "42", "sU": "10", "spread": "9", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 20.0, + "sF": 29.0 + }, + "week": "1984 Regular Season - Week 4" }, { "date": "Sep 23, 1984", @@ -50441,7 +74272,12 @@ "sF": "28", "sU": "26", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1984 Regular Season - Week 4" }, { "date": "Sep 23, 1984", @@ -50451,7 +74287,12 @@ "sF": "14", "sU": "24", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "1984 Regular Season - Week 4" }, { "date": "Sep 23, 1984", @@ -50461,7 +74302,12 @@ "sF": "10", "sU": "20", "spread": "2", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.75, + "sF": 20.75 + }, + "week": "1984 Regular Season - Week 4" }, { "date": "Sep 23, 1984", @@ -50471,7 +74317,12 @@ "sF": "28", "sU": "29", "spread": "6", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.0, + "sF": 26.0 + }, + "week": "1984 Regular Season - Week 4" }, { "date": "Sep 23, 1984", @@ -50480,8 +74331,13 @@ "und": "Philadelphia Eagles", "sF": "21", "sU": "9", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.0, + "pScore": { + "sU": 19.75, + "sF": 24.25 + }, + "week": "1984 Regular Season - Week 4" }, { "date": "Sep 23, 1984", @@ -50490,8 +74346,13 @@ "und": "Green Bay Packers", "sF": "20", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1984 Regular Season - Week 4" }, { "date": "Sep 23, 1984", @@ -50501,7 +74362,12 @@ "sF": "44", "sU": "7", "spread": "11", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.0, + "sF": 28.0 + }, + "week": "1984 Regular Season - Week 4" }, { "date": "Sep 23, 1984", @@ -50511,7 +74377,12 @@ "sF": "17", "sU": "14", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1984 Regular Season - Week 4" }, { "date": "Sep 23, 1984", @@ -50521,7 +74392,12 @@ "sF": "38", "sU": "9", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1984 Regular Season - Week 4" }, { "date": "Sep 24, 1984", @@ -50530,8 +74406,13 @@ "und": "San Diego Chargers", "sF": "33", "sU": "30", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 51.5, + "pScore": { + "sU": 23.0, + "sF": 28.5 + }, + "week": "1984 Regular Season - Week 4" }, { "date": "Sep 30, 1984", @@ -50540,8 +74421,13 @@ "und": "Chicago Bears", "sF": "23", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1984 Regular Season - Week 5" }, { "date": "Sep 30, 1984", @@ -50550,8 +74436,13 @@ "und": "Buffalo Bills", "sF": "31", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1984 Regular Season - Week 5" }, { "date": "Sep 30, 1984", @@ -50561,7 +74452,12 @@ "sF": "10", "sU": "6", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "1984 Regular Season - Week 5" }, { "date": "Sep 30, 1984", @@ -50571,7 +74467,12 @@ "sF": "20", "sU": "12", "spread": "2", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.0, + "sF": 24.0 + }, + "week": "1984 Regular Season - Week 5" }, { "date": "Sep 30, 1984", @@ -50580,8 +74481,13 @@ "und": "New England Patriots", "sF": "21", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.0, + "pScore": { + "sU": 21.25, + "sF": 22.75 + }, + "week": "1984 Regular Season - Week 5" }, { "date": "Sep 30, 1984", @@ -50590,8 +74496,13 @@ "und": "St Louis Cardinals", "sF": "36", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 50.5, + "pScore": { + "sU": 23.5, + "sF": 27.0 + }, + "week": "1984 Regular Season - Week 5" }, { "date": "Sep 30, 1984", @@ -50601,7 +74512,12 @@ "sF": "13", "sU": "16", "spread": "4", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 17.75, + "sF": 21.75 + }, + "week": "1984 Regular Season - Week 5" }, { "date": "Sep 30, 1984", @@ -50610,8 +74526,13 @@ "und": "Houston Oilers", "sF": "27", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 49.0, + "pScore": { + "sU": 21.75, + "sF": 27.25 + }, + "week": "1984 Regular Season - Week 5" }, { "date": "Sep 30, 1984", @@ -50620,8 +74541,13 @@ "und": "New York Giants", "sF": "33", "sU": "12", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "1984 Regular Season - Week 5" }, { "date": "Sep 30, 1984", @@ -50631,7 +74557,12 @@ "sF": "27", "sU": "24", "spread": "5", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 22.5, + "sF": 27.5 + }, + "week": "1984 Regular Season - Week 5" }, { "date": "Sep 30, 1984", @@ -50641,7 +74572,12 @@ "sF": "14", "sU": "5", "spread": "6", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 21.75, + "sF": 27.75 + }, + "week": "1984 Regular Season - Week 5" }, { "date": "Sep 30, 1984", @@ -50651,7 +74587,12 @@ "sF": "30", "sU": "27", "spread": "2", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.5, + "sF": 18.5 + }, + "week": "1984 Regular Season - Week 5" }, { "date": "Sep 30, 1984", @@ -50660,8 +74601,13 @@ "und": "Philadelphia Eagles", "sF": "20", "sU": "0", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "1984 Regular Season - Week 5" }, { "date": "Oct 1, 1984", @@ -50671,7 +74617,12 @@ "sF": "38", "sU": "17", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1984 Regular Season - Week 5" }, { "date": "Oct 7, 1984", @@ -50680,8 +74631,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "1984 Regular Season - Week 6" }, { "date": "Oct 7, 1984", @@ -50690,8 +74646,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.5, + "pScore": { + "sU": 18.0, + "sF": 20.5 + }, + "week": "1984 Regular Season - Week 6" }, { "date": "Oct 7, 1984", @@ -50700,8 +74661,13 @@ "und": "Cleveland Browns", "sF": "17", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1984 Regular Season - Week 6" }, { "date": "Oct 7, 1984", @@ -50710,8 +74676,13 @@ "und": "St Louis Cardinals", "sF": "20", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.0, + "pScore": { + "sU": 20.75, + "sF": 27.25 + }, + "week": "1984 Regular Season - Week 6" }, { "date": "Oct 7, 1984", @@ -50721,7 +74692,12 @@ "sF": "7", "sU": "28", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1984 Regular Season - Week 6" }, { "date": "Oct 7, 1984", @@ -50730,8 +74706,13 @@ "und": "Indianapolis Colts", "sF": "35", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.5, + "pScore": { + "sU": 20.0, + "sF": 27.5 + }, + "week": "1984 Regular Season - Week 6" }, { "date": "Oct 7, 1984", @@ -50740,8 +74721,13 @@ "und": "New York Jets", "sF": "16", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.5, + "pScore": { + "sU": 18.5, + "sF": 23.0 + }, + "week": "1984 Regular Season - Week 6" }, { "date": "Oct 7, 1984", @@ -50750,8 +74736,13 @@ "und": "Pittsburgh Steelers", "sF": "31", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.0, + "pScore": { + "sU": 20.75, + "sF": 25.25 + }, + "week": "1984 Regular Season - Week 6" }, { "date": "Oct 7, 1984", @@ -50761,7 +74752,12 @@ "sF": "35", "sU": "31", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1984 Regular Season - Week 6" }, { "date": "Oct 7, 1984", @@ -50771,7 +74767,12 @@ "sF": "13", "sU": "3", "spread": "9", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 16.75, + "sF": 25.75 + }, + "week": "1984 Regular Season - Week 6" }, { "date": "Oct 7, 1984", @@ -50780,8 +74781,13 @@ "und": "Green Bay Packers", "sF": "34", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.5, + "pScore": { + "sU": 23.5, + "sF": 26.0 + }, + "week": "1984 Regular Season - Week 6" }, { "date": "Oct 7, 1984", @@ -50791,7 +74797,12 @@ "sF": "28", "sU": "14", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1984 Regular Season - Week 6" }, { "date": "Oct 7, 1984", @@ -50800,8 +74811,13 @@ "und": "Atlanta Falcons", "sF": "28", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1984 Regular Season - Week 6" }, { "date": "Oct 8, 1984", @@ -50811,7 +74827,12 @@ "sF": "31", "sU": "10", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1984 Regular Season - Week 6" }, { "date": "Oct 14, 1984", @@ -50820,8 +74841,13 @@ "und": "New York Giants", "sF": "7", "sU": "19", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "1984 Regular Season - Week 7" }, { "date": "Oct 14, 1984", @@ -50831,7 +74857,12 @@ "sF": "13", "sU": "7", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1984 Regular Season - Week 7" }, { "date": "Oct 14, 1984", @@ -50840,8 +74871,13 @@ "und": "Kansas City Chiefs", "sF": "13", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.0, + "pScore": { + "sU": 22.25, + "sF": 24.75 + }, + "week": "1984 Regular Season - Week 7" }, { "date": "Oct 14, 1984", @@ -50851,7 +74887,12 @@ "sF": "28", "sU": "10", "spread": "17", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 13.5, + "sF": 30.5 + }, + "week": "1984 Regular Season - Week 7" }, { "date": "Oct 14, 1984", @@ -50860,8 +74901,13 @@ "und": "Cincinnati Bengals", "sF": "20", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.0, + "pScore": { + "sU": 16.25, + "sF": 23.75 + }, + "week": "1984 Regular Season - Week 7" }, { "date": "Oct 14, 1984", @@ -50871,7 +74917,12 @@ "sF": "10", "sU": "28", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1984 Regular Season - Week 7" }, { "date": "Oct 14, 1984", @@ -50880,8 +74931,13 @@ "und": "Indianapolis Colts", "sF": "16", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.0, + "pScore": { + "sU": 18.25, + "sF": 23.75 + }, + "week": "1984 Regular Season - Week 7" }, { "date": "Oct 14, 1984", @@ -50891,7 +74947,12 @@ "sF": "38", "sU": "21", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1984 Regular Season - Week 7" }, { "date": "Oct 14, 1984", @@ -50901,7 +74962,12 @@ "sF": "23", "sU": "20", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "1984 Regular Season - Week 7" }, { "date": "Oct 14, 1984", @@ -50911,7 +74977,12 @@ "sF": "17", "sU": "20", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "1984 Regular Season - Week 7" }, { "date": "Oct 14, 1984", @@ -50921,7 +74992,12 @@ "sF": "31", "sU": "28", "spread": "11", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 16.25, + "sF": 27.25 + }, + "week": "1984 Regular Season - Week 7" }, { "date": "Oct 14, 1984", @@ -50931,7 +75007,12 @@ "sF": "34", "sU": "14", "spread": "4", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.25, + "sF": 24.25 + }, + "week": "1984 Regular Season - Week 7" }, { "date": "Oct 15, 1984", @@ -50941,7 +75022,12 @@ "sF": "17", "sU": "14", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1984 Regular Season - Week 7" }, { "date": "Oct 21, 1984", @@ -50951,7 +75037,12 @@ "sF": "37", "sU": "7", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1984 Regular Season - Week 8" }, { "date": "Oct 21, 1984", @@ -50960,8 +75051,13 @@ "und": "Cleveland Browns", "sF": "12", "sU": "9", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1984 Regular Season - Week 8" }, { "date": "Oct 21, 1984", @@ -50970,8 +75066,13 @@ "und": "Green Bay Packers", "sF": "30", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "1984 Regular Season - Week 8" }, { "date": "Oct 21, 1984", @@ -50981,7 +75082,12 @@ "sF": "16", "sU": "17", "spread": "5", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 17.25, + "sF": 22.25 + }, + "week": "1984 Regular Season - Week 8" }, { "date": "Oct 21, 1984", @@ -50991,7 +75097,12 @@ "sF": "14", "sU": "16", "spread": "1", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.75, + "sF": 22.75 + }, + "week": "1984 Regular Season - Week 8" }, { "date": "Oct 21, 1984", @@ -51001,7 +75112,12 @@ "sF": "44", "sU": "24", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1984 Regular Season - Week 8" }, { "date": "Oct 21, 1984", @@ -51011,7 +75127,12 @@ "sF": "10", "sU": "24", "spread": "1", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 17.25, + "sF": 18.25 + }, + "week": "1984 Regular Season - Week 8" }, { "date": "Oct 21, 1984", @@ -51020,8 +75141,13 @@ "und": "St Louis Cardinals", "sF": "24", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 52.0, + "pScore": { + "sU": 24.25, + "sF": 27.75 + }, + "week": "1984 Regular Season - Week 8" }, { "date": "Oct 21, 1984", @@ -51031,7 +75157,12 @@ "sF": "9", "sU": "44", "spread": "1", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 19.25, + "sF": 20.25 + }, + "week": "1984 Regular Season - Week 8" }, { "date": "Oct 21, 1984", @@ -51041,7 +75172,12 @@ "sF": "34", "sU": "21", "spread": "11", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 15.5, + "sF": 26.5 + }, + "week": "1984 Regular Season - Week 8" }, { "date": "Oct 21, 1984", @@ -51050,8 +75186,13 @@ "und": "Kansas City Chiefs", "sF": "28", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1984 Regular Season - Week 8" }, { "date": "Oct 21, 1984", @@ -51061,7 +75202,12 @@ "sF": "44", "sU": "37", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "1984 Regular Season - Week 8" }, { "date": "Oct 21, 1984", @@ -51071,7 +75217,12 @@ "sF": "30", "sU": "27", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1984 Regular Season - Week 8" }, { "date": "Oct 22, 1984", @@ -51080,8 +75231,13 @@ "und": "Los Angeles Rams", "sF": "10", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.0, + "pScore": { + "sU": 21.75, + "sF": 23.25 + }, + "week": "1984 Regular Season - Week 8" }, { "date": "Oct 28, 1984", @@ -51090,8 +75246,13 @@ "und": "Minnesota Vikings", "sF": "16", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1984 Regular Season - Week 9" }, { "date": "Oct 28, 1984", @@ -51101,7 +75262,12 @@ "sF": "14", "sU": "16", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1984 Regular Season - Week 9" }, { "date": "Oct 28, 1984", @@ -51111,7 +75277,12 @@ "sF": "22", "sU": "3", "spread": "10", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.5, + "sF": 26.5 + }, + "week": "1984 Regular Season - Week 9" }, { "date": "Oct 28, 1984", @@ -51120,8 +75291,13 @@ "und": "Detroit Lions", "sF": "41", "sU": "9", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "1984 Regular Season - Week 9" }, { "date": "Oct 28, 1984", @@ -51130,8 +75306,13 @@ "und": "Houston Oilers", "sF": "31", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "1984 Regular Season - Week 9" }, { "date": "Oct 28, 1984", @@ -51141,7 +75322,12 @@ "sF": "24", "sU": "20", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1984 Regular Season - Week 9" }, { "date": "Oct 28, 1984", @@ -51150,8 +75336,13 @@ "und": "New York Jets", "sF": "30", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "1984 Regular Season - Week 9" }, { "date": "Oct 28, 1984", @@ -51161,7 +75352,12 @@ "sF": "34", "sU": "14", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "1984 Regular Season - Week 9" }, { "date": "Oct 28, 1984", @@ -51171,7 +75367,12 @@ "sF": "35", "sU": "10", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1984 Regular Season - Week 9" }, { "date": "Oct 28, 1984", @@ -51181,7 +75382,12 @@ "sF": "19", "sU": "22", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1984 Regular Season - Week 9" }, { "date": "Oct 28, 1984", @@ -51191,7 +75397,12 @@ "sF": "33", "sU": "0", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1984 Regular Season - Week 9" }, { "date": "Oct 28, 1984", @@ -51201,7 +75412,12 @@ "sF": "38", "sU": "7", "spread": "17", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 14.0, + "sF": 31.0 + }, + "week": "1984 Regular Season - Week 9" }, { "date": "Oct 28, 1984", @@ -51211,7 +75427,12 @@ "sF": "13", "sU": "37", "spread": "6", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.25, + "sF": 24.25 + }, + "week": "1984 Regular Season - Week 9" }, { "date": "Oct 29, 1984", @@ -51221,7 +75442,12 @@ "sF": "0", "sU": "24", "spread": "2", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.5, + "sF": 26.5 + }, + "week": "1984 Regular Season - Week 9" }, { "date": "Nov 4, 1984", @@ -51230,8 +75456,13 @@ "und": "Buffalo Bills", "sF": "13", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "1984 Regular Season - Week 10" }, { "date": "Nov 4, 1984", @@ -51240,8 +75471,13 @@ "und": "Chicago Bears", "sF": "6", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1984 Regular Season - Week 10" }, { "date": "Nov 4, 1984", @@ -51251,7 +75487,12 @@ "sF": "7", "sU": "19", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1984 Regular Season - Week 10" }, { "date": "Nov 4, 1984", @@ -51260,8 +75501,13 @@ "und": "Philadelphia Eagles", "sF": "23", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1984 Regular Season - Week 10" }, { "date": "Nov 4, 1984", @@ -51271,7 +75517,12 @@ "sF": "38", "sU": "10", "spread": "6", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.0, + "sF": 26.0 + }, + "week": "1984 Regular Season - Week 10" }, { "date": "Nov 4, 1984", @@ -51281,7 +75532,12 @@ "sF": "27", "sU": "24", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1984 Regular Season - Week 10" }, { "date": "Nov 4, 1984", @@ -51290,8 +75546,13 @@ "und": "Green Bay Packers", "sF": "13", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "1984 Regular Season - Week 10" }, { "date": "Nov 4, 1984", @@ -51301,7 +75562,12 @@ "sF": "35", "sU": "7", "spread": "14", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 13.5, + "sF": 27.5 + }, + "week": "1984 Regular Season - Week 10" }, { "date": "Nov 4, 1984", @@ -51311,7 +75577,12 @@ "sF": "26", "sU": "19", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "1984 Regular Season - Week 10" }, { "date": "Nov 4, 1984", @@ -51320,8 +75591,13 @@ "und": "New York Jets", "sF": "31", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1984 Regular Season - Week 10" }, { "date": "Nov 4, 1984", @@ -51330,8 +75606,13 @@ "und": "Cincinnati Bengals", "sF": "23", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.0, + "pScore": { + "sU": 16.25, + "sF": 26.75 + }, + "week": "1984 Regular Season - Week 10" }, { "date": "Nov 4, 1984", @@ -51341,7 +75622,12 @@ "sF": "45", "sU": "0", "spread": "5", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.0, + "sF": 25.0 + }, + "week": "1984 Regular Season - Week 10" }, { "date": "Nov 4, 1984", @@ -51351,7 +75637,12 @@ "sF": "13", "sU": "16", "spread": "6", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 21.0, + "sF": 27.0 + }, + "week": "1984 Regular Season - Week 10" }, { "date": "Nov 5, 1984", @@ -51361,7 +75652,12 @@ "sF": "27", "sU": "14", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "1984 Regular Season - Week 10" }, { "date": "Nov 11, 1984", @@ -51371,7 +75667,12 @@ "sF": "13", "sU": "17", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1984 Regular Season - Week 11" }, { "date": "Nov 11, 1984", @@ -51381,7 +75682,12 @@ "sF": "20", "sU": "22", "spread": "1", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 18.25, + "sF": 19.25 + }, + "week": "1984 Regular Season - Week 11" }, { "date": "Nov 11, 1984", @@ -51391,7 +75697,12 @@ "sF": "41", "sU": "7", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "1984 Regular Season - Week 11" }, { "date": "Nov 11, 1984", @@ -51400,8 +75711,13 @@ "und": "Minnesota Vikings", "sF": "45", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "1984 Regular Season - Week 11" }, { "date": "Nov 11, 1984", @@ -51410,8 +75726,13 @@ "und": "Houston Oilers", "sF": "16", "sU": "17", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 41.0, + "pScore": { + "sU": 13.75, + "sF": 27.25 + }, + "week": "1984 Regular Season - Week 11" }, { "date": "Nov 11, 1984", @@ -51421,7 +75742,12 @@ "sF": "24", "sU": "23", "spread": "14", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 15.0, + "sF": 29.0 + }, + "week": "1984 Regular Season - Week 11" }, { "date": "Nov 11, 1984", @@ -51430,8 +75756,13 @@ "und": "Buffalo Bills", "sF": "38", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 41.0, + "pScore": { + "sU": 13.75, + "sF": 27.25 + }, + "week": "1984 Regular Season - Week 11" }, { "date": "Nov 11, 1984", @@ -51441,7 +75772,12 @@ "sF": "5", "sU": "9", "spread": "9", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 16.25, + "sF": 25.25 + }, + "week": "1984 Regular Season - Week 11" }, { "date": "Nov 11, 1984", @@ -51451,7 +75787,12 @@ "sF": "28", "sU": "14", "spread": "9", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.5, + "sF": 26.5 + }, + "week": "1984 Regular Season - Week 11" }, { "date": "Nov 11, 1984", @@ -51461,7 +75802,12 @@ "sF": "29", "sU": "13", "spread": "2", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.75, + "sF": 18.75 + }, + "week": "1984 Regular Season - Week 11" }, { "date": "Nov 11, 1984", @@ -51471,7 +75817,12 @@ "sF": "16", "sU": "13", "spread": "1", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 22.0, + "sF": 23.0 + }, + "week": "1984 Regular Season - Week 11" }, { "date": "Nov 11, 1984", @@ -51481,7 +75832,12 @@ "sF": "17", "sU": "24", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1984 Regular Season - Week 11" }, { "date": "Nov 11, 1984", @@ -51490,8 +75846,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1984 Regular Season - Week 11" }, { "date": "Nov 12, 1984", @@ -51501,7 +75862,12 @@ "sF": "17", "sU": "14", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1984 Regular Season - Week 11" }, { "date": "Nov 18, 1984", @@ -51510,8 +75876,13 @@ "und": "Cleveland Browns", "sF": "7", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1984 Regular Season - Week 12" }, { "date": "Nov 18, 1984", @@ -51521,7 +75892,12 @@ "sF": "3", "sU": "14", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "1984 Regular Season - Week 12" }, { "date": "Nov 18, 1984", @@ -51531,7 +75907,12 @@ "sF": "16", "sU": "14", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "1984 Regular Season - Week 12" }, { "date": "Nov 18, 1984", @@ -51541,7 +75922,12 @@ "sF": "26", "sU": "6", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1984 Regular Season - Week 12" }, { "date": "Nov 18, 1984", @@ -51550,8 +75936,13 @@ "und": "Los Angeles Rams", "sF": "31", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "1984 Regular Season - Week 12" }, { "date": "Nov 18, 1984", @@ -51560,8 +75951,13 @@ "und": "Indianapolis Colts", "sF": "50", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "1984 Regular Season - Week 12" }, { "date": "Nov 18, 1984", @@ -51571,7 +75967,12 @@ "sF": "10", "sU": "16", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1984 Regular Season - Week 12" }, { "date": "Nov 18, 1984", @@ -51581,7 +75982,12 @@ "sF": "42", "sU": "21", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "1984 Regular Season - Week 12" }, { "date": "Nov 18, 1984", @@ -51590,8 +75996,13 @@ "und": "Houston Oilers", "sF": "20", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.0, + "pScore": { + "sU": 18.75, + "sF": 23.25 + }, + "week": "1984 Regular Season - Week 12" }, { "date": "Nov 18, 1984", @@ -51601,7 +76012,12 @@ "sF": "17", "sU": "7", "spread": "9", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 18.0, + "sF": 27.0 + }, + "week": "1984 Regular Season - Week 12" }, { "date": "Nov 18, 1984", @@ -51611,7 +76027,12 @@ "sF": "28", "sU": "34", "spread": "7", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 22.0, + "sF": 29.0 + }, + "week": "1984 Regular Season - Week 12" }, { "date": "Nov 18, 1984", @@ -51621,7 +76042,12 @@ "sF": "24", "sU": "17", "spread": "12", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 14.0, + "sF": 26.0 + }, + "week": "1984 Regular Season - Week 12" }, { "date": "Nov 19, 1984", @@ -51631,7 +76057,12 @@ "sF": "24", "sU": "27", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "1984 Regular Season - Week 12" }, { "date": "Nov 22, 1984", @@ -51641,7 +76072,12 @@ "sF": "28", "sU": "31", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1984 Regular Season - Week 13" }, { "date": "Nov 22, 1984", @@ -51651,7 +76087,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "1984 Regular Season - Week 13" }, { "date": "Nov 25, 1984", @@ -51660,8 +76101,13 @@ "und": "Atlanta Falcons", "sF": "35", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "1984 Regular Season - Week 13" }, { "date": "Nov 25, 1984", @@ -51670,8 +76116,13 @@ "und": "Houston Oilers", "sF": "27", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 36.0, + "pScore": { + "sU": 15.25, + "sF": 20.75 + }, + "week": "1984 Regular Season - Week 13" }, { "date": "Nov 25, 1984", @@ -51680,8 +76131,13 @@ "und": "Kansas City Chiefs", "sF": "28", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.5, + "pScore": { + "sU": 14.5, + "sF": 22.0 + }, + "week": "1984 Regular Season - Week 13" }, { "date": "Nov 25, 1984", @@ -51691,7 +76147,12 @@ "sF": "52", "sU": "24", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "1984 Regular Season - Week 13" }, { "date": "Nov 25, 1984", @@ -51700,8 +76161,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "16", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "1984 Regular Season - Week 13" }, { "date": "Nov 25, 1984", @@ -51711,7 +76177,12 @@ "sF": "34", "sU": "33", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1984 Regular Season - Week 13" }, { "date": "Nov 25, 1984", @@ -51721,7 +76192,12 @@ "sF": "41", "sU": "14", "spread": "13", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 14.25, + "sF": 27.25 + }, + "week": "1984 Regular Season - Week 13" }, { "date": "Nov 25, 1984", @@ -51731,7 +76207,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1984 Regular Season - Week 13" }, { "date": "Nov 25, 1984", @@ -51740,8 +76221,13 @@ "und": "Indianapolis Colts", "sF": "21", "sU": "7", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 36.5, + "pScore": { + "sU": 11.0, + "sF": 25.5 + }, + "week": "1984 Regular Season - Week 13" }, { "date": "Nov 25, 1984", @@ -51750,8 +76236,13 @@ "und": "Minnesota Vikings", "sF": "34", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1984 Regular Season - Week 13" }, { "date": "Nov 25, 1984", @@ -51761,7 +76252,12 @@ "sF": "35", "sU": "3", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "1984 Regular Season - Week 13" }, { "date": "Nov 26, 1984", @@ -51770,8 +76266,13 @@ "und": "New York Jets", "sF": "28", "sU": "17", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 45.0, + "pScore": { + "sU": 15.75, + "sF": 29.25 + }, + "week": "1984 Regular Season - Week 13" }, { "date": "Nov 29, 1984", @@ -51781,7 +76282,12 @@ "sF": "31", "sU": "17", "spread": "9", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.5, + "sF": 27.5 + }, + "week": "1984 Regular Season - Week 14" }, { "date": "Dec 2, 1984", @@ -51791,7 +76297,12 @@ "sF": "35", "sU": "17", "spread": "13", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 13.5, + "sF": 26.5 + }, + "week": "1984 Regular Season - Week 14" }, { "date": "Dec 2, 1984", @@ -51801,7 +76312,12 @@ "sF": "21", "sU": "15", "spread": "1", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.75, + "sF": 18.75 + }, + "week": "1984 Regular Season - Week 14" }, { "date": "Dec 2, 1984", @@ -51811,7 +76327,12 @@ "sF": "27", "sU": "14", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "1984 Regular Season - Week 14" }, { "date": "Dec 2, 1984", @@ -51821,7 +76342,12 @@ "sF": "20", "sU": "23", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "1984 Regular Season - Week 14" }, { "date": "Dec 2, 1984", @@ -51831,7 +76357,12 @@ "sF": "13", "sU": "16", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "1984 Regular Season - Week 14" }, { "date": "Dec 2, 1984", @@ -51840,8 +76371,13 @@ "und": "St Louis Cardinals", "sF": "10", "sU": "33", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "1984 Regular Season - Week 14" }, { "date": "Dec 2, 1984", @@ -51850,8 +76386,13 @@ "und": "New York Jets", "sF": "20", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1984 Regular Season - Week 14" }, { "date": "Dec 2, 1984", @@ -51861,7 +76402,12 @@ "sF": "26", "sU": "10", "spread": "4", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.5, + "sF": 19.5 + }, + "week": "1984 Regular Season - Week 14" }, { "date": "Dec 2, 1984", @@ -51871,7 +76417,12 @@ "sF": "34", "sU": "21", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "1984 Regular Season - Week 14" }, { "date": "Dec 2, 1984", @@ -51880,8 +76431,13 @@ "und": "Los Angeles Raiders", "sF": "34", "sU": "45", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.5, + "pScore": { + "sU": 18.5, + "sF": 24.0 + }, + "week": "1984 Regular Season - Week 14" }, { "date": "Dec 2, 1984", @@ -51890,8 +76446,13 @@ "und": "Detroit Lions", "sF": "38", "sU": "17", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 43.5, + "pScore": { + "sU": 16.0, + "sF": 27.5 + }, + "week": "1984 Regular Season - Week 14" }, { "date": "Dec 3, 1984", @@ -51901,7 +76462,12 @@ "sF": "7", "sU": "20", "spread": "1", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.5, + "sF": 23.5 + }, + "week": "1984 Regular Season - Week 14" }, { "date": "Dec 8, 1984", @@ -51910,8 +76476,13 @@ "und": "Buffalo Bills", "sF": "21", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "1984 Regular Season - Week 15" }, { "date": "Dec 8, 1984", @@ -51921,7 +76492,12 @@ "sF": "51", "sU": "7", "spread": "17", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 13.5, + "sF": 30.5 + }, + "week": "1984 Regular Season - Week 15" }, { "date": "Dec 9, 1984", @@ -51930,8 +76506,13 @@ "und": "Green Bay Packers", "sF": "14", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.5, + "pScore": { + "sU": 17.0, + "sF": 20.5 + }, + "week": "1984 Regular Season - Week 15" }, { "date": "Dec 9, 1984", @@ -51941,7 +76522,12 @@ "sF": "35", "sU": "17", "spread": "12", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 17.0, + "sF": 29.0 + }, + "week": "1984 Regular Season - Week 15" }, { "date": "Dec 9, 1984", @@ -51950,8 +76536,13 @@ "und": "Kansas City Chiefs", "sF": "7", "sU": "34", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.0, + "pScore": { + "sU": 16.75, + "sF": 21.25 + }, + "week": "1984 Regular Season - Week 15" }, { "date": "Dec 9, 1984", @@ -51961,7 +76552,12 @@ "sF": "24", "sU": "21", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1984 Regular Season - Week 15" }, { "date": "Dec 9, 1984", @@ -51970,8 +76566,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "1984 Regular Season - Week 15" }, { "date": "Dec 9, 1984", @@ -51981,7 +76582,12 @@ "sF": "23", "sU": "20", "spread": "9", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.5, + "sF": 23.5 + }, + "week": "1984 Regular Season - Week 15" }, { "date": "Dec 9, 1984", @@ -51991,7 +76597,12 @@ "sF": "31", "sU": "21", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "1984 Regular Season - Week 15" }, { "date": "Dec 9, 1984", @@ -52000,8 +76611,13 @@ "und": "Atlanta Falcons", "sF": "23", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "1984 Regular Season - Week 15" }, { "date": "Dec 9, 1984", @@ -52011,7 +76627,12 @@ "sF": "16", "sU": "13", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1984 Regular Season - Week 15" }, { "date": "Dec 9, 1984", @@ -52020,8 +76641,13 @@ "und": "Houston Oilers", "sF": "27", "sU": "16", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 43.0, + "pScore": { + "sU": 15.75, + "sF": 27.25 + }, + "week": "1984 Regular Season - Week 15" }, { "date": "Dec 10, 1984", @@ -52030,8 +76656,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1984 Regular Season - Week 15" }, { "date": "Dec 14, 1984", @@ -52041,7 +76672,12 @@ "sF": "19", "sU": "16", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "1984 Regular Season - Week 16" }, { "date": "Dec 15, 1984", @@ -52051,7 +76687,12 @@ "sF": "3", "sU": "10", "spread": "10", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 14.25, + "sF": 24.25 + }, + "week": "1984 Regular Season - Week 16" }, { "date": "Dec 15, 1984", @@ -52061,7 +76702,12 @@ "sF": "14", "sU": "31", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1984 Regular Season - Week 16" }, { "date": "Dec 16, 1984", @@ -52070,8 +76716,13 @@ "und": "Buffalo Bills", "sF": "52", "sU": "21", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 38.5, + "pScore": { + "sU": 12.5, + "sF": 26.0 + }, + "week": "1984 Regular Season - Week 16" }, { "date": "Dec 16, 1984", @@ -52081,7 +76732,12 @@ "sF": "13", "sU": "30", "spread": "2", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.75, + "sF": 18.75 + }, + "week": "1984 Regular Season - Week 16" }, { "date": "Dec 16, 1984", @@ -52091,7 +76747,12 @@ "sF": "20", "sU": "27", "spread": "2", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.5, + "sF": 20.5 + }, + "week": "1984 Regular Season - Week 16" }, { "date": "Dec 16, 1984", @@ -52100,8 +76761,13 @@ "und": "Minnesota Vikings", "sF": "38", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.0, + "pScore": { + "sU": 18.75, + "sF": 26.25 + }, + "week": "1984 Regular Season - Week 16" }, { "date": "Dec 16, 1984", @@ -52111,7 +76777,12 @@ "sF": "16", "sU": "10", "spread": "11", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.0, + "sF": 26.0 + }, + "week": "1984 Regular Season - Week 16" }, { "date": "Dec 16, 1984", @@ -52121,7 +76792,12 @@ "sF": "41", "sU": "21", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "1984 Regular Season - Week 16" }, { "date": "Dec 16, 1984", @@ -52131,7 +76807,12 @@ "sF": "29", "sU": "27", "spread": "6", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.25, + "sF": 26.25 + }, + "week": "1984 Regular Season - Week 16" }, { "date": "Dec 16, 1984", @@ -52141,7 +76822,12 @@ "sF": "10", "sU": "26", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1984 Regular Season - Week 16" }, { "date": "Dec 16, 1984", @@ -52150,8 +76836,13 @@ "und": "Pittsburgh Steelers", "sF": "7", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1984 Regular Season - Week 16" }, { "date": "Dec 16, 1984", @@ -52161,7 +76852,12 @@ "sF": "21", "sU": "42", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "1984 Regular Season - Week 16" }, { "date": "Dec 17, 1984", @@ -52170,8 +76866,13 @@ "und": "Dallas Cowboys", "sF": "28", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "1984 Regular Season - Week 16" }, { "date": "Dec 22, 1984", @@ -52180,8 +76881,13 @@ "und": "Seattle Seahawks (4)", "sF": "7", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.0, + "pScore": { + "sU": 19.25, + "sF": 20.75 + }, + "week": "1984 Playoffs" }, { "date": "Dec 23, 1984", @@ -52190,8 +76896,13 @@ "und": "New York Giants (5)", "sF": "13", "sU": "16", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.0, + "pScore": { + "sU": 16.75, + "sF": 21.25 + }, + "week": "1984 Playoffs" }, { "date": "Dec 29, 1984", @@ -52200,8 +76911,13 @@ "und": "Seattle Seahawks (4)", "sF": "31", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.0, + "pScore": { + "sU": 19.75, + "sF": 25.25 + }, + "week": "1984 Playoffs" }, { "date": "Dec 29, 1984", @@ -52211,7 +76927,12 @@ "sF": "21", "sU": "10", "spread": "12", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 14.5, + "sF": 26.5 + }, + "week": "1984 Playoffs" }, { "date": "Dec 30, 1984", @@ -52221,7 +76942,12 @@ "sF": "19", "sU": "23", "spread": "9", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.5, + "sF": 23.5 + }, + "week": "1984 Playoffs" }, { "date": "Dec 30, 1984", @@ -52230,8 +76956,13 @@ "und": "Pittsburgh Steelers (3)", "sF": "17", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 36.0, + "pScore": { + "sU": 15.75, + "sF": 20.25 + }, + "week": "1984 Playoffs" }, { "date": "Jan 6, 1985", @@ -52241,7 +76972,12 @@ "sF": "45", "sU": "28", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "1984 Playoffs" }, { "date": "Jan 6, 1985", @@ -52251,7 +76987,12 @@ "sF": "23", "sU": "0", "spread": "10", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.0, + "sF": 25.0 + }, + "week": "1984 Playoffs" }, { "date": "Jan 20, 1985", @@ -52261,7 +77002,12 @@ "sF": "38", "sU": "16", "spread": "3", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 25.25, + "sF": 28.25 + }, + "week": "1984 Playoffs" }, { "date": "Sep 8, 1985", @@ -52271,7 +77017,12 @@ "sF": "27", "sU": "28", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1985 Regular Season - Week 1" }, { "date": "Sep 8, 1985", @@ -52280,8 +77031,13 @@ "und": "Tampa Bay Buccaneers", "sF": "38", "sU": "28", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.0, + "pScore": { + "sU": 15.75, + "sF": 23.25 + }, + "week": "1985 Regular Season - Week 1" }, { "date": "Sep 8, 1985", @@ -52291,7 +77047,12 @@ "sF": "28", "sU": "24", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1985 Regular Season - Week 1" }, { "date": "Sep 8, 1985", @@ -52300,8 +77061,13 @@ "und": "Cleveland Browns", "sF": "27", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "1985 Regular Season - Week 1" }, { "date": "Sep 8, 1985", @@ -52310,8 +77076,13 @@ "und": "Houston Oilers", "sF": "23", "sU": "26", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.5, + "pScore": { + "sU": 19.0, + "sF": 26.5 + }, + "week": "1985 Regular Season - Week 1" }, { "date": "Sep 8, 1985", @@ -52321,7 +77092,12 @@ "sF": "21", "sU": "28", "spread": "11", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 17.5, + "sF": 28.5 + }, + "week": "1985 Regular Season - Week 1" }, { "date": "Sep 8, 1985", @@ -52331,7 +77107,12 @@ "sF": "26", "sU": "20", "spread": "4", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.5, + "sF": 24.5 + }, + "week": "1985 Regular Season - Week 1" }, { "date": "Sep 8, 1985", @@ -52341,7 +77122,12 @@ "sF": "21", "sU": "0", "spread": "6", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 16.25, + "sF": 22.25 + }, + "week": "1985 Regular Season - Week 1" }, { "date": "Sep 8, 1985", @@ -52351,7 +77137,12 @@ "sF": "45", "sU": "3", "spread": "10", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.25, + "sF": 25.25 + }, + "week": "1985 Regular Season - Week 1" }, { "date": "Sep 8, 1985", @@ -52361,7 +77152,12 @@ "sF": "14", "sU": "9", "spread": "5", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.5, + "sF": 25.5 + }, + "week": "1985 Regular Season - Week 1" }, { "date": "Sep 8, 1985", @@ -52371,7 +77167,12 @@ "sF": "31", "sU": "0", "spread": "9", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.5, + "sF": 24.5 + }, + "week": "1985 Regular Season - Week 1" }, { "date": "Sep 9, 1985", @@ -52381,7 +77182,12 @@ "sF": "14", "sU": "44", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "1985 Regular Season - Week 1" }, { "date": "Sep 12, 1985", @@ -52390,8 +77196,13 @@ "und": "Kansas City Chiefs", "sF": "20", "sU": "36", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.0, + "pScore": { + "sU": 21.75, + "sF": 23.25 + }, + "week": "1985 Regular Season - Week 2" }, { "date": "Sep 15, 1985", @@ -52400,8 +77211,13 @@ "und": "New England Patriots", "sF": "20", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.0, + "pScore": { + "sU": 19.75, + "sF": 24.25 + }, + "week": "1985 Regular Season - Week 2" }, { "date": "Sep 15, 1985", @@ -52411,7 +77227,12 @@ "sF": "21", "sU": "26", "spread": "5", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.0, + "sF": 25.0 + }, + "week": "1985 Regular Season - Week 2" }, { "date": "Sep 15, 1985", @@ -52421,7 +77242,12 @@ "sF": "30", "sU": "13", "spread": "17", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 14.0, + "sF": 31.0 + }, + "week": "1985 Regular Season - Week 2" }, { "date": "Sep 15, 1985", @@ -52430,8 +77256,13 @@ "und": "Buffalo Bills", "sF": "42", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1985 Regular Season - Week 2" }, { "date": "Sep 15, 1985", @@ -52441,7 +77272,12 @@ "sF": "17", "sU": "6", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "1985 Regular Season - Week 2" }, { "date": "Sep 15, 1985", @@ -52451,7 +77287,12 @@ "sF": "41", "sU": "27", "spread": "4", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 22.5, + "sF": 26.5 + }, + "week": "1985 Regular Season - Week 2" }, { "date": "Sep 15, 1985", @@ -52461,7 +77302,12 @@ "sF": "16", "sU": "13", "spread": "10", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 18.25, + "sF": 28.25 + }, + "week": "1985 Regular Season - Week 2" }, { "date": "Sep 15, 1985", @@ -52471,7 +77317,12 @@ "sF": "34", "sU": "23", "spread": "10", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.0, + "sF": 25.0 + }, + "week": "1985 Regular Season - Week 2" }, { "date": "Sep 15, 1985", @@ -52481,7 +77332,12 @@ "sF": "49", "sU": "35", "spread": "4", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.0, + "sF": 25.0 + }, + "week": "1985 Regular Season - Week 2" }, { "date": "Sep 15, 1985", @@ -52491,7 +77347,12 @@ "sF": "35", "sU": "16", "spread": "14", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 15.5, + "sF": 29.5 + }, + "week": "1985 Regular Season - Week 2" }, { "date": "Sep 15, 1985", @@ -52501,7 +77362,12 @@ "sF": "16", "sU": "31", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1985 Regular Season - Week 2" }, { "date": "Sep 16, 1985", @@ -52510,8 +77376,13 @@ "und": "Cleveland Browns", "sF": "7", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.0, + "pScore": { + "sU": 19.75, + "sF": 21.25 + }, + "week": "1985 Regular Season - Week 2" }, { "date": "Sep 19, 1985", @@ -52520,8 +77391,13 @@ "und": "Minnesota Vikings", "sF": "33", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1985 Regular Season - Week 3" }, { "date": "Sep 22, 1985", @@ -52530,8 +77406,13 @@ "und": "Atlanta Falcons", "sF": "44", "sU": "28", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "1985 Regular Season - Week 3" }, { "date": "Sep 22, 1985", @@ -52540,8 +77421,13 @@ "und": "Buffalo Bills", "sF": "17", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "1985 Regular Season - Week 3" }, { "date": "Sep 22, 1985", @@ -52550,8 +77436,13 @@ "und": "San Diego Chargers", "sF": "41", "sU": "44", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 50.0, + "pScore": { + "sU": 22.75, + "sF": 27.25 + }, + "week": "1985 Regular Season - Week 3" }, { "date": "Sep 22, 1985", @@ -52560,8 +77451,13 @@ "und": "Cleveland Browns", "sF": "20", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.0, + "pScore": { + "sU": 16.25, + "sF": 23.75 + }, + "week": "1985 Regular Season - Week 3" }, { "date": "Sep 22, 1985", @@ -52571,7 +77467,12 @@ "sF": "6", "sU": "14", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1985 Regular Season - Week 3" }, { "date": "Sep 22, 1985", @@ -52580,8 +77481,13 @@ "und": "Tampa Bay Buccaneers", "sF": "20", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1985 Regular Season - Week 3" }, { "date": "Sep 22, 1985", @@ -52590,8 +77496,13 @@ "und": "St Louis Cardinals", "sF": "27", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.0, + "pScore": { + "sU": 19.25, + "sF": 20.75 + }, + "week": "1985 Regular Season - Week 3" }, { "date": "Sep 22, 1985", @@ -52601,7 +77512,12 @@ "sF": "20", "sU": "0", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1985 Regular Season - Week 3" }, { "date": "Sep 22, 1985", @@ -52611,7 +77527,12 @@ "sF": "6", "sU": "19", "spread": "14", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 14.0, + "sF": 28.0 + }, + "week": "1985 Regular Season - Week 3" }, { "date": "Sep 22, 1985", @@ -52620,8 +77541,13 @@ "und": "New York Jets", "sF": "3", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "1985 Regular Season - Week 3" }, { "date": "Sep 22, 1985", @@ -52631,7 +77557,12 @@ "sF": "34", "sU": "10", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "1985 Regular Season - Week 3" }, { "date": "Sep 22, 1985", @@ -52641,7 +77572,12 @@ "sF": "31", "sU": "0", "spread": "4", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.5, + "sF": 24.5 + }, + "week": "1985 Regular Season - Week 3" }, { "date": "Sep 23, 1985", @@ -52650,8 +77586,13 @@ "und": "Los Angeles Rams", "sF": "24", "sU": "35", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "1985 Regular Season - Week 3" }, { "date": "Sep 29, 1985", @@ -52661,7 +77602,12 @@ "sF": "27", "sU": "20", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1985 Regular Season - Week 4" }, { "date": "Sep 29, 1985", @@ -52671,7 +77617,12 @@ "sF": "45", "sU": "10", "spread": "6", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.75, + "sF": 23.75 + }, + "week": "1985 Regular Season - Week 4" }, { "date": "Sep 29, 1985", @@ -52681,7 +77632,12 @@ "sF": "30", "sU": "9", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1985 Regular Season - Week 4" }, { "date": "Sep 29, 1985", @@ -52691,7 +77647,12 @@ "sF": "17", "sU": "10", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "1985 Regular Season - Week 4" }, { "date": "Sep 29, 1985", @@ -52701,7 +77662,12 @@ "sF": "7", "sU": "28", "spread": "2", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.5, + "sF": 24.5 + }, + "week": "1985 Regular Season - Week 4" }, { "date": "Sep 29, 1985", @@ -52711,7 +77677,12 @@ "sF": "20", "sU": "35", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "1985 Regular Season - Week 4" }, { "date": "Sep 29, 1985", @@ -52721,7 +77692,12 @@ "sF": "16", "sU": "10", "spread": "5", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.0, + "sF": 20.0 + }, + "week": "1985 Regular Season - Week 4" }, { "date": "Sep 29, 1985", @@ -52730,8 +77706,13 @@ "und": "Green Bay Packers", "sF": "43", "sU": "28", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "1985 Regular Season - Week 4" }, { "date": "Sep 29, 1985", @@ -52741,7 +77722,12 @@ "sF": "30", "sU": "26", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "1985 Regular Season - Week 4" }, { "date": "Sep 29, 1985", @@ -52751,7 +77737,12 @@ "sF": "17", "sU": "6", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "1985 Regular Season - Week 4" }, { "date": "Sep 29, 1985", @@ -52761,7 +77752,12 @@ "sF": "25", "sU": "20", "spread": "10", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.5, + "sF": 24.5 + }, + "week": "1985 Regular Season - Week 4" }, { "date": "Sep 29, 1985", @@ -52771,7 +77767,12 @@ "sF": "7", "sU": "21", "spread": "4", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.0, + "sF": 26.0 + }, + "week": "1985 Regular Season - Week 4" }, { "date": "Sep 29, 1985", @@ -52781,7 +77782,12 @@ "sF": "17", "sU": "20", "spread": "16", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 14.5, + "sF": 30.5 + }, + "week": "1985 Regular Season - Week 4" }, { "date": "Sep 30, 1985", @@ -52791,7 +77797,12 @@ "sF": "24", "sU": "37", "spread": "6", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.75, + "sF": 25.75 + }, + "week": "1985 Regular Season - Week 4" }, { "date": "Oct 6, 1985", @@ -52801,7 +77812,12 @@ "sF": "38", "sU": "17", "spread": "11", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 18.0, + "sF": 29.0 + }, + "week": "1985 Regular Season - Week 5" }, { "date": "Oct 6, 1985", @@ -52810,8 +77826,13 @@ "und": "New England Patriots", "sF": "24", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1985 Regular Season - Week 5" }, { "date": "Oct 6, 1985", @@ -52820,8 +77841,13 @@ "und": "Detroit Lions", "sF": "43", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "1985 Regular Season - Week 5" }, { "date": "Oct 6, 1985", @@ -52830,8 +77856,13 @@ "und": "Buffalo Bills", "sF": "49", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "1985 Regular Season - Week 5" }, { "date": "Oct 6, 1985", @@ -52841,7 +77872,12 @@ "sF": "24", "sU": "20", "spread": "7", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.25, + "sF": 27.25 + }, + "week": "1985 Regular Season - Week 5" }, { "date": "Oct 6, 1985", @@ -52850,8 +77886,13 @@ "und": "Philadelphia Eagles", "sF": "23", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1985 Regular Season - Week 5" }, { "date": "Oct 6, 1985", @@ -52861,7 +77902,12 @@ "sF": "27", "sU": "19", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "1985 Regular Season - Week 5" }, { "date": "Oct 6, 1985", @@ -52871,7 +77917,12 @@ "sF": "20", "sU": "29", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "1985 Regular Season - Week 5" }, { "date": "Oct 6, 1985", @@ -52881,7 +77932,12 @@ "sF": "31", "sU": "20", "spread": "8", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 17.75, + "sF": 25.75 + }, + "week": "1985 Regular Season - Week 5" }, { "date": "Oct 6, 1985", @@ -52891,7 +77947,12 @@ "sF": "19", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1985 Regular Season - Week 5" }, { "date": "Oct 6, 1985", @@ -52900,8 +77961,13 @@ "und": "Minnesota Vikings", "sF": "13", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1985 Regular Season - Week 5" }, { "date": "Oct 6, 1985", @@ -52911,7 +77977,12 @@ "sF": "26", "sU": "21", "spread": "12", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 17.25, + "sF": 29.25 + }, + "week": "1985 Regular Season - Week 5" }, { "date": "Oct 6, 1985", @@ -52920,8 +77991,13 @@ "und": "Dallas Cowboys", "sF": "29", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1985 Regular Season - Week 5" }, { "date": "Oct 7, 1985", @@ -52931,7 +78007,12 @@ "sF": "10", "sU": "27", "spread": "2", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.5, + "sF": 24.5 + }, + "week": "1985 Regular Season - Week 5" }, { "date": "Oct 13, 1985", @@ -52941,7 +78022,12 @@ "sF": "30", "sU": "35", "spread": "2", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.5, + "sF": 25.5 + }, + "week": "1985 Regular Season - Week 6" }, { "date": "Oct 13, 1985", @@ -52951,7 +78037,12 @@ "sF": "27", "sU": "13", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1985 Regular Season - Week 6" }, { "date": "Oct 13, 1985", @@ -52960,8 +78051,13 @@ "und": "Minnesota Vikings", "sF": "20", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "1985 Regular Season - Week 6" }, { "date": "Oct 13, 1985", @@ -52970,8 +78066,13 @@ "und": "Houston Oilers", "sF": "21", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1985 Regular Season - Week 6" }, { "date": "Oct 13, 1985", @@ -52981,7 +78082,12 @@ "sF": "15", "sU": "10", "spread": "6", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.75, + "sF": 26.75 + }, + "week": "1985 Regular Season - Week 6" }, { "date": "Oct 13, 1985", @@ -52991,7 +78097,12 @@ "sF": "14", "sU": "3", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "1985 Regular Season - Week 6" }, { "date": "Oct 13, 1985", @@ -53000,8 +78111,13 @@ "und": "Philadelphia Eagles", "sF": "7", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "1985 Regular Season - Week 6" }, { "date": "Oct 13, 1985", @@ -53010,8 +78126,13 @@ "und": "Tampa Bay Buccaneers", "sF": "31", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "1985 Regular Season - Week 6" }, { "date": "Oct 13, 1985", @@ -53020,8 +78141,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "3", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "1985 Regular Season - Week 6" }, { "date": "Oct 13, 1985", @@ -53031,7 +78157,12 @@ "sF": "23", "sU": "13", "spread": "9", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.5, + "sF": 24.5 + }, + "week": "1985 Regular Season - Week 6" }, { "date": "Oct 13, 1985", @@ -53040,8 +78171,13 @@ "und": "San Diego Chargers", "sF": "20", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "1985 Regular Season - Week 6" }, { "date": "Oct 13, 1985", @@ -53051,7 +78187,12 @@ "sF": "10", "sU": "26", "spread": "4", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.25, + "sF": 24.25 + }, + "week": "1985 Regular Season - Week 6" }, { "date": "Oct 13, 1985", @@ -53060,8 +78201,13 @@ "und": "Atlanta Falcons", "sF": "30", "sU": "26", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 48.5, + "pScore": { + "sU": 17.0, + "sF": 31.5 + }, + "week": "1985 Regular Season - Week 6" }, { "date": "Oct 14, 1985", @@ -53071,7 +78217,12 @@ "sF": "7", "sU": "23", "spread": "4", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.0, + "sF": 26.0 + }, + "week": "1985 Regular Season - Week 6" }, { "date": "Oct 20, 1985", @@ -53080,8 +78231,13 @@ "und": "Cleveland Browns", "sF": "21", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "1985 Regular Season - Week 7" }, { "date": "Oct 20, 1985", @@ -53090,8 +78246,13 @@ "und": "Detroit Lions", "sF": "21", "sU": "23", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 46.5, + "pScore": { + "sU": 18.0, + "sF": 28.5 + }, + "week": "1985 Regular Season - Week 7" }, { "date": "Oct 20, 1985", @@ -53101,7 +78262,12 @@ "sF": "27", "sU": "44", "spread": "4", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 20.75, + "sF": 24.75 + }, + "week": "1985 Regular Season - Week 7" }, { "date": "Oct 20, 1985", @@ -53110,8 +78276,13 @@ "und": "San Diego Chargers", "sF": "21", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "1985 Regular Season - Week 7" }, { "date": "Oct 20, 1985", @@ -53121,7 +78292,12 @@ "sF": "17", "sU": "3", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1985 Regular Season - Week 7" }, { "date": "Oct 20, 1985", @@ -53131,7 +78307,12 @@ "sF": "14", "sU": "16", "spread": "4", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.0, + "sF": 26.0 + }, + "week": "1985 Regular Season - Week 7" }, { "date": "Oct 20, 1985", @@ -53141,7 +78322,12 @@ "sF": "23", "sU": "10", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1985 Regular Season - Week 7" }, { "date": "Oct 20, 1985", @@ -53150,8 +78336,13 @@ "und": "Seattle Seahawks", "sF": "13", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "1985 Regular Season - Week 7" }, { "date": "Oct 20, 1985", @@ -53161,7 +78352,12 @@ "sF": "41", "sU": "38", "spread": "13", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 16.5, + "sF": 29.5 + }, + "week": "1985 Regular Season - Week 7" }, { "date": "Oct 20, 1985", @@ -53170,8 +78366,13 @@ "und": "New England Patriots", "sF": "13", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1985 Regular Season - Week 7" }, { "date": "Oct 21, 1985", @@ -53181,7 +78382,12 @@ "sF": "23", "sU": "7", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "1985 Regular Season - Week 7" }, { "date": "Oct 27, 1985", @@ -53190,8 +78396,13 @@ "und": "Minnesota Vikings", "sF": "27", "sU": "9", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.0, + "pScore": { + "sU": 17.75, + "sF": 25.25 + }, + "week": "1985 Regular Season - Week 8" }, { "date": "Oct 27, 1985", @@ -53200,8 +78411,13 @@ "und": "Washington Redskins", "sF": "7", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.5, + "pScore": { + "sU": 16.5, + "sF": 19.0 + }, + "week": "1985 Regular Season - Week 8" }, { "date": "Oct 27, 1985", @@ -53211,7 +78427,12 @@ "sF": "24", "sU": "10", "spread": "13", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 16.25, + "sF": 29.25 + }, + "week": "1985 Regular Season - Week 8" }, { "date": "Oct 27, 1985", @@ -53220,8 +78441,13 @@ "und": "Detroit Lions", "sF": "21", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "1985 Regular Season - Week 8" }, { "date": "Oct 27, 1985", @@ -53231,7 +78457,12 @@ "sF": "10", "sU": "37", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1985 Regular Season - Week 8" }, { "date": "Oct 27, 1985", @@ -53241,7 +78472,12 @@ "sF": "30", "sU": "10", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1985 Regular Season - Week 8" }, { "date": "Oct 27, 1985", @@ -53251,7 +78487,12 @@ "sF": "17", "sU": "14", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1985 Regular Season - Week 8" }, { "date": "Oct 27, 1985", @@ -53261,7 +78502,12 @@ "sF": "21", "sU": "17", "spread": "9", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 13.75, + "sF": 22.75 + }, + "week": "1985 Regular Season - Week 8" }, { "date": "Oct 27, 1985", @@ -53271,7 +78517,12 @@ "sF": "10", "sU": "20", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "1985 Regular Season - Week 8" }, { "date": "Oct 27, 1985", @@ -53281,7 +78532,12 @@ "sF": "32", "sU": "14", "spread": "2", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.25, + "sF": 24.25 + }, + "week": "1985 Regular Season - Week 8" }, { "date": "Oct 27, 1985", @@ -53290,8 +78546,13 @@ "und": "Cincinnati Bengals", "sF": "21", "sU": "26", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 48.0, + "pScore": { + "sU": 23.25, + "sF": 24.75 + }, + "week": "1985 Regular Season - Week 8" }, { "date": "Oct 27, 1985", @@ -53301,7 +78562,12 @@ "sF": "28", "sU": "14", "spread": "1", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.75, + "sF": 19.75 + }, + "week": "1985 Regular Season - Week 8" }, { "date": "Oct 27, 1985", @@ -53311,7 +78577,12 @@ "sF": "21", "sU": "13", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1985 Regular Season - Week 8" }, { "date": "Oct 28, 1985", @@ -53320,8 +78591,13 @@ "und": "San Diego Chargers", "sF": "34", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.0, + "pScore": { + "sU": 20.75, + "sF": 27.25 + }, + "week": "1985 Regular Season - Week 8" }, { "date": "Nov 3, 1985", @@ -53331,7 +78607,12 @@ "sF": "44", "sU": "10", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1985 Regular Season - Week 9" }, { "date": "Nov 3, 1985", @@ -53340,8 +78621,13 @@ "und": "Buffalo Bills", "sF": "23", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "1985 Regular Season - Week 9" }, { "date": "Nov 3, 1985", @@ -53351,7 +78637,12 @@ "sF": "16", "sU": "10", "spread": "9", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 16.25, + "sF": 25.25 + }, + "week": "1985 Regular Season - Week 9" }, { "date": "Nov 3, 1985", @@ -53361,7 +78652,12 @@ "sF": "23", "sU": "20", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "1985 Regular Season - Week 9" }, { "date": "Nov 3, 1985", @@ -53370,8 +78666,13 @@ "und": "Detroit Lions", "sF": "16", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1985 Regular Season - Week 9" }, { "date": "Nov 3, 1985", @@ -53381,7 +78682,12 @@ "sF": "22", "sU": "20", "spread": "12", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 17.0, + "sF": 29.0 + }, + "week": "1985 Regular Season - Week 9" }, { "date": "Nov 3, 1985", @@ -53391,7 +78697,12 @@ "sF": "10", "sU": "9", "spread": "4", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.25, + "sF": 20.25 + }, + "week": "1985 Regular Season - Week 9" }, { "date": "Nov 3, 1985", @@ -53400,8 +78711,13 @@ "und": "Indianapolis Colts", "sF": "35", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1985 Regular Season - Week 9" }, { "date": "Nov 3, 1985", @@ -53410,8 +78726,13 @@ "und": "New Orleans Saints", "sF": "28", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.0, + "pScore": { + "sU": 14.75, + "sF": 22.25 + }, + "week": "1985 Regular Season - Week 9" }, { "date": "Nov 3, 1985", @@ -53421,7 +78742,12 @@ "sF": "10", "sU": "30", "spread": "2", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.5, + "sF": 25.5 + }, + "week": "1985 Regular Season - Week 9" }, { "date": "Nov 3, 1985", @@ -53431,7 +78757,12 @@ "sF": "24", "sU": "13", "spread": "9", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.5, + "sF": 23.5 + }, + "week": "1985 Regular Season - Week 9" }, { "date": "Nov 3, 1985", @@ -53441,7 +78772,12 @@ "sF": "33", "sU": "3", "spread": "1", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.75, + "sF": 21.75 + }, + "week": "1985 Regular Season - Week 9" }, { "date": "Nov 4, 1985", @@ -53450,8 +78786,13 @@ "und": "St Louis Cardinals", "sF": "10", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1985 Regular Season - Week 9" }, { "date": "Nov 10, 1985", @@ -53460,8 +78801,13 @@ "und": "Buffalo Bills", "sF": "0", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "1985 Regular Season - Week 10" }, { "date": "Nov 10, 1985", @@ -53470,8 +78816,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "3", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 39.5, + "pScore": { + "sU": 15.0, + "sF": 24.5 + }, + "week": "1985 Regular Season - Week 10" }, { "date": "Nov 10, 1985", @@ -53481,7 +78832,12 @@ "sF": "27", "sU": "10", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1985 Regular Season - Week 10" }, { "date": "Nov 10, 1985", @@ -53490,8 +78846,13 @@ "und": "Pittsburgh Steelers", "sF": "28", "sU": "36", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.5, + "pScore": { + "sU": 18.5, + "sF": 20.0 + }, + "week": "1985 Regular Season - Week 10" }, { "date": "Nov 10, 1985", @@ -53500,8 +78861,13 @@ "und": "Green Bay Packers", "sF": "17", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.5, + "pScore": { + "sU": 18.0, + "sF": 23.5 + }, + "week": "1985 Regular Season - Week 10" }, { "date": "Nov 10, 1985", @@ -53510,8 +78876,13 @@ "und": "Indianapolis Colts", "sF": "34", "sU": "15", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 39.5, + "pScore": { + "sU": 15.0, + "sF": 24.5 + }, + "week": "1985 Regular Season - Week 10" }, { "date": "Nov 10, 1985", @@ -53520,8 +78891,13 @@ "und": "New Orleans Saints", "sF": "27", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "1985 Regular Season - Week 10" }, { "date": "Nov 10, 1985", @@ -53530,8 +78906,13 @@ "und": "Los Angeles Rams", "sF": "24", "sU": "19", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.5, + "pScore": { + "sU": 17.0, + "sF": 21.5 + }, + "week": "1985 Regular Season - Week 10" }, { "date": "Nov 10, 1985", @@ -53540,8 +78921,13 @@ "und": "Atlanta Falcons", "sF": "23", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 39.5, + "pScore": { + "sU": 15.5, + "sF": 24.0 + }, + "week": "1985 Regular Season - Week 10" }, { "date": "Nov 10, 1985", @@ -53550,8 +78936,13 @@ "und": "Tampa Bay Buccaneers", "sF": "0", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.5, + "pScore": { + "sU": 22.5, + "sF": 25.0 + }, + "week": "1985 Regular Season - Week 10" }, { "date": "Nov 10, 1985", @@ -53560,8 +78951,13 @@ "und": "New York Jets", "sF": "21", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "1985 Regular Season - Week 10" }, { "date": "Nov 10, 1985", @@ -53570,8 +78966,13 @@ "und": "San Diego Chargers", "sF": "34", "sU": "40", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.0, + "pScore": { + "sU": 22.25, + "sF": 24.75 + }, + "week": "1985 Regular Season - Week 10" }, { "date": "Nov 10, 1985", @@ -53581,7 +78982,12 @@ "sF": "7", "sU": "13", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1985 Regular Season - Week 10" }, { "date": "Nov 11, 1985", @@ -53590,8 +78996,13 @@ "und": "Denver Broncos", "sF": "16", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1985 Regular Season - Week 10" }, { "date": "Nov 17, 1985", @@ -53601,7 +79012,12 @@ "sF": "14", "sU": "30", "spread": "6", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.25, + "sF": 23.25 + }, + "week": "1985 Regular Season - Week 11" }, { "date": "Nov 17, 1985", @@ -53611,7 +79027,12 @@ "sF": "17", "sU": "7", "spread": "8", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 13.5, + "sF": 21.5 + }, + "week": "1985 Regular Season - Week 11" }, { "date": "Nov 17, 1985", @@ -53621,7 +79042,12 @@ "sF": "38", "sU": "14", "spread": "8", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.5, + "sF": 24.5 + }, + "week": "1985 Regular Season - Week 11" }, { "date": "Nov 17, 1985", @@ -53631,7 +79057,12 @@ "sF": "30", "sU": "7", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "1985 Regular Season - Week 11" }, { "date": "Nov 17, 1985", @@ -53640,8 +79071,13 @@ "und": "Indianapolis Colts", "sF": "34", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.0, + "pScore": { + "sU": 19.75, + "sF": 27.25 + }, + "week": "1985 Regular Season - Week 11" }, { "date": "Nov 17, 1985", @@ -53650,8 +79086,13 @@ "und": "Tampa Bay Buccaneers", "sF": "62", "sU": "28", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.0, + "pScore": { + "sU": 16.25, + "sF": 25.75 + }, + "week": "1985 Regular Season - Week 11" }, { "date": "Nov 17, 1985", @@ -53660,8 +79101,13 @@ "und": "Philadelphia Eagles", "sF": "14", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1985 Regular Season - Week 11" }, { "date": "Nov 17, 1985", @@ -53671,7 +79117,12 @@ "sF": "30", "sU": "24", "spread": "4", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 21.75, + "sF": 25.75 + }, + "week": "1985 Regular Season - Week 11" }, { "date": "Nov 17, 1985", @@ -53681,7 +79132,12 @@ "sF": "41", "sU": "21", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "1985 Regular Season - Week 11" }, { "date": "Nov 17, 1985", @@ -53691,7 +79147,12 @@ "sF": "13", "sU": "6", "spread": "6", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.75, + "sF": 26.75 + }, + "week": "1985 Regular Season - Week 11" }, { "date": "Nov 17, 1985", @@ -53701,7 +79162,12 @@ "sF": "31", "sU": "3", "spread": "13", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 14.75, + "sF": 27.75 + }, + "week": "1985 Regular Season - Week 11" }, { "date": "Nov 17, 1985", @@ -53710,8 +79176,13 @@ "und": "New England Patriots", "sF": "13", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1985 Regular Season - Week 11" }, { "date": "Nov 18, 1985", @@ -53721,7 +79192,12 @@ "sF": "23", "sU": "21", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1985 Regular Season - Week 11" }, { "date": "Nov 24, 1985", @@ -53730,8 +79206,13 @@ "und": "Buffalo Bills", "sF": "23", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 41.5, + "pScore": { + "sU": 16.5, + "sF": 25.0 + }, + "week": "1985 Regular Season - Week 12" }, { "date": "Nov 24, 1985", @@ -53741,7 +79222,12 @@ "sF": "36", "sU": "0", "spread": "16", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 12.25, + "sF": 28.25 + }, + "week": "1985 Regular Season - Week 12" }, { "date": "Nov 24, 1985", @@ -53751,7 +79237,12 @@ "sF": "24", "sU": "6", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1985 Regular Season - Week 12" }, { "date": "Nov 24, 1985", @@ -53761,7 +79252,12 @@ "sF": "35", "sU": "37", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "1985 Regular Season - Week 12" }, { "date": "Nov 24, 1985", @@ -53771,7 +79267,12 @@ "sF": "23", "sU": "30", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1985 Regular Season - Week 12" }, { "date": "Nov 24, 1985", @@ -53780,8 +79281,13 @@ "und": "New England Patriots", "sF": "16", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1985 Regular Season - Week 12" }, { "date": "Nov 24, 1985", @@ -53790,8 +79296,13 @@ "und": "Washington Redskins", "sF": "23", "sU": "30", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 36.5, + "pScore": { + "sU": 15.5, + "sF": 21.0 + }, + "week": "1985 Regular Season - Week 12" }, { "date": "Nov 24, 1985", @@ -53801,7 +79312,12 @@ "sF": "16", "sU": "19", "spread": "1", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 22.0, + "sF": 23.0 + }, + "week": "1985 Regular Season - Week 12" }, { "date": "Nov 24, 1985", @@ -53811,7 +79327,12 @@ "sF": "34", "sU": "17", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1985 Regular Season - Week 12" }, { "date": "Nov 24, 1985", @@ -53821,7 +79342,12 @@ "sF": "20", "sU": "7", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1985 Regular Season - Week 12" }, { "date": "Nov 24, 1985", @@ -53830,8 +79356,13 @@ "und": "Denver Broncos", "sF": "31", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "1985 Regular Season - Week 12" }, { "date": "Nov 24, 1985", @@ -53841,7 +79372,12 @@ "sF": "34", "sU": "17", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1985 Regular Season - Week 12" }, { "date": "Nov 24, 1985", @@ -53851,7 +79387,12 @@ "sF": "34", "sU": "3", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1985 Regular Season - Week 12" }, { "date": "Nov 25, 1985", @@ -53861,7 +79402,12 @@ "sF": "19", "sU": "6", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1985 Regular Season - Week 12" }, { "date": "Nov 28, 1985", @@ -53870,8 +79416,13 @@ "und": "Detroit Lions", "sF": "20", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "1985 Regular Season - Week 13" }, { "date": "Nov 28, 1985", @@ -53881,7 +79432,12 @@ "sF": "35", "sU": "17", "spread": "13", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 13.5, + "sF": 26.5 + }, + "week": "1985 Regular Season - Week 13" }, { "date": "Dec 1, 1985", @@ -53890,8 +79446,13 @@ "und": "Houston Oilers", "sF": "45", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.0, + "pScore": { + "sU": 17.75, + "sF": 25.25 + }, + "week": "1985 Regular Season - Week 13" }, { "date": "Dec 1, 1985", @@ -53900,8 +79461,13 @@ "und": "Tampa Bay Buccaneers", "sF": "21", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "1985 Regular Season - Week 13" }, { "date": "Dec 1, 1985", @@ -53911,7 +79477,12 @@ "sF": "38", "sU": "31", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1985 Regular Season - Week 13" }, { "date": "Dec 1, 1985", @@ -53920,8 +79491,13 @@ "und": "New Orleans Saints", "sF": "3", "sU": "29", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "1985 Regular Season - Week 13" }, { "date": "Dec 1, 1985", @@ -53931,7 +79507,12 @@ "sF": "33", "sU": "35", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "1985 Regular Season - Week 13" }, { "date": "Dec 1, 1985", @@ -53940,8 +79521,13 @@ "und": "Minnesota Vikings", "sF": "23", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.5, + "pScore": { + "sU": 15.5, + "sF": 22.0 + }, + "week": "1985 Regular Season - Week 13" }, { "date": "Dec 1, 1985", @@ -53951,7 +79537,12 @@ "sF": "34", "sU": "24", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "1985 Regular Season - Week 13" }, { "date": "Dec 1, 1985", @@ -53961,7 +79552,12 @@ "sF": "40", "sU": "7", "spread": "10", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.25, + "sF": 27.25 + }, + "week": "1985 Regular Season - Week 13" }, { "date": "Dec 1, 1985", @@ -53971,7 +79567,12 @@ "sF": "24", "sU": "6", "spread": "8", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.25, + "sF": 24.25 + }, + "week": "1985 Regular Season - Week 13" }, { "date": "Dec 1, 1985", @@ -53980,8 +79581,13 @@ "und": "Washington Redskins", "sF": "35", "sU": "8", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1985 Regular Season - Week 13" }, { "date": "Dec 2, 1985", @@ -53991,7 +79597,12 @@ "sF": "24", "sU": "38", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "1985 Regular Season - Week 13" }, { "date": "Dec 8, 1985", @@ -54001,7 +79612,12 @@ "sF": "27", "sU": "7", "spread": "9", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 13.75, + "sF": 22.75 + }, + "week": "1985 Regular Season - Week 14" }, { "date": "Dec 8, 1985", @@ -54010,8 +79626,13 @@ "und": "Indianapolis Colts", "sF": "17", "sU": "10", - "spread": "19", - "ou": -1 + "spread": "19.5", + "ou": 42.0, + "pScore": { + "sU": 11.25, + "sF": 30.75 + }, + "week": "1985 Regular Season - Week 14" }, { "date": "Dec 8, 1985", @@ -54021,7 +79642,12 @@ "sF": "24", "sU": "50", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1985 Regular Season - Week 14" }, { "date": "Dec 8, 1985", @@ -54031,7 +79657,12 @@ "sF": "34", "sU": "24", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "1985 Regular Season - Week 14" }, { "date": "Dec 8, 1985", @@ -54040,8 +79671,13 @@ "und": "Atlanta Falcons", "sF": "38", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1985 Regular Season - Week 14" }, { "date": "Dec 8, 1985", @@ -54051,7 +79687,12 @@ "sF": "23", "sU": "6", "spread": "8", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.0, + "sF": 24.0 + }, + "week": "1985 Regular Season - Week 14" }, { "date": "Dec 8, 1985", @@ -54061,7 +79702,12 @@ "sF": "17", "sU": "12", "spread": "1", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 18.25, + "sF": 19.25 + }, + "week": "1985 Regular Season - Week 14" }, { "date": "Dec 8, 1985", @@ -54071,7 +79717,12 @@ "sF": "28", "sU": "16", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1985 Regular Season - Week 14" }, { "date": "Dec 8, 1985", @@ -54081,7 +79732,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "1985 Regular Season - Week 14" }, { "date": "Dec 8, 1985", @@ -54091,7 +79747,12 @@ "sF": "35", "sU": "14", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1985 Regular Season - Week 14" }, { "date": "Dec 8, 1985", @@ -54100,8 +79761,13 @@ "und": "Tampa Bay Buccaneers", "sF": "26", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1985 Regular Season - Week 14" }, { "date": "Dec 8, 1985", @@ -54110,8 +79776,13 @@ "und": "Cleveland Browns", "sF": "31", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.0, + "pScore": { + "sU": 16.25, + "sF": 20.75 + }, + "week": "1985 Regular Season - Week 14" }, { "date": "Dec 8, 1985", @@ -54121,7 +79792,12 @@ "sF": "54", "sU": "44", "spread": "5", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 22.0, + "sF": 27.0 + }, + "week": "1985 Regular Season - Week 14" }, { "date": "Dec 9, 1985", @@ -54131,7 +79807,12 @@ "sF": "20", "sU": "27", "spread": "9", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.5, + "sF": 24.5 + }, + "week": "1985 Regular Season - Week 14" }, { "date": "Dec 14, 1985", @@ -54140,8 +79821,13 @@ "und": "New York Jets", "sF": "19", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.5, + "pScore": { + "sU": 18.0, + "sF": 20.5 + }, + "week": "1985 Regular Season - Week 15" }, { "date": "Dec 14, 1985", @@ -54150,8 +79836,13 @@ "und": "Kansas City Chiefs", "sF": "14", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.0, + "pScore": { + "sU": 16.25, + "sF": 26.75 + }, + "week": "1985 Regular Season - Week 15" }, { "date": "Dec 15, 1985", @@ -54161,7 +79852,12 @@ "sF": "13", "sU": "14", "spread": "2", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.0, + "sF": 24.0 + }, + "week": "1985 Regular Season - Week 15" }, { "date": "Dec 15, 1985", @@ -54171,7 +79867,12 @@ "sF": "28", "sU": "21", "spread": "10", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 13.25, + "sF": 23.25 + }, + "week": "1985 Regular Season - Week 15" }, { "date": "Dec 15, 1985", @@ -54181,7 +79882,12 @@ "sF": "28", "sU": "21", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "1985 Regular Season - Week 15" }, { "date": "Dec 15, 1985", @@ -54191,7 +79897,12 @@ "sF": "23", "sU": "26", "spread": "6", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.25, + "sF": 26.25 + }, + "week": "1985 Regular Season - Week 15" }, { "date": "Dec 15, 1985", @@ -54201,7 +79912,12 @@ "sF": "31", "sU": "19", "spread": "10", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.5, + "sF": 26.5 + }, + "week": "1985 Regular Season - Week 15" }, { "date": "Dec 15, 1985", @@ -54211,7 +79927,12 @@ "sF": "30", "sU": "24", "spread": "10", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.0, + "sF": 24.0 + }, + "week": "1985 Regular Season - Week 15" }, { "date": "Dec 15, 1985", @@ -54220,8 +79941,13 @@ "und": "Indianapolis Colts", "sF": "23", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1985 Regular Season - Week 15" }, { "date": "Dec 15, 1985", @@ -54231,7 +79957,12 @@ "sF": "27", "sU": "24", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "1985 Regular Season - Week 15" }, { "date": "Dec 15, 1985", @@ -54240,8 +79971,13 @@ "und": "Seattle Seahawks", "sF": "13", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.0, + "pScore": { + "sU": 18.75, + "sF": 23.25 + }, + "week": "1985 Regular Season - Week 15" }, { "date": "Dec 15, 1985", @@ -54250,8 +79986,13 @@ "und": "St Louis Cardinals", "sF": "46", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 39.5, + "pScore": { + "sU": 15.5, + "sF": 24.0 + }, + "week": "1985 Regular Season - Week 15" }, { "date": "Dec 15, 1985", @@ -54261,7 +80002,12 @@ "sF": "20", "sU": "14", "spread": "7", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 21.5, + "sF": 28.5 + }, + "week": "1985 Regular Season - Week 15" }, { "date": "Dec 16, 1985", @@ -54271,7 +80017,12 @@ "sF": "30", "sU": "27", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "1985 Regular Season - Week 15" }, { "date": "Dec 21, 1985", @@ -54281,7 +80032,12 @@ "sF": "28", "sU": "10", "spread": "9", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.5, + "sF": 23.5 + }, + "week": "1985 Regular Season - Week 16" }, { "date": "Dec 21, 1985", @@ -54291,7 +80047,12 @@ "sF": "27", "sU": "16", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1985 Regular Season - Week 16" }, { "date": "Dec 22, 1985", @@ -54300,8 +80061,13 @@ "und": "Detroit Lions", "sF": "37", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1985 Regular Season - Week 16" }, { "date": "Dec 22, 1985", @@ -54311,7 +80077,12 @@ "sF": "38", "sU": "34", "spread": "2", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.0, + "sF": 24.0 + }, + "week": "1985 Regular Season - Week 16" }, { "date": "Dec 22, 1985", @@ -54320,8 +80091,13 @@ "und": "Buffalo Bills", "sF": "28", "sU": "0", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": 41.0, + "pScore": { + "sU": 11.75, + "sF": 29.25 + }, + "week": "1985 Regular Season - Week 16" }, { "date": "Dec 22, 1985", @@ -54331,7 +80107,12 @@ "sF": "35", "sU": "37", "spread": "2", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.5, + "sF": 20.5 + }, + "week": "1985 Regular Season - Week 16" }, { "date": "Dec 22, 1985", @@ -54341,7 +80122,12 @@ "sF": "34", "sU": "23", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "1985 Regular Season - Week 16" }, { "date": "Dec 22, 1985", @@ -54351,7 +80137,12 @@ "sF": "10", "sU": "16", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "1985 Regular Season - Week 16" }, { "date": "Dec 22, 1985", @@ -54360,8 +80151,13 @@ "und": "Cleveland Browns", "sF": "37", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.0, + "pScore": { + "sU": 14.75, + "sF": 22.25 + }, + "week": "1985 Regular Season - Week 16" }, { "date": "Dec 22, 1985", @@ -54370,8 +80166,13 @@ "und": "Tampa Bay Buccaneers", "sF": "20", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "1985 Regular Season - Week 16" }, { "date": "Dec 22, 1985", @@ -54380,8 +80181,13 @@ "und": "Houston Oilers", "sF": "34", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "1985 Regular Season - Week 16" }, { "date": "Dec 22, 1985", @@ -54391,7 +80197,12 @@ "sF": "31", "sU": "16", "spread": "9", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.5, + "sF": 26.5 + }, + "week": "1985 Regular Season - Week 16" }, { "date": "Dec 23, 1985", @@ -54401,7 +80212,12 @@ "sF": "16", "sU": "6", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "1985 Regular Season - Week 16" }, { "date": "Dec 28, 1985", @@ -54411,7 +80227,12 @@ "sF": "14", "sU": "26", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1985 Playoffs" }, { "date": "Dec 29, 1985", @@ -54421,7 +80242,12 @@ "sF": "3", "sU": "17", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1985 Playoffs" }, { "date": "Jan 4, 1986", @@ -54430,8 +80256,13 @@ "und": "Cleveland Browns (3)", "sF": "24", "sU": "21", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 45.0, + "pScore": { + "sU": 17.25, + "sF": 27.75 + }, + "week": "1985 Playoffs" }, { "date": "Jan 4, 1986", @@ -54441,7 +80272,12 @@ "sF": "20", "sU": "0", "spread": "2", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.25, + "sF": 21.25 + }, + "week": "1985 Playoffs" }, { "date": "Jan 5, 1986", @@ -54451,7 +80287,12 @@ "sF": "21", "sU": "0", "spread": "9", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 13.5, + "sF": 22.5 + }, + "week": "1985 Playoffs" }, { "date": "Jan 5, 1986", @@ -54460,8 +80301,13 @@ "und": "New England Patriots (5)", "sF": "20", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "1985 Playoffs" }, { "date": "Jan 12, 1986", @@ -54470,8 +80316,13 @@ "und": "Los Angeles Rams (2)", "sF": "24", "sU": "0", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 34.0, + "pScore": { + "sU": 11.75, + "sF": 22.25 + }, + "week": "1985 Playoffs" }, { "date": "Jan 12, 1986", @@ -54480,8 +80331,13 @@ "und": "New England Patriots (5)", "sF": "14", "sU": "31", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 48.0, + "pScore": { + "sU": 21.25, + "sF": 26.75 + }, + "week": "1985 Playoffs" }, { "date": "Jan 26, 1986", @@ -54491,7 +80347,12 @@ "sF": "46", "sU": "10", "spread": "10", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 13.75, + "sF": 23.75 + }, + "week": "1985 Playoffs" }, { "date": "Sep 7, 1986", @@ -54500,8 +80361,13 @@ "und": "Cleveland Browns", "sF": "41", "sU": "31", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 38.0, + "pScore": { + "sU": 13.75, + "sF": 24.25 + }, + "week": "1986 Regular Season - Week 1" }, { "date": "Sep 7, 1986", @@ -54511,7 +80377,12 @@ "sF": "3", "sU": "31", "spread": "4", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.75, + "sF": 22.75 + }, + "week": "1986 Regular Season - Week 1" }, { "date": "Sep 7, 1986", @@ -54520,8 +80391,13 @@ "und": "Detroit Lions", "sF": "10", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "1986 Regular Season - Week 1" }, { "date": "Sep 7, 1986", @@ -54530,8 +80406,13 @@ "und": "Atlanta Falcons", "sF": "10", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1986 Regular Season - Week 1" }, { "date": "Sep 7, 1986", @@ -54540,8 +80421,13 @@ "und": "St Louis Cardinals", "sF": "16", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1986 Regular Season - Week 1" }, { "date": "Sep 7, 1986", @@ -54551,7 +80437,12 @@ "sF": "31", "sU": "7", "spread": "9", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.0, + "sF": 26.0 + }, + "week": "1986 Regular Season - Week 1" }, { "date": "Sep 7, 1986", @@ -54560,8 +80451,13 @@ "und": "Philadelphia Eagles", "sF": "41", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.0, + "pScore": { + "sU": 16.75, + "sF": 22.25 + }, + "week": "1986 Regular Season - Week 1" }, { "date": "Sep 7, 1986", @@ -54571,7 +80467,12 @@ "sF": "28", "sU": "24", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1986 Regular Season - Week 1" }, { "date": "Sep 7, 1986", @@ -54581,7 +80482,12 @@ "sF": "38", "sU": "36", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "1986 Regular Season - Week 1" }, { "date": "Sep 7, 1986", @@ -54591,7 +80497,12 @@ "sF": "14", "sU": "24", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 1" }, { "date": "Sep 7, 1986", @@ -54600,8 +80511,13 @@ "und": "Indianapolis Colts", "sF": "33", "sU": "3", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.0, + "pScore": { + "sU": 16.25, + "sF": 25.75 + }, + "week": "1986 Regular Season - Week 1" }, { "date": "Sep 7, 1986", @@ -54611,7 +80527,12 @@ "sF": "28", "sU": "50", "spread": "1", - "ou": -1 + "ou": 56.0, + "pScore": { + "sU": 27.5, + "sF": 28.5 + }, + "week": "1986 Regular Season - Week 1" }, { "date": "Sep 7, 1986", @@ -54621,7 +80542,12 @@ "sF": "30", "sU": "0", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 1" }, { "date": "Sep 8, 1986", @@ -54630,8 +80556,13 @@ "und": "Dallas Cowboys", "sF": "28", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.0, + "pScore": { + "sU": 19.75, + "sF": 21.25 + }, + "week": "1986 Regular Season - Week 1" }, { "date": "Sep 11, 1986", @@ -54640,8 +80571,13 @@ "und": "New England Patriots", "sF": "6", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "1986 Regular Season - Week 2" }, { "date": "Sep 14, 1986", @@ -54650,8 +80586,13 @@ "und": "St Louis Cardinals", "sF": "33", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1986 Regular Season - Week 2" }, { "date": "Sep 14, 1986", @@ -54660,8 +80601,13 @@ "und": "Philadelphia Eagles", "sF": "13", "sU": "10", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 38.0, + "pScore": { + "sU": 11.25, + "sF": 26.75 + }, + "week": "1986 Regular Season - Week 2" }, { "date": "Sep 14, 1986", @@ -54670,8 +80616,13 @@ "und": "Buffalo Bills", "sF": "36", "sU": "33", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "1986 Regular Season - Week 2" }, { "date": "Sep 14, 1986", @@ -54680,8 +80631,13 @@ "und": "Detroit Lions", "sF": "31", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1986 Regular Season - Week 2" }, { "date": "Sep 14, 1986", @@ -54690,8 +80646,13 @@ "und": "Cleveland Browns", "sF": "20", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.0, + "pScore": { + "sU": 19.25, + "sF": 20.75 + }, + "week": "1986 Regular Season - Week 2" }, { "date": "Sep 14, 1986", @@ -54700,8 +80661,13 @@ "und": "Green Bay Packers", "sF": "24", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1986 Regular Season - Week 2" }, { "date": "Sep 14, 1986", @@ -54710,8 +80676,13 @@ "und": "San Diego Chargers", "sF": "20", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 50.0, + "pScore": { + "sU": 23.25, + "sF": 26.75 + }, + "week": "1986 Regular Season - Week 2" }, { "date": "Sep 14, 1986", @@ -54721,7 +80692,12 @@ "sF": "10", "sU": "6", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1986 Regular Season - Week 2" }, { "date": "Sep 14, 1986", @@ -54730,8 +80706,13 @@ "und": "Los Angeles Rams", "sF": "13", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1986 Regular Season - Week 2" }, { "date": "Sep 14, 1986", @@ -54741,7 +80722,12 @@ "sF": "30", "sU": "10", "spread": "14", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 14.5, + "sF": 28.5 + }, + "week": "1986 Regular Season - Week 2" }, { "date": "Sep 14, 1986", @@ -54751,7 +80737,12 @@ "sF": "23", "sU": "17", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 2" }, { "date": "Sep 14, 1986", @@ -54760,8 +80751,13 @@ "und": "Tampa Bay Buccaneers", "sF": "23", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "1986 Regular Season - Week 2" }, { "date": "Sep 15, 1986", @@ -54770,8 +80766,13 @@ "und": "Pittsburgh Steelers", "sF": "21", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "1986 Regular Season - Week 2" }, { "date": "Sep 18, 1986", @@ -54781,7 +80782,12 @@ "sF": "13", "sU": "30", "spread": "5", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.5, + "sF": 25.5 + }, + "week": "1986 Regular Season - Week 3" }, { "date": "Sep 21, 1986", @@ -54791,7 +80797,12 @@ "sF": "17", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1986 Regular Season - Week 3" }, { "date": "Sep 21, 1986", @@ -54800,8 +80811,13 @@ "und": "Atlanta Falcons", "sF": "35", "sU": "37", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "1986 Regular Season - Week 3" }, { "date": "Sep 21, 1986", @@ -54811,7 +80827,12 @@ "sF": "20", "sU": "24", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "1986 Regular Season - Week 3" }, { "date": "Sep 21, 1986", @@ -54820,8 +80841,13 @@ "und": "Indianapolis Colts", "sF": "24", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.0, + "pScore": { + "sU": 16.25, + "sF": 23.75 + }, + "week": "1986 Regular Season - Week 3" }, { "date": "Sep 21, 1986", @@ -54831,7 +80857,12 @@ "sF": "31", "sU": "7", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "1986 Regular Season - Week 3" }, { "date": "Sep 21, 1986", @@ -54841,7 +80872,12 @@ "sF": "31", "sU": "38", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1986 Regular Season - Week 3" }, { "date": "Sep 21, 1986", @@ -54851,7 +80887,12 @@ "sF": "45", "sU": "51", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "1986 Regular Season - Week 3" }, { "date": "Sep 21, 1986", @@ -54860,8 +80901,13 @@ "und": "Philadelphia Eagles", "sF": "33", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1986 Regular Season - Week 3" }, { "date": "Sep 21, 1986", @@ -54870,8 +80916,13 @@ "und": "Houston Oilers", "sF": "27", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1986 Regular Season - Week 3" }, { "date": "Sep 21, 1986", @@ -54880,8 +80931,13 @@ "und": "New York Giants", "sF": "9", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1986 Regular Season - Week 3" }, { "date": "Sep 21, 1986", @@ -54891,7 +80947,12 @@ "sF": "27", "sU": "30", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "1986 Regular Season - Week 3" }, { "date": "Sep 21, 1986", @@ -54901,7 +80962,12 @@ "sF": "26", "sU": "17", "spread": "11", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.0, + "sF": 26.0 + }, + "week": "1986 Regular Season - Week 3" }, { "date": "Sep 22, 1986", @@ -54911,7 +80977,12 @@ "sF": "25", "sU": "12", "spread": "11", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 14.25, + "sF": 25.25 + }, + "week": "1986 Regular Season - Week 3" }, { "date": "Sep 28, 1986", @@ -54921,7 +80992,12 @@ "sF": "17", "sU": "20", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1986 Regular Season - Week 4" }, { "date": "Sep 28, 1986", @@ -54930,8 +81006,13 @@ "und": "Cincinnati Bengals", "sF": "44", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.0, + "pScore": { + "sU": 21.25, + "sF": 25.75 + }, + "week": "1986 Regular Season - Week 4" }, { "date": "Sep 28, 1986", @@ -54940,8 +81021,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "21", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 41.5, + "pScore": { + "sU": 16.5, + "sF": 25.0 + }, + "week": "1986 Regular Season - Week 4" }, { "date": "Sep 28, 1986", @@ -54950,8 +81036,13 @@ "und": "Pittsburgh Steelers", "sF": "16", "sU": "22", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "1986 Regular Season - Week 4" }, { "date": "Sep 28, 1986", @@ -54961,11 +81052,12 @@ "sF": "16", "sU": "31", "spread": "3", - "ou": "49", + "ou": 50.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 23.75, + "sF": 26.75 + }, + "week": "1986 Regular Season - Week 4" }, { "date": "Sep 28, 1986", @@ -54975,7 +81067,12 @@ "sF": "42", "sU": "7", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1986 Regular Season - Week 4" }, { "date": "Sep 28, 1986", @@ -54984,8 +81081,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 40.0, + "pScore": { + "sU": 14.75, + "sF": 25.25 + }, + "week": "1986 Regular Season - Week 4" }, { "date": "Sep 28, 1986", @@ -54995,7 +81097,12 @@ "sF": "20", "sU": "34", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1986 Regular Season - Week 4" }, { "date": "Sep 28, 1986", @@ -55005,7 +81112,12 @@ "sF": "19", "sU": "14", "spread": "4", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.75, + "sF": 23.75 + }, + "week": "1986 Regular Season - Week 4" }, { "date": "Sep 28, 1986", @@ -55015,7 +81127,12 @@ "sF": "27", "sU": "20", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "1986 Regular Season - Week 4" }, { "date": "Sep 28, 1986", @@ -55024,8 +81141,13 @@ "und": "Indianapolis Colts", "sF": "26", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.0, + "pScore": { + "sU": 17.25, + "sF": 26.75 + }, + "week": "1986 Regular Season - Week 4" }, { "date": "Sep 28, 1986", @@ -55035,7 +81157,12 @@ "sF": "17", "sU": "13", "spread": "3", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 24.25, + "sF": 27.25 + }, + "week": "1986 Regular Season - Week 4" }, { "date": "Sep 28, 1986", @@ -55045,7 +81172,12 @@ "sF": "23", "sU": "20", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "1986 Regular Season - Week 4" }, { "date": "Sep 29, 1986", @@ -55055,7 +81187,12 @@ "sF": "31", "sU": "7", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "1986 Regular Season - Week 4" }, { "date": "Oct 5, 1986", @@ -55065,7 +81202,12 @@ "sF": "0", "sU": "16", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "1986 Regular Season - Week 5" }, { "date": "Oct 5, 1986", @@ -55074,8 +81216,13 @@ "und": "Minnesota Vikings", "sF": "23", "sU": "0", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 43.5, + "pScore": { + "sU": 15.5, + "sF": 28.0 + }, + "week": "1986 Regular Season - Week 5" }, { "date": "Oct 5, 1986", @@ -55085,7 +81232,12 @@ "sF": "24", "sU": "13", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1986 Regular Season - Week 5" }, { "date": "Oct 5, 1986", @@ -55095,7 +81247,12 @@ "sF": "34", "sU": "28", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "1986 Regular Season - Week 5" }, { "date": "Oct 5, 1986", @@ -55105,7 +81262,12 @@ "sF": "24", "sU": "17", "spread": "1", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 18.25, + "sF": 19.25 + }, + "week": "1986 Regular Season - Week 5" }, { "date": "Oct 5, 1986", @@ -55115,7 +81277,12 @@ "sF": "34", "sU": "7", "spread": "6", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 21.0, + "sF": 27.0 + }, + "week": "1986 Regular Season - Week 5" }, { "date": "Oct 5, 1986", @@ -55125,7 +81292,12 @@ "sF": "14", "sU": "6", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 5" }, { "date": "Oct 5, 1986", @@ -55135,7 +81307,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "1986 Regular Season - Week 5" }, { "date": "Oct 5, 1986", @@ -55144,8 +81321,13 @@ "und": "St Louis Cardinals", "sF": "13", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.0, + "pScore": { + "sU": 15.75, + "sF": 23.25 + }, + "week": "1986 Regular Season - Week 5" }, { "date": "Oct 5, 1986", @@ -55155,7 +81337,12 @@ "sF": "29", "sU": "14", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 5" }, { "date": "Oct 5, 1986", @@ -55165,7 +81352,12 @@ "sF": "26", "sU": "20", "spread": "11", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 13.25, + "sF": 24.25 + }, + "week": "1986 Regular Season - Week 5" }, { "date": "Oct 5, 1986", @@ -55174,8 +81366,13 @@ "und": "Buffalo Bills", "sF": "14", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.5, + "pScore": { + "sU": 19.0, + "sF": 26.5 + }, + "week": "1986 Regular Season - Week 5" }, { "date": "Oct 5, 1986", @@ -55184,8 +81381,13 @@ "und": "Indianapolis Colts", "sF": "35", "sU": "14", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": 40.0, + "pScore": { + "sU": 11.25, + "sF": 28.75 + }, + "week": "1986 Regular Season - Week 5" }, { "date": "Oct 6, 1986", @@ -55195,7 +81397,12 @@ "sF": "33", "sU": "7", "spread": "6", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.5, + "sF": 27.5 + }, + "week": "1986 Regular Season - Week 5" }, { "date": "Oct 12, 1986", @@ -55204,8 +81411,13 @@ "und": "Kansas City Chiefs", "sF": "20", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "1986 Regular Season - Week 6" }, { "date": "Oct 12, 1986", @@ -55214,8 +81426,13 @@ "und": "Green Bay Packers", "sF": "21", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "1986 Regular Season - Week 6" }, { "date": "Oct 12, 1986", @@ -55224,8 +81441,13 @@ "und": "Houston Oilers", "sF": "20", "sU": "7", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 41.0, + "pScore": { + "sU": 13.75, + "sF": 27.25 + }, + "week": "1986 Regular Season - Week 6" }, { "date": "Oct 12, 1986", @@ -55235,7 +81457,12 @@ "sF": "17", "sU": "14", "spread": "4", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.75, + "sF": 20.75 + }, + "week": "1986 Regular Season - Week 6" }, { "date": "Oct 12, 1986", @@ -55244,8 +81471,13 @@ "und": "Buffalo Bills", "sF": "27", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.0, + "pScore": { + "sU": 21.25, + "sF": 27.75 + }, + "week": "1986 Regular Season - Week 6" }, { "date": "Oct 12, 1986", @@ -55255,7 +81487,12 @@ "sF": "24", "sU": "31", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "1986 Regular Season - Week 6" }, { "date": "Oct 12, 1986", @@ -55265,7 +81502,12 @@ "sF": "19", "sU": "30", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1986 Regular Season - Week 6" }, { "date": "Oct 12, 1986", @@ -55274,8 +81516,13 @@ "und": "Seattle Seahawks", "sF": "14", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "1986 Regular Season - Week 6" }, { "date": "Oct 12, 1986", @@ -55285,7 +81532,12 @@ "sF": "35", "sU": "3", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1986 Regular Season - Week 6" }, { "date": "Oct 12, 1986", @@ -55294,8 +81546,13 @@ "und": "San Diego Chargers", "sF": "31", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.5, + "pScore": { + "sU": 18.5, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 6" }, { "date": "Oct 12, 1986", @@ -55304,8 +81561,13 @@ "und": "Minnesota Vikings", "sF": "24", "sU": "27", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 41.5, + "pScore": { + "sU": 16.0, + "sF": 25.5 + }, + "week": "1986 Regular Season - Week 6" }, { "date": "Oct 13, 1986", @@ -55314,8 +81576,13 @@ "und": "Pittsburgh Steelers", "sF": "24", "sU": "22", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.0, + "pScore": { + "sU": 19.75, + "sF": 27.25 + }, + "week": "1986 Regular Season - Week 6" }, { "date": "Oct 19, 1986", @@ -55325,7 +81592,12 @@ "sF": "10", "sU": "10", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1986 Regular Season - Week 7" }, { "date": "Oct 19, 1986", @@ -55334,8 +81606,13 @@ "und": "Indianapolis Colts", "sF": "24", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 41.0, + "pScore": { + "sU": 15.25, + "sF": 25.75 + }, + "week": "1986 Regular Season - Week 7" }, { "date": "Oct 19, 1986", @@ -55344,8 +81621,13 @@ "und": "Houston Oilers", "sF": "31", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.5, + "pScore": { + "sU": 19.5, + "sF": 26.0 + }, + "week": "1986 Regular Season - Week 7" }, { "date": "Oct 19, 1986", @@ -55355,7 +81637,12 @@ "sF": "14", "sU": "17", "spread": "13", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 14.25, + "sF": 27.25 + }, + "week": "1986 Regular Season - Week 7" }, { "date": "Oct 19, 1986", @@ -55365,7 +81652,12 @@ "sF": "30", "sU": "28", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "1986 Regular Season - Week 7" }, { "date": "Oct 19, 1986", @@ -55375,7 +81667,12 @@ "sF": "7", "sU": "23", "spread": "9", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 14.75, + "sF": 23.75 + }, + "week": "1986 Regular Season - Week 7" }, { "date": "Oct 19, 1986", @@ -55385,7 +81682,12 @@ "sF": "38", "sU": "7", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "1986 Regular Season - Week 7" }, { "date": "Oct 19, 1986", @@ -55394,8 +81696,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "1986 Regular Season - Week 7" }, { "date": "Oct 19, 1986", @@ -55405,7 +81712,12 @@ "sF": "34", "sU": "0", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 7" }, { "date": "Oct 19, 1986", @@ -55415,7 +81727,12 @@ "sF": "28", "sU": "21", "spread": "13", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 12.75, + "sF": 25.75 + }, + "week": "1986 Regular Season - Week 7" }, { "date": "Oct 19, 1986", @@ -55424,8 +81741,13 @@ "und": "San Diego Chargers", "sF": "42", "sU": "41", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.0, + "pScore": { + "sU": 19.75, + "sF": 25.25 + }, + "week": "1986 Regular Season - Week 7" }, { "date": "Oct 19, 1986", @@ -55435,7 +81757,12 @@ "sF": "14", "sU": "10", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "1986 Regular Season - Week 7" }, { "date": "Oct 19, 1986", @@ -55445,7 +81772,12 @@ "sF": "17", "sU": "12", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1986 Regular Season - Week 7" }, { "date": "Oct 20, 1986", @@ -55454,8 +81786,13 @@ "und": "New York Jets", "sF": "10", "sU": "22", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "1986 Regular Season - Week 7" }, { "date": "Oct 26, 1986", @@ -55465,7 +81802,12 @@ "sF": "23", "sU": "3", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 8" }, { "date": "Oct 26, 1986", @@ -55474,8 +81816,13 @@ "und": "Detroit Lions", "sF": "13", "sU": "7", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 39.0, + "pScore": { + "sU": 12.25, + "sF": 26.75 + }, + "week": "1986 Regular Season - Week 8" }, { "date": "Oct 26, 1986", @@ -55485,7 +81832,12 @@ "sF": "31", "sU": "17", "spread": "9", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.0, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 8" }, { "date": "Oct 26, 1986", @@ -55494,8 +81846,13 @@ "und": "Houston Oilers", "sF": "28", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "1986 Regular Season - Week 8" }, { "date": "Oct 26, 1986", @@ -55505,7 +81862,12 @@ "sF": "17", "sU": "13", "spread": "9", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 18.0, + "sF": 27.0 + }, + "week": "1986 Regular Season - Week 8" }, { "date": "Oct 26, 1986", @@ -55514,8 +81876,13 @@ "und": "Tampa Bay Buccaneers", "sF": "27", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.0, + "pScore": { + "sU": 16.25, + "sF": 25.75 + }, + "week": "1986 Regular Season - Week 8" }, { "date": "Oct 26, 1986", @@ -55525,7 +81892,12 @@ "sF": "20", "sU": "23", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "1986 Regular Season - Week 8" }, { "date": "Oct 26, 1986", @@ -55535,7 +81907,12 @@ "sF": "28", "sU": "23", "spread": "9", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.0, + "sF": 25.0 + }, + "week": "1986 Regular Season - Week 8" }, { "date": "Oct 26, 1986", @@ -55545,7 +81922,12 @@ "sF": "23", "sU": "7", "spread": "4", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.75, + "sF": 23.75 + }, + "week": "1986 Regular Season - Week 8" }, { "date": "Oct 26, 1986", @@ -55554,8 +81936,13 @@ "und": "Pittsburgh Steelers", "sF": "9", "sU": "30", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "1986 Regular Season - Week 8" }, { "date": "Oct 26, 1986", @@ -55565,7 +81952,12 @@ "sF": "37", "sU": "6", "spread": "11", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.0, + "sF": 26.0 + }, + "week": "1986 Regular Season - Week 8" }, { "date": "Oct 26, 1986", @@ -55574,8 +81966,13 @@ "und": "Seattle Seahawks", "sF": "20", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.0, + "pScore": { + "sU": 17.75, + "sF": 23.25 + }, + "week": "1986 Regular Season - Week 8" }, { "date": "Oct 26, 1986", @@ -55585,7 +81982,12 @@ "sF": "14", "sU": "7", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1986 Regular Season - Week 8" }, { "date": "Oct 27, 1986", @@ -55594,8 +81996,13 @@ "und": "Washington Redskins", "sF": "27", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1986 Regular Season - Week 8" }, { "date": "Nov 2, 1986", @@ -55604,8 +82011,13 @@ "und": "Cincinnati Bengals", "sF": "17", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "1986 Regular Season - Week 9" }, { "date": "Nov 2, 1986", @@ -55614,8 +82026,13 @@ "und": "Indianapolis Colts", "sF": "24", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "1986 Regular Season - Week 9" }, { "date": "Nov 2, 1986", @@ -55624,8 +82041,13 @@ "und": "Houston Oilers", "sF": "28", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.0, + "pScore": { + "sU": 19.25, + "sF": 26.75 + }, + "week": "1986 Regular Season - Week 9" }, { "date": "Nov 2, 1986", @@ -55635,7 +82057,12 @@ "sF": "25", "sU": "17", "spread": "9", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.5, + "sF": 23.5 + }, + "week": "1986 Regular Season - Week 9" }, { "date": "Nov 2, 1986", @@ -55644,8 +82071,13 @@ "und": "New Orleans Saints", "sF": "10", "sU": "23", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.0, + "pScore": { + "sU": 16.75, + "sF": 22.25 + }, + "week": "1986 Regular Season - Week 9" }, { "date": "Nov 2, 1986", @@ -55655,7 +82087,12 @@ "sF": "17", "sU": "14", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1986 Regular Season - Week 9" }, { "date": "Nov 2, 1986", @@ -55665,7 +82102,12 @@ "sF": "27", "sU": "3", "spread": "5", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.5, + "sF": 21.5 + }, + "week": "1986 Regular Season - Week 9" }, { "date": "Nov 2, 1986", @@ -55674,8 +82116,13 @@ "und": "St Louis Cardinals", "sF": "10", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1986 Regular Season - Week 9" }, { "date": "Nov 2, 1986", @@ -55684,8 +82131,13 @@ "und": "Denver Broncos", "sF": "10", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1986 Regular Season - Week 9" }, { "date": "Nov 2, 1986", @@ -55695,7 +82147,12 @@ "sF": "23", "sU": "24", "spread": "2", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.75, + "sF": 21.75 + }, + "week": "1986 Regular Season - Week 9" }, { "date": "Nov 2, 1986", @@ -55705,7 +82162,12 @@ "sF": "7", "sU": "38", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1986 Regular Season - Week 9" }, { "date": "Nov 2, 1986", @@ -55715,7 +82177,12 @@ "sF": "44", "sU": "38", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "1986 Regular Season - Week 9" }, { "date": "Nov 3, 1986", @@ -55725,7 +82192,12 @@ "sF": "17", "sU": "20", "spread": "8", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 13.5, + "sF": 21.5 + }, + "week": "1986 Regular Season - Week 9" }, { "date": "Nov 9, 1986", @@ -55735,7 +82207,12 @@ "sF": "28", "sU": "14", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "1986 Regular Season - Week 10" }, { "date": "Nov 9, 1986", @@ -55745,7 +82222,12 @@ "sF": "16", "sU": "12", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "1986 Regular Season - Week 10" }, { "date": "Nov 9, 1986", @@ -55755,7 +82237,12 @@ "sF": "24", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1986 Regular Season - Week 10" }, { "date": "Nov 9, 1986", @@ -55764,8 +82251,13 @@ "und": "Green Bay Packers", "sF": "16", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 39.5, + "pScore": { + "sU": 15.0, + "sF": 24.5 + }, + "week": "1986 Regular Season - Week 10" }, { "date": "Nov 9, 1986", @@ -55775,7 +82267,12 @@ "sF": "28", "sU": "32", "spread": "4", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 20.75, + "sF": 24.75 + }, + "week": "1986 Regular Season - Week 10" }, { "date": "Nov 9, 1986", @@ -55785,7 +82282,12 @@ "sF": "30", "sU": "21", "spread": "13", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 13.0, + "sF": 26.0 + }, + "week": "1986 Regular Season - Week 10" }, { "date": "Nov 9, 1986", @@ -55795,7 +82297,12 @@ "sF": "27", "sU": "7", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "1986 Regular Season - Week 10" }, { "date": "Nov 9, 1986", @@ -55804,8 +82311,13 @@ "und": "New Orleans Saints", "sF": "0", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "1986 Regular Season - Week 10" }, { "date": "Nov 9, 1986", @@ -55814,8 +82326,13 @@ "und": "Tampa Bay Buccaneers", "sF": "23", "sU": "3", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 38.0, + "pScore": { + "sU": 13.75, + "sF": 24.25 + }, + "week": "1986 Regular Season - Week 10" }, { "date": "Nov 9, 1986", @@ -55825,7 +82342,12 @@ "sF": "13", "sU": "17", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1986 Regular Season - Week 10" }, { "date": "Nov 9, 1986", @@ -55834,8 +82356,13 @@ "und": "San Diego Chargers", "sF": "3", "sU": "9", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 42.0, + "pScore": { + "sU": 14.25, + "sF": 27.75 + }, + "week": "1986 Regular Season - Week 10" }, { "date": "Nov 9, 1986", @@ -55844,8 +82371,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 34.0, + "pScore": { + "sU": 15.25, + "sF": 18.75 + }, + "week": "1986 Regular Season - Week 10" }, { "date": "Nov 9, 1986", @@ -55855,7 +82387,12 @@ "sF": "43", "sU": "17", "spread": "11", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 14.5, + "sF": 25.5 + }, + "week": "1986 Regular Season - Week 10" }, { "date": "Nov 10, 1986", @@ -55865,7 +82402,12 @@ "sF": "26", "sU": "16", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 10" }, { "date": "Nov 16, 1986", @@ -55875,7 +82417,12 @@ "sF": "13", "sU": "10", "spread": "7", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 14.75, + "sF": 21.75 + }, + "week": "1986 Regular Season - Week 11" }, { "date": "Nov 16, 1986", @@ -55884,8 +82431,13 @@ "und": "Buffalo Bills", "sF": "34", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.5, + "pScore": { + "sU": 21.0, + "sF": 22.5 + }, + "week": "1986 Regular Season - Week 11" }, { "date": "Nov 16, 1986", @@ -55895,7 +82447,12 @@ "sF": "34", "sU": "7", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1986 Regular Season - Week 11" }, { "date": "Nov 16, 1986", @@ -55905,7 +82462,12 @@ "sF": "31", "sU": "7", "spread": "4", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.25, + "sF": 21.25 + }, + "week": "1986 Regular Season - Week 11" }, { "date": "Nov 16, 1986", @@ -55914,8 +82476,13 @@ "und": "Minnesota Vikings", "sF": "22", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.5, + "pScore": { + "sU": 18.5, + "sF": 20.0 + }, + "week": "1986 Regular Season - Week 11" }, { "date": "Nov 16, 1986", @@ -55924,8 +82491,13 @@ "und": "Detroit Lions", "sF": "11", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "1986 Regular Season - Week 11" }, { "date": "Nov 16, 1986", @@ -55934,8 +82506,13 @@ "und": "Houston Oilers", "sF": "21", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.5, + "pScore": { + "sU": 17.0, + "sF": 21.5 + }, + "week": "1986 Regular Season - Week 11" }, { "date": "Nov 16, 1986", @@ -55945,7 +82522,12 @@ "sF": "16", "sU": "7", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "1986 Regular Season - Week 11" }, { "date": "Nov 16, 1986", @@ -55955,7 +82537,12 @@ "sF": "38", "sU": "17", "spread": "8", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.25, + "sF": 23.25 + }, + "week": "1986 Regular Season - Week 11" }, { "date": "Nov 16, 1986", @@ -55964,8 +82551,13 @@ "und": "Cleveland Browns", "sF": "27", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "1986 Regular Season - Week 11" }, { "date": "Nov 16, 1986", @@ -55974,8 +82566,13 @@ "und": "Los Angeles Rams", "sF": "30", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "1986 Regular Season - Week 11" }, { "date": "Nov 16, 1986", @@ -55985,7 +82582,12 @@ "sF": "31", "sU": "16", "spread": "16", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 13.25, + "sF": 29.25 + }, + "week": "1986 Regular Season - Week 11" }, { "date": "Nov 16, 1986", @@ -55995,7 +82597,12 @@ "sF": "24", "sU": "21", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1986 Regular Season - Week 11" }, { "date": "Nov 17, 1986", @@ -56005,11 +82612,12 @@ "sF": "14", "sU": "6", "spread": "2", - "ou": "49", + "ou": 43.5, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 20.75, + "sF": 22.75 + }, + "week": "1986 Regular Season - Week 11" }, { "date": "Nov 20, 1986", @@ -56018,8 +82626,13 @@ "und": "San Diego Chargers", "sF": "37", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "1986 Regular Season - Week 12" }, { "date": "Nov 23, 1986", @@ -56029,7 +82642,12 @@ "sF": "12", "sU": "10", "spread": "14", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 11.5, + "sF": 25.5 + }, + "week": "1986 Regular Season - Week 12" }, { "date": "Nov 23, 1986", @@ -56039,7 +82657,12 @@ "sF": "24", "sU": "20", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 12" }, { "date": "Nov 23, 1986", @@ -56048,8 +82671,13 @@ "und": "Pittsburgh Steelers", "sF": "37", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "1986 Regular Season - Week 12" }, { "date": "Nov 23, 1986", @@ -56059,7 +82687,12 @@ "sF": "31", "sU": "17", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 12" }, { "date": "Nov 23, 1986", @@ -56069,7 +82702,12 @@ "sF": "22", "sU": "19", "spread": "13", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 15.0, + "sF": 28.0 + }, + "week": "1986 Regular Season - Week 12" }, { "date": "Nov 23, 1986", @@ -56079,7 +82717,12 @@ "sF": "19", "sU": "16", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1986 Regular Season - Week 12" }, { "date": "Nov 23, 1986", @@ -56088,8 +82731,13 @@ "und": "Tampa Bay Buccaneers", "sF": "38", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1986 Regular Season - Week 12" }, { "date": "Nov 23, 1986", @@ -56098,8 +82746,13 @@ "und": "New Orleans Saints", "sF": "26", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.5, + "pScore": { + "sU": 15.5, + "sF": 22.0 + }, + "week": "1986 Regular Season - Week 12" }, { "date": "Nov 23, 1986", @@ -56109,7 +82762,12 @@ "sF": "20", "sU": "0", "spread": "10", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 15.75, + "sF": 25.75 + }, + "week": "1986 Regular Season - Week 12" }, { "date": "Nov 23, 1986", @@ -56119,7 +82777,12 @@ "sF": "24", "sU": "20", "spread": "6", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.75, + "sF": 21.75 + }, + "week": "1986 Regular Season - Week 12" }, { "date": "Nov 23, 1986", @@ -56128,8 +82791,13 @@ "und": "St Louis Cardinals", "sF": "14", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "1986 Regular Season - Week 12" }, { "date": "Nov 23, 1986", @@ -56139,7 +82807,12 @@ "sF": "41", "sU": "14", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1986 Regular Season - Week 12" }, { "date": "Nov 24, 1986", @@ -56149,7 +82822,12 @@ "sF": "3", "sU": "45", "spread": "2", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 25.5, + "sF": 27.5 + }, + "week": "1986 Regular Season - Week 12" }, { "date": "Nov 27, 1986", @@ -56159,7 +82837,12 @@ "sF": "40", "sU": "44", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "1986 Regular Season - Week 13" }, { "date": "Nov 27, 1986", @@ -56168,8 +82851,13 @@ "und": "Seattle Seahawks", "sF": "14", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "1986 Regular Season - Week 13" }, { "date": "Nov 30, 1986", @@ -56179,7 +82867,12 @@ "sF": "13", "sU": "10", "spread": "10", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 13.0, + "sF": 23.0 + }, + "week": "1986 Regular Season - Week 13" }, { "date": "Nov 30, 1986", @@ -56189,7 +82882,12 @@ "sF": "13", "sU": "10", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 13" }, { "date": "Nov 30, 1986", @@ -56198,8 +82896,13 @@ "und": "Indianapolis Colts", "sF": "17", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "1986 Regular Season - Week 13" }, { "date": "Nov 30, 1986", @@ -56208,8 +82911,13 @@ "und": "Buffalo Bills", "sF": "14", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 13" }, { "date": "Nov 30, 1986", @@ -56219,7 +82927,12 @@ "sF": "45", "sU": "13", "spread": "13", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 16.0, + "sF": 29.0 + }, + "week": "1986 Regular Season - Week 13" }, { "date": "Nov 30, 1986", @@ -56229,7 +82942,12 @@ "sF": "21", "sU": "20", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1986 Regular Season - Week 13" }, { "date": "Nov 30, 1986", @@ -56239,7 +82957,12 @@ "sF": "3", "sU": "17", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1986 Regular Season - Week 13" }, { "date": "Nov 30, 1986", @@ -56248,8 +82971,13 @@ "und": "St Louis Cardinals", "sF": "20", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.0, + "pScore": { + "sU": 15.75, + "sF": 23.25 + }, + "week": "1986 Regular Season - Week 13" }, { "date": "Nov 30, 1986", @@ -56258,8 +82986,13 @@ "und": "Cincinnati Bengals", "sF": "34", "sU": "28", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.0, + "pScore": { + "sU": 18.75, + "sF": 26.25 + }, + "week": "1986 Regular Season - Week 13" }, { "date": "Nov 30, 1986", @@ -56269,7 +83002,12 @@ "sF": "27", "sU": "33", "spread": "11", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.0, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 13" }, { "date": "Nov 30, 1986", @@ -56278,8 +83016,13 @@ "und": "Atlanta Falcons", "sF": "14", "sU": "20", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 44.5, + "pScore": { + "sU": 18.0, + "sF": 26.5 + }, + "week": "1986 Regular Season - Week 13" }, { "date": "Dec 1, 1986", @@ -56289,7 +83032,12 @@ "sF": "17", "sU": "21", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1986 Regular Season - Week 13" }, { "date": "Dec 7, 1986", @@ -56299,7 +83047,12 @@ "sF": "23", "sU": "28", "spread": "11", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.0, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 14" }, { "date": "Dec 7, 1986", @@ -56309,7 +83062,12 @@ "sF": "21", "sU": "17", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1986 Regular Season - Week 14" }, { "date": "Dec 7, 1986", @@ -56319,7 +83077,12 @@ "sF": "48", "sU": "14", "spread": "17", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 9.0, + "sF": 26.0 + }, + "week": "1986 Regular Season - Week 14" }, { "date": "Dec 7, 1986", @@ -56329,7 +83092,12 @@ "sF": "32", "sU": "6", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1986 Regular Season - Week 14" }, { "date": "Dec 7, 1986", @@ -56338,8 +83106,13 @@ "und": "Kansas City Chiefs", "sF": "10", "sU": "37", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "1986 Regular Season - Week 14" }, { "date": "Dec 7, 1986", @@ -56348,8 +83121,13 @@ "und": "Cincinnati Bengals", "sF": "7", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.0, + "pScore": { + "sU": 20.75, + "sF": 25.25 + }, + "week": "1986 Regular Season - Week 14" }, { "date": "Dec 7, 1986", @@ -56358,8 +83136,13 @@ "und": "Miami Dolphins", "sF": "27", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1986 Regular Season - Week 14" }, { "date": "Dec 7, 1986", @@ -56368,8 +83151,13 @@ "und": "St Louis Cardinals", "sF": "10", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 36.0, + "pScore": { + "sU": 15.75, + "sF": 20.25 + }, + "week": "1986 Regular Season - Week 14" }, { "date": "Dec 7, 1986", @@ -56378,8 +83166,13 @@ "und": "Detroit Lions", "sF": "27", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 36.0, + "pScore": { + "sU": 15.75, + "sF": 20.25 + }, + "week": "1986 Regular Season - Week 14" }, { "date": "Dec 7, 1986", @@ -56388,8 +83181,13 @@ "und": "New York Giants", "sF": "14", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1986 Regular Season - Week 14" }, { "date": "Dec 7, 1986", @@ -56399,7 +83197,12 @@ "sF": "27", "sU": "0", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1986 Regular Season - Week 14" }, { "date": "Dec 7, 1986", @@ -56409,7 +83212,12 @@ "sF": "24", "sU": "10", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1986 Regular Season - Week 14" }, { "date": "Dec 7, 1986", @@ -56419,7 +83227,12 @@ "sF": "29", "sU": "10", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "1986 Regular Season - Week 14" }, { "date": "Dec 8, 1986", @@ -56428,8 +83241,13 @@ "und": "Seattle Seahawks", "sF": "0", "sU": "37", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1986 Regular Season - Week 14" }, { "date": "Dec 13, 1986", @@ -56438,8 +83256,13 @@ "und": "Pittsburgh Steelers", "sF": "24", "sU": "45", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "1986 Regular Season - Week 15" }, { "date": "Dec 13, 1986", @@ -56448,8 +83271,13 @@ "und": "Washington Redskins", "sF": "31", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1986 Regular Season - Week 15" }, { "date": "Dec 14, 1986", @@ -56459,7 +83287,12 @@ "sF": "14", "sU": "9", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "1986 Regular Season - Week 15" }, { "date": "Dec 14, 1986", @@ -56469,7 +83302,12 @@ "sF": "3", "sU": "34", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1986 Regular Season - Week 15" }, { "date": "Dec 14, 1986", @@ -56478,8 +83316,13 @@ "und": "Philadelphia Eagles", "sF": "21", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "1986 Regular Season - Week 15" }, { "date": "Dec 14, 1986", @@ -56489,7 +83332,12 @@ "sF": "14", "sU": "24", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1986 Regular Season - Week 15" }, { "date": "Dec 14, 1986", @@ -56498,8 +83346,13 @@ "und": "New England Patriots", "sF": "29", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1986 Regular Season - Week 15" }, { "date": "Dec 14, 1986", @@ -56508,8 +83361,13 @@ "und": "St Louis Cardinals", "sF": "27", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 37.0, + "pScore": { + "sU": 13.25, + "sF": 23.75 + }, + "week": "1986 Regular Season - Week 15" }, { "date": "Dec 14, 1986", @@ -56519,7 +83377,12 @@ "sF": "21", "sU": "7", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 15" }, { "date": "Dec 14, 1986", @@ -56529,7 +83392,12 @@ "sF": "10", "sU": "23", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 15" }, { "date": "Dec 14, 1986", @@ -56538,8 +83406,13 @@ "und": "Kansas City Chiefs", "sF": "17", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1986 Regular Season - Week 15" }, { "date": "Dec 14, 1986", @@ -56548,8 +83421,13 @@ "und": "Miami Dolphins", "sF": "31", "sU": "37", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "1986 Regular Season - Week 15" }, { "date": "Dec 14, 1986", @@ -56558,8 +83436,13 @@ "und": "Seattle Seahawks", "sF": "24", "sU": "34", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1986 Regular Season - Week 15" }, { "date": "Dec 15, 1986", @@ -56568,8 +83451,13 @@ "und": "Detroit Lions", "sF": "16", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 38.0, + "pScore": { + "sU": 14.25, + "sF": 23.75 + }, + "week": "1986 Regular Season - Week 15" }, { "date": "Dec 19, 1986", @@ -56578,8 +83466,13 @@ "und": "Los Angeles Rams", "sF": "24", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "1986 Regular Season - Week 16" }, { "date": "Dec 20, 1986", @@ -56589,7 +83482,12 @@ "sF": "55", "sU": "24", "spread": "12", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 12.0, + "sF": 24.0 + }, + "week": "1986 Regular Season - Week 16" }, { "date": "Dec 20, 1986", @@ -56598,8 +83496,13 @@ "und": "Denver Broncos", "sF": "41", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1986 Regular Season - Week 16" }, { "date": "Dec 21, 1986", @@ -56609,7 +83512,12 @@ "sF": "52", "sU": "21", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "1986 Regular Season - Week 16" }, { "date": "Dec 21, 1986", @@ -56618,8 +83526,13 @@ "und": "San Diego Chargers", "sF": "47", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "1986 Regular Season - Week 16" }, { "date": "Dec 21, 1986", @@ -56629,7 +83542,12 @@ "sF": "6", "sU": "20", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1986 Regular Season - Week 16" }, { "date": "Dec 21, 1986", @@ -56639,7 +83557,12 @@ "sF": "16", "sU": "7", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1986 Regular Season - Week 16" }, { "date": "Dec 21, 1986", @@ -56649,7 +83572,12 @@ "sF": "33", "sU": "17", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1986 Regular Season - Week 16" }, { "date": "Dec 21, 1986", @@ -56659,7 +83587,12 @@ "sF": "21", "sU": "14", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1986 Regular Season - Week 16" }, { "date": "Dec 21, 1986", @@ -56669,7 +83602,12 @@ "sF": "19", "sU": "24", "spread": "2", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.25, + "sF": 20.25 + }, + "week": "1986 Regular Season - Week 16" }, { "date": "Dec 21, 1986", @@ -56678,8 +83616,13 @@ "und": "Tampa Bay Buccaneers", "sF": "21", "sU": "17", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 41.0, + "pScore": { + "sU": 14.25, + "sF": 26.75 + }, + "week": "1986 Regular Season - Week 16" }, { "date": "Dec 21, 1986", @@ -56689,7 +83632,12 @@ "sF": "24", "sU": "10", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1986 Regular Season - Week 16" }, { "date": "Dec 21, 1986", @@ -56699,7 +83647,12 @@ "sF": "24", "sU": "30", "spread": "9", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.5, + "sF": 24.5 + }, + "week": "1986 Regular Season - Week 16" }, { "date": "Dec 22, 1986", @@ -56708,8 +83661,13 @@ "und": "New England Patriots", "sF": "27", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "1986 Regular Season - Week 16" }, { "date": "Dec 28, 1986", @@ -56719,7 +83677,12 @@ "sF": "35", "sU": "15", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1986 Playoffs" }, { "date": "Dec 28, 1986", @@ -56728,8 +83691,13 @@ "und": "Los Angeles Rams (5)", "sF": "19", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "1986 Playoffs" }, { "date": "Jan 3, 1987", @@ -56739,7 +83707,12 @@ "sF": "23", "sU": "20", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1986 Playoffs" }, { "date": "Jan 3, 1987", @@ -56749,7 +83722,12 @@ "sF": "13", "sU": "27", "spread": "7", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 13.5, + "sF": 20.5 + }, + "week": "1986 Playoffs" }, { "date": "Jan 4, 1987", @@ -56759,11 +83737,12 @@ "sF": "49", "sU": "3", "spread": "3", - "ou": "49", + "ou": 39.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 18.0, + "sF": 21.0 + }, + "week": "1986 Playoffs" }, { "date": "Jan 4, 1987", @@ -56773,7 +83752,12 @@ "sF": "22", "sU": "17", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "1986 Playoffs" }, { "date": "Jan 11, 1987", @@ -56783,7 +83767,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1986 Playoffs" }, { "date": "Jan 11, 1987", @@ -56793,7 +83782,12 @@ "sF": "17", "sU": "0", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1986 Playoffs" }, { "date": "Jan 25, 1987", @@ -56803,7 +83797,12 @@ "sF": "39", "sU": "20", "spread": "9", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.0, + "sF": 25.0 + }, + "week": "1986 Playoffs" }, { "date": "Sep 13, 1987", @@ -56812,8 +83811,13 @@ "und": "Buffalo Bills", "sF": "31", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.0, + "pScore": { + "sU": 21.25, + "sF": 22.75 + }, + "week": "1987 Regular Season - Week 1" }, { "date": "Sep 13, 1987", @@ -56823,7 +83827,12 @@ "sF": "16", "sU": "20", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "1987 Regular Season - Week 1" }, { "date": "Sep 13, 1987", @@ -56832,8 +83841,13 @@ "und": "Indianapolis Colts", "sF": "23", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "1987 Regular Season - Week 1" }, { "date": "Sep 13, 1987", @@ -56843,7 +83857,12 @@ "sF": "20", "sU": "13", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1987 Regular Season - Week 1" }, { "date": "Sep 13, 1987", @@ -56852,8 +83871,13 @@ "und": "Detroit Lions", "sF": "34", "sU": "19", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1987 Regular Season - Week 1" }, { "date": "Sep 13, 1987", @@ -56863,7 +83887,12 @@ "sF": "28", "sU": "21", "spread": "6", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.5, + "sF": 26.5 + }, + "week": "1987 Regular Season - Week 1" }, { "date": "Sep 13, 1987", @@ -56872,8 +83901,13 @@ "und": "New Orleans Saints", "sF": "21", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1987 Regular Season - Week 1" }, { "date": "Sep 13, 1987", @@ -56882,8 +83916,13 @@ "und": "Pittsburgh Steelers", "sF": "17", "sU": "30", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "1987 Regular Season - Week 1" }, { "date": "Sep 13, 1987", @@ -56893,7 +83932,12 @@ "sF": "10", "sU": "48", "spread": "2", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.25, + "sF": 21.25 + }, + "week": "1987 Regular Season - Week 1" }, { "date": "Sep 13, 1987", @@ -56903,7 +83947,12 @@ "sF": "34", "sU": "24", "spread": "10", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.0, + "sF": 24.0 + }, + "week": "1987 Regular Season - Week 1" }, { "date": "Sep 13, 1987", @@ -56913,7 +83962,12 @@ "sF": "40", "sU": "17", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "1987 Regular Season - Week 1" }, { "date": "Sep 13, 1987", @@ -56923,7 +83977,12 @@ "sF": "20", "sU": "0", "spread": "5", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.5, + "sF": 21.5 + }, + "week": "1987 Regular Season - Week 1" }, { "date": "Sep 14, 1987", @@ -56932,8 +83991,13 @@ "und": "New York Giants", "sF": "34", "sU": "19", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 35.5, + "pScore": { + "sU": 17.0, + "sF": 18.5 + }, + "week": "1987 Regular Season - Week 1" }, { "date": "Sep 20, 1987", @@ -56942,8 +84006,13 @@ "und": "Atlanta Falcons", "sF": "20", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "1987 Regular Season - Week 2" }, { "date": "Sep 20, 1987", @@ -56952,8 +84021,13 @@ "und": "Houston Oilers", "sF": "34", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1987 Regular Season - Week 2" }, { "date": "Sep 20, 1987", @@ -56963,7 +84037,12 @@ "sF": "20", "sU": "3", "spread": "14", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 12.5, + "sF": 26.5 + }, + "week": "1987 Regular Season - Week 2" }, { "date": "Sep 20, 1987", @@ -56973,7 +84052,12 @@ "sF": "34", "sU": "10", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1987 Regular Season - Week 2" }, { "date": "Sep 20, 1987", @@ -56982,8 +84066,13 @@ "und": "Green Bay Packers", "sF": "17", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.0, + "pScore": { + "sU": 16.25, + "sF": 25.75 + }, + "week": "1987 Regular Season - Week 2" }, { "date": "Sep 20, 1987", @@ -56993,7 +84082,12 @@ "sF": "23", "sU": "10", "spread": "5", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.75, + "sF": 25.75 + }, + "week": "1987 Regular Season - Week 2" }, { "date": "Sep 20, 1987", @@ -57003,7 +84097,12 @@ "sF": "17", "sU": "27", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1987 Regular Season - Week 2" }, { "date": "Sep 20, 1987", @@ -57012,8 +84111,13 @@ "und": "Detroit Lions", "sF": "27", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.5, + "pScore": { + "sU": 14.5, + "sF": 22.0 + }, + "week": "1987 Regular Season - Week 2" }, { "date": "Sep 20, 1987", @@ -57022,8 +84126,13 @@ "und": "Minnesota Vikings", "sF": "16", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.5, + "pScore": { + "sU": 18.5, + "sF": 23.0 + }, + "week": "1987 Regular Season - Week 2" }, { "date": "Sep 20, 1987", @@ -57033,7 +84142,12 @@ "sF": "14", "sU": "16", "spread": "12", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 13.75, + "sF": 25.75 + }, + "week": "1987 Regular Season - Week 2" }, { "date": "Sep 20, 1987", @@ -57042,8 +84156,13 @@ "und": "St Louis Cardinals", "sF": "28", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.0, + "pScore": { + "sU": 19.75, + "sF": 25.25 + }, + "week": "1987 Regular Season - Week 2" }, { "date": "Sep 20, 1987", @@ -57053,7 +84172,12 @@ "sF": "43", "sU": "14", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1987 Regular Season - Week 2" }, { "date": "Sep 21, 1987", @@ -57063,7 +84187,12 @@ "sF": "24", "sU": "43", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "1987 Regular Season - Week 2" }, { "date": "Oct 4, 1987", @@ -57072,8 +84201,13 @@ "und": "Atlanta Falcons", "sF": "28", "sU": "12", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 4" }, { "date": "Oct 4, 1987", @@ -57082,8 +84216,13 @@ "und": "Buffalo Bills", "sF": "47", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 4" }, { "date": "Oct 4, 1987", @@ -57093,7 +84232,12 @@ "sF": "9", "sU": "10", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 4" }, { "date": "Oct 4, 1987", @@ -57103,7 +84247,12 @@ "sF": "31", "sU": "27", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 4" }, { "date": "Oct 4, 1987", @@ -57113,7 +84262,12 @@ "sF": "10", "sU": "20", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 4" }, { "date": "Oct 4, 1987", @@ -57123,7 +84277,12 @@ "sF": "37", "sU": "10", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 4" }, { "date": "Oct 4, 1987", @@ -57133,7 +84292,12 @@ "sF": "35", "sU": "3", "spread": "2", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 4" }, { "date": "Oct 4, 1987", @@ -57143,7 +84307,12 @@ "sF": "21", "sU": "28", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 4" }, { "date": "Oct 4, 1987", @@ -57153,7 +84322,12 @@ "sF": "10", "sU": "40", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 4" }, { "date": "Oct 4, 1987", @@ -57162,8 +84336,13 @@ "und": "Kansas City Chiefs", "sF": "35", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 4" }, { "date": "Oct 4, 1987", @@ -57172,8 +84351,13 @@ "und": "Minnesota Vikings", "sF": "23", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 4" }, { "date": "Oct 4, 1987", @@ -57182,8 +84366,13 @@ "und": "New York Jets", "sF": "38", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 4" }, { "date": "Oct 4, 1987", @@ -57193,7 +84382,12 @@ "sF": "20", "sU": "24", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 4" }, { "date": "Oct 5, 1987", @@ -57202,8 +84396,13 @@ "und": "New York Giants", "sF": "41", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 4" }, { "date": "Oct 11, 1987", @@ -57213,7 +84412,12 @@ "sF": "27", "sU": "7", "spread": "18", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 5" }, { "date": "Oct 11, 1987", @@ -57222,8 +84426,13 @@ "und": "Houston Oilers", "sF": "10", "sU": "15", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 5" }, { "date": "Oct 11, 1987", @@ -57232,8 +84441,13 @@ "und": "Philadelphia Eagles", "sF": "41", "sU": "22", - "spread": "21", - "ou": -1 + "spread": "21.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 5" }, { "date": "Oct 11, 1987", @@ -57243,7 +84457,12 @@ "sF": "16", "sU": "19", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 5" }, { "date": "Oct 11, 1987", @@ -57253,7 +84472,12 @@ "sF": "6", "sU": "0", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 5" }, { "date": "Oct 11, 1987", @@ -57262,8 +84486,13 @@ "und": "Kansas City Chiefs", "sF": "42", "sU": "0", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 5" }, { "date": "Oct 11, 1987", @@ -57272,8 +84501,13 @@ "und": "Buffalo Bills", "sF": "14", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 5" }, { "date": "Oct 11, 1987", @@ -57282,8 +84516,13 @@ "und": "New Orleans Saints", "sF": "24", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 5" }, { "date": "Oct 11, 1987", @@ -57293,7 +84532,12 @@ "sF": "13", "sU": "17", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 5" }, { "date": "Oct 11, 1987", @@ -57303,7 +84547,12 @@ "sF": "25", "sU": "17", "spread": "23", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 5" }, { "date": "Oct 11, 1987", @@ -57312,8 +84561,13 @@ "und": "Los Angeles Rams", "sF": "21", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 5" }, { "date": "Oct 11, 1987", @@ -57322,8 +84576,13 @@ "und": "New York Giants", "sF": "38", "sU": "12", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 5" }, { "date": "Oct 11, 1987", @@ -57333,7 +84592,12 @@ "sF": "10", "sU": "17", "spread": "7", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 5" }, { "date": "Oct 12, 1987", @@ -57343,7 +84607,12 @@ "sF": "14", "sU": "30", "spread": "11", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 5" }, { "date": "Oct 18, 1987", @@ -57352,8 +84621,13 @@ "und": "Atlanta Falcons", "sF": "20", "sU": "24", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 6" }, { "date": "Oct 18, 1987", @@ -57362,8 +84636,13 @@ "und": "New Orleans Saints", "sF": "17", "sU": "19", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 6" }, { "date": "Oct 18, 1987", @@ -57373,7 +84652,12 @@ "sF": "34", "sU": "0", "spread": "5", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 6" }, { "date": "Oct 18, 1987", @@ -57383,7 +84667,12 @@ "sF": "37", "sU": "14", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 6" }, { "date": "Oct 18, 1987", @@ -57392,8 +84681,13 @@ "und": "Philadelphia Eagles", "sF": "16", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 6" }, { "date": "Oct 18, 1987", @@ -57403,7 +84697,12 @@ "sF": "7", "sU": "21", "spread": "6", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 6" }, { "date": "Oct 18, 1987", @@ -57413,7 +84712,12 @@ "sF": "31", "sU": "37", "spread": "3", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 6" }, { "date": "Oct 18, 1987", @@ -57422,8 +84726,13 @@ "und": "Indianapolis Colts", "sF": "21", "sU": "7", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 6" }, { "date": "Oct 18, 1987", @@ -57432,8 +84741,13 @@ "und": "Minnesota Vikings", "sF": "20", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 6" }, { "date": "Oct 18, 1987", @@ -57443,7 +84757,12 @@ "sF": "3", "sU": "6", "spread": "4", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 6" }, { "date": "Oct 18, 1987", @@ -57453,7 +84772,12 @@ "sF": "26", "sU": "17", "spread": "12", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 6" }, { "date": "Oct 18, 1987", @@ -57462,8 +84786,13 @@ "und": "San Diego Chargers", "sF": "17", "sU": "23", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 6" }, { "date": "Oct 18, 1987", @@ -57472,8 +84801,13 @@ "und": "St Louis Cardinals", "sF": "34", "sU": "28", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 6" }, { "date": "Oct 19, 1987", @@ -57483,7 +84817,12 @@ "sF": "7", "sU": "13", "spread": "8", - "ou": -1 + "ou": null, + "pScore": { + "sF": null, + "sU": null + }, + "week": "1987 Regular Season - Week 6" }, { "date": "Oct 25, 1987", @@ -57493,7 +84832,12 @@ "sF": "33", "sU": "34", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "1987 Regular Season - Week 7" }, { "date": "Oct 25, 1987", @@ -57503,7 +84847,12 @@ "sF": "37", "sU": "33", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1987 Regular Season - Week 7" }, { "date": "Oct 25, 1987", @@ -57512,8 +84861,13 @@ "und": "Indianapolis Colts", "sF": "16", "sU": "30", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "1987 Regular Season - Week 7" }, { "date": "Oct 25, 1987", @@ -57522,8 +84876,13 @@ "und": "Buffalo Bills", "sF": "31", "sU": "34", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 48.5, + "pScore": { + "sU": 19.5, + "sF": 29.0 + }, + "week": "1987 Regular Season - Week 7" }, { "date": "Oct 25, 1987", @@ -57533,7 +84892,12 @@ "sF": "24", "sU": "22", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1987 Regular Season - Week 7" }, { "date": "Oct 25, 1987", @@ -57543,7 +84907,12 @@ "sF": "37", "sU": "20", "spread": "2", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.75, + "sF": 19.75 + }, + "week": "1987 Regular Season - Week 7" }, { "date": "Oct 25, 1987", @@ -57552,8 +84921,13 @@ "und": "Cincinnati Bengals", "sF": "23", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "1987 Regular Season - Week 7" }, { "date": "Oct 25, 1987", @@ -57563,7 +84937,12 @@ "sF": "27", "sU": "26", "spread": "10", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.0, + "sF": 24.0 + }, + "week": "1987 Regular Season - Week 7" }, { "date": "Oct 25, 1987", @@ -57573,7 +84952,12 @@ "sF": "17", "sU": "16", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "1987 Regular Season - Week 7" }, { "date": "Oct 25, 1987", @@ -57582,8 +84966,13 @@ "und": "Seattle Seahawks", "sF": "13", "sU": "35", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1987 Regular Season - Week 7" }, { "date": "Oct 25, 1987", @@ -57593,7 +84982,12 @@ "sF": "30", "sU": "7", "spread": "10", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.0, + "sF": 25.0 + }, + "week": "1987 Regular Season - Week 7" }, { "date": "Oct 25, 1987", @@ -57603,7 +84997,12 @@ "sF": "42", "sU": "21", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1987 Regular Season - Week 7" }, { "date": "Oct 26, 1987", @@ -57612,8 +85011,13 @@ "und": "Los Angeles Rams", "sF": "30", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.0, + "pScore": { + "sU": 18.25, + "sF": 23.75 + }, + "week": "1987 Regular Season - Week 7" }, { "date": "Oct 26, 1987", @@ -57622,8 +85026,13 @@ "und": "Denver Broncos", "sF": "34", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.0, + "pScore": { + "sU": 22.75, + "sF": 24.25 + }, + "week": "1987 Regular Season - Week 7" }, { "date": "Nov 1, 1987", @@ -57633,7 +85042,12 @@ "sF": "38", "sU": "0", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1987 Regular Season - Week 8" }, { "date": "Nov 1, 1987", @@ -57642,8 +85056,13 @@ "und": "Buffalo Bills", "sF": "27", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "1987 Regular Season - Week 8" }, { "date": "Nov 1, 1987", @@ -57652,8 +85071,13 @@ "und": "Kansas City Chiefs", "sF": "31", "sU": "28", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 40.0, + "pScore": { + "sU": 12.75, + "sF": 27.25 + }, + "week": "1987 Regular Season - Week 8" }, { "date": "Nov 1, 1987", @@ -57662,8 +85086,13 @@ "und": "Houston Oilers", "sF": "29", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.5, + "pScore": { + "sU": 21.0, + "sF": 27.5 + }, + "week": "1987 Regular Season - Week 8" }, { "date": "Nov 1, 1987", @@ -57673,7 +85102,12 @@ "sF": "17", "sU": "23", "spread": "2", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.25, + "sF": 22.25 + }, + "week": "1987 Regular Season - Week 8" }, { "date": "Nov 1, 1987", @@ -57682,8 +85116,13 @@ "und": "Pittsburgh Steelers", "sF": "35", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1987 Regular Season - Week 8" }, { "date": "Nov 1, 1987", @@ -57692,8 +85131,13 @@ "und": "Los Angeles Raiders", "sF": "26", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1987 Regular Season - Week 8" }, { "date": "Nov 1, 1987", @@ -57703,7 +85147,12 @@ "sF": "14", "sU": "19", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "1987 Regular Season - Week 8" }, { "date": "Nov 1, 1987", @@ -57712,8 +85161,13 @@ "und": "Philadelphia Eagles", "sF": "23", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1987 Regular Season - Week 8" }, { "date": "Nov 1, 1987", @@ -57722,8 +85176,13 @@ "und": "Detroit Lions", "sF": "34", "sU": "0", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 46.0, + "pScore": { + "sU": 17.75, + "sF": 28.25 + }, + "week": "1987 Regular Season - Week 8" }, { "date": "Nov 1, 1987", @@ -57732,8 +85191,13 @@ "und": "Los Angeles Rams", "sF": "31", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.5, + "pScore": { + "sU": 18.5, + "sF": 23.0 + }, + "week": "1987 Regular Season - Week 8" }, { "date": "Nov 1, 1987", @@ -57743,7 +85207,12 @@ "sF": "27", "sU": "24", "spread": "1", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.5, + "sF": 24.5 + }, + "week": "1987 Regular Season - Week 8" }, { "date": "Nov 1, 1987", @@ -57752,8 +85221,13 @@ "und": "Minnesota Vikings", "sF": "28", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "1987 Regular Season - Week 8" }, { "date": "Nov 2, 1987", @@ -57763,7 +85237,12 @@ "sF": "24", "sU": "33", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "1987 Regular Season - Week 8" }, { "date": "Nov 8, 1987", @@ -57773,7 +85252,12 @@ "sF": "14", "sU": "21", "spread": "5", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.0, + "sF": 25.0 + }, + "week": "1987 Regular Season - Week 9" }, { "date": "Nov 8, 1987", @@ -57783,7 +85267,12 @@ "sF": "38", "sU": "3", "spread": "13", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 15.5, + "sF": 28.5 + }, + "week": "1987 Regular Season - Week 9" }, { "date": "Nov 8, 1987", @@ -57793,7 +85282,12 @@ "sF": "17", "sU": "27", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1987 Regular Season - Week 9" }, { "date": "Nov 8, 1987", @@ -57803,7 +85297,12 @@ "sF": "26", "sU": "24", "spread": "10", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.5, + "sF": 24.5 + }, + "week": "1987 Regular Season - Week 9" }, { "date": "Nov 8, 1987", @@ -57813,7 +85312,12 @@ "sF": "16", "sU": "17", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1987 Regular Season - Week 9" }, { "date": "Nov 8, 1987", @@ -57823,7 +85327,12 @@ "sF": "31", "sU": "20", "spread": "4", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.25, + "sF": 24.25 + }, + "week": "1987 Regular Season - Week 9" }, { "date": "Nov 8, 1987", @@ -57833,7 +85342,12 @@ "sF": "27", "sU": "31", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1987 Regular Season - Week 9" }, { "date": "Nov 8, 1987", @@ -57842,8 +85356,13 @@ "und": "Tampa Bay Buccaneers", "sF": "31", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "1987 Regular Season - Week 9" }, { "date": "Nov 8, 1987", @@ -57853,7 +85372,12 @@ "sF": "14", "sU": "20", "spread": "2", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 26.5, + "sF": 28.5 + }, + "week": "1987 Regular Season - Week 9" }, { "date": "Nov 8, 1987", @@ -57862,8 +85386,13 @@ "und": "Los Angeles Rams", "sF": "31", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1987 Regular Season - Week 9" }, { "date": "Nov 8, 1987", @@ -57873,7 +85402,12 @@ "sF": "27", "sU": "20", "spread": "10", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.25, + "sF": 27.25 + }, + "week": "1987 Regular Season - Week 9" }, { "date": "Nov 8, 1987", @@ -57882,8 +85416,13 @@ "und": "New England Patriots", "sF": "17", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.5, + "pScore": { + "sU": 18.5, + "sF": 23.0 + }, + "week": "1987 Regular Season - Week 9" }, { "date": "Nov 9, 1987", @@ -57892,8 +85431,13 @@ "und": "New York Jets", "sF": "14", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "1987 Regular Season - Week 9" }, { "date": "Nov 15, 1987", @@ -57902,8 +85446,13 @@ "und": "Buffalo Bills", "sF": "27", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.0, + "pScore": { + "sU": 18.75, + "sF": 26.25 + }, + "week": "1987 Regular Season - Week 10" }, { "date": "Nov 15, 1987", @@ -57913,7 +85462,12 @@ "sF": "9", "sU": "16", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1987 Regular Season - Week 10" }, { "date": "Nov 15, 1987", @@ -57923,7 +85477,12 @@ "sF": "21", "sU": "40", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "1987 Regular Season - Week 10" }, { "date": "Nov 15, 1987", @@ -57933,7 +85492,12 @@ "sF": "23", "sU": "17", "spread": "9", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 19.25, + "sF": 28.25 + }, + "week": "1987 Regular Season - Week 10" }, { "date": "Nov 15, 1987", @@ -57942,8 +85506,13 @@ "und": "Dallas Cowboys", "sF": "17", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "1987 Regular Season - Week 10" }, { "date": "Nov 15, 1987", @@ -57952,8 +85521,13 @@ "und": "Houston Oilers", "sF": "3", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1987 Regular Season - Week 10" }, { "date": "Nov 15, 1987", @@ -57963,7 +85537,12 @@ "sF": "24", "sU": "27", "spread": "5", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.5, + "sF": 23.5 + }, + "week": "1987 Regular Season - Week 10" }, { "date": "Nov 15, 1987", @@ -57972,8 +85551,13 @@ "und": "Detroit Lions", "sF": "20", "sU": "13", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 43.0, + "pScore": { + "sU": 14.75, + "sF": 28.25 + }, + "week": "1987 Regular Season - Week 10" }, { "date": "Nov 15, 1987", @@ -57982,8 +85566,13 @@ "und": "Atlanta Falcons", "sF": "16", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.5, + "pScore": { + "sU": 19.5, + "sF": 25.0 + }, + "week": "1987 Regular Season - Week 10" }, { "date": "Nov 15, 1987", @@ -57992,8 +85581,13 @@ "und": "Philadelphia Eagles", "sF": "20", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.0, + "pScore": { + "sU": 19.25, + "sF": 20.75 + }, + "week": "1987 Regular Season - Week 10" }, { "date": "Nov 15, 1987", @@ -58003,7 +85597,12 @@ "sF": "24", "sU": "26", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1987 Regular Season - Week 10" }, { "date": "Nov 15, 1987", @@ -58013,7 +85612,12 @@ "sF": "24", "sU": "13", "spread": "13", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 16.5, + "sF": 29.5 + }, + "week": "1987 Regular Season - Week 10" }, { "date": "Nov 15, 1987", @@ -58023,7 +85627,12 @@ "sF": "16", "sU": "14", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "1987 Regular Season - Week 10" }, { "date": "Nov 16, 1987", @@ -58033,7 +85642,12 @@ "sF": "31", "sU": "29", "spread": "2", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.25, + "sF": 22.25 + }, + "week": "1987 Regular Season - Week 10" }, { "date": "Nov 22, 1987", @@ -58043,7 +85657,12 @@ "sF": "30", "sU": "10", "spread": "12", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 14.75, + "sF": 26.75 + }, + "week": "1987 Regular Season - Week 11" }, { "date": "Nov 22, 1987", @@ -58053,7 +85672,12 @@ "sF": "16", "sU": "30", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1987 Regular Season - Week 11" }, { "date": "Nov 22, 1987", @@ -58063,7 +85687,12 @@ "sF": "40", "sU": "7", "spread": "2", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.5, + "sF": 24.5 + }, + "week": "1987 Regular Season - Week 11" }, { "date": "Nov 22, 1987", @@ -58073,7 +85702,12 @@ "sF": "3", "sU": "23", "spread": "4", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.75, + "sF": 22.75 + }, + "week": "1987 Regular Season - Week 11" }, { "date": "Nov 22, 1987", @@ -58083,7 +85717,12 @@ "sF": "24", "sU": "13", "spread": "14", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 15.25, + "sF": 29.25 + }, + "week": "1987 Regular Season - Week 11" }, { "date": "Nov 22, 1987", @@ -58093,7 +85732,12 @@ "sF": "24", "sU": "0", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "1987 Regular Season - Week 11" }, { "date": "Nov 22, 1987", @@ -58102,8 +85746,13 @@ "und": "Buffalo Bills", "sF": "14", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "1987 Regular Season - Week 11" }, { "date": "Nov 22, 1987", @@ -58112,8 +85761,13 @@ "und": "St Louis Cardinals", "sF": "19", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "1987 Regular Season - Week 11" }, { "date": "Nov 22, 1987", @@ -58123,7 +85777,12 @@ "sF": "24", "sU": "10", "spread": "6", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.5, + "sF": 26.5 + }, + "week": "1987 Regular Season - Week 11" }, { "date": "Nov 22, 1987", @@ -58133,7 +85792,12 @@ "sF": "23", "sU": "17", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "1987 Regular Season - Week 11" }, { "date": "Nov 22, 1987", @@ -58142,8 +85806,13 @@ "und": "New York Giants", "sF": "23", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1987 Regular Season - Week 11" }, { "date": "Nov 22, 1987", @@ -58153,7 +85822,12 @@ "sF": "34", "sU": "3", "spread": "8", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.25, + "sF": 26.25 + }, + "week": "1987 Regular Season - Week 11" }, { "date": "Nov 22, 1987", @@ -58163,7 +85837,12 @@ "sF": "14", "sU": "20", "spread": "2", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.0, + "sF": 25.0 + }, + "week": "1987 Regular Season - Week 11" }, { "date": "Nov 23, 1987", @@ -58173,7 +85852,12 @@ "sF": "26", "sU": "30", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "1987 Regular Season - Week 11" }, { "date": "Nov 26, 1987", @@ -58183,7 +85867,12 @@ "sF": "20", "sU": "27", "spread": "5", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.5, + "sF": 23.5 + }, + "week": "1987 Regular Season - Week 12" }, { "date": "Nov 26, 1987", @@ -58193,7 +85882,12 @@ "sF": "44", "sU": "38", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "1987 Regular Season - Week 12" }, { "date": "Nov 29, 1987", @@ -58202,8 +85896,13 @@ "und": "Atlanta Falcons", "sF": "34", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "1987 Regular Season - Week 12" }, { "date": "Nov 29, 1987", @@ -58212,8 +85911,13 @@ "und": "Buffalo Bills", "sF": "0", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.0, + "pScore": { + "sU": 22.25, + "sF": 23.75 + }, + "week": "1987 Regular Season - Week 12" }, { "date": "Nov 29, 1987", @@ -58223,7 +85927,12 @@ "sF": "23", "sU": "10", "spread": "12", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 14.25, + "sF": 26.25 + }, + "week": "1987 Regular Season - Week 12" }, { "date": "Nov 29, 1987", @@ -58232,8 +85941,13 @@ "und": "Houston Oilers", "sF": "51", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1987 Regular Season - Week 12" }, { "date": "Nov 29, 1987", @@ -58242,8 +85956,13 @@ "und": "Philadelphia Eagles", "sF": "31", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1987 Regular Season - Week 12" }, { "date": "Nov 29, 1987", @@ -58253,7 +85972,12 @@ "sF": "27", "sU": "20", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1987 Regular Season - Week 12" }, { "date": "Nov 29, 1987", @@ -58262,8 +85986,13 @@ "und": "Pittsburgh Steelers", "sF": "20", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1987 Regular Season - Week 12" }, { "date": "Nov 29, 1987", @@ -58272,8 +86001,13 @@ "und": "Tampa Bay Buccaneers", "sF": "35", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "1987 Regular Season - Week 12" }, { "date": "Nov 29, 1987", @@ -58283,7 +86017,12 @@ "sF": "31", "sU": "17", "spread": "1", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 22.25, + "sF": 23.25 + }, + "week": "1987 Regular Season - Week 12" }, { "date": "Nov 29, 1987", @@ -58292,8 +86031,13 @@ "und": "New York Giants", "sF": "23", "sU": "19", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "1987 Regular Season - Week 12" }, { "date": "Nov 29, 1987", @@ -58303,7 +86047,12 @@ "sF": "38", "sU": "24", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "1987 Regular Season - Week 12" }, { "date": "Nov 30, 1987", @@ -58313,7 +86062,12 @@ "sF": "14", "sU": "37", "spread": "9", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.5, + "sF": 26.5 + }, + "week": "1987 Regular Season - Week 12" }, { "date": "Dec 6, 1987", @@ -58322,8 +86076,13 @@ "und": "Kansas City Chiefs", "sF": "30", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.5, + "pScore": { + "sU": 20.0, + "sF": 24.5 + }, + "week": "1987 Regular Season - Week 13" }, { "date": "Dec 6, 1987", @@ -58333,7 +86092,12 @@ "sF": "7", "sU": "9", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "1987 Regular Season - Week 13" }, { "date": "Dec 6, 1987", @@ -58342,8 +86106,13 @@ "und": "Atlanta Falcons", "sF": "10", "sU": "21", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.0, + "pScore": { + "sU": 17.25, + "sF": 26.75 + }, + "week": "1987 Regular Season - Week 13" }, { "date": "Dec 6, 1987", @@ -58352,8 +86121,13 @@ "und": "Detroit Lions", "sF": "37", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1987 Regular Season - Week 13" }, { "date": "Dec 6, 1987", @@ -58362,8 +86136,13 @@ "und": "Green Bay Packers", "sF": "23", "sU": "12", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1987 Regular Season - Week 13" }, { "date": "Dec 6, 1987", @@ -58372,8 +86151,13 @@ "und": "Houston Oilers", "sF": "18", "sU": "33", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "1987 Regular Season - Week 13" }, { "date": "Dec 6, 1987", @@ -58383,7 +86167,12 @@ "sF": "23", "sU": "20", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "1987 Regular Season - Week 13" }, { "date": "Dec 6, 1987", @@ -58392,8 +86181,13 @@ "und": "Pittsburgh Steelers", "sF": "9", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1987 Regular Season - Week 13" }, { "date": "Dec 6, 1987", @@ -58402,8 +86196,13 @@ "und": "St Louis Cardinals", "sF": "34", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "1987 Regular Season - Week 13" }, { "date": "Dec 6, 1987", @@ -58413,7 +86212,12 @@ "sF": "31", "sU": "20", "spread": "8", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 18.75, + "sF": 26.75 + }, + "week": "1987 Regular Season - Week 13" }, { "date": "Dec 6, 1987", @@ -58422,8 +86226,13 @@ "und": "Buffalo Bills", "sF": "34", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1987 Regular Season - Week 13" }, { "date": "Dec 6, 1987", @@ -58432,8 +86241,13 @@ "und": "Tampa Bay Buccaneers", "sF": "44", "sU": "34", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 44.0, + "pScore": { + "sU": 16.75, + "sF": 27.25 + }, + "week": "1987 Regular Season - Week 13" }, { "date": "Dec 6, 1987", @@ -58442,8 +86256,13 @@ "und": "Chicago Bears", "sF": "24", "sU": "30", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.0, + "pScore": { + "sU": 22.25, + "sF": 23.75 + }, + "week": "1987 Regular Season - Week 13" }, { "date": "Dec 7, 1987", @@ -58452,8 +86271,13 @@ "und": "New York Jets", "sF": "37", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "1987 Regular Season - Week 13" }, { "date": "Dec 13, 1987", @@ -58462,8 +86286,13 @@ "und": "Cincinnati Bengals", "sF": "38", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.5, + "pScore": { + "sU": 16.5, + "sF": 24.0 + }, + "week": "1987 Regular Season - Week 14" }, { "date": "Dec 13, 1987", @@ -58473,7 +86302,12 @@ "sF": "10", "sU": "16", "spread": "4", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.75, + "sF": 20.75 + }, + "week": "1987 Regular Season - Week 14" }, { "date": "Dec 13, 1987", @@ -58482,8 +86316,13 @@ "und": "Buffalo Bills", "sF": "3", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "1987 Regular Season - Week 14" }, { "date": "Dec 13, 1987", @@ -58493,7 +86332,12 @@ "sF": "42", "sU": "20", "spread": "4", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.5, + "sF": 24.5 + }, + "week": "1987 Regular Season - Week 14" }, { "date": "Dec 13, 1987", @@ -58502,8 +86346,13 @@ "und": "Houston Oilers", "sF": "24", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.5, + "pScore": { + "sU": 19.5, + "sF": 27.0 + }, + "week": "1987 Regular Season - Week 14" }, { "date": "Dec 13, 1987", @@ -58512,8 +86361,13 @@ "und": "Miami Dolphins", "sF": "10", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.0, + "pScore": { + "sU": 21.25, + "sF": 22.75 + }, + "week": "1987 Regular Season - Week 14" }, { "date": "Dec 13, 1987", @@ -58522,8 +86376,13 @@ "und": "Dallas Cowboys", "sF": "24", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.0, + "pScore": { + "sU": 16.25, + "sF": 25.75 + }, + "week": "1987 Regular Season - Week 14" }, { "date": "Dec 13, 1987", @@ -58532,8 +86391,13 @@ "und": "Kansas City Chiefs", "sF": "10", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "1987 Regular Season - Week 14" }, { "date": "Dec 13, 1987", @@ -58543,7 +86407,12 @@ "sF": "33", "sU": "0", "spread": "10", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 15.75, + "sF": 25.75 + }, + "week": "1987 Regular Season - Week 14" }, { "date": "Dec 13, 1987", @@ -58553,7 +86422,12 @@ "sF": "16", "sU": "20", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1987 Regular Season - Week 14" }, { "date": "Dec 13, 1987", @@ -58563,7 +86437,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1987 Regular Season - Week 14" }, { "date": "Dec 13, 1987", @@ -58573,7 +86452,12 @@ "sF": "10", "sU": "20", "spread": "6", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.75, + "sF": 26.75 + }, + "week": "1987 Regular Season - Week 14" }, { "date": "Dec 13, 1987", @@ -58582,8 +86466,13 @@ "und": "Denver Broncos", "sF": "28", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "1987 Regular Season - Week 14" }, { "date": "Dec 14, 1987", @@ -58592,8 +86481,13 @@ "und": "Chicago Bears", "sF": "41", "sU": "0", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.5, + "pScore": { + "sU": 20.0, + "sF": 25.5 + }, + "week": "1987 Regular Season - Week 14" }, { "date": "Dec 19, 1987", @@ -58603,7 +86497,12 @@ "sF": "20", "sU": "10", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1987 Regular Season - Week 15" }, { "date": "Dec 19, 1987", @@ -58612,8 +86511,13 @@ "und": "Kansas City Chiefs", "sF": "20", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.0, + "pScore": { + "sU": 17.25, + "sF": 26.75 + }, + "week": "1987 Regular Season - Week 15" }, { "date": "Dec 20, 1987", @@ -58623,7 +86527,12 @@ "sF": "7", "sU": "13", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1987 Regular Season - Week 15" }, { "date": "Dec 20, 1987", @@ -58632,8 +86541,13 @@ "und": "Seattle Seahawks", "sF": "21", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1987 Regular Season - Week 15" }, { "date": "Dec 20, 1987", @@ -58643,7 +86557,12 @@ "sF": "41", "sU": "24", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1987 Regular Season - Week 15" }, { "date": "Dec 20, 1987", @@ -58653,7 +86572,12 @@ "sF": "17", "sU": "14", "spread": "6", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.0, + "sF": 26.0 + }, + "week": "1987 Regular Season - Week 15" }, { "date": "Dec 20, 1987", @@ -58663,7 +86587,12 @@ "sF": "27", "sU": "38", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1987 Regular Season - Week 15" }, { "date": "Dec 20, 1987", @@ -58672,8 +86601,13 @@ "und": "Cleveland Browns", "sF": "17", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1987 Regular Season - Week 15" }, { "date": "Dec 20, 1987", @@ -58682,8 +86616,13 @@ "und": "Indianapolis Colts", "sF": "7", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1987 Regular Season - Week 15" }, { "date": "Dec 20, 1987", @@ -58693,7 +86632,12 @@ "sF": "35", "sU": "7", "spread": "16", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 13.0, + "sF": 29.0 + }, + "week": "1987 Regular Season - Week 15" }, { "date": "Dec 20, 1987", @@ -58703,7 +86647,12 @@ "sF": "31", "sU": "14", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1987 Regular Season - Week 15" }, { "date": "Dec 20, 1987", @@ -58713,7 +86662,12 @@ "sF": "23", "sU": "21", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "1987 Regular Season - Week 15" }, { "date": "Dec 21, 1987", @@ -58723,7 +86677,12 @@ "sF": "21", "sU": "29", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "1987 Regular Season - Week 15" }, { "date": "Dec 26, 1987", @@ -58733,7 +86692,12 @@ "sF": "19", "sU": "13", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1987 Regular Season - Week 16" }, { "date": "Dec 26, 1987", @@ -58742,8 +86706,13 @@ "und": "Washington Redskins", "sF": "24", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "1987 Regular Season - Week 16" }, { "date": "Dec 27, 1987", @@ -58753,7 +86722,12 @@ "sF": "30", "sU": "13", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "1987 Regular Season - Week 16" }, { "date": "Dec 27, 1987", @@ -58762,8 +86736,13 @@ "und": "Dallas Cowboys", "sF": "16", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "1987 Regular Season - Week 16" }, { "date": "Dec 27, 1987", @@ -58772,8 +86751,13 @@ "und": "Cincinnati Bengals", "sF": "21", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.0, + "pScore": { + "sU": 21.25, + "sF": 27.75 + }, + "week": "1987 Regular Season - Week 16" }, { "date": "Dec 27, 1987", @@ -58782,8 +86766,13 @@ "und": "Tampa Bay Buccaneers", "sF": "24", "sU": "6", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 42.0, + "pScore": { + "sU": 15.75, + "sF": 26.25 + }, + "week": "1987 Regular Season - Week 16" }, { "date": "Dec 27, 1987", @@ -58793,7 +86782,12 @@ "sF": "20", "sU": "41", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1987 Regular Season - Week 16" }, { "date": "Dec 27, 1987", @@ -58802,8 +86796,13 @@ "und": "Green Bay Packers", "sF": "33", "sU": "24", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 42.0, + "pScore": { + "sU": 15.75, + "sF": 26.25 + }, + "week": "1987 Regular Season - Week 16" }, { "date": "Dec 27, 1987", @@ -58813,7 +86812,12 @@ "sF": "20", "sU": "7", "spread": "8", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.5, + "sF": 25.5 + }, + "week": "1987 Regular Season - Week 16" }, { "date": "Dec 27, 1987", @@ -58822,8 +86826,13 @@ "und": "Buffalo Bills", "sF": "17", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "1987 Regular Season - Week 16" }, { "date": "Dec 27, 1987", @@ -58833,7 +86842,12 @@ "sF": "24", "sU": "0", "spread": "11", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.0, + "sF": 25.0 + }, + "week": "1987 Regular Season - Week 16" }, { "date": "Dec 27, 1987", @@ -58843,7 +86857,12 @@ "sF": "6", "sU": "3", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "1987 Regular Season - Week 16" }, { "date": "Dec 27, 1987", @@ -58852,8 +86871,13 @@ "und": "Los Angeles Rams", "sF": "48", "sU": "0", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "1987 Regular Season - Week 16" }, { "date": "Dec 28, 1987", @@ -58862,8 +86886,13 @@ "und": "New England Patriots", "sF": "10", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 49.0, + "pScore": { + "sU": 21.75, + "sF": 27.25 + }, + "week": "1987 Regular Season - Week 16" }, { "date": "Jan 3, 1988", @@ -58872,8 +86901,13 @@ "und": "Minnesota Vikings (5)", "sF": "10", "sU": "44", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.0, + "pScore": { + "sU": 19.75, + "sF": 26.25 + }, + "week": "1987 Playoffs" }, { "date": "Jan 3, 1988", @@ -58882,8 +86916,13 @@ "und": "Houston Oilers (4)", "sF": "20", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "1987 Playoffs" }, { "date": "Jan 9, 1988", @@ -58893,7 +86932,12 @@ "sF": "38", "sU": "21", "spread": "8", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.5, + "sF": 22.5 + }, + "week": "1987 Playoffs" }, { "date": "Jan 9, 1988", @@ -58903,7 +86947,12 @@ "sF": "24", "sU": "36", "spread": "11", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 18.0, + "sF": 29.0 + }, + "week": "1987 Playoffs" }, { "date": "Jan 10, 1988", @@ -58912,8 +86961,13 @@ "und": "Washington Redskins (3)", "sF": "17", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.0, + "pScore": { + "sU": 16.75, + "sF": 21.25 + }, + "week": "1987 Playoffs" }, { "date": "Jan 10, 1988", @@ -58923,7 +86977,12 @@ "sF": "34", "sU": "10", "spread": "10", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.0, + "sF": 28.0 + }, + "week": "1987 Playoffs" }, { "date": "Jan 17, 1988", @@ -58933,7 +86992,12 @@ "sF": "17", "sU": "10", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1987 Playoffs" }, { "date": "Jan 17, 1988", @@ -58943,7 +87007,12 @@ "sF": "38", "sU": "33", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1987 Playoffs" }, { "date": "Jan 31, 1988", @@ -58952,8 +87021,13 @@ "und": "Washington Redskins (3)", "sF": "10", "sU": "42", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "1987 Playoffs" }, { "date": "Sep 4, 1988", @@ -58962,8 +87036,13 @@ "und": "Buffalo Bills", "sF": "10", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "1988 Regular Season - Week 1" }, { "date": "Sep 4, 1988", @@ -58972,8 +87051,13 @@ "und": "Miami Dolphins", "sF": "34", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "1988 Regular Season - Week 1" }, { "date": "Sep 4, 1988", @@ -58982,8 +87066,13 @@ "und": "Phoenix Cardinals", "sF": "21", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.0, + "pScore": { + "sU": 20.75, + "sF": 26.25 + }, + "week": "1988 Regular Season - Week 1" }, { "date": "Sep 4, 1988", @@ -58993,7 +87082,12 @@ "sF": "31", "sU": "17", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "1988 Regular Season - Week 1" }, { "date": "Sep 4, 1988", @@ -59003,7 +87097,12 @@ "sF": "34", "sU": "7", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1988 Regular Season - Week 1" }, { "date": "Sep 4, 1988", @@ -59013,7 +87112,12 @@ "sF": "24", "sU": "21", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1988 Regular Season - Week 1" }, { "date": "Sep 4, 1988", @@ -59022,8 +87126,13 @@ "und": "Tampa Bay Buccaneers", "sF": "41", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "1988 Regular Season - Week 1" }, { "date": "Sep 4, 1988", @@ -59033,7 +87142,12 @@ "sF": "14", "sU": "21", "spread": "4", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.0, + "sF": 25.0 + }, + "week": "1988 Regular Season - Week 1" }, { "date": "Sep 4, 1988", @@ -59043,7 +87157,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1988 Regular Season - Week 1" }, { "date": "Sep 4, 1988", @@ -59052,8 +87171,13 @@ "und": "Kansas City Chiefs", "sF": "6", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1988 Regular Season - Week 1" }, { "date": "Sep 4, 1988", @@ -59063,7 +87187,12 @@ "sF": "24", "sU": "13", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1988 Regular Season - Week 1" }, { "date": "Sep 4, 1988", @@ -59073,7 +87202,12 @@ "sF": "28", "sU": "3", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "1988 Regular Season - Week 1" }, { "date": "Sep 5, 1988", @@ -59083,7 +87217,12 @@ "sF": "27", "sU": "20", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1988 Regular Season - Week 1" }, { "date": "Sep 11, 1988", @@ -59092,8 +87231,13 @@ "und": "Atlanta Falcons", "sF": "29", "sU": "21", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.0, + "pScore": { + "sU": 17.25, + "sF": 25.75 + }, + "week": "1988 Regular Season - Week 2" }, { "date": "Sep 11, 1988", @@ -59103,7 +87247,12 @@ "sF": "9", "sU": "6", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1988 Regular Season - Week 2" }, { "date": "Sep 11, 1988", @@ -59112,8 +87261,13 @@ "und": "Tampa Bay Buccaneers", "sF": "10", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "1988 Regular Season - Week 2" }, { "date": "Sep 11, 1988", @@ -59122,8 +87276,13 @@ "und": "Indianapolis Colts", "sF": "17", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "1988 Regular Season - Week 2" }, { "date": "Sep 11, 1988", @@ -59133,11 +87292,12 @@ "sF": "17", "sU": "20", "spread": "2", - "ou": "49", + "ou": 44.0, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 21.0, + "sF": 23.0 + }, + "week": "1988 Regular Season - Week 2" }, { "date": "Sep 11, 1988", @@ -59146,8 +87306,13 @@ "und": "Pittsburgh Steelers", "sF": "30", "sU": "29", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.0, + "pScore": { + "sU": 17.75, + "sF": 25.25 + }, + "week": "1988 Regular Season - Week 2" }, { "date": "Sep 11, 1988", @@ -59156,8 +87321,13 @@ "und": "New York Jets", "sF": "3", "sU": "23", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 40.0, + "pScore": { + "sU": 15.25, + "sF": 24.75 + }, + "week": "1988 Regular Season - Week 2" }, { "date": "Sep 11, 1988", @@ -59167,7 +87337,12 @@ "sF": "34", "sU": "3", "spread": "12", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 15.5, + "sF": 27.5 + }, + "week": "1988 Regular Season - Week 2" }, { "date": "Sep 11, 1988", @@ -59176,8 +87351,13 @@ "und": "Los Angeles Raiders", "sF": "38", "sU": "35", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1988 Regular Season - Week 2" }, { "date": "Sep 11, 1988", @@ -59187,7 +87367,12 @@ "sF": "17", "sU": "10", "spread": "10", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.5, + "sF": 26.5 + }, + "week": "1988 Regular Season - Week 2" }, { "date": "Sep 11, 1988", @@ -59196,8 +87381,13 @@ "und": "New England Patriots", "sF": "36", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1988 Regular Season - Week 2" }, { "date": "Sep 11, 1988", @@ -59207,7 +87397,12 @@ "sF": "24", "sU": "28", "spread": "5", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.0, + "sF": 26.0 + }, + "week": "1988 Regular Season - Week 2" }, { "date": "Sep 11, 1988", @@ -59217,7 +87412,12 @@ "sF": "31", "sU": "10", "spread": "8", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.5, + "sF": 25.5 + }, + "week": "1988 Regular Season - Week 2" }, { "date": "Sep 12, 1988", @@ -59226,8 +87426,13 @@ "und": "Dallas Cowboys", "sF": "14", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "1988 Regular Season - Week 2" }, { "date": "Sep 18, 1988", @@ -59237,7 +87442,12 @@ "sF": "7", "sU": "31", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1988 Regular Season - Week 3" }, { "date": "Sep 18, 1988", @@ -59246,8 +87456,13 @@ "und": "Detroit Lions", "sF": "22", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "1988 Regular Season - Week 3" }, { "date": "Sep 18, 1988", @@ -59257,7 +87472,12 @@ "sF": "13", "sU": "20", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1988 Regular Season - Week 3" }, { "date": "Sep 18, 1988", @@ -59267,7 +87487,12 @@ "sF": "24", "sU": "17", "spread": "10", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.5, + "sF": 26.5 + }, + "week": "1988 Regular Season - Week 3" }, { "date": "Sep 18, 1988", @@ -59276,8 +87501,13 @@ "und": "Buffalo Bills", "sF": "14", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1988 Regular Season - Week 3" }, { "date": "Sep 18, 1988", @@ -59287,7 +87517,12 @@ "sF": "3", "sU": "45", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1988 Regular Season - Week 3" }, { "date": "Sep 18, 1988", @@ -59296,8 +87531,13 @@ "und": "Cincinnati Bengals", "sF": "12", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.0, + "pScore": { + "sU": 22.25, + "sF": 24.75 + }, + "week": "1988 Regular Season - Week 3" }, { "date": "Sep 18, 1988", @@ -59307,7 +87547,12 @@ "sF": "30", "sU": "24", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1988 Regular Season - Week 3" }, { "date": "Sep 18, 1988", @@ -59317,7 +87562,12 @@ "sF": "17", "sU": "10", "spread": "5", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.0, + "sF": 26.0 + }, + "week": "1988 Regular Season - Week 3" }, { "date": "Sep 18, 1988", @@ -59327,7 +87577,12 @@ "sF": "12", "sU": "10", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1988 Regular Season - Week 3" }, { "date": "Sep 18, 1988", @@ -59337,7 +87592,12 @@ "sF": "22", "sU": "17", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1988 Regular Season - Week 3" }, { "date": "Sep 18, 1988", @@ -59347,7 +87607,12 @@ "sF": "6", "sU": "17", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "1988 Regular Season - Week 3" }, { "date": "Sep 18, 1988", @@ -59357,7 +87622,12 @@ "sF": "17", "sU": "34", "spread": "14", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 15.0, + "sF": 29.0 + }, + "week": "1988 Regular Season - Week 3" }, { "date": "Sep 19, 1988", @@ -59367,7 +87637,12 @@ "sF": "23", "sU": "17", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1988 Regular Season - Week 3" }, { "date": "Sep 25, 1988", @@ -59377,7 +87652,12 @@ "sF": "36", "sU": "28", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1988 Regular Season - Week 4" }, { "date": "Sep 25, 1988", @@ -59386,8 +87666,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1988 Regular Season - Week 4" }, { "date": "Sep 25, 1988", @@ -59397,7 +87682,12 @@ "sF": "26", "sU": "20", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1988 Regular Season - Week 4" }, { "date": "Sep 25, 1988", @@ -59407,7 +87697,12 @@ "sF": "17", "sU": "10", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1988 Regular Season - Week 4" }, { "date": "Sep 25, 1988", @@ -59417,7 +87712,12 @@ "sF": "24", "sU": "6", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1988 Regular Season - Week 4" }, { "date": "Sep 25, 1988", @@ -59426,8 +87726,13 @@ "und": "New England Patriots", "sF": "31", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1988 Regular Season - Week 4" }, { "date": "Sep 25, 1988", @@ -59436,8 +87741,13 @@ "und": "Miami Dolphins", "sF": "15", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1988 Regular Season - Week 4" }, { "date": "Sep 25, 1988", @@ -59447,7 +87757,12 @@ "sF": "23", "sU": "21", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "1988 Regular Season - Week 4" }, { "date": "Sep 25, 1988", @@ -59456,8 +87771,13 @@ "und": "Tampa Bay Buccaneers", "sF": "13", "sU": "9", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 44.0, + "pScore": { + "sU": 15.25, + "sF": 28.75 + }, + "week": "1988 Regular Season - Week 4" }, { "date": "Sep 25, 1988", @@ -59467,7 +87787,12 @@ "sF": "23", "sU": "24", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1988 Regular Season - Week 4" }, { "date": "Sep 25, 1988", @@ -59476,8 +87801,13 @@ "und": "Los Angeles Rams", "sF": "31", "sU": "45", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1988 Regular Season - Week 4" }, { "date": "Sep 25, 1988", @@ -59486,8 +87816,13 @@ "und": "Phoenix Cardinals", "sF": "21", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1988 Regular Season - Week 4" }, { "date": "Sep 25, 1988", @@ -59496,8 +87831,13 @@ "und": "Seattle Seahawks", "sF": "38", "sU": "7", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "1988 Regular Season - Week 4" }, { "date": "Sep 26, 1988", @@ -59506,8 +87846,13 @@ "und": "Los Angeles Raiders", "sF": "27", "sU": "30", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "1988 Regular Season - Week 4" }, { "date": "Oct 2, 1988", @@ -59517,7 +87862,12 @@ "sF": "31", "sU": "20", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "1988 Regular Season - Week 5" }, { "date": "Oct 2, 1988", @@ -59527,7 +87877,12 @@ "sF": "24", "sU": "3", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1988 Regular Season - Week 5" }, { "date": "Oct 2, 1988", @@ -59537,7 +87892,12 @@ "sF": "21", "sU": "17", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1988 Regular Season - Week 5" }, { "date": "Oct 2, 1988", @@ -59547,7 +87907,12 @@ "sF": "32", "sU": "23", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1988 Regular Season - Week 5" }, { "date": "Oct 2, 1988", @@ -59556,8 +87921,13 @@ "und": "Cleveland Browns", "sF": "9", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1988 Regular Season - Week 5" }, { "date": "Oct 2, 1988", @@ -59566,8 +87936,13 @@ "und": "Green Bay Packers", "sF": "27", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "1988 Regular Season - Week 5" }, { "date": "Oct 2, 1988", @@ -59576,8 +87951,13 @@ "und": "New York Giants", "sF": "23", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1988 Regular Season - Week 5" }, { "date": "Oct 2, 1988", @@ -59586,8 +87966,13 @@ "und": "Cincinnati Bengals", "sF": "21", "sU": "45", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.0, + "pScore": { + "sU": 21.25, + "sF": 22.75 + }, + "week": "1988 Regular Season - Week 5" }, { "date": "Oct 2, 1988", @@ -59596,8 +87981,13 @@ "und": "Phoenix Cardinals", "sF": "27", "sU": "41", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "1988 Regular Season - Week 5" }, { "date": "Oct 2, 1988", @@ -59607,7 +87997,12 @@ "sF": "7", "sU": "24", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1988 Regular Season - Week 5" }, { "date": "Oct 2, 1988", @@ -59616,8 +88011,13 @@ "und": "Kansas City Chiefs", "sF": "17", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.0, + "pScore": { + "sU": 16.75, + "sF": 22.25 + }, + "week": "1988 Regular Season - Week 5" }, { "date": "Oct 2, 1988", @@ -59627,7 +88027,12 @@ "sF": "12", "sU": "0", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1988 Regular Season - Week 5" }, { "date": "Oct 2, 1988", @@ -59636,8 +88041,13 @@ "und": "Detroit Lions", "sF": "20", "sU": "13", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 43.0, + "pScore": { + "sU": 14.75, + "sF": 28.25 + }, + "week": "1988 Regular Season - Week 5" }, { "date": "Oct 3, 1988", @@ -59646,8 +88056,13 @@ "und": "Dallas Cowboys", "sF": "20", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "1988 Regular Season - Week 5" }, { "date": "Oct 9, 1988", @@ -59656,8 +88071,13 @@ "und": "Atlanta Falcons", "sF": "33", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "1988 Regular Season - Week 6" }, { "date": "Oct 9, 1988", @@ -59666,8 +88086,13 @@ "und": "Indianapolis Colts", "sF": "34", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 36.0, + "pScore": { + "sU": 15.75, + "sF": 20.25 + }, + "week": "1988 Regular Season - Week 6" }, { "date": "Oct 9, 1988", @@ -59677,7 +88102,12 @@ "sF": "36", "sU": "19", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1988 Regular Season - Week 6" }, { "date": "Oct 9, 1988", @@ -59686,8 +88116,13 @@ "und": "Seattle Seahawks", "sF": "10", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1988 Regular Season - Week 6" }, { "date": "Oct 9, 1988", @@ -59696,8 +88131,13 @@ "und": "Dallas Cowboys", "sF": "35", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "1988 Regular Season - Week 6" }, { "date": "Oct 9, 1988", @@ -59707,7 +88147,12 @@ "sF": "24", "sU": "7", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1988 Regular Season - Week 6" }, { "date": "Oct 9, 1988", @@ -59716,8 +88161,13 @@ "und": "Green Bay Packers", "sF": "3", "sU": "45", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1988 Regular Season - Week 6" }, { "date": "Oct 9, 1988", @@ -59727,7 +88177,12 @@ "sF": "7", "sU": "6", "spread": "5", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.5, + "sF": 23.5 + }, + "week": "1988 Regular Season - Week 6" }, { "date": "Oct 9, 1988", @@ -59737,7 +88192,12 @@ "sF": "14", "sU": "13", "spread": "13", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 15.0, + "sF": 28.0 + }, + "week": "1988 Regular Season - Week 6" }, { "date": "Oct 9, 1988", @@ -59746,8 +88206,13 @@ "und": "Miami Dolphins", "sF": "14", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "1988 Regular Season - Week 6" }, { "date": "Oct 9, 1988", @@ -59757,7 +88222,12 @@ "sF": "31", "sU": "14", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "1988 Regular Season - Week 6" }, { "date": "Oct 9, 1988", @@ -59766,8 +88236,13 @@ "und": "San Diego Chargers", "sF": "23", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "1988 Regular Season - Week 6" }, { "date": "Oct 9, 1988", @@ -59777,7 +88252,12 @@ "sF": "13", "sU": "16", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1988 Regular Season - Week 6" }, { "date": "Oct 10, 1988", @@ -59787,7 +88267,12 @@ "sF": "24", "sU": "13", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "1988 Regular Season - Week 6" }, { "date": "Oct 16, 1988", @@ -59797,7 +88282,12 @@ "sF": "17", "sU": "7", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1988 Regular Season - Week 7" }, { "date": "Oct 16, 1988", @@ -59807,7 +88297,12 @@ "sF": "35", "sU": "31", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1988 Regular Season - Week 7" }, { "date": "Oct 16, 1988", @@ -59817,7 +88312,12 @@ "sF": "17", "sU": "27", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1988 Regular Season - Week 7" }, { "date": "Oct 16, 1988", @@ -59827,7 +88327,12 @@ "sF": "14", "sU": "34", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "1988 Regular Season - Week 7" }, { "date": "Oct 16, 1988", @@ -59837,7 +88342,12 @@ "sF": "21", "sU": "27", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1988 Regular Season - Week 7" }, { "date": "Oct 16, 1988", @@ -59847,7 +88357,12 @@ "sF": "30", "sU": "10", "spread": "11", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.0, + "sF": 25.0 + }, + "week": "1988 Regular Season - Week 7" }, { "date": "Oct 16, 1988", @@ -59857,7 +88372,12 @@ "sF": "14", "sU": "34", "spread": "1", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.5, + "sF": 19.5 + }, + "week": "1988 Regular Season - Week 7" }, { "date": "Oct 16, 1988", @@ -59866,8 +88386,13 @@ "und": "Phoenix Cardinals", "sF": "33", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.0, + "pScore": { + "sU": 19.75, + "sF": 26.25 + }, + "week": "1988 Regular Season - Week 7" }, { "date": "Oct 16, 1988", @@ -59877,7 +88402,12 @@ "sF": "30", "sU": "14", "spread": "13", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 14.5, + "sF": 27.5 + }, + "week": "1988 Regular Season - Week 7" }, { "date": "Oct 16, 1988", @@ -59886,8 +88416,13 @@ "und": "San Diego Chargers", "sF": "31", "sU": "28", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 40.0, + "pScore": { + "sU": 15.25, + "sF": 24.75 + }, + "week": "1988 Regular Season - Week 7" }, { "date": "Oct 16, 1988", @@ -59896,8 +88431,13 @@ "und": "New Orleans Saints", "sF": "19", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1988 Regular Season - Week 7" }, { "date": "Oct 17, 1988", @@ -59907,7 +88447,12 @@ "sF": "14", "sU": "37", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1988 Regular Season - Week 7" }, { "date": "Oct 23, 1988", @@ -59916,8 +88461,13 @@ "und": "Atlanta Falcons", "sF": "23", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.0, + "pScore": { + "sU": 17.75, + "sF": 25.25 + }, + "week": "1988 Regular Season - Week 8" }, { "date": "Oct 23, 1988", @@ -59926,8 +88476,13 @@ "und": "New England Patriots", "sF": "23", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1988 Regular Season - Week 8" }, { "date": "Oct 23, 1988", @@ -59937,7 +88492,12 @@ "sF": "44", "sU": "21", "spread": "5", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.5, + "sF": 25.5 + }, + "week": "1988 Regular Season - Week 8" }, { "date": "Oct 23, 1988", @@ -59946,8 +88506,13 @@ "und": "Detroit Lions", "sF": "6", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "1988 Regular Season - Week 8" }, { "date": "Oct 23, 1988", @@ -59957,7 +88522,12 @@ "sF": "20", "sU": "6", "spread": "5", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.5, + "sF": 23.5 + }, + "week": "1988 Regular Season - Week 8" }, { "date": "Oct 23, 1988", @@ -59966,8 +88536,13 @@ "und": "Dallas Cowboys", "sF": "24", "sU": "23", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.0, + "pScore": { + "sU": 17.75, + "sF": 23.25 + }, + "week": "1988 Regular Season - Week 8" }, { "date": "Oct 23, 1988", @@ -59977,7 +88552,12 @@ "sF": "21", "sU": "39", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1988 Regular Season - Week 8" }, { "date": "Oct 23, 1988", @@ -59986,8 +88566,13 @@ "und": "Tampa Bay Buccaneers", "sF": "49", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1988 Regular Season - Week 8" }, { "date": "Oct 23, 1988", @@ -59997,7 +88582,12 @@ "sF": "20", "sU": "17", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "1988 Regular Season - Week 8" }, { "date": "Oct 23, 1988", @@ -60006,8 +88596,13 @@ "und": "Seattle Seahawks", "sF": "31", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "1988 Regular Season - Week 8" }, { "date": "Oct 23, 1988", @@ -60016,8 +88611,13 @@ "und": "New York Jets", "sF": "30", "sU": "44", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "1988 Regular Season - Week 8" }, { "date": "Oct 23, 1988", @@ -60027,7 +88627,12 @@ "sF": "29", "sU": "21", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1988 Regular Season - Week 8" }, { "date": "Oct 24, 1988", @@ -60036,12 +88641,13 @@ "und": "San Francisco 49ers", "sF": "10", "sU": "9", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": 39.0, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 18.25, + "sF": 20.75 + }, + "week": "1988 Regular Season - Week 8" }, { "date": "Oct 30, 1988", @@ -60051,7 +88657,12 @@ "sF": "28", "sU": "0", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1988 Regular Season - Week 9" }, { "date": "Oct 30, 1988", @@ -60060,8 +88671,13 @@ "und": "Cincinnati Bengals", "sF": "23", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1988 Regular Season - Week 9" }, { "date": "Oct 30, 1988", @@ -60071,7 +88687,12 @@ "sF": "10", "sU": "16", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1988 Regular Season - Week 9" }, { "date": "Oct 30, 1988", @@ -60081,7 +88702,12 @@ "sF": "7", "sU": "30", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "1988 Regular Season - Week 9" }, { "date": "Oct 30, 1988", @@ -60091,7 +88717,12 @@ "sF": "10", "sU": "12", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1988 Regular Season - Week 9" }, { "date": "Oct 30, 1988", @@ -60100,8 +88731,13 @@ "und": "Pittsburgh Steelers", "sF": "24", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.0, + "pScore": { + "sU": 19.75, + "sF": 24.25 + }, + "week": "1988 Regular Season - Week 9" }, { "date": "Oct 30, 1988", @@ -60110,8 +88746,13 @@ "und": "Atlanta Falcons", "sF": "24", "sU": "27", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.0, + "pScore": { + "sU": 16.25, + "sF": 26.75 + }, + "week": "1988 Regular Season - Week 9" }, { "date": "Oct 30, 1988", @@ -60121,7 +88762,12 @@ "sF": "17", "sU": "14", "spread": "4", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.0, + "sF": 25.0 + }, + "week": "1988 Regular Season - Week 9" }, { "date": "Oct 30, 1988", @@ -60131,7 +88777,12 @@ "sF": "13", "sU": "10", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1988 Regular Season - Week 9" }, { "date": "Oct 30, 1988", @@ -60140,8 +88791,13 @@ "und": "Kansas City Chiefs", "sF": "17", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1988 Regular Season - Week 9" }, { "date": "Oct 30, 1988", @@ -60151,7 +88807,12 @@ "sF": "24", "sU": "21", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1988 Regular Season - Week 9" }, { "date": "Oct 30, 1988", @@ -60161,7 +88822,12 @@ "sF": "17", "sU": "14", "spread": "8", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.5, + "sF": 23.5 + }, + "week": "1988 Regular Season - Week 9" }, { "date": "Oct 30, 1988", @@ -60171,7 +88837,12 @@ "sF": "17", "sU": "41", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "1988 Regular Season - Week 9" }, { "date": "Oct 31, 1988", @@ -60181,7 +88852,12 @@ "sF": "55", "sU": "23", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "1988 Regular Season - Week 9" }, { "date": "Nov 6, 1988", @@ -60191,7 +88867,12 @@ "sF": "20", "sU": "0", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1988 Regular Season - Week 10" }, { "date": "Nov 6, 1988", @@ -60200,8 +88881,13 @@ "und": "Tampa Bay Buccaneers", "sF": "28", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 36.0, + "pScore": { + "sU": 13.25, + "sF": 22.75 + }, + "week": "1988 Regular Season - Week 10" }, { "date": "Nov 6, 1988", @@ -60211,7 +88897,12 @@ "sF": "42", "sU": "7", "spread": "8", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.5, + "sF": 27.5 + }, + "week": "1988 Regular Season - Week 10" }, { "date": "Nov 6, 1988", @@ -60221,7 +88912,12 @@ "sF": "44", "sU": "17", "spread": "11", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.0, + "sF": 25.0 + }, + "week": "1988 Regular Season - Week 10" }, { "date": "Nov 6, 1988", @@ -60230,8 +88926,13 @@ "und": "Miami Dolphins", "sF": "21", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1988 Regular Season - Week 10" }, { "date": "Nov 6, 1988", @@ -60241,7 +88942,12 @@ "sF": "29", "sU": "21", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1988 Regular Season - Week 10" }, { "date": "Nov 6, 1988", @@ -60251,7 +88957,12 @@ "sF": "24", "sU": "30", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "1988 Regular Season - Week 10" }, { "date": "Nov 6, 1988", @@ -60261,7 +88972,12 @@ "sF": "17", "sU": "11", "spread": "8", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.0, + "sF": 24.0 + }, + "week": "1988 Regular Season - Week 10" }, { "date": "Nov 6, 1988", @@ -60271,7 +88987,12 @@ "sF": "38", "sU": "14", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1988 Regular Season - Week 10" }, { "date": "Nov 6, 1988", @@ -60281,11 +89002,12 @@ "sF": "24", "sU": "23", "spread": "3", - "ou": "49", + "ou": 44.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 20.5, + "sF": 23.5 + }, + "week": "1988 Regular Season - Week 10" }, { "date": "Nov 6, 1988", @@ -60294,8 +89016,13 @@ "und": "New Orleans Saints", "sF": "27", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1988 Regular Season - Week 10" }, { "date": "Nov 6, 1988", @@ -60305,7 +89032,12 @@ "sF": "13", "sU": "3", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1988 Regular Season - Week 10" }, { "date": "Nov 13, 1988", @@ -60314,8 +89046,13 @@ "und": "San Diego Chargers", "sF": "7", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.0, + "pScore": { + "sU": 15.75, + "sF": 21.25 + }, + "week": "1988 Regular Season - Week 11" }, { "date": "Nov 13, 1988", @@ -60324,8 +89061,13 @@ "und": "Tampa Bay Buccaneers", "sF": "20", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1988 Regular Season - Week 11" }, { "date": "Nov 13, 1988", @@ -60335,7 +89077,12 @@ "sF": "20", "sU": "13", "spread": "5", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.5, + "sF": 21.5 + }, + "week": "1988 Regular Season - Week 11" }, { "date": "Nov 13, 1988", @@ -60344,8 +89091,13 @@ "und": "Kansas City Chiefs", "sF": "28", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1988 Regular Season - Week 11" }, { "date": "Nov 13, 1988", @@ -60355,7 +89107,12 @@ "sF": "13", "sU": "14", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1988 Regular Season - Week 11" }, { "date": "Nov 13, 1988", @@ -60365,7 +89122,12 @@ "sF": "27", "sU": "26", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1988 Regular Season - Week 11" }, { "date": "Nov 13, 1988", @@ -60374,8 +89136,13 @@ "und": "Chicago Bears", "sF": "14", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1988 Regular Season - Week 11" }, { "date": "Nov 13, 1988", @@ -60385,7 +89152,12 @@ "sF": "7", "sU": "30", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1988 Regular Season - Week 11" }, { "date": "Nov 13, 1988", @@ -60394,8 +89166,13 @@ "und": "New Orleans Saints", "sF": "10", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1988 Regular Season - Week 11" }, { "date": "Nov 13, 1988", @@ -60405,7 +89182,12 @@ "sF": "24", "sU": "17", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "1988 Regular Season - Week 11" }, { "date": "Nov 13, 1988", @@ -60414,8 +89196,13 @@ "und": "Los Angeles Raiders", "sF": "3", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1988 Regular Season - Week 11" }, { "date": "Nov 13, 1988", @@ -60424,8 +89211,13 @@ "und": "Houston Oilers", "sF": "27", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.0, + "pScore": { + "sU": 19.75, + "sF": 21.25 + }, + "week": "1988 Regular Season - Week 11" }, { "date": "Nov 13, 1988", @@ -60435,7 +89227,12 @@ "sF": "43", "sU": "3", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "1988 Regular Season - Week 11" }, { "date": "Nov 14, 1988", @@ -60445,7 +89242,12 @@ "sF": "31", "sU": "6", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1988 Regular Season - Week 11" }, { "date": "Nov 20, 1988", @@ -60455,7 +89257,12 @@ "sF": "9", "sU": "6", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1988 Regular Season - Week 12" }, { "date": "Nov 20, 1988", @@ -60464,8 +89271,13 @@ "und": "Pittsburgh Steelers", "sF": "27", "sU": "7", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 39.0, + "pScore": { + "sU": 15.25, + "sF": 23.75 + }, + "week": "1988 Regular Season - Week 12" }, { "date": "Nov 20, 1988", @@ -60474,8 +89286,13 @@ "und": "Dallas Cowboys", "sF": "38", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.0, + "pScore": { + "sU": 21.25, + "sF": 25.75 + }, + "week": "1988 Regular Season - Week 12" }, { "date": "Nov 20, 1988", @@ -60485,7 +89302,12 @@ "sF": "9", "sU": "19", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1988 Regular Season - Week 12" }, { "date": "Nov 20, 1988", @@ -60495,7 +89317,12 @@ "sF": "38", "sU": "20", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "1988 Regular Season - Week 12" }, { "date": "Nov 20, 1988", @@ -60504,8 +89331,13 @@ "und": "Kansas City Chiefs", "sF": "24", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "1988 Regular Season - Week 12" }, { "date": "Nov 20, 1988", @@ -60514,8 +89346,13 @@ "und": "Indianapolis Colts", "sF": "12", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.0, + "pScore": { + "sU": 20.25, + "sF": 24.75 + }, + "week": "1988 Regular Season - Week 12" }, { "date": "Nov 20, 1988", @@ -60525,7 +89362,12 @@ "sF": "27", "sU": "15", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1988 Regular Season - Week 12" }, { "date": "Nov 20, 1988", @@ -60535,7 +89377,12 @@ "sF": "6", "sU": "12", "spread": "8", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.5, + "sF": 23.5 + }, + "week": "1988 Regular Season - Week 12" }, { "date": "Nov 20, 1988", @@ -60545,7 +89392,12 @@ "sF": "24", "sU": "38", "spread": "11", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 13.5, + "sF": 24.5 + }, + "week": "1988 Regular Season - Week 12" }, { "date": "Nov 20, 1988", @@ -60555,7 +89407,12 @@ "sF": "42", "sU": "0", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "1988 Regular Season - Week 12" }, { "date": "Nov 20, 1988", @@ -60564,8 +89421,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1988 Regular Season - Week 12" }, { "date": "Nov 20, 1988", @@ -60575,7 +89437,12 @@ "sF": "3", "sU": "6", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1988 Regular Season - Week 12" }, { "date": "Nov 21, 1988", @@ -60584,8 +89451,13 @@ "und": "Washington Redskins", "sF": "37", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1988 Regular Season - Week 12" }, { "date": "Nov 24, 1988", @@ -60594,8 +89466,13 @@ "und": "Detroit Lions", "sF": "23", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "1988 Regular Season - Week 13" }, { "date": "Nov 24, 1988", @@ -60604,8 +89481,13 @@ "und": "Dallas Cowboys", "sF": "25", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.0, + "pScore": { + "sU": 20.75, + "sF": 26.25 + }, + "week": "1988 Regular Season - Week 13" }, { "date": "Nov 27, 1988", @@ -60614,8 +89496,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "1988 Regular Season - Week 13" }, { "date": "Nov 27, 1988", @@ -60625,7 +89512,12 @@ "sF": "16", "sU": "0", "spread": "13", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 10.5, + "sF": 23.5 + }, + "week": "1988 Regular Season - Week 13" }, { "date": "Nov 27, 1988", @@ -60634,8 +89526,13 @@ "und": "Buffalo Bills", "sF": "35", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1988 Regular Season - Week 13" }, { "date": "Nov 27, 1988", @@ -60644,8 +89541,13 @@ "und": "Miami Dolphins", "sF": "38", "sU": "34", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1988 Regular Season - Week 13" }, { "date": "Nov 27, 1988", @@ -60654,8 +89556,13 @@ "und": "Phoenix Cardinals", "sF": "31", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.0, + "pScore": { + "sU": 19.75, + "sF": 25.25 + }, + "week": "1988 Regular Season - Week 13" }, { "date": "Nov 27, 1988", @@ -60665,7 +89572,12 @@ "sF": "16", "sU": "10", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1988 Regular Season - Week 13" }, { "date": "Nov 27, 1988", @@ -60675,7 +89587,12 @@ "sF": "13", "sU": "17", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1988 Regular Season - Week 13" }, { "date": "Nov 27, 1988", @@ -60684,8 +89601,13 @@ "und": "New England Patriots", "sF": "24", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.0, + "pScore": { + "sU": 15.75, + "sF": 21.25 + }, + "week": "1988 Regular Season - Week 13" }, { "date": "Nov 27, 1988", @@ -60695,7 +89617,12 @@ "sF": "48", "sU": "10", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1988 Regular Season - Week 13" }, { "date": "Nov 27, 1988", @@ -60704,8 +89631,13 @@ "und": "New York Giants", "sF": "12", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "1988 Regular Season - Week 13" }, { "date": "Nov 28, 1988", @@ -60714,8 +89646,13 @@ "und": "Los Angeles Raiders", "sF": "35", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1988 Regular Season - Week 13" }, { "date": "Dec 4, 1988", @@ -60725,7 +89662,12 @@ "sF": "13", "sU": "3", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1988 Regular Season - Week 14" }, { "date": "Dec 4, 1988", @@ -60735,7 +89677,12 @@ "sF": "27", "sU": "10", "spread": "13", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 15.5, + "sF": 28.5 + }, + "week": "1988 Regular Season - Week 14" }, { "date": "Dec 4, 1988", @@ -60745,7 +89692,12 @@ "sF": "24", "sU": "21", "spread": "11", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.0, + "sF": 24.0 + }, + "week": "1988 Regular Season - Week 14" }, { "date": "Dec 4, 1988", @@ -60754,8 +89706,13 @@ "und": "Green Bay Packers", "sF": "30", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1988 Regular Season - Week 14" }, { "date": "Dec 4, 1988", @@ -60765,7 +89722,12 @@ "sF": "31", "sU": "28", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "1988 Regular Season - Week 14" }, { "date": "Dec 4, 1988", @@ -60774,8 +89736,13 @@ "und": "Seattle Seahawks", "sF": "13", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1988 Regular Season - Week 14" }, { "date": "Dec 4, 1988", @@ -60784,8 +89751,13 @@ "und": "Phoenix Cardinals", "sF": "44", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.0, + "pScore": { + "sU": 17.75, + "sF": 23.25 + }, + "week": "1988 Regular Season - Week 14" }, { "date": "Dec 4, 1988", @@ -60794,8 +89766,13 @@ "und": "Washington Redskins", "sF": "19", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "1988 Regular Season - Week 14" }, { "date": "Dec 4, 1988", @@ -60804,8 +89781,13 @@ "und": "Tampa Bay Buccaneers", "sF": "5", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.0, + "pScore": { + "sU": 15.25, + "sF": 22.75 + }, + "week": "1988 Regular Season - Week 14" }, { "date": "Dec 4, 1988", @@ -60815,7 +89797,12 @@ "sF": "38", "sU": "34", "spread": "1", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.5, + "sF": 19.5 + }, + "week": "1988 Regular Season - Week 14" }, { "date": "Dec 4, 1988", @@ -60824,8 +89811,13 @@ "und": "Denver Broncos", "sF": "21", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1988 Regular Season - Week 14" }, { "date": "Dec 4, 1988", @@ -60835,7 +89827,12 @@ "sF": "45", "sU": "3", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "1988 Regular Season - Week 14" }, { "date": "Dec 4, 1988", @@ -60845,7 +89842,12 @@ "sF": "34", "sU": "37", "spread": "10", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.0, + "sF": 28.0 + }, + "week": "1988 Regular Season - Week 14" }, { "date": "Dec 5, 1988", @@ -60854,8 +89856,13 @@ "und": "Chicago Bears", "sF": "23", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1988 Regular Season - Week 14" }, { "date": "Dec 10, 1988", @@ -60865,7 +89872,12 @@ "sF": "16", "sU": "34", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1988 Regular Season - Week 15" }, { "date": "Dec 10, 1988", @@ -60875,7 +89887,12 @@ "sF": "17", "sU": "23", "spread": "2", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.0, + "sF": 25.0 + }, + "week": "1988 Regular Season - Week 15" }, { "date": "Dec 11, 1988", @@ -60885,7 +89902,12 @@ "sF": "37", "sU": "21", "spread": "7", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 13.5, + "sF": 20.5 + }, + "week": "1988 Regular Season - Week 15" }, { "date": "Dec 11, 1988", @@ -60895,7 +89917,12 @@ "sF": "13", "sU": "12", "spread": "10", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 11.5, + "sF": 21.5 + }, + "week": "1988 Regular Season - Week 15" }, { "date": "Dec 11, 1988", @@ -60904,8 +89931,13 @@ "und": "Green Bay Packers", "sF": "6", "sU": "18", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 34.0, + "pScore": { + "sU": 11.75, + "sF": 22.25 + }, + "week": "1988 Regular Season - Week 15" }, { "date": "Dec 11, 1988", @@ -60914,8 +89946,13 @@ "und": "Cincinnati Bengals", "sF": "41", "sU": "6", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 51.0, + "pScore": { + "sU": 24.75, + "sF": 26.25 + }, + "week": "1988 Regular Season - Week 15" }, { "date": "Dec 11, 1988", @@ -60925,7 +89962,12 @@ "sF": "10", "sU": "7", "spread": "9", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 13.0, + "sF": 22.0 + }, + "week": "1988 Regular Season - Week 15" }, { "date": "Dec 11, 1988", @@ -60934,8 +89976,13 @@ "und": "Kansas City Chiefs", "sF": "28", "sU": "12", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 38.0, + "pScore": { + "sU": 14.25, + "sF": 23.75 + }, + "week": "1988 Regular Season - Week 15" }, { "date": "Dec 11, 1988", @@ -60945,7 +89992,12 @@ "sF": "17", "sU": "24", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1988 Regular Season - Week 15" }, { "date": "Dec 11, 1988", @@ -60955,7 +90007,12 @@ "sF": "22", "sU": "7", "spread": "8", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.5, + "sF": 23.5 + }, + "week": "1988 Regular Season - Week 15" }, { "date": "Dec 11, 1988", @@ -60965,7 +90022,12 @@ "sF": "20", "sU": "14", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "1988 Regular Season - Week 15" }, { "date": "Dec 11, 1988", @@ -60975,7 +90037,12 @@ "sF": "30", "sU": "17", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1988 Regular Season - Week 15" }, { "date": "Dec 11, 1988", @@ -60984,8 +90051,13 @@ "und": "Denver Broncos", "sF": "42", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1988 Regular Season - Week 15" }, { "date": "Dec 12, 1988", @@ -60995,7 +90067,12 @@ "sF": "31", "sU": "38", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "1988 Regular Season - Week 15" }, { "date": "Dec 17, 1988", @@ -61004,8 +90081,13 @@ "und": "Washington Redskins", "sF": "20", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "1988 Regular Season - Week 16" }, { "date": "Dec 17, 1988", @@ -61015,7 +90097,12 @@ "sF": "10", "sU": "21", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "1988 Regular Season - Week 16" }, { "date": "Dec 18, 1988", @@ -61025,7 +90112,12 @@ "sF": "28", "sU": "23", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "1988 Regular Season - Week 16" }, { "date": "Dec 18, 1988", @@ -61035,7 +90127,12 @@ "sF": "23", "sU": "7", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "1988 Regular Season - Week 16" }, { "date": "Dec 18, 1988", @@ -61045,7 +90142,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1988 Regular Season - Week 16" }, { "date": "Dec 18, 1988", @@ -61055,7 +90157,12 @@ "sF": "10", "sU": "9", "spread": "8", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.0, + "sF": 24.0 + }, + "week": "1988 Regular Season - Week 16" }, { "date": "Dec 18, 1988", @@ -61065,7 +90172,12 @@ "sF": "21", "sU": "27", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1988 Regular Season - Week 16" }, { "date": "Dec 18, 1988", @@ -61075,7 +90187,12 @@ "sF": "40", "sU": "24", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1988 Regular Season - Week 16" }, { "date": "Dec 18, 1988", @@ -61085,7 +90202,12 @@ "sF": "21", "sU": "10", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1988 Regular Season - Week 16" }, { "date": "Dec 18, 1988", @@ -61095,7 +90217,12 @@ "sF": "37", "sU": "43", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1988 Regular Season - Week 16" }, { "date": "Dec 18, 1988", @@ -61105,7 +90232,12 @@ "sF": "17", "sU": "26", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1988 Regular Season - Week 16" }, { "date": "Dec 18, 1988", @@ -61115,7 +90247,12 @@ "sF": "24", "sU": "13", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "1988 Regular Season - Week 16" }, { "date": "Dec 18, 1988", @@ -61125,7 +90262,12 @@ "sF": "16", "sU": "38", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1988 Regular Season - Week 16" }, { "date": "Dec 19, 1988", @@ -61135,7 +90277,12 @@ "sF": "28", "sU": "27", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1988 Regular Season - Week 16" }, { "date": "Dec 24, 1988", @@ -61145,7 +90292,12 @@ "sF": "23", "sU": "24", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1988 Playoffs" }, { "date": "Dec 26, 1988", @@ -61154,8 +90306,13 @@ "und": "Los Angeles Rams (5)", "sF": "28", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.0, + "pScore": { + "sU": 18.75, + "sF": 23.25 + }, + "week": "1988 Playoffs" }, { "date": "Dec 31, 1988", @@ -61164,8 +90321,13 @@ "und": "Philadelphia Eagles (3)", "sF": "20", "sU": "12", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "1988 Playoffs" }, { "date": "Dec 31, 1988", @@ -61174,8 +90336,13 @@ "und": "Seattle Seahawks (3)", "sF": "21", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.0, + "pScore": { + "sU": 19.75, + "sF": 26.25 + }, + "week": "1988 Playoffs" }, { "date": "Jan 1, 1989", @@ -61184,8 +90351,13 @@ "und": "Houston Oilers (5)", "sF": "17", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1988 Playoffs" }, { "date": "Jan 1, 1989", @@ -61194,8 +90366,13 @@ "und": "Minnesota Vikings (4)", "sF": "34", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1988 Playoffs" }, { "date": "Jan 8, 1989", @@ -61205,7 +90382,12 @@ "sF": "21", "sU": "10", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1988 Playoffs" }, { "date": "Jan 8, 1989", @@ -61215,7 +90397,12 @@ "sF": "28", "sU": "3", "spread": "1", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 17.0, + "sF": 18.0 + }, + "week": "1988 Playoffs" }, { "date": "Jan 22, 1989", @@ -61225,7 +90412,12 @@ "sF": "20", "sU": "16", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "1988 Playoffs" }, { "date": "Sep 10, 1989", @@ -61235,7 +90427,12 @@ "sF": "31", "sU": "21", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1989 Regular Season - Week 1" }, { "date": "Sep 10, 1989", @@ -61244,8 +90441,13 @@ "und": "Cincinnati Bengals", "sF": "17", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1989 Regular Season - Week 1" }, { "date": "Sep 10, 1989", @@ -61254,8 +90456,13 @@ "und": "Detroit Lions", "sF": "16", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.0, + "pScore": { + "sU": 19.25, + "sF": 20.75 + }, + "week": "1989 Regular Season - Week 1" }, { "date": "Sep 10, 1989", @@ -61265,7 +90472,12 @@ "sF": "21", "sU": "23", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1989 Regular Season - Week 1" }, { "date": "Sep 10, 1989", @@ -61275,7 +90487,12 @@ "sF": "30", "sU": "24", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "1989 Regular Season - Week 1" }, { "date": "Sep 10, 1989", @@ -61285,7 +90502,12 @@ "sF": "28", "sU": "0", "spread": "5", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.75, + "sF": 22.75 + }, + "week": "1989 Regular Season - Week 1" }, { "date": "Sep 10, 1989", @@ -61295,7 +90517,12 @@ "sF": "34", "sU": "20", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1989 Regular Season - Week 1" }, { "date": "Sep 10, 1989", @@ -61304,8 +90531,13 @@ "und": "San Diego Chargers", "sF": "40", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1989 Regular Season - Week 1" }, { "date": "Sep 10, 1989", @@ -61315,7 +90547,12 @@ "sF": "27", "sU": "24", "spread": "4", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 17.75, + "sF": 21.75 + }, + "week": "1989 Regular Season - Week 1" }, { "date": "Sep 10, 1989", @@ -61325,7 +90562,12 @@ "sF": "38", "sU": "7", "spread": "5", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.0, + "sF": 25.0 + }, + "week": "1989 Regular Season - Week 1" }, { "date": "Sep 10, 1989", @@ -61334,8 +90576,13 @@ "und": "New England Patriots", "sF": "24", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1989 Regular Season - Week 1" }, { "date": "Sep 10, 1989", @@ -61345,7 +90592,12 @@ "sF": "31", "sU": "7", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1989 Regular Season - Week 1" }, { "date": "Sep 10, 1989", @@ -61355,7 +90607,12 @@ "sF": "51", "sU": "0", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "1989 Regular Season - Week 1" }, { "date": "Sep 11, 1989", @@ -61365,7 +90622,12 @@ "sF": "24", "sU": "27", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1989 Regular Season - Week 1" }, { "date": "Sep 17, 1989", @@ -61374,8 +90636,13 @@ "und": "Dallas Cowboys", "sF": "27", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "1989 Regular Season - Week 2" }, { "date": "Sep 17, 1989", @@ -61385,7 +90652,12 @@ "sF": "41", "sU": "10", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "1989 Regular Season - Week 2" }, { "date": "Sep 17, 1989", @@ -61394,8 +90666,13 @@ "und": "New York Jets", "sF": "38", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.0, + "pScore": { + "sU": 17.75, + "sF": 25.25 + }, + "week": "1989 Regular Season - Week 2" }, { "date": "Sep 17, 1989", @@ -61404,8 +90681,13 @@ "und": "Green Bay Packers", "sF": "34", "sU": "35", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "1989 Regular Season - Week 2" }, { "date": "Sep 17, 1989", @@ -61414,8 +90696,13 @@ "und": "Los Angeles Raiders", "sF": "24", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1989 Regular Season - Week 2" }, { "date": "Sep 17, 1989", @@ -61424,8 +90711,13 @@ "und": "Miami Dolphins", "sF": "10", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "1989 Regular Season - Week 2" }, { "date": "Sep 17, 1989", @@ -61435,7 +90727,12 @@ "sF": "37", "sU": "42", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1989 Regular Season - Week 2" }, { "date": "Sep 17, 1989", @@ -61444,8 +90741,13 @@ "und": "Chicago Bears", "sF": "7", "sU": "38", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.0, + "pScore": { + "sU": 18.75, + "sF": 20.25 + }, + "week": "1989 Regular Season - Week 2" }, { "date": "Sep 17, 1989", @@ -61455,7 +90757,12 @@ "sF": "31", "sU": "17", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "1989 Regular Season - Week 2" }, { "date": "Sep 17, 1989", @@ -61464,8 +90771,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 39.0, + "pScore": { + "sU": 14.25, + "sF": 24.75 + }, + "week": "1989 Regular Season - Week 2" }, { "date": "Sep 17, 1989", @@ -61474,8 +90786,13 @@ "und": "San Diego Chargers", "sF": "34", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "1989 Regular Season - Week 2" }, { "date": "Sep 17, 1989", @@ -61484,8 +90801,13 @@ "und": "Phoenix Cardinals", "sF": "24", "sU": "34", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.0, + "pScore": { + "sU": 16.75, + "sF": 24.25 + }, + "week": "1989 Regular Season - Week 2" }, { "date": "Sep 17, 1989", @@ -61495,7 +90817,12 @@ "sF": "20", "sU": "16", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "1989 Regular Season - Week 2" }, { "date": "Sep 18, 1989", @@ -61504,8 +90831,13 @@ "und": "Denver Broncos", "sF": "14", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "1989 Regular Season - Week 2" }, { "date": "Sep 24, 1989", @@ -61514,8 +90846,13 @@ "und": "Dallas Cowboys", "sF": "30", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.0, + "pScore": { + "sU": 20.25, + "sF": 25.75 + }, + "week": "1989 Regular Season - Week 3" }, { "date": "Sep 24, 1989", @@ -61525,7 +90862,12 @@ "sF": "47", "sU": "27", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1989 Regular Season - Week 3" }, { "date": "Sep 24, 1989", @@ -61535,7 +90877,12 @@ "sF": "41", "sU": "47", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1989 Regular Season - Week 3" }, { "date": "Sep 24, 1989", @@ -61544,8 +90891,13 @@ "und": "Atlanta Falcons", "sF": "13", "sU": "9", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.0, + "pScore": { + "sU": 18.75, + "sF": 26.25 + }, + "week": "1989 Regular Season - Week 3" }, { "date": "Sep 24, 1989", @@ -61555,7 +90907,12 @@ "sF": "3", "sU": "24", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1989 Regular Season - Week 3" }, { "date": "Sep 24, 1989", @@ -61564,8 +90921,13 @@ "und": "Phoenix Cardinals", "sF": "35", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "1989 Regular Season - Week 3" }, { "date": "Sep 24, 1989", @@ -61574,12 +90936,13 @@ "und": "San Francisco 49ers", "sF": "28", "sU": "38", - "spread": "1", - "ou": "49", + "spread": "1.5", + "ou": 46.5, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 22.5, + "sF": 24.0 + }, + "week": "1989 Regular Season - Week 3" }, { "date": "Sep 24, 1989", @@ -61589,7 +90952,12 @@ "sF": "14", "sU": "27", "spread": "9", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.0, + "sF": 26.0 + }, + "week": "1989 Regular Season - Week 3" }, { "date": "Sep 24, 1989", @@ -61598,8 +90966,13 @@ "und": "Tampa Bay Buccaneers", "sF": "10", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1989 Regular Season - Week 3" }, { "date": "Sep 24, 1989", @@ -61609,7 +90982,12 @@ "sF": "31", "sU": "21", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "1989 Regular Season - Week 3" }, { "date": "Sep 24, 1989", @@ -61618,8 +90996,13 @@ "und": "Green Bay Packers", "sF": "41", "sU": "38", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 45.0, + "pScore": { + "sU": 17.75, + "sF": 27.25 + }, + "week": "1989 Regular Season - Week 3" }, { "date": "Sep 24, 1989", @@ -61629,7 +91012,12 @@ "sF": "33", "sU": "40", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "1989 Regular Season - Week 3" }, { "date": "Sep 24, 1989", @@ -61639,7 +91027,12 @@ "sF": "21", "sU": "6", "spread": "2", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.25, + "sF": 22.25 + }, + "week": "1989 Regular Season - Week 3" }, { "date": "Sep 25, 1989", @@ -61649,7 +91042,12 @@ "sF": "21", "sU": "14", "spread": "4", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 20.75, + "sF": 24.75 + }, + "week": "1989 Regular Season - Week 3" }, { "date": "Oct 1, 1989", @@ -61659,7 +91057,12 @@ "sF": "31", "sU": "10", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1989 Regular Season - Week 4" }, { "date": "Oct 1, 1989", @@ -61668,8 +91071,13 @@ "und": "Denver Broncos", "sF": "16", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.5, + "pScore": { + "sU": 20.5, + "sF": 25.0 + }, + "week": "1989 Regular Season - Week 4" }, { "date": "Oct 1, 1989", @@ -61678,8 +91086,13 @@ "und": "Pittsburgh Steelers", "sF": "3", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "1989 Regular Season - Week 4" }, { "date": "Oct 1, 1989", @@ -61689,7 +91102,12 @@ "sF": "23", "sU": "21", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "1989 Regular Season - Week 4" }, { "date": "Oct 1, 1989", @@ -61699,7 +91117,12 @@ "sF": "39", "sU": "7", "spread": "7", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 22.25, + "sF": 29.25 + }, + "week": "1989 Regular Season - Week 4" }, { "date": "Oct 1, 1989", @@ -61709,7 +91132,12 @@ "sF": "21", "sU": "17", "spread": "4", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.75, + "sF": 23.75 + }, + "week": "1989 Regular Season - Week 4" }, { "date": "Oct 1, 1989", @@ -61719,7 +91147,12 @@ "sF": "17", "sU": "3", "spread": "8", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.0, + "sF": 26.0 + }, + "week": "1989 Regular Season - Week 4" }, { "date": "Oct 1, 1989", @@ -61728,8 +91161,13 @@ "und": "New Orleans Saints", "sF": "16", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "1989 Regular Season - Week 4" }, { "date": "Oct 1, 1989", @@ -61739,7 +91177,12 @@ "sF": "10", "sU": "17", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1989 Regular Season - Week 4" }, { "date": "Oct 1, 1989", @@ -61748,8 +91191,13 @@ "und": "Dallas Cowboys", "sF": "30", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.5, + "pScore": { + "sU": 17.5, + "sF": 25.0 + }, + "week": "1989 Regular Season - Week 4" }, { "date": "Oct 1, 1989", @@ -61759,7 +91207,12 @@ "sF": "20", "sU": "24", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "1989 Regular Season - Week 4" }, { "date": "Oct 1, 1989", @@ -61768,8 +91221,13 @@ "und": "San Diego Chargers", "sF": "13", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.5, + "pScore": { + "sU": 19.0, + "sF": 23.5 + }, + "week": "1989 Regular Season - Week 4" }, { "date": "Oct 1, 1989", @@ -61779,7 +91237,12 @@ "sF": "12", "sU": "13", "spread": "4", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.25, + "sF": 25.25 + }, + "week": "1989 Regular Season - Week 4" }, { "date": "Oct 2, 1989", @@ -61789,7 +91252,12 @@ "sF": "27", "sU": "13", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1989 Regular Season - Week 4" }, { "date": "Oct 8, 1989", @@ -61798,8 +91266,13 @@ "und": "Dallas Cowboys", "sF": "31", "sU": "13", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.5, + "pScore": { + "sU": 17.5, + "sF": 26.0 + }, + "week": "1989 Regular Season - Week 5" }, { "date": "Oct 8, 1989", @@ -61808,8 +91281,13 @@ "und": "Miami Dolphins", "sF": "10", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "1989 Regular Season - Week 5" }, { "date": "Oct 8, 1989", @@ -61819,7 +91297,12 @@ "sF": "24", "sU": "17", "spread": "12", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 15.0, + "sF": 27.0 + }, + "week": "1989 Regular Season - Week 5" }, { "date": "Oct 8, 1989", @@ -61829,7 +91312,12 @@ "sF": "13", "sU": "23", "spread": "5", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.25, + "sF": 24.25 + }, + "week": "1989 Regular Season - Week 5" }, { "date": "Oct 8, 1989", @@ -61838,8 +91326,13 @@ "und": "New York Giants", "sF": "21", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "1989 Regular Season - Week 5" }, { "date": "Oct 8, 1989", @@ -61848,8 +91341,13 @@ "und": "Pittsburgh Steelers", "sF": "26", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1989 Regular Season - Week 5" }, { "date": "Oct 8, 1989", @@ -61859,7 +91357,12 @@ "sF": "35", "sU": "42", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "1989 Regular Season - Week 5" }, { "date": "Oct 8, 1989", @@ -61868,8 +91371,13 @@ "und": "San Diego Chargers", "sF": "16", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.5, + "pScore": { + "sU": 17.5, + "sF": 25.0 + }, + "week": "1989 Regular Season - Week 5" }, { "date": "Oct 8, 1989", @@ -61879,7 +91387,12 @@ "sF": "26", "sU": "14", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "1989 Regular Season - Week 5" }, { "date": "Oct 8, 1989", @@ -61888,8 +91401,13 @@ "und": "New Orleans Saints", "sF": "24", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1989 Regular Season - Week 5" }, { "date": "Oct 8, 1989", @@ -61899,7 +91417,12 @@ "sF": "16", "sU": "20", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1989 Regular Season - Week 5" }, { "date": "Oct 8, 1989", @@ -61909,7 +91432,12 @@ "sF": "30", "sU": "28", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "1989 Regular Season - Week 5" }, { "date": "Oct 9, 1989", @@ -61919,7 +91447,12 @@ "sF": "7", "sU": "14", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1989 Regular Season - Week 5" }, { "date": "Oct 15, 1989", @@ -61929,7 +91462,12 @@ "sF": "16", "sU": "15", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1989 Regular Season - Week 6" }, { "date": "Oct 15, 1989", @@ -61939,7 +91477,12 @@ "sF": "28", "sU": "33", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "1989 Regular Season - Week 6" }, { "date": "Oct 15, 1989", @@ -61948,8 +91491,13 @@ "und": "Miami Dolphins", "sF": "13", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.0, + "pScore": { + "sU": 18.75, + "sF": 26.25 + }, + "week": "1989 Regular Season - Week 6" }, { "date": "Oct 15, 1989", @@ -61958,8 +91506,13 @@ "und": "Dallas Cowboys", "sF": "31", "sU": "14", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 43.0, + "pScore": { + "sU": 14.25, + "sF": 28.75 + }, + "week": "1989 Regular Season - Week 6" }, { "date": "Oct 15, 1989", @@ -61968,8 +91521,13 @@ "und": "Green Bay Packers", "sF": "26", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1989 Regular Season - Week 6" }, { "date": "Oct 15, 1989", @@ -61979,7 +91537,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1989 Regular Season - Week 6" }, { "date": "Oct 15, 1989", @@ -61988,8 +91551,13 @@ "und": "Detroit Lions", "sF": "16", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1989 Regular Season - Week 6" }, { "date": "Oct 15, 1989", @@ -61999,7 +91567,12 @@ "sF": "7", "sU": "17", "spread": "10", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.0, + "sF": 25.0 + }, + "week": "1989 Regular Season - Week 6" }, { "date": "Oct 15, 1989", @@ -62008,8 +91581,13 @@ "und": "Indianapolis Colts", "sF": "14", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1989 Regular Season - Week 6" }, { "date": "Oct 15, 1989", @@ -62018,8 +91596,13 @@ "und": "Kansas City Chiefs", "sF": "20", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1989 Regular Season - Week 6" }, { "date": "Oct 15, 1989", @@ -62028,8 +91611,13 @@ "und": "New York Jets", "sF": "29", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.0, + "pScore": { + "sU": 16.75, + "sF": 24.25 + }, + "week": "1989 Regular Season - Week 6" }, { "date": "Oct 15, 1989", @@ -62038,8 +91626,13 @@ "und": "Phoenix Cardinals", "sF": "17", "sU": "5", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.0, + "pScore": { + "sU": 20.75, + "sF": 25.25 + }, + "week": "1989 Regular Season - Week 6" }, { "date": "Oct 15, 1989", @@ -62049,7 +91642,12 @@ "sF": "16", "sU": "17", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "1989 Regular Season - Week 6" }, { "date": "Oct 16, 1989", @@ -62058,8 +91656,13 @@ "und": "Buffalo Bills", "sF": "20", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "1989 Regular Season - Week 6" }, { "date": "Oct 22, 1989", @@ -62068,8 +91671,13 @@ "und": "New York Jets", "sF": "34", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "1989 Regular Season - Week 7" }, { "date": "Oct 22, 1989", @@ -62078,8 +91686,13 @@ "und": "Indianapolis Colts", "sF": "12", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.5, + "pScore": { + "sU": 17.0, + "sF": 23.5 + }, + "week": "1989 Regular Season - Week 7" }, { "date": "Oct 22, 1989", @@ -62088,8 +91701,13 @@ "und": "Detroit Lions", "sF": "20", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.0, + "pScore": { + "sU": 16.25, + "sF": 23.75 + }, + "week": "1989 Regular Season - Week 7" }, { "date": "Oct 22, 1989", @@ -62098,8 +91716,13 @@ "und": "Pittsburgh Steelers", "sF": "27", "sU": "0", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.0, + "pScore": { + "sU": 17.25, + "sF": 26.75 + }, + "week": "1989 Regular Season - Week 7" }, { "date": "Oct 22, 1989", @@ -62108,8 +91731,13 @@ "und": "Dallas Cowboys", "sF": "36", "sU": "28", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 39.0, + "pScore": { + "sU": 15.25, + "sF": 23.75 + }, + "week": "1989 Regular Season - Week 7" }, { "date": "Oct 22, 1989", @@ -62118,8 +91746,13 @@ "und": "Green Bay Packers", "sF": "23", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "1989 Regular Season - Week 7" }, { "date": "Oct 22, 1989", @@ -62128,8 +91761,13 @@ "und": "Los Angeles Raiders", "sF": "10", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "1989 Regular Season - Week 7" }, { "date": "Oct 22, 1989", @@ -62139,7 +91777,12 @@ "sF": "32", "sU": "28", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "1989 Regular Season - Week 7" }, { "date": "Oct 22, 1989", @@ -62149,7 +91792,12 @@ "sF": "21", "sU": "40", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1989 Regular Season - Week 7" }, { "date": "Oct 22, 1989", @@ -62158,8 +91806,13 @@ "und": "Atlanta Falcons", "sF": "34", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "1989 Regular Season - Week 7" }, { "date": "Oct 22, 1989", @@ -62169,7 +91822,12 @@ "sF": "20", "sU": "13", "spread": "5", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 16.75, + "sF": 21.75 + }, + "week": "1989 Regular Season - Week 7" }, { "date": "Oct 22, 1989", @@ -62178,8 +91836,13 @@ "und": "New England Patriots", "sF": "37", "sU": "20", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 41.0, + "pScore": { + "sU": 15.25, + "sF": 25.75 + }, + "week": "1989 Regular Season - Week 7" }, { "date": "Oct 22, 1989", @@ -62189,7 +91852,12 @@ "sF": "21", "sU": "24", "spread": "2", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.25, + "sF": 21.25 + }, + "week": "1989 Regular Season - Week 7" }, { "date": "Oct 23, 1989", @@ -62198,8 +91866,13 @@ "und": "Chicago Bears", "sF": "27", "sU": "7", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.5, + "pScore": { + "sU": 20.0, + "sF": 21.5 + }, + "week": "1989 Regular Season - Week 7" }, { "date": "Oct 29, 1989", @@ -62209,7 +91882,12 @@ "sF": "31", "sU": "17", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1989 Regular Season - Week 8" }, { "date": "Oct 29, 1989", @@ -62219,7 +91897,12 @@ "sF": "20", "sU": "10", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "1989 Regular Season - Week 8" }, { "date": "Oct 29, 1989", @@ -62228,8 +91911,13 @@ "und": "Tampa Bay Buccaneers", "sF": "56", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1989 Regular Season - Week 8" }, { "date": "Oct 29, 1989", @@ -62238,8 +91926,13 @@ "und": "Houston Oilers", "sF": "28", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1989 Regular Season - Week 8" }, { "date": "Oct 29, 1989", @@ -62248,8 +91941,13 @@ "und": "Dallas Cowboys", "sF": "19", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1989 Regular Season - Week 8" }, { "date": "Oct 29, 1989", @@ -62259,7 +91957,12 @@ "sF": "23", "sU": "20", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1989 Regular Season - Week 8" }, { "date": "Oct 29, 1989", @@ -62268,8 +91971,13 @@ "und": "New England Patriots", "sF": "20", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "1989 Regular Season - Week 8" }, { "date": "Oct 29, 1989", @@ -62278,8 +91986,13 @@ "und": "Atlanta Falcons", "sF": "20", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "1989 Regular Season - Week 8" }, { "date": "Oct 29, 1989", @@ -62288,8 +92001,13 @@ "und": "Kansas City Chiefs", "sF": "23", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "1989 Regular Season - Week 8" }, { "date": "Oct 29, 1989", @@ -62299,7 +92017,12 @@ "sF": "24", "sU": "28", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1989 Regular Season - Week 8" }, { "date": "Oct 29, 1989", @@ -62309,7 +92032,12 @@ "sF": "24", "sU": "37", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1989 Regular Season - Week 8" }, { "date": "Oct 29, 1989", @@ -62319,7 +92047,12 @@ "sF": "23", "sU": "10", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "1989 Regular Season - Week 8" }, { "date": "Oct 29, 1989", @@ -62328,8 +92061,13 @@ "und": "San Diego Chargers", "sF": "10", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.5, + "pScore": { + "sU": 16.0, + "sF": 22.5 + }, + "week": "1989 Regular Season - Week 8" }, { "date": "Oct 30, 1989", @@ -62339,7 +92077,12 @@ "sF": "24", "sU": "14", "spread": "2", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.75, + "sF": 20.75 + }, + "week": "1989 Regular Season - Week 8" }, { "date": "Nov 5, 1989", @@ -62349,7 +92092,12 @@ "sF": "28", "sU": "30", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1989 Regular Season - Week 9" }, { "date": "Nov 5, 1989", @@ -62359,7 +92107,12 @@ "sF": "13", "sU": "14", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1989 Regular Season - Week 9" }, { "date": "Nov 5, 1989", @@ -62369,7 +92122,12 @@ "sF": "35", "sU": "31", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "1989 Regular Season - Week 9" }, { "date": "Nov 5, 1989", @@ -62378,8 +92136,13 @@ "und": "Seattle Seahawks", "sF": "20", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "1989 Regular Season - Week 9" }, { "date": "Nov 5, 1989", @@ -62389,7 +92152,12 @@ "sF": "19", "sU": "13", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1989 Regular Season - Week 9" }, { "date": "Nov 5, 1989", @@ -62399,7 +92167,12 @@ "sF": "23", "sU": "21", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1989 Regular Season - Week 9" }, { "date": "Nov 5, 1989", @@ -62408,8 +92181,13 @@ "und": "New York Jets", "sF": "26", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.0, + "pScore": { + "sU": 15.75, + "sF": 23.25 + }, + "week": "1989 Regular Season - Week 9" }, { "date": "Nov 5, 1989", @@ -62419,7 +92197,12 @@ "sF": "42", "sU": "31", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1989 Regular Season - Week 9" }, { "date": "Nov 5, 1989", @@ -62428,8 +92211,13 @@ "und": "Pittsburgh Steelers", "sF": "34", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.0, + "pScore": { + "sU": 16.75, + "sF": 24.25 + }, + "week": "1989 Regular Season - Week 9" }, { "date": "Nov 5, 1989", @@ -62439,7 +92227,12 @@ "sF": "7", "sU": "28", "spread": "2", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.25, + "sF": 22.25 + }, + "week": "1989 Regular Season - Week 9" }, { "date": "Nov 5, 1989", @@ -62448,8 +92241,13 @@ "und": "Phoenix Cardinals", "sF": "20", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1989 Regular Season - Week 9" }, { "date": "Nov 5, 1989", @@ -62458,8 +92256,13 @@ "und": "San Diego Chargers", "sF": "17", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "1989 Regular Season - Week 9" }, { "date": "Nov 5, 1989", @@ -62469,7 +92272,12 @@ "sF": "3", "sU": "13", "spread": "14", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 15.75, + "sF": 29.75 + }, + "week": "1989 Regular Season - Week 9" }, { "date": "Nov 6, 1989", @@ -62479,7 +92287,12 @@ "sF": "31", "sU": "13", "spread": "5", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.25, + "sF": 24.25 + }, + "week": "1989 Regular Season - Week 9" }, { "date": "Nov 12, 1989", @@ -62488,8 +92301,13 @@ "und": "Indianapolis Colts", "sF": "30", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1989 Regular Season - Week 10" }, { "date": "Nov 12, 1989", @@ -62498,8 +92316,13 @@ "und": "Detroit Lions", "sF": "22", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.5, + "pScore": { + "sU": 21.0, + "sF": 22.5 + }, + "week": "1989 Regular Season - Week 10" }, { "date": "Nov 12, 1989", @@ -62509,7 +92332,12 @@ "sF": "28", "sU": "24", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1989 Regular Season - Week 10" }, { "date": "Nov 12, 1989", @@ -62519,7 +92347,12 @@ "sF": "31", "sU": "23", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1989 Regular Season - Week 10" }, { "date": "Nov 12, 1989", @@ -62528,8 +92361,13 @@ "und": "Washington Redskins", "sF": "3", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.5, + "pScore": { + "sU": 19.5, + "sF": 24.0 + }, + "week": "1989 Regular Season - Week 10" }, { "date": "Nov 12, 1989", @@ -62538,8 +92376,13 @@ "und": "Pittsburgh Steelers", "sF": "20", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1989 Regular Season - Week 10" }, { "date": "Nov 12, 1989", @@ -62548,8 +92391,13 @@ "und": "Tampa Bay Buccaneers", "sF": "24", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "1989 Regular Season - Week 10" }, { "date": "Nov 12, 1989", @@ -62558,8 +92406,13 @@ "und": "New York Giants", "sF": "31", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "1989 Regular Season - Week 10" }, { "date": "Nov 12, 1989", @@ -62568,8 +92421,13 @@ "und": "Dallas Cowboys", "sF": "24", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1989 Regular Season - Week 10" }, { "date": "Nov 12, 1989", @@ -62579,7 +92437,12 @@ "sF": "45", "sU": "3", "spread": "10", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.5, + "sF": 26.5 + }, + "week": "1989 Regular Season - Week 10" }, { "date": "Nov 12, 1989", @@ -62588,8 +92451,13 @@ "und": "Seattle Seahawks", "sF": "17", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "1989 Regular Season - Week 10" }, { "date": "Nov 12, 1989", @@ -62598,8 +92466,13 @@ "und": "San Diego Chargers", "sF": "12", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1989 Regular Season - Week 10" }, { "date": "Nov 13, 1989", @@ -62608,8 +92481,13 @@ "und": "Cincinnati Bengals", "sF": "26", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "1989 Regular Season - Week 10" }, { "date": "Nov 19, 1989", @@ -62619,7 +92497,12 @@ "sF": "26", "sU": "17", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1989 Regular Season - Week 11" }, { "date": "Nov 19, 1989", @@ -62629,7 +92512,12 @@ "sF": "31", "sU": "32", "spread": "11", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 14.75, + "sF": 25.75 + }, + "week": "1989 Regular Season - Week 11" }, { "date": "Nov 19, 1989", @@ -62638,8 +92526,13 @@ "und": "Detroit Lions", "sF": "42", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.5, + "pScore": { + "sU": 18.0, + "sF": 25.5 + }, + "week": "1989 Regular Season - Week 11" }, { "date": "Nov 19, 1989", @@ -62649,7 +92542,12 @@ "sF": "10", "sU": "10", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1989 Regular Season - Week 11" }, { "date": "Nov 19, 1989", @@ -62659,7 +92557,12 @@ "sF": "17", "sU": "14", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "1989 Regular Season - Week 11" }, { "date": "Nov 19, 1989", @@ -62668,8 +92571,13 @@ "und": "New England Patriots", "sF": "24", "sU": "33", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.5, + "pScore": { + "sU": 18.5, + "sF": 24.0 + }, + "week": "1989 Regular Season - Week 11" }, { "date": "Nov 19, 1989", @@ -62679,7 +92587,12 @@ "sF": "9", "sU": "10", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "1989 Regular Season - Week 11" }, { "date": "Nov 19, 1989", @@ -62689,7 +92602,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1989 Regular Season - Week 11" }, { "date": "Nov 19, 1989", @@ -62698,8 +92616,13 @@ "und": "Los Angeles Raiders", "sF": "23", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "1989 Regular Season - Week 11" }, { "date": "Nov 19, 1989", @@ -62708,8 +92631,13 @@ "und": "Phoenix Cardinals", "sF": "37", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.0, + "pScore": { + "sU": 16.25, + "sF": 26.75 + }, + "week": "1989 Regular Season - Week 11" }, { "date": "Nov 19, 1989", @@ -62719,7 +92647,12 @@ "sF": "15", "sU": "3", "spread": "10", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 13.75, + "sF": 23.75 + }, + "week": "1989 Regular Season - Week 11" }, { "date": "Nov 19, 1989", @@ -62728,8 +92661,13 @@ "und": "Green Bay Packers", "sF": "17", "sU": "21", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 46.0, + "pScore": { + "sU": 17.75, + "sF": 28.25 + }, + "week": "1989 Regular Season - Week 11" }, { "date": "Nov 19, 1989", @@ -62739,7 +92677,12 @@ "sF": "27", "sU": "10", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1989 Regular Season - Week 11" }, { "date": "Nov 20, 1989", @@ -62748,8 +92691,13 @@ "und": "Denver Broncos", "sF": "10", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "1989 Regular Season - Week 11" }, { "date": "Nov 23, 1989", @@ -62759,7 +92707,12 @@ "sF": "10", "sU": "13", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1989 Regular Season - Week 12" }, { "date": "Nov 23, 1989", @@ -62769,7 +92722,12 @@ "sF": "27", "sU": "0", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1989 Regular Season - Week 12" }, { "date": "Nov 26, 1989", @@ -62778,8 +92736,13 @@ "und": "Cincinnati Bengals", "sF": "24", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1989 Regular Season - Week 12" }, { "date": "Nov 26, 1989", @@ -62789,7 +92752,12 @@ "sF": "19", "sU": "20", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1989 Regular Season - Week 12" }, { "date": "Nov 26, 1989", @@ -62798,8 +92766,13 @@ "und": "San Diego Chargers", "sF": "10", "sU": "6", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.0, + "pScore": { + "sU": 15.75, + "sF": 21.25 + }, + "week": "1989 Regular Season - Week 12" }, { "date": "Nov 26, 1989", @@ -62808,8 +92781,13 @@ "und": "Kansas City Chiefs", "sF": "0", "sU": "34", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.0, + "pScore": { + "sU": 18.75, + "sF": 20.25 + }, + "week": "1989 Regular Season - Week 12" }, { "date": "Nov 26, 1989", @@ -62818,8 +92796,13 @@ "und": "Pittsburgh Steelers", "sF": "14", "sU": "34", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.0, + "pScore": { + "sU": 16.75, + "sF": 24.25 + }, + "week": "1989 Regular Season - Week 12" }, { "date": "Nov 26, 1989", @@ -62829,7 +92812,12 @@ "sF": "27", "sU": "7", "spread": "2", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.25, + "sF": 22.25 + }, + "week": "1989 Regular Season - Week 12" }, { "date": "Nov 26, 1989", @@ -62839,7 +92827,12 @@ "sF": "41", "sU": "14", "spread": "9", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.0, + "sF": 23.0 + }, + "week": "1989 Regular Season - Week 12" }, { "date": "Nov 26, 1989", @@ -62848,8 +92841,13 @@ "und": "New England Patriots", "sF": "24", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "1989 Regular Season - Week 12" }, { "date": "Nov 26, 1989", @@ -62859,7 +92857,12 @@ "sF": "13", "sU": "14", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "1989 Regular Season - Week 12" }, { "date": "Nov 26, 1989", @@ -62868,8 +92871,13 @@ "und": "Washington Redskins", "sF": "14", "sU": "38", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.5, + "pScore": { + "sU": 19.0, + "sF": 20.5 + }, + "week": "1989 Regular Season - Week 12" }, { "date": "Nov 27, 1989", @@ -62878,8 +92886,13 @@ "und": "New York Giants", "sF": "34", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.0, + "pScore": { + "sU": 17.75, + "sF": 23.25 + }, + "week": "1989 Regular Season - Week 12" }, { "date": "Dec 3, 1989", @@ -62888,8 +92901,13 @@ "und": "Atlanta Falcons", "sF": "23", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "1989 Regular Season - Week 13" }, { "date": "Dec 3, 1989", @@ -62899,7 +92917,12 @@ "sF": "0", "sU": "21", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1989 Regular Season - Week 13" }, { "date": "Dec 3, 1989", @@ -62909,7 +92932,12 @@ "sF": "35", "sU": "31", "spread": "10", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 15.75, + "sF": 25.75 + }, + "week": "1989 Regular Season - Week 13" }, { "date": "Dec 3, 1989", @@ -62919,7 +92947,12 @@ "sF": "14", "sU": "21", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1989 Regular Season - Week 13" }, { "date": "Dec 3, 1989", @@ -62928,8 +92961,13 @@ "und": "Miami Dolphins", "sF": "26", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 36.0, + "pScore": { + "sU": 15.75, + "sF": 20.25 + }, + "week": "1989 Regular Season - Week 13" }, { "date": "Dec 3, 1989", @@ -62939,7 +92977,12 @@ "sF": "22", "sU": "16", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1989 Regular Season - Week 13" }, { "date": "Dec 3, 1989", @@ -62949,7 +92992,12 @@ "sF": "17", "sU": "24", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1989 Regular Season - Week 13" }, { "date": "Dec 3, 1989", @@ -62959,7 +93007,12 @@ "sF": "23", "sU": "16", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1989 Regular Season - Week 13" }, { "date": "Dec 3, 1989", @@ -62968,8 +93021,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "1989 Regular Season - Week 13" }, { "date": "Dec 3, 1989", @@ -62978,8 +93036,13 @@ "und": "Denver Broncos", "sF": "16", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.5, + "pScore": { + "sU": 19.5, + "sF": 21.0 + }, + "week": "1989 Regular Season - Week 13" }, { "date": "Dec 3, 1989", @@ -62988,8 +93051,13 @@ "und": "Phoenix Cardinals", "sF": "29", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.5, + "pScore": { + "sU": 18.0, + "sF": 23.5 + }, + "week": "1989 Regular Season - Week 13" }, { "date": "Dec 3, 1989", @@ -62999,7 +93067,12 @@ "sF": "17", "sU": "20", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1989 Regular Season - Week 13" }, { "date": "Dec 3, 1989", @@ -63009,7 +93082,12 @@ "sF": "27", "sU": "16", "spread": "6", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.75, + "sF": 22.75 + }, + "week": "1989 Regular Season - Week 13" }, { "date": "Dec 4, 1989", @@ -63018,8 +93096,13 @@ "und": "Seattle Seahawks", "sF": "16", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.5, + "pScore": { + "sU": 17.0, + "sF": 21.5 + }, + "week": "1989 Regular Season - Week 13" }, { "date": "Dec 10, 1989", @@ -63028,8 +93111,13 @@ "und": "New Orleans Saints", "sF": "19", "sU": "22", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.0, + "pScore": { + "sU": 14.75, + "sF": 21.25 + }, + "week": "1989 Regular Season - Week 14" }, { "date": "Dec 10, 1989", @@ -63038,8 +93126,13 @@ "und": "Detroit Lions", "sF": "17", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.0, + "pScore": { + "sU": 14.75, + "sF": 21.25 + }, + "week": "1989 Regular Season - Week 14" }, { "date": "Dec 10, 1989", @@ -63049,7 +93142,12 @@ "sF": "17", "sU": "24", "spread": "10", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.5, + "sF": 23.5 + }, + "week": "1989 Regular Season - Week 14" }, { "date": "Dec 10, 1989", @@ -63059,7 +93157,12 @@ "sF": "3", "sU": "21", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1989 Regular Season - Week 14" }, { "date": "Dec 10, 1989", @@ -63069,7 +93172,12 @@ "sF": "20", "sU": "17", "spread": "8", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.0, + "sF": 26.0 + }, + "week": "1989 Regular Season - Week 14" }, { "date": "Dec 10, 1989", @@ -63078,8 +93186,13 @@ "und": "Atlanta Falcons", "sF": "43", "sU": "17", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 40.0, + "pScore": { + "sU": 13.75, + "sF": 26.25 + }, + "week": "1989 Regular Season - Week 14" }, { "date": "Dec 10, 1989", @@ -63089,7 +93202,12 @@ "sF": "0", "sU": "13", "spread": "1", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.5, + "sF": 19.5 + }, + "week": "1989 Regular Season - Week 14" }, { "date": "Dec 10, 1989", @@ -63099,7 +93217,12 @@ "sF": "20", "sU": "10", "spread": "12", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 13.0, + "sF": 25.0 + }, + "week": "1989 Regular Season - Week 14" }, { "date": "Dec 10, 1989", @@ -63108,8 +93231,13 @@ "und": "San Diego Chargers", "sF": "26", "sU": "21", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 37.0, + "pScore": { + "sU": 13.75, + "sF": 23.25 + }, + "week": "1989 Regular Season - Week 14" }, { "date": "Dec 10, 1989", @@ -63119,7 +93247,12 @@ "sF": "7", "sU": "14", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1989 Regular Season - Week 14" }, { "date": "Dec 10, 1989", @@ -63128,8 +93261,13 @@ "und": "Indianapolis Colts", "sF": "17", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.0, + "pScore": { + "sU": 17.75, + "sF": 19.25 + }, + "week": "1989 Regular Season - Week 14" }, { "date": "Dec 10, 1989", @@ -63138,8 +93276,13 @@ "und": "Phoenix Cardinals", "sF": "16", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 40.0, + "pScore": { + "sU": 15.25, + "sF": 24.75 + }, + "week": "1989 Regular Season - Week 14" }, { "date": "Dec 10, 1989", @@ -63149,7 +93292,12 @@ "sF": "31", "sU": "10", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1989 Regular Season - Week 14" }, { "date": "Dec 11, 1989", @@ -63159,7 +93307,12 @@ "sF": "30", "sU": "27", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "1989 Regular Season - Week 14" }, { "date": "Dec 16, 1989", @@ -63169,7 +93322,12 @@ "sF": "15", "sU": "0", "spread": "12", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 11.5, + "sF": 23.5 + }, + "week": "1989 Regular Season - Week 15" }, { "date": "Dec 16, 1989", @@ -63179,7 +93337,12 @@ "sF": "37", "sU": "0", "spread": "7", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.75, + "sF": 22.75 + }, + "week": "1989 Regular Season - Week 15" }, { "date": "Dec 17, 1989", @@ -63189,7 +93352,12 @@ "sF": "28", "sU": "40", "spread": "2", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.5, + "sF": 18.5 + }, + "week": "1989 Regular Season - Week 15" }, { "date": "Dec 17, 1989", @@ -63198,8 +93366,13 @@ "und": "Houston Oilers", "sF": "61", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1989 Regular Season - Week 15" }, { "date": "Dec 17, 1989", @@ -63208,8 +93381,13 @@ "und": "Cleveland Browns", "sF": "17", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 34.0, + "pScore": { + "sU": 16.25, + "sF": 17.75 + }, + "week": "1989 Regular Season - Week 15" }, { "date": "Dec 17, 1989", @@ -63219,7 +93397,12 @@ "sF": "33", "sU": "7", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "1989 Regular Season - Week 15" }, { "date": "Dec 17, 1989", @@ -63229,7 +93412,12 @@ "sF": "13", "sU": "42", "spread": "1", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.75, + "sF": 20.75 + }, + "week": "1989 Regular Season - Week 15" }, { "date": "Dec 17, 1989", @@ -63239,7 +93427,12 @@ "sF": "13", "sU": "20", "spread": "8", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 13.5, + "sF": 21.5 + }, + "week": "1989 Regular Season - Week 15" }, { "date": "Dec 17, 1989", @@ -63249,7 +93442,12 @@ "sF": "28", "sU": "10", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1989 Regular Season - Week 15" }, { "date": "Dec 17, 1989", @@ -63259,7 +93457,12 @@ "sF": "31", "sU": "30", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "1989 Regular Season - Week 15" }, { "date": "Dec 17, 1989", @@ -63269,7 +93472,12 @@ "sF": "38", "sU": "14", "spread": "13", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 15.0, + "sF": 28.0 + }, + "week": "1989 Regular Season - Week 15" }, { "date": "Dec 17, 1989", @@ -63279,7 +93487,12 @@ "sF": "21", "sU": "10", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1989 Regular Season - Week 15" }, { "date": "Dec 17, 1989", @@ -63289,7 +93502,12 @@ "sF": "17", "sU": "23", "spread": "1", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.5, + "sF": 19.5 + }, + "week": "1989 Regular Season - Week 15" }, { "date": "Dec 18, 1989", @@ -63298,8 +93516,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "30", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.0, + "pScore": { + "sU": 18.75, + "sF": 20.25 + }, + "week": "1989 Regular Season - Week 15" }, { "date": "Dec 23, 1989", @@ -63309,7 +93532,12 @@ "sF": "37", "sU": "0", "spread": "8", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 13.5, + "sF": 21.5 + }, + "week": "1989 Regular Season - Week 16" }, { "date": "Dec 23, 1989", @@ -63319,7 +93547,12 @@ "sF": "0", "sU": "29", "spread": "2", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.75, + "sF": 22.75 + }, + "week": "1989 Regular Season - Week 16" }, { "date": "Dec 23, 1989", @@ -63328,8 +93561,13 @@ "und": "Cleveland Browns", "sF": "20", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1989 Regular Season - Week 16" }, { "date": "Dec 24, 1989", @@ -63339,7 +93577,12 @@ "sF": "31", "sU": "24", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1989 Regular Season - Week 16" }, { "date": "Dec 24, 1989", @@ -63349,7 +93592,12 @@ "sF": "20", "sU": "10", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1989 Regular Season - Week 16" }, { "date": "Dec 24, 1989", @@ -63359,7 +93607,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1989 Regular Season - Week 16" }, { "date": "Dec 24, 1989", @@ -63368,8 +93621,13 @@ "und": "New England Patriots", "sF": "24", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.0, + "pScore": { + "sU": 14.75, + "sF": 21.25 + }, + "week": "1989 Regular Season - Week 16" }, { "date": "Dec 24, 1989", @@ -63378,8 +93636,13 @@ "und": "Indianapolis Colts", "sF": "41", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "1989 Regular Season - Week 16" }, { "date": "Dec 24, 1989", @@ -63389,7 +93652,12 @@ "sF": "34", "sU": "17", "spread": "7", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 13.75, + "sF": 20.75 + }, + "week": "1989 Regular Season - Week 16" }, { "date": "Dec 24, 1989", @@ -63398,8 +93666,13 @@ "und": "Phoenix Cardinals", "sF": "31", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 35.0, + "pScore": { + "sU": 10.75, + "sF": 24.25 + }, + "week": "1989 Regular Season - Week 16" }, { "date": "Dec 24, 1989", @@ -63409,7 +93682,12 @@ "sF": "31", "sU": "22", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1989 Regular Season - Week 16" }, { "date": "Dec 24, 1989", @@ -63418,8 +93696,13 @@ "und": "San Diego Chargers", "sF": "16", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "1989 Regular Season - Week 16" }, { "date": "Dec 24, 1989", @@ -63429,7 +93712,12 @@ "sF": "26", "sU": "0", "spread": "9", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 17.25, + "sF": 26.25 + }, + "week": "1989 Regular Season - Week 16" }, { "date": "Dec 25, 1989", @@ -63439,7 +93727,12 @@ "sF": "29", "sU": "21", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1989 Regular Season - Week 16" }, { "date": "Dec 31, 1989", @@ -63449,7 +93742,12 @@ "sF": "7", "sU": "21", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1989 Playoffs" }, { "date": "Dec 31, 1989", @@ -63459,7 +93757,12 @@ "sF": "23", "sU": "26", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1989 Playoffs" }, { "date": "Jan 6, 1990", @@ -63468,8 +93771,13 @@ "und": "Buffalo Bills (3)", "sF": "34", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1989 Playoffs" }, { "date": "Jan 6, 1990", @@ -63478,8 +93786,13 @@ "und": "Minnesota Vikings (3)", "sF": "41", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "1989 Playoffs" }, { "date": "Jan 7, 1990", @@ -63489,7 +93802,12 @@ "sF": "13", "sU": "19", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1989 Playoffs" }, { "date": "Jan 7, 1990", @@ -63499,7 +93817,12 @@ "sF": "24", "sU": "23", "spread": "10", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.0, + "sF": 24.0 + }, + "week": "1989 Playoffs" }, { "date": "Jan 14, 1990", @@ -63508,8 +93831,13 @@ "und": "Cleveland Browns (2)", "sF": "37", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1989 Playoffs" }, { "date": "Jan 14, 1990", @@ -63519,7 +93847,12 @@ "sF": "30", "sU": "3", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "1989 Playoffs" }, { "date": "Jan 28, 1990", @@ -63529,7 +93862,12 @@ "sF": "55", "sU": "10", "spread": "12", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 18.0, + "sF": 30.0 + }, + "week": "1989 Playoffs" }, { "date": "Sep 9, 1990", @@ -63539,7 +93877,12 @@ "sF": "17", "sU": "0", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1990 Regular Season - Week 1" }, { "date": "Sep 9, 1990", @@ -63548,8 +93891,13 @@ "und": "Tampa Bay Buccaneers", "sF": "21", "sU": "38", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "1990 Regular Season - Week 1" }, { "date": "Sep 9, 1990", @@ -63558,8 +93906,13 @@ "und": "Green Bay Packers", "sF": "24", "sU": "36", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1990 Regular Season - Week 1" }, { "date": "Sep 9, 1990", @@ -63568,8 +93921,13 @@ "und": "Kansas City Chiefs", "sF": "21", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.0, + "pScore": { + "sU": 17.75, + "sF": 19.25 + }, + "week": "1990 Regular Season - Week 1" }, { "date": "Sep 9, 1990", @@ -63579,7 +93937,12 @@ "sF": "31", "sU": "0", "spread": "12", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 15.5, + "sF": 27.5 + }, + "week": "1990 Regular Season - Week 1" }, { "date": "Sep 9, 1990", @@ -63589,7 +93952,12 @@ "sF": "47", "sU": "27", "spread": "1", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.5, + "sF": 23.5 + }, + "week": "1990 Regular Season - Week 1" }, { "date": "Sep 9, 1990", @@ -63598,8 +93966,13 @@ "und": "Indianapolis Colts", "sF": "26", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.0, + "pScore": { + "sU": 14.75, + "sF": 22.25 + }, + "week": "1990 Regular Season - Week 1" }, { "date": "Sep 9, 1990", @@ -63609,7 +93982,12 @@ "sF": "25", "sU": "20", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "1990 Regular Season - Week 1" }, { "date": "Sep 9, 1990", @@ -63619,7 +93997,12 @@ "sF": "13", "sU": "3", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1990 Regular Season - Week 1" }, { "date": "Sep 9, 1990", @@ -63629,7 +94012,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1990 Regular Season - Week 1" }, { "date": "Sep 9, 1990", @@ -63638,8 +94026,13 @@ "und": "Los Angeles Raiders", "sF": "9", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.0, + "pScore": { + "sU": 18.75, + "sF": 20.25 + }, + "week": "1990 Regular Season - Week 1" }, { "date": "Sep 9, 1990", @@ -63648,8 +94041,13 @@ "und": "New England Patriots", "sF": "27", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.0, + "pScore": { + "sU": 18.75, + "sF": 20.25 + }, + "week": "1990 Regular Season - Week 1" }, { "date": "Sep 9, 1990", @@ -63659,7 +94057,12 @@ "sF": "27", "sU": "20", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1990 Regular Season - Week 1" }, { "date": "Sep 10, 1990", @@ -63668,8 +94071,13 @@ "und": "New Orleans Saints", "sF": "13", "sU": "12", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.0, + "pScore": { + "sU": 19.75, + "sF": 24.25 + }, + "week": "1990 Regular Season - Week 1" }, { "date": "Sep 16, 1990", @@ -63678,8 +94086,13 @@ "und": "Atlanta Falcons", "sF": "21", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 50.0, + "pScore": { + "sU": 23.25, + "sF": 26.75 + }, + "week": "1990 Regular Season - Week 2" }, { "date": "Sep 16, 1990", @@ -63689,7 +94102,12 @@ "sF": "13", "sU": "31", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1990 Regular Season - Week 2" }, { "date": "Sep 16, 1990", @@ -63698,8 +94116,13 @@ "und": "New England Patriots", "sF": "14", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "1990 Regular Season - Week 2" }, { "date": "Sep 16, 1990", @@ -63709,7 +94132,12 @@ "sF": "7", "sU": "30", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1990 Regular Season - Week 2" }, { "date": "Sep 16, 1990", @@ -63718,8 +94146,13 @@ "und": "New York Jets", "sF": "21", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1990 Regular Season - Week 2" }, { "date": "Sep 16, 1990", @@ -63728,8 +94161,13 @@ "und": "Phoenix Cardinals", "sF": "21", "sU": "23", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 37.0, + "pScore": { + "sU": 11.75, + "sF": 25.25 + }, + "week": "1990 Regular Season - Week 2" }, { "date": "Sep 16, 1990", @@ -63739,7 +94177,12 @@ "sF": "35", "sU": "14", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "1990 Regular Season - Week 2" }, { "date": "Sep 16, 1990", @@ -63748,8 +94191,13 @@ "und": "Dallas Cowboys", "sF": "28", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.0, + "pScore": { + "sU": 14.75, + "sF": 22.25 + }, + "week": "1990 Regular Season - Week 2" }, { "date": "Sep 16, 1990", @@ -63759,7 +94207,12 @@ "sF": "32", "sU": "3", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1990 Regular Season - Week 2" }, { "date": "Sep 16, 1990", @@ -63769,7 +94222,12 @@ "sF": "21", "sU": "16", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1990 Regular Season - Week 2" }, { "date": "Sep 16, 1990", @@ -63779,7 +94237,12 @@ "sF": "26", "sU": "13", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "1990 Regular Season - Week 2" }, { "date": "Sep 16, 1990", @@ -63789,7 +94252,12 @@ "sF": "17", "sU": "13", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "1990 Regular Season - Week 2" }, { "date": "Sep 16, 1990", @@ -63798,8 +94266,13 @@ "und": "Houston Oilers", "sF": "20", "sU": "9", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1990 Regular Season - Week 2" }, { "date": "Sep 17, 1990", @@ -63809,7 +94282,12 @@ "sF": "24", "sU": "23", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1990 Regular Season - Week 2" }, { "date": "Sep 23, 1990", @@ -63818,8 +94296,13 @@ "und": "Minnesota Vikings", "sF": "19", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1990 Regular Season - Week 3" }, { "date": "Sep 23, 1990", @@ -63828,8 +94311,13 @@ "und": "New England Patriots", "sF": "41", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.0, + "pScore": { + "sU": 16.25, + "sF": 25.75 + }, + "week": "1990 Regular Season - Week 3" }, { "date": "Sep 23, 1990", @@ -63839,7 +94327,12 @@ "sF": "14", "sU": "24", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1990 Regular Season - Week 3" }, { "date": "Sep 23, 1990", @@ -63848,8 +94341,13 @@ "und": "Kansas City Chiefs", "sF": "3", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1990 Regular Season - Week 3" }, { "date": "Sep 23, 1990", @@ -63858,8 +94356,13 @@ "und": "Indianapolis Colts", "sF": "24", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 41.0, + "pScore": { + "sU": 15.75, + "sF": 25.25 + }, + "week": "1990 Regular Season - Week 3" }, { "date": "Sep 23, 1990", @@ -63868,8 +94371,13 @@ "und": "Phoenix Cardinals", "sF": "28", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 37.0, + "pScore": { + "sU": 13.75, + "sF": 23.25 + }, + "week": "1990 Regular Season - Week 3" }, { "date": "Sep 23, 1990", @@ -63878,8 +94386,13 @@ "und": "Miami Dolphins", "sF": "20", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1990 Regular Season - Week 3" }, { "date": "Sep 23, 1990", @@ -63889,7 +94402,12 @@ "sF": "19", "sU": "15", "spread": "14", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 14.0, + "sF": 28.0 + }, + "week": "1990 Regular Season - Week 3" }, { "date": "Sep 23, 1990", @@ -63899,7 +94417,12 @@ "sF": "34", "sU": "31", "spread": "9", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.0, + "sF": 23.0 + }, + "week": "1990 Regular Season - Week 3" }, { "date": "Sep 23, 1990", @@ -63908,8 +94431,13 @@ "und": "Pittsburgh Steelers", "sF": "20", "sU": "3", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 35.0, + "pScore": { + "sU": 14.75, + "sF": 20.25 + }, + "week": "1990 Regular Season - Week 3" }, { "date": "Sep 23, 1990", @@ -63918,8 +94446,13 @@ "und": "Philadelphia Eagles", "sF": "21", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.0, + "pScore": { + "sU": 20.25, + "sF": 25.75 + }, + "week": "1990 Regular Season - Week 3" }, { "date": "Sep 23, 1990", @@ -63928,8 +94461,13 @@ "und": "Atlanta Falcons", "sF": "19", "sU": "13", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 46.0, + "pScore": { + "sU": 17.25, + "sF": 28.75 + }, + "week": "1990 Regular Season - Week 3" }, { "date": "Sep 23, 1990", @@ -63939,7 +94477,12 @@ "sF": "23", "sU": "20", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "1990 Regular Season - Week 3" }, { "date": "Sep 30, 1990", @@ -63949,7 +94492,12 @@ "sF": "29", "sU": "28", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1990 Regular Season - Week 4" }, { "date": "Sep 30, 1990", @@ -63958,8 +94506,13 @@ "und": "Green Bay Packers", "sF": "21", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "1990 Regular Season - Week 4" }, { "date": "Sep 30, 1990", @@ -63969,7 +94522,12 @@ "sF": "20", "sU": "23", "spread": "8", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.0, + "sF": 24.0 + }, + "week": "1990 Regular Season - Week 4" }, { "date": "Sep 30, 1990", @@ -63978,8 +94536,13 @@ "und": "Dallas Cowboys", "sF": "31", "sU": "17", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 36.0, + "pScore": { + "sU": 11.25, + "sF": 24.75 + }, + "week": "1990 Regular Season - Week 4" }, { "date": "Sep 30, 1990", @@ -63989,7 +94552,12 @@ "sF": "23", "sU": "24", "spread": "13", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 12.0, + "sF": 25.0 + }, + "week": "1990 Regular Season - Week 4" }, { "date": "Sep 30, 1990", @@ -63999,7 +94567,12 @@ "sF": "28", "sU": "6", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "1990 Regular Season - Week 4" }, { "date": "Sep 30, 1990", @@ -64008,8 +94581,13 @@ "und": "Cleveland Browns", "sF": "34", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.0, + "pScore": { + "sU": 14.75, + "sF": 21.25 + }, + "week": "1990 Regular Season - Week 4" }, { "date": "Sep 30, 1990", @@ -64018,8 +94596,13 @@ "und": "Chicago Bears", "sF": "24", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 34.0, + "pScore": { + "sU": 16.25, + "sF": 17.75 + }, + "week": "1990 Regular Season - Week 4" }, { "date": "Sep 30, 1990", @@ -64028,8 +94611,13 @@ "und": "Houston Oilers", "sF": "7", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1990 Regular Season - Week 4" }, { "date": "Sep 30, 1990", @@ -64038,8 +94626,13 @@ "und": "Phoenix Cardinals", "sF": "38", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "1990 Regular Season - Week 4" }, { "date": "Oct 1, 1990", @@ -64048,8 +94641,13 @@ "und": "Seattle Seahawks", "sF": "16", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1990 Regular Season - Week 4" }, { "date": "Oct 7, 1990", @@ -64058,8 +94656,13 @@ "und": "New Orleans Saints", "sF": "28", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1990 Regular Season - Week 5" }, { "date": "Oct 7, 1990", @@ -64068,8 +94671,13 @@ "und": "Dallas Cowboys", "sF": "10", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1990 Regular Season - Week 5" }, { "date": "Oct 7, 1990", @@ -64078,8 +94686,13 @@ "und": "Houston Oilers", "sF": "24", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.0, + "pScore": { + "sU": 20.25, + "sF": 25.75 + }, + "week": "1990 Regular Season - Week 5" }, { "date": "Oct 7, 1990", @@ -64089,7 +94702,12 @@ "sF": "19", "sU": "23", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1990 Regular Season - Week 5" }, { "date": "Oct 7, 1990", @@ -64098,8 +94716,13 @@ "und": "New York Jets", "sF": "20", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1990 Regular Season - Week 5" }, { "date": "Oct 7, 1990", @@ -64109,7 +94732,12 @@ "sF": "27", "sU": "34", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1990 Regular Season - Week 5" }, { "date": "Oct 7, 1990", @@ -64119,7 +94747,12 @@ "sF": "33", "sU": "20", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1990 Regular Season - Week 5" }, { "date": "Oct 7, 1990", @@ -64129,7 +94762,12 @@ "sF": "14", "sU": "36", "spread": "1", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 16.5, + "sF": 17.5 + }, + "week": "1990 Regular Season - Week 5" }, { "date": "Oct 7, 1990", @@ -64139,7 +94777,12 @@ "sF": "27", "sU": "13", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1990 Regular Season - Week 5" }, { "date": "Oct 7, 1990", @@ -64149,7 +94792,12 @@ "sF": "31", "sU": "34", "spread": "5", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.0, + "sF": 26.0 + }, + "week": "1990 Regular Season - Week 5" }, { "date": "Oct 7, 1990", @@ -64159,7 +94807,12 @@ "sF": "38", "sU": "24", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1990 Regular Season - Week 5" }, { "date": "Oct 8, 1990", @@ -64168,8 +94821,13 @@ "und": "Cleveland Browns", "sF": "29", "sU": "30", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 39.0, + "pScore": { + "sU": 14.75, + "sF": 24.25 + }, + "week": "1990 Regular Season - Week 5" }, { "date": "Oct 14, 1990", @@ -64178,8 +94836,13 @@ "und": "Atlanta Falcons", "sF": "45", "sU": "35", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.0, + "pScore": { + "sU": 20.25, + "sF": 25.75 + }, + "week": "1990 Regular Season - Week 6" }, { "date": "Oct 14, 1990", @@ -64189,7 +94852,12 @@ "sF": "48", "sU": "17", "spread": "4", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.0, + "sF": 26.0 + }, + "week": "1990 Regular Season - Week 6" }, { "date": "Oct 14, 1990", @@ -64198,8 +94866,13 @@ "und": "Detroit Lions", "sF": "43", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1990 Regular Season - Week 6" }, { "date": "Oct 14, 1990", @@ -64209,7 +94882,12 @@ "sF": "25", "sU": "20", "spread": "5", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.5, + "sF": 21.5 + }, + "week": "1990 Regular Season - Week 6" }, { "date": "Oct 14, 1990", @@ -64219,7 +94897,12 @@ "sF": "3", "sU": "39", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1990 Regular Season - Week 6" }, { "date": "Oct 14, 1990", @@ -64228,8 +94911,13 @@ "und": "Green Bay Packers", "sF": "26", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "1990 Regular Season - Week 6" }, { "date": "Oct 14, 1990", @@ -64238,8 +94926,13 @@ "und": "Pittsburgh Steelers", "sF": "17", "sU": "34", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.0, + "pScore": { + "sU": 15.75, + "sF": 23.25 + }, + "week": "1990 Regular Season - Week 6" }, { "date": "Oct 14, 1990", @@ -64248,8 +94941,13 @@ "und": "Seattle Seahawks", "sF": "24", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "1990 Regular Season - Week 6" }, { "date": "Oct 14, 1990", @@ -64258,8 +94956,13 @@ "und": "Dallas Cowboys", "sF": "20", "sU": "3", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.0, + "pScore": { + "sU": 17.75, + "sF": 19.25 + }, + "week": "1990 Regular Season - Week 6" }, { "date": "Oct 14, 1990", @@ -64269,7 +94972,12 @@ "sF": "24", "sU": "20", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "1990 Regular Season - Week 6" }, { "date": "Oct 14, 1990", @@ -64279,7 +94987,12 @@ "sF": "38", "sU": "9", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1990 Regular Season - Week 6" }, { "date": "Oct 15, 1990", @@ -64288,8 +95001,13 @@ "und": "Minnesota Vikings", "sF": "32", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "1990 Regular Season - Week 6" }, { "date": "Oct 18, 1990", @@ -64299,7 +95017,12 @@ "sF": "17", "sU": "10", "spread": "10", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.0, + "sF": 26.0 + }, + "week": "1990 Regular Season - Week 7" }, { "date": "Oct 21, 1990", @@ -64309,7 +95032,12 @@ "sF": "30", "sU": "27", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "1990 Regular Season - Week 7" }, { "date": "Oct 21, 1990", @@ -64319,7 +95047,12 @@ "sF": "23", "sU": "10", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1990 Regular Season - Week 7" }, { "date": "Oct 21, 1990", @@ -64329,7 +95062,12 @@ "sF": "17", "sU": "27", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "1990 Regular Season - Week 7" }, { "date": "Oct 21, 1990", @@ -64338,8 +95076,13 @@ "und": "Dallas Cowboys", "sF": "13", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.0, + "pScore": { + "sU": 14.75, + "sF": 23.25 + }, + "week": "1990 Regular Season - Week 7" }, { "date": "Oct 21, 1990", @@ -64349,7 +95092,12 @@ "sF": "13", "sU": "7", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "1990 Regular Season - Week 7" }, { "date": "Oct 21, 1990", @@ -64359,7 +95107,12 @@ "sF": "44", "sU": "24", "spread": "6", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 22.0, + "sF": 28.0 + }, + "week": "1990 Regular Season - Week 7" }, { "date": "Oct 21, 1990", @@ -64368,8 +95121,13 @@ "und": "Phoenix Cardinals", "sF": "20", "sU": "19", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 38.0, + "pScore": { + "sU": 12.25, + "sF": 25.75 + }, + "week": "1990 Regular Season - Week 7" }, { "date": "Oct 21, 1990", @@ -64379,7 +95137,12 @@ "sF": "24", "sU": "9", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1990 Regular Season - Week 7" }, { "date": "Oct 21, 1990", @@ -64389,7 +95152,12 @@ "sF": "27", "sU": "7", "spread": "10", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.0, + "sF": 26.0 + }, + "week": "1990 Regular Season - Week 7" }, { "date": "Oct 21, 1990", @@ -64398,8 +95166,13 @@ "und": "Kansas City Chiefs", "sF": "19", "sU": "7", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "1990 Regular Season - Week 7" }, { "date": "Oct 22, 1990", @@ -64408,8 +95181,13 @@ "und": "Cincinnati Bengals", "sF": "13", "sU": "34", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1990 Regular Season - Week 7" }, { "date": "Oct 28, 1990", @@ -64418,8 +95196,13 @@ "und": "Dallas Cowboys", "sF": "21", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1990 Regular Season - Week 8" }, { "date": "Oct 28, 1990", @@ -64429,7 +95212,12 @@ "sF": "24", "sU": "10", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1990 Regular Season - Week 8" }, { "date": "Oct 28, 1990", @@ -64438,8 +95226,13 @@ "und": "New York Jets", "sF": "12", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 46.0, + "pScore": { + "sU": 18.75, + "sF": 27.25 + }, + "week": "1990 Regular Season - Week 8" }, { "date": "Oct 28, 1990", @@ -64448,8 +95241,13 @@ "und": "Indianapolis Colts", "sF": "27", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1990 Regular Season - Week 8" }, { "date": "Oct 28, 1990", @@ -64459,7 +95257,12 @@ "sF": "27", "sU": "10", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1990 Regular Season - Week 8" }, { "date": "Oct 28, 1990", @@ -64469,7 +95272,12 @@ "sF": "10", "sU": "27", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1990 Regular Season - Week 8" }, { "date": "Oct 28, 1990", @@ -64478,8 +95286,13 @@ "und": "Washington Redskins", "sF": "21", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1990 Regular Season - Week 8" }, { "date": "Oct 28, 1990", @@ -64488,8 +95301,13 @@ "und": "Phoenix Cardinals", "sF": "31", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "1990 Regular Season - Week 8" }, { "date": "Oct 28, 1990", @@ -64498,8 +95316,13 @@ "und": "Tampa Bay Buccaneers", "sF": "41", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1990 Regular Season - Week 8" }, { "date": "Oct 28, 1990", @@ -64509,7 +95332,12 @@ "sF": "20", "sU": "17", "spread": "13", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 14.5, + "sF": 27.5 + }, + "week": "1990 Regular Season - Week 8" }, { "date": "Oct 29, 1990", @@ -64519,7 +95347,12 @@ "sF": "41", "sU": "10", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "1990 Regular Season - Week 8" }, { "date": "Nov 4, 1990", @@ -64529,7 +95362,12 @@ "sF": "7", "sU": "21", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "1990 Regular Season - Week 9" }, { "date": "Nov 4, 1990", @@ -64539,7 +95377,12 @@ "sF": "41", "sU": "38", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1990 Regular Season - Week 9" }, { "date": "Nov 4, 1990", @@ -64549,7 +95392,12 @@ "sF": "24", "sU": "20", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1990 Regular Season - Week 9" }, { "date": "Nov 4, 1990", @@ -64559,7 +95407,12 @@ "sF": "9", "sU": "7", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1990 Regular Season - Week 9" }, { "date": "Nov 4, 1990", @@ -64568,8 +95421,13 @@ "und": "Phoenix Cardinals", "sF": "23", "sU": "3", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 39.0, + "pScore": { + "sU": 14.75, + "sF": 24.25 + }, + "week": "1990 Regular Season - Week 9" }, { "date": "Nov 4, 1990", @@ -64578,8 +95436,13 @@ "und": "Dallas Cowboys", "sF": "24", "sU": "9", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.0, + "pScore": { + "sU": 16.75, + "sF": 21.25 + }, + "week": "1990 Regular Season - Week 9" }, { "date": "Nov 4, 1990", @@ -64589,7 +95452,12 @@ "sF": "48", "sU": "20", "spread": "9", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.5, + "sF": 23.5 + }, + "week": "1990 Regular Season - Week 9" }, { "date": "Nov 4, 1990", @@ -64599,7 +95467,12 @@ "sF": "21", "sU": "9", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1990 Regular Season - Week 9" }, { "date": "Nov 4, 1990", @@ -64609,7 +95482,12 @@ "sF": "42", "sU": "0", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1990 Regular Season - Week 9" }, { "date": "Nov 4, 1990", @@ -64619,7 +95497,12 @@ "sF": "17", "sU": "13", "spread": "4", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 23.5, + "sF": 27.5 + }, + "week": "1990 Regular Season - Week 9" }, { "date": "Nov 4, 1990", @@ -64629,7 +95512,12 @@ "sF": "14", "sU": "31", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "1990 Regular Season - Week 9" }, { "date": "Nov 4, 1990", @@ -64639,7 +95527,12 @@ "sF": "26", "sU": "6", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "1990 Regular Season - Week 9" }, { "date": "Nov 4, 1990", @@ -64649,7 +95542,12 @@ "sF": "22", "sU": "27", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "1990 Regular Season - Week 9" }, { "date": "Nov 5, 1990", @@ -64659,7 +95557,12 @@ "sF": "24", "sU": "7", "spread": "10", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.5, + "sF": 23.5 + }, + "week": "1990 Regular Season - Week 9" }, { "date": "Nov 11, 1990", @@ -64668,8 +95571,13 @@ "und": "Phoenix Cardinals", "sF": "45", "sU": "14", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 38.0, + "pScore": { + "sU": 12.75, + "sF": 25.25 + }, + "week": "1990 Regular Season - Week 10" }, { "date": "Nov 11, 1990", @@ -64679,7 +95587,12 @@ "sF": "30", "sU": "24", "spread": "9", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.0, + "sF": 25.0 + }, + "week": "1990 Regular Season - Week 10" }, { "date": "Nov 11, 1990", @@ -64688,8 +95601,13 @@ "und": "Minnesota Vikings", "sF": "7", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "1990 Regular Season - Week 10" }, { "date": "Nov 11, 1990", @@ -64698,8 +95616,13 @@ "und": "Seattle Seahawks", "sF": "16", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "1990 Regular Season - Week 10" }, { "date": "Nov 11, 1990", @@ -64709,7 +95632,12 @@ "sF": "10", "sU": "13", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1990 Regular Season - Week 10" }, { "date": "Nov 11, 1990", @@ -64719,7 +95647,12 @@ "sF": "35", "sU": "7", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1990 Regular Season - Week 10" }, { "date": "Nov 11, 1990", @@ -64728,8 +95661,13 @@ "und": "New York Jets", "sF": "17", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1990 Regular Season - Week 10" }, { "date": "Nov 11, 1990", @@ -64739,7 +95677,12 @@ "sF": "16", "sU": "29", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1990 Regular Season - Week 10" }, { "date": "Nov 11, 1990", @@ -64749,7 +95692,12 @@ "sF": "31", "sU": "7", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1990 Regular Season - Week 10" }, { "date": "Nov 11, 1990", @@ -64758,8 +95706,13 @@ "und": "Denver Broncos", "sF": "19", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1990 Regular Season - Week 10" }, { "date": "Nov 11, 1990", @@ -64769,7 +95722,12 @@ "sF": "24", "sU": "6", "spread": "10", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.0, + "sF": 25.0 + }, + "week": "1990 Regular Season - Week 10" }, { "date": "Nov 12, 1990", @@ -64779,7 +95737,12 @@ "sF": "28", "sU": "14", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1990 Regular Season - Week 10" }, { "date": "Nov 18, 1990", @@ -64789,7 +95752,12 @@ "sF": "23", "sU": "24", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "1990 Regular Season - Week 11" }, { "date": "Nov 18, 1990", @@ -64799,7 +95767,12 @@ "sF": "14", "sU": "0", "spread": "15", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 12.0, + "sF": 27.0 + }, + "week": "1990 Regular Season - Week 11" }, { "date": "Nov 18, 1990", @@ -64808,8 +95781,13 @@ "und": "Cleveland Browns", "sF": "35", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1990 Regular Season - Week 11" }, { "date": "Nov 18, 1990", @@ -64818,8 +95796,13 @@ "und": "San Diego Chargers", "sF": "27", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "1990 Regular Season - Week 11" }, { "date": "Nov 18, 1990", @@ -64828,8 +95811,13 @@ "und": "Detroit Lions", "sF": "20", "sU": "0", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 40.0, + "pScore": { + "sU": 13.75, + "sF": 26.25 + }, + "week": "1990 Regular Season - Week 11" }, { "date": "Nov 18, 1990", @@ -64838,8 +95826,13 @@ "und": "New Orleans Saints", "sF": "31", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1990 Regular Season - Week 11" }, { "date": "Nov 18, 1990", @@ -64848,8 +95841,13 @@ "und": "Denver Broncos", "sF": "16", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1990 Regular Season - Week 11" }, { "date": "Nov 18, 1990", @@ -64859,7 +95857,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1990 Regular Season - Week 11" }, { "date": "Nov 18, 1990", @@ -64869,7 +95872,12 @@ "sF": "21", "sU": "24", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "1990 Regular Season - Week 11" }, { "date": "Nov 18, 1990", @@ -64879,7 +95887,12 @@ "sF": "24", "sU": "21", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "1990 Regular Season - Week 11" }, { "date": "Nov 18, 1990", @@ -64888,8 +95901,13 @@ "und": "Tampa Bay Buccaneers", "sF": "31", "sU": "7", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 43.0, + "pScore": { + "sU": 14.25, + "sF": 28.75 + }, + "week": "1990 Regular Season - Week 11" }, { "date": "Nov 18, 1990", @@ -64898,8 +95916,13 @@ "und": "Minnesota Vikings", "sF": "21", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1990 Regular Season - Week 11" }, { "date": "Nov 18, 1990", @@ -64908,8 +95931,13 @@ "und": "Pittsburgh Steelers", "sF": "27", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1990 Regular Season - Week 11" }, { "date": "Nov 19, 1990", @@ -64918,8 +95946,13 @@ "und": "Los Angeles Raiders", "sF": "10", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1990 Regular Season - Week 11" }, { "date": "Nov 22, 1990", @@ -64929,7 +95962,12 @@ "sF": "40", "sU": "27", "spread": "1", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 22.0, + "sF": 23.0 + }, + "week": "1990 Regular Season - Week 12" }, { "date": "Nov 22, 1990", @@ -64938,8 +95976,13 @@ "und": "Dallas Cowboys", "sF": "17", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.0, + "pScore": { + "sU": 16.75, + "sF": 22.25 + }, + "week": "1990 Regular Season - Week 12" }, { "date": "Nov 25, 1990", @@ -64948,8 +95991,13 @@ "und": "Indianapolis Colts", "sF": "20", "sU": "34", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 41.0, + "pScore": { + "sU": 14.75, + "sF": 26.25 + }, + "week": "1990 Regular Season - Week 12" }, { "date": "Nov 25, 1990", @@ -64959,7 +96007,12 @@ "sF": "30", "sU": "13", "spread": "5", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.5, + "sF": 20.5 + }, + "week": "1990 Regular Season - Week 12" }, { "date": "Nov 25, 1990", @@ -64968,8 +96021,13 @@ "und": "Tampa Bay Buccaneers", "sF": "20", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.0, + "pScore": { + "sU": 15.75, + "sF": 23.25 + }, + "week": "1990 Regular Season - Week 12" }, { "date": "Nov 25, 1990", @@ -64978,8 +96036,13 @@ "und": "Minnesota Vikings", "sF": "13", "sU": "41", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1990 Regular Season - Week 12" }, { "date": "Nov 25, 1990", @@ -64988,8 +96051,13 @@ "und": "Atlanta Falcons", "sF": "10", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "1990 Regular Season - Week 12" }, { "date": "Nov 25, 1990", @@ -64999,7 +96067,12 @@ "sF": "13", "sU": "31", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1990 Regular Season - Week 12" }, { "date": "Nov 25, 1990", @@ -65009,7 +96082,12 @@ "sF": "24", "sU": "27", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1990 Regular Season - Week 12" }, { "date": "Nov 25, 1990", @@ -65018,8 +96096,13 @@ "und": "New York Jets", "sF": "24", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1990 Regular Season - Week 12" }, { "date": "Nov 25, 1990", @@ -65029,7 +96112,12 @@ "sF": "34", "sU": "14", "spread": "5", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.5, + "sF": 21.5 + }, + "week": "1990 Regular Season - Week 12" }, { "date": "Nov 25, 1990", @@ -65038,8 +96126,13 @@ "und": "Los Angeles Rams", "sF": "17", "sU": "28", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 47.0, + "pScore": { + "sU": 17.75, + "sF": 29.25 + }, + "week": "1990 Regular Season - Week 12" }, { "date": "Nov 25, 1990", @@ -65048,8 +96141,13 @@ "und": "Seattle Seahawks", "sF": "10", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1990 Regular Season - Week 12" }, { "date": "Nov 26, 1990", @@ -65059,7 +96157,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "1990 Regular Season - Week 12" }, { "date": "Dec 2, 1990", @@ -65069,7 +96172,12 @@ "sF": "30", "sU": "23", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1990 Regular Season - Week 13" }, { "date": "Dec 2, 1990", @@ -65078,8 +96186,13 @@ "und": "Detroit Lions", "sF": "23", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.0, + "pScore": { + "sU": 14.75, + "sF": 23.25 + }, + "week": "1990 Regular Season - Week 13" }, { "date": "Dec 2, 1990", @@ -65088,8 +96201,13 @@ "und": "Cleveland Browns", "sF": "38", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1990 Regular Season - Week 13" }, { "date": "Dec 2, 1990", @@ -65098,8 +96216,13 @@ "und": "New England Patriots", "sF": "37", "sU": "7", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 37.0, + "pScore": { + "sU": 14.25, + "sF": 22.75 + }, + "week": "1990 Regular Season - Week 13" }, { "date": "Dec 2, 1990", @@ -65108,8 +96231,13 @@ "und": "Cincinnati Bengals", "sF": "12", "sU": "16", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "1990 Regular Season - Week 13" }, { "date": "Dec 2, 1990", @@ -65118,8 +96246,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1990 Regular Season - Week 13" }, { "date": "Dec 2, 1990", @@ -65129,7 +96262,12 @@ "sF": "42", "sU": "20", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1990 Regular Season - Week 13" }, { "date": "Dec 2, 1990", @@ -65139,7 +96277,12 @@ "sF": "13", "sU": "17", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "1990 Regular Season - Week 13" }, { "date": "Dec 2, 1990", @@ -65148,8 +96291,13 @@ "und": "Denver Broncos", "sF": "23", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1990 Regular Season - Week 13" }, { "date": "Dec 2, 1990", @@ -65159,7 +96307,12 @@ "sF": "20", "sU": "17", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1990 Regular Season - Week 13" }, { "date": "Dec 2, 1990", @@ -65169,7 +96322,12 @@ "sF": "38", "sU": "17", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1990 Regular Season - Week 13" }, { "date": "Dec 2, 1990", @@ -65178,8 +96336,13 @@ "und": "Seattle Seahawks", "sF": "10", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "1990 Regular Season - Week 13" }, { "date": "Dec 2, 1990", @@ -65189,7 +96352,12 @@ "sF": "23", "sU": "7", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1990 Regular Season - Week 13" }, { "date": "Dec 3, 1990", @@ -65198,8 +96366,13 @@ "und": "New York Giants", "sF": "7", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1990 Regular Season - Week 13" }, { "date": "Dec 9, 1990", @@ -65209,7 +96382,12 @@ "sF": "13", "sU": "24", "spread": "5", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.5, + "sF": 23.5 + }, + "week": "1990 Regular Season - Week 14" }, { "date": "Dec 9, 1990", @@ -65218,8 +96396,13 @@ "und": "Cincinnati Bengals", "sF": "20", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "1990 Regular Season - Week 14" }, { "date": "Dec 9, 1990", @@ -65228,8 +96411,13 @@ "und": "Seattle Seahawks", "sF": "14", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1990 Regular Season - Week 14" }, { "date": "Dec 9, 1990", @@ -65239,7 +96427,12 @@ "sF": "58", "sU": "14", "spread": "13", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 15.5, + "sF": 28.5 + }, + "week": "1990 Regular Season - Week 14" }, { "date": "Dec 9, 1990", @@ -65248,8 +96441,13 @@ "und": "Indianapolis Colts", "sF": "31", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "1990 Regular Season - Week 14" }, { "date": "Dec 9, 1990", @@ -65258,8 +96456,13 @@ "und": "Minnesota Vikings", "sF": "23", "sU": "15", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.0, + "pScore": { + "sU": 14.75, + "sF": 21.25 + }, + "week": "1990 Regular Season - Week 14" }, { "date": "Dec 9, 1990", @@ -65268,8 +96471,13 @@ "und": "New England Patriots", "sF": "24", "sU": "3", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 36.0, + "pScore": { + "sU": 11.25, + "sF": 24.75 + }, + "week": "1990 Regular Season - Week 14" }, { "date": "Dec 9, 1990", @@ -65279,7 +96487,12 @@ "sF": "31", "sU": "20", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1990 Regular Season - Week 14" }, { "date": "Dec 9, 1990", @@ -65289,7 +96502,12 @@ "sF": "20", "sU": "24", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1990 Regular Season - Week 14" }, { "date": "Dec 9, 1990", @@ -65298,8 +96516,13 @@ "und": "Chicago Bears", "sF": "10", "sU": "9", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "1990 Regular Season - Week 14" }, { "date": "Dec 9, 1990", @@ -65309,7 +96532,12 @@ "sF": "23", "sU": "20", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "1990 Regular Season - Week 14" }, { "date": "Dec 10, 1990", @@ -65318,8 +96546,13 @@ "und": "Detroit Lions", "sF": "38", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1990 Regular Season - Week 14" }, { "date": "Dec 15, 1990", @@ -65329,7 +96562,12 @@ "sF": "13", "sU": "17", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1990 Regular Season - Week 15" }, { "date": "Dec 15, 1990", @@ -65339,7 +96577,12 @@ "sF": "25", "sU": "10", "spread": "14", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 12.0, + "sF": 26.0 + }, + "week": "1990 Regular Season - Week 15" }, { "date": "Dec 16, 1990", @@ -65348,8 +96591,13 @@ "und": "Phoenix Cardinals", "sF": "41", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.0, + "pScore": { + "sU": 16.25, + "sF": 20.75 + }, + "week": "1990 Regular Season - Week 15" }, { "date": "Dec 16, 1990", @@ -65358,8 +96606,13 @@ "und": "Houston Oilers", "sF": "10", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1990 Regular Season - Week 15" }, { "date": "Dec 16, 1990", @@ -65368,8 +96621,13 @@ "und": "Seattle Seahawks", "sF": "24", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.0, + "pScore": { + "sU": 16.25, + "sF": 20.75 + }, + "week": "1990 Regular Season - Week 15" }, { "date": "Dec 16, 1990", @@ -65379,7 +96637,12 @@ "sF": "6", "sU": "9", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1990 Regular Season - Week 15" }, { "date": "Dec 16, 1990", @@ -65388,8 +96651,13 @@ "und": "Indianapolis Colts", "sF": "21", "sU": "29", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1990 Regular Season - Week 15" }, { "date": "Dec 16, 1990", @@ -65398,8 +96666,13 @@ "und": "Tampa Bay Buccaneers", "sF": "13", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "1990 Regular Season - Week 15" }, { "date": "Dec 16, 1990", @@ -65408,8 +96681,13 @@ "und": "San Diego Chargers", "sF": "20", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1990 Regular Season - Week 15" }, { "date": "Dec 16, 1990", @@ -65418,8 +96696,13 @@ "und": "Cincinnati Bengals", "sF": "24", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "1990 Regular Season - Week 15" }, { "date": "Dec 16, 1990", @@ -65429,7 +96712,12 @@ "sF": "31", "sU": "0", "spread": "10", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.0, + "sF": 25.0 + }, + "week": "1990 Regular Season - Week 15" }, { "date": "Dec 16, 1990", @@ -65439,7 +96727,12 @@ "sF": "21", "sU": "38", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1990 Regular Season - Week 15" }, { "date": "Dec 17, 1990", @@ -65449,7 +96742,12 @@ "sF": "26", "sU": "10", "spread": "6", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.0, + "sF": 26.0 + }, + "week": "1990 Regular Season - Week 15" }, { "date": "Dec 22, 1990", @@ -65459,7 +96757,12 @@ "sF": "24", "sU": "17", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1990 Regular Season - Week 16" }, { "date": "Dec 22, 1990", @@ -65469,7 +96772,12 @@ "sF": "28", "sU": "24", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1990 Regular Season - Week 16" }, { "date": "Dec 22, 1990", @@ -65478,8 +96786,13 @@ "und": "Indianapolis Colts", "sF": "28", "sU": "35", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.0, + "pScore": { + "sU": 17.75, + "sF": 23.25 + }, + "week": "1990 Regular Season - Week 16" }, { "date": "Dec 23, 1990", @@ -65489,7 +96802,12 @@ "sF": "13", "sU": "20", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1990 Regular Season - Week 16" }, { "date": "Dec 23, 1990", @@ -65498,8 +96816,13 @@ "und": "Miami Dolphins", "sF": "24", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "1990 Regular Season - Week 16" }, { "date": "Dec 23, 1990", @@ -65508,8 +96831,13 @@ "und": "Tampa Bay Buccaneers", "sF": "27", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "1990 Regular Season - Week 16" }, { "date": "Dec 23, 1990", @@ -65519,7 +96847,12 @@ "sF": "20", "sU": "40", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1990 Regular Season - Week 16" }, { "date": "Dec 23, 1990", @@ -65529,7 +96862,12 @@ "sF": "42", "sU": "7", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1990 Regular Season - Week 16" }, { "date": "Dec 23, 1990", @@ -65539,7 +96877,12 @@ "sF": "17", "sU": "3", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1990 Regular Season - Week 16" }, { "date": "Dec 23, 1990", @@ -65549,7 +96892,12 @@ "sF": "35", "sU": "0", "spread": "11", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 12.0, + "sF": 23.0 + }, + "week": "1990 Regular Season - Week 16" }, { "date": "Dec 23, 1990", @@ -65558,8 +96906,13 @@ "und": "Phoenix Cardinals", "sF": "24", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.0, + "pScore": { + "sU": 14.75, + "sF": 21.25 + }, + "week": "1990 Regular Season - Week 16" }, { "date": "Dec 23, 1990", @@ -65569,7 +96922,12 @@ "sF": "24", "sU": "21", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1990 Regular Season - Week 16" }, { "date": "Dec 23, 1990", @@ -65579,7 +96937,12 @@ "sF": "10", "sU": "13", "spread": "9", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.5, + "sF": 23.5 + }, + "week": "1990 Regular Season - Week 16" }, { "date": "Dec 23, 1990", @@ -65589,7 +96952,12 @@ "sF": "17", "sU": "12", "spread": "5", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.5, + "sF": 23.5 + }, + "week": "1990 Regular Season - Week 16" }, { "date": "Dec 29, 1990", @@ -65598,8 +96966,13 @@ "und": "Chicago Bears", "sF": "21", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 36.0, + "pScore": { + "sU": 17.25, + "sF": 18.75 + }, + "week": "1990 Regular Season - Week 17" }, { "date": "Dec 29, 1990", @@ -65608,8 +96981,13 @@ "und": "Phoenix Cardinals", "sF": "23", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.0, + "pScore": { + "sU": 17.75, + "sF": 25.25 + }, + "week": "1990 Regular Season - Week 17" }, { "date": "Dec 30, 1990", @@ -65619,7 +96997,12 @@ "sF": "26", "sU": "7", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "1990 Regular Season - Week 17" }, { "date": "Dec 30, 1990", @@ -65629,7 +97012,12 @@ "sF": "21", "sU": "14", "spread": "16", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 11.5, + "sF": 27.5 + }, + "week": "1990 Regular Season - Week 17" }, { "date": "Dec 30, 1990", @@ -65639,7 +97027,12 @@ "sF": "23", "sU": "17", "spread": "8", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.5, + "sF": 24.5 + }, + "week": "1990 Regular Season - Week 17" }, { "date": "Dec 30, 1990", @@ -65649,7 +97042,12 @@ "sF": "20", "sU": "17", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1990 Regular Season - Week 17" }, { "date": "Dec 30, 1990", @@ -65659,7 +97057,12 @@ "sF": "13", "sU": "10", "spread": "14", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 11.0, + "sF": 25.0 + }, + "week": "1990 Regular Season - Week 17" }, { "date": "Dec 30, 1990", @@ -65669,7 +97072,12 @@ "sF": "29", "sU": "14", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1990 Regular Season - Week 17" }, { "date": "Dec 30, 1990", @@ -65679,7 +97087,12 @@ "sF": "22", "sU": "13", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1990 Regular Season - Week 17" }, { "date": "Dec 30, 1990", @@ -65688,8 +97101,13 @@ "und": "San Diego Chargers", "sF": "17", "sU": "12", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 39.0, + "pScore": { + "sU": 14.25, + "sF": 24.75 + }, + "week": "1990 Regular Season - Week 17" }, { "date": "Dec 30, 1990", @@ -65699,7 +97117,12 @@ "sF": "30", "sU": "10", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "1990 Regular Season - Week 17" }, { "date": "Dec 30, 1990", @@ -65708,8 +97131,13 @@ "und": "New York Jets", "sF": "14", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1990 Regular Season - Week 17" }, { "date": "Dec 30, 1990", @@ -65719,7 +97147,12 @@ "sF": "14", "sU": "34", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1990 Regular Season - Week 17" }, { "date": "Dec 31, 1990", @@ -65728,8 +97161,13 @@ "und": "Los Angeles Rams", "sF": "20", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1990 Regular Season - Week 17" }, { "date": "Jan 5, 1991", @@ -65738,8 +97176,13 @@ "und": "Washington Redskins (5)", "sF": "6", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "1990 Playoffs" }, { "date": "Jan 5, 1991", @@ -65748,8 +97191,13 @@ "und": "Kansas City Chiefs (5)", "sF": "17", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1990 Playoffs" }, { "date": "Jan 6, 1991", @@ -65758,8 +97206,13 @@ "und": "Houston Oilers (6)", "sF": "41", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1990 Playoffs" }, { "date": "Jan 6, 1991", @@ -65768,8 +97221,13 @@ "und": "New Orleans Saints (6)", "sF": "16", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 32.0, + "pScore": { + "sU": 12.75, + "sF": 19.25 + }, + "week": "1990 Playoffs" }, { "date": "Jan 12, 1991", @@ -65779,7 +97237,12 @@ "sF": "44", "sU": "34", "spread": "7", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 13.5, + "sF": 20.5 + }, + "week": "1990 Playoffs" }, { "date": "Jan 12, 1991", @@ -65789,7 +97252,12 @@ "sF": "28", "sU": "10", "spread": "8", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.5, + "sF": 24.5 + }, + "week": "1990 Playoffs" }, { "date": "Jan 13, 1991", @@ -65799,7 +97267,12 @@ "sF": "31", "sU": "3", "spread": "7", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 13.0, + "sF": 20.0 + }, + "week": "1990 Playoffs" }, { "date": "Jan 13, 1991", @@ -65809,7 +97282,12 @@ "sF": "20", "sU": "10", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1990 Playoffs" }, { "date": "Jan 20, 1991", @@ -65819,7 +97297,12 @@ "sF": "51", "sU": "3", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1990 Playoffs" }, { "date": "Jan 20, 1991", @@ -65829,7 +97312,12 @@ "sF": "13", "sU": "15", "spread": "8", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.5, + "sF": 22.5 + }, + "week": "1990 Playoffs" }, { "date": "Jan 27, 1991", @@ -65838,8 +97326,13 @@ "und": "New York Giants (2)", "sF": "19", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.5, + "pScore": { + "sU": 17.0, + "sF": 23.5 + }, + "week": "1990 Playoffs" }, { "date": "Sep 1, 1991", @@ -65848,8 +97341,13 @@ "und": "Cleveland Browns", "sF": "26", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "1991 Regular Season - Week 1" }, { "date": "Sep 1, 1991", @@ -65859,7 +97357,12 @@ "sF": "20", "sU": "3", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "1991 Regular Season - Week 1" }, { "date": "Sep 1, 1991", @@ -65869,7 +97372,12 @@ "sF": "14", "sU": "3", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1991 Regular Season - Week 1" }, { "date": "Sep 1, 1991", @@ -65879,7 +97387,12 @@ "sF": "27", "sU": "24", "spread": "4", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.5, + "sF": 19.5 + }, + "week": "1991 Regular Season - Week 1" }, { "date": "Sep 1, 1991", @@ -65888,8 +97401,13 @@ "und": "Tampa Bay Buccaneers", "sF": "16", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1991 Regular Season - Week 1" }, { "date": "Sep 1, 1991", @@ -65899,7 +97417,12 @@ "sF": "35", "sU": "31", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1991 Regular Season - Week 1" }, { "date": "Sep 1, 1991", @@ -65909,7 +97432,12 @@ "sF": "10", "sU": "6", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "1991 Regular Season - Week 1" }, { "date": "Sep 1, 1991", @@ -65919,7 +97447,12 @@ "sF": "45", "sU": "14", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "1991 Regular Season - Week 1" }, { "date": "Sep 1, 1991", @@ -65928,8 +97461,13 @@ "und": "Los Angeles Raiders", "sF": "47", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "1991 Regular Season - Week 1" }, { "date": "Sep 1, 1991", @@ -65939,7 +97477,12 @@ "sF": "7", "sU": "16", "spread": "9", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.0, + "sF": 23.0 + }, + "week": "1991 Regular Season - Week 1" }, { "date": "Sep 1, 1991", @@ -65949,7 +97492,12 @@ "sF": "14", "sU": "24", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1991 Regular Season - Week 1" }, { "date": "Sep 1, 1991", @@ -65959,7 +97507,12 @@ "sF": "26", "sU": "20", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "1991 Regular Season - Week 1" }, { "date": "Sep 1, 1991", @@ -65968,8 +97521,13 @@ "und": "Detroit Lions", "sF": "45", "sU": "0", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "1991 Regular Season - Week 1" }, { "date": "Sep 2, 1991", @@ -65978,12 +97536,13 @@ "und": "San Francisco 49ers", "sF": "16", "sU": "14", - "spread": "1", - "ou": "49", + "spread": "1.5", + "ou": 37.0, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 17.75, + "sF": 19.25 + }, + "week": "1991 Regular Season - Week 1" }, { "date": "Sep 8, 1991", @@ -65992,8 +97551,13 @@ "und": "Minnesota Vikings", "sF": "19", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.0, + "pScore": { + "sU": 19.75, + "sF": 21.25 + }, + "week": "1991 Regular Season - Week 2" }, { "date": "Sep 8, 1991", @@ -66003,7 +97567,12 @@ "sF": "52", "sU": "34", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1991 Regular Season - Week 2" }, { "date": "Sep 8, 1991", @@ -66013,7 +97582,12 @@ "sF": "23", "sU": "14", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "1991 Regular Season - Week 2" }, { "date": "Sep 8, 1991", @@ -66022,8 +97596,13 @@ "und": "New Orleans Saints", "sF": "10", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.0, + "pScore": { + "sU": 14.75, + "sF": 21.25 + }, + "week": "1991 Regular Season - Week 2" }, { "date": "Sep 8, 1991", @@ -66033,7 +97612,12 @@ "sF": "17", "sU": "6", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "1991 Regular Season - Week 2" }, { "date": "Sep 8, 1991", @@ -66043,7 +97627,12 @@ "sF": "20", "sU": "0", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "1991 Regular Season - Week 2" }, { "date": "Sep 8, 1991", @@ -66053,7 +97642,12 @@ "sF": "13", "sU": "19", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1991 Regular Season - Week 2" }, { "date": "Sep 8, 1991", @@ -66062,8 +97656,13 @@ "und": "Phoenix Cardinals", "sF": "10", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.5, + "pScore": { + "sU": 15.0, + "sF": 21.5 + }, + "week": "1991 Regular Season - Week 2" }, { "date": "Sep 8, 1991", @@ -66072,8 +97671,13 @@ "und": "Tampa Bay Buccaneers", "sF": "21", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1991 Regular Season - Week 2" }, { "date": "Sep 8, 1991", @@ -66083,7 +97687,12 @@ "sF": "16", "sU": "13", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1991 Regular Season - Week 2" }, { "date": "Sep 8, 1991", @@ -66093,7 +97702,12 @@ "sF": "34", "sU": "14", "spread": "12", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 13.0, + "sF": 25.0 + }, + "week": "1991 Regular Season - Week 2" }, { "date": "Sep 8, 1991", @@ -66103,7 +97717,12 @@ "sF": "20", "sU": "13", "spread": "5", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.5, + "sF": 20.5 + }, + "week": "1991 Regular Season - Week 2" }, { "date": "Sep 8, 1991", @@ -66112,8 +97731,13 @@ "und": "Houston Oilers", "sF": "7", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 51.0, + "pScore": { + "sU": 24.25, + "sF": 26.75 + }, + "week": "1991 Regular Season - Week 2" }, { "date": "Sep 9, 1991", @@ -66123,7 +97747,12 @@ "sF": "33", "sU": "31", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1991 Regular Season - Week 2" }, { "date": "Sep 15, 1991", @@ -66132,8 +97761,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 34.0, + "pScore": { + "sU": 16.25, + "sF": 17.75 + }, + "week": "1991 Regular Season - Week 3" }, { "date": "Sep 15, 1991", @@ -66142,8 +97776,13 @@ "und": "Cleveland Browns", "sF": "13", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1991 Regular Season - Week 3" }, { "date": "Sep 15, 1991", @@ -66152,8 +97791,13 @@ "und": "Philadelphia Eagles", "sF": "0", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1991 Regular Season - Week 3" }, { "date": "Sep 15, 1991", @@ -66163,7 +97807,12 @@ "sF": "13", "sU": "17", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1991 Regular Season - Week 3" }, { "date": "Sep 15, 1991", @@ -66172,8 +97821,13 @@ "und": "Tampa Bay Buccaneers", "sF": "15", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1991 Regular Season - Week 3" }, { "date": "Sep 15, 1991", @@ -66183,7 +97837,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1991 Regular Season - Week 3" }, { "date": "Sep 15, 1991", @@ -66192,8 +97851,13 @@ "und": "New England Patriots", "sF": "20", "sU": "6", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 36.0, + "pScore": { + "sU": 11.25, + "sF": 24.75 + }, + "week": "1991 Regular Season - Week 3" }, { "date": "Sep 15, 1991", @@ -66203,7 +97867,12 @@ "sF": "34", "sU": "0", "spread": "9", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.0, + "sF": 25.0 + }, + "week": "1991 Regular Season - Week 3" }, { "date": "Sep 15, 1991", @@ -66213,7 +97882,12 @@ "sF": "16", "sU": "10", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1991 Regular Season - Week 3" }, { "date": "Sep 15, 1991", @@ -66222,8 +97896,13 @@ "und": "Indianapolis Colts", "sF": "16", "sU": "0", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 36.0, + "pScore": { + "sU": 13.75, + "sF": 22.25 + }, + "week": "1991 Regular Season - Week 3" }, { "date": "Sep 15, 1991", @@ -66232,8 +97911,13 @@ "und": "New York Jets", "sF": "23", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 46.0, + "pScore": { + "sU": 18.25, + "sF": 27.75 + }, + "week": "1991 Regular Season - Week 3" }, { "date": "Sep 15, 1991", @@ -66243,7 +97927,12 @@ "sF": "10", "sU": "13", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1991 Regular Season - Week 3" }, { "date": "Sep 15, 1991", @@ -66253,7 +97942,12 @@ "sF": "24", "sU": "7", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1991 Regular Season - Week 3" }, { "date": "Sep 16, 1991", @@ -66262,8 +97956,13 @@ "und": "Kansas City Chiefs", "sF": "17", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "1991 Regular Season - Week 3" }, { "date": "Sep 22, 1991", @@ -66272,8 +97971,13 @@ "und": "Atlanta Falcons", "sF": "17", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "1991 Regular Season - Week 4" }, { "date": "Sep 22, 1991", @@ -66282,8 +97986,13 @@ "und": "Cincinnati Bengals", "sF": "34", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1991 Regular Season - Week 4" }, { "date": "Sep 22, 1991", @@ -66293,7 +98002,12 @@ "sF": "33", "sU": "24", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1991 Regular Season - Week 4" }, { "date": "Sep 22, 1991", @@ -66303,7 +98017,12 @@ "sF": "16", "sU": "13", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1991 Regular Season - Week 4" }, { "date": "Sep 22, 1991", @@ -66312,8 +98031,13 @@ "und": "New England Patriots", "sF": "20", "sU": "24", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 38.0, + "pScore": { + "sU": 12.75, + "sF": 25.25 + }, + "week": "1991 Regular Season - Week 4" }, { "date": "Sep 22, 1991", @@ -66323,7 +98047,12 @@ "sF": "26", "sU": "0", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1991 Regular Season - Week 4" }, { "date": "Sep 22, 1991", @@ -66333,7 +98062,12 @@ "sF": "13", "sU": "10", "spread": "12", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 12.0, + "sF": 24.0 + }, + "week": "1991 Regular Season - Week 4" }, { "date": "Sep 22, 1991", @@ -66343,7 +98077,12 @@ "sF": "23", "sU": "14", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1991 Regular Season - Week 4" }, { "date": "Sep 22, 1991", @@ -66353,7 +98092,12 @@ "sF": "27", "sU": "19", "spread": "8", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.0, + "sF": 23.0 + }, + "week": "1991 Regular Season - Week 4" }, { "date": "Sep 22, 1991", @@ -66362,8 +98106,13 @@ "und": "Seattle Seahawks", "sF": "20", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.0, + "pScore": { + "sU": 14.25, + "sF": 21.75 + }, + "week": "1991 Regular Season - Week 4" }, { "date": "Sep 22, 1991", @@ -66372,8 +98121,13 @@ "und": "Los Angeles Rams", "sF": "27", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.0, + "pScore": { + "sU": 15.25, + "sF": 22.75 + }, + "week": "1991 Regular Season - Week 4" }, { "date": "Sep 22, 1991", @@ -66383,7 +98137,12 @@ "sF": "17", "sU": "10", "spread": "8", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.0, + "sF": 26.0 + }, + "week": "1991 Regular Season - Week 4" }, { "date": "Sep 22, 1991", @@ -66393,7 +98152,12 @@ "sF": "9", "sU": "17", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "1991 Regular Season - Week 4" }, { "date": "Sep 23, 1991", @@ -66402,8 +98166,13 @@ "und": "New York Jets", "sF": "19", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.0, + "pScore": { + "sU": 14.25, + "sF": 21.75 + }, + "week": "1991 Regular Season - Week 4" }, { "date": "Sep 29, 1991", @@ -66412,8 +98181,13 @@ "und": "Atlanta Falcons", "sF": "27", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.0, + "pScore": { + "sU": 16.25, + "sF": 18.75 + }, + "week": "1991 Regular Season - Week 5" }, { "date": "Sep 29, 1991", @@ -66423,7 +98197,12 @@ "sF": "35", "sU": "20", "spread": "8", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.0, + "sF": 26.0 + }, + "week": "1991 Regular Season - Week 5" }, { "date": "Sep 29, 1991", @@ -66432,8 +98211,13 @@ "und": "Dallas Cowboys", "sF": "16", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "1991 Regular Season - Week 5" }, { "date": "Sep 29, 1991", @@ -66443,7 +98227,12 @@ "sF": "31", "sU": "3", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1991 Regular Season - Week 5" }, { "date": "Sep 29, 1991", @@ -66453,7 +98242,12 @@ "sF": "6", "sU": "12", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1991 Regular Season - Week 5" }, { "date": "Sep 29, 1991", @@ -66462,8 +98256,13 @@ "und": "Green Bay Packers", "sF": "23", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.0, + "pScore": { + "sU": 16.75, + "sF": 21.25 + }, + "week": "1991 Regular Season - Week 5" }, { "date": "Sep 29, 1991", @@ -66473,7 +98272,12 @@ "sF": "23", "sU": "41", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1991 Regular Season - Week 5" }, { "date": "Sep 29, 1991", @@ -66483,7 +98287,12 @@ "sF": "24", "sU": "10", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "1991 Regular Season - Week 5" }, { "date": "Sep 29, 1991", @@ -66492,8 +98301,13 @@ "und": "San Diego Chargers", "sF": "14", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1991 Regular Season - Week 5" }, { "date": "Sep 29, 1991", @@ -66503,7 +98317,12 @@ "sF": "31", "sU": "3", "spread": "8", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.0, + "sF": 22.0 + }, + "week": "1991 Regular Season - Week 5" }, { "date": "Sep 29, 1991", @@ -66513,7 +98332,12 @@ "sF": "6", "sU": "13", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "1991 Regular Season - Week 5" }, { "date": "Sep 30, 1991", @@ -66523,7 +98347,12 @@ "sF": "23", "sU": "0", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1991 Regular Season - Week 5" }, { "date": "Oct 6, 1991", @@ -66533,7 +98362,12 @@ "sF": "20", "sU": "7", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1991 Regular Season - Week 6" }, { "date": "Oct 6, 1991", @@ -66542,8 +98376,13 @@ "und": "Seattle Seahawks", "sF": "7", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1991 Regular Season - Week 6" }, { "date": "Oct 6, 1991", @@ -66552,8 +98391,13 @@ "und": "Cleveland Browns", "sF": "17", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 34.0, + "pScore": { + "sU": 16.25, + "sF": 17.75 + }, + "week": "1991 Regular Season - Week 6" }, { "date": "Oct 6, 1991", @@ -66563,7 +98407,12 @@ "sF": "24", "sU": "20", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1991 Regular Season - Week 6" }, { "date": "Oct 6, 1991", @@ -66572,8 +98421,13 @@ "und": "Green Bay Packers", "sF": "20", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.0, + "pScore": { + "sU": 16.25, + "sF": 18.75 + }, + "week": "1991 Regular Season - Week 6" }, { "date": "Oct 6, 1991", @@ -66582,8 +98436,13 @@ "und": "Denver Broncos", "sF": "42", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "1991 Regular Season - Week 6" }, { "date": "Oct 6, 1991", @@ -66592,8 +98451,13 @@ "und": "New England Patriots", "sF": "20", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "1991 Regular Season - Week 6" }, { "date": "Oct 6, 1991", @@ -66603,7 +98467,12 @@ "sF": "13", "sU": "14", "spread": "3", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 14.5, + "sF": 17.5 + }, + "week": "1991 Regular Season - Week 6" }, { "date": "Oct 6, 1991", @@ -66612,8 +98481,13 @@ "und": "San Diego Chargers", "sF": "13", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 34.0, + "pScore": { + "sU": 13.25, + "sF": 20.75 + }, + "week": "1991 Regular Season - Week 6" }, { "date": "Oct 6, 1991", @@ -66622,8 +98496,13 @@ "und": "Phoenix Cardinals", "sF": "20", "sU": "9", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 34.0, + "pScore": { + "sU": 12.25, + "sF": 21.75 + }, + "week": "1991 Regular Season - Week 6" }, { "date": "Oct 6, 1991", @@ -66633,7 +98512,12 @@ "sF": "21", "sU": "3", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "1991 Regular Season - Week 6" }, { "date": "Oct 7, 1991", @@ -66643,7 +98527,12 @@ "sF": "6", "sU": "33", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1991 Regular Season - Week 6" }, { "date": "Oct 13, 1991", @@ -66653,7 +98542,12 @@ "sF": "42", "sU": "6", "spread": "20", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 10.5, + "sF": 30.5 + }, + "week": "1991 Regular Season - Week 7" }, { "date": "Oct 13, 1991", @@ -66662,8 +98556,13 @@ "und": "Cincinnati Bengals", "sF": "35", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1991 Regular Season - Week 7" }, { "date": "Oct 13, 1991", @@ -66672,8 +98571,13 @@ "und": "Phoenix Cardinals", "sF": "34", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.0, + "pScore": { + "sU": 14.75, + "sF": 21.25 + }, + "week": "1991 Regular Season - Week 7" }, { "date": "Oct 13, 1991", @@ -66683,7 +98587,12 @@ "sF": "13", "sU": "6", "spread": "6", - "ou": -1 + "ou": 30.0, + "pScore": { + "sU": 12.0, + "sF": 18.0 + }, + "week": "1991 Regular Season - Week 7" }, { "date": "Oct 13, 1991", @@ -66693,7 +98602,12 @@ "sF": "42", "sU": "17", "spread": "14", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 11.5, + "sF": 25.5 + }, + "week": "1991 Regular Season - Week 7" }, { "date": "Oct 13, 1991", @@ -66703,7 +98617,12 @@ "sF": "42", "sU": "7", "spread": "7", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.0, + "sF": 21.0 + }, + "week": "1991 Regular Season - Week 7" }, { "date": "Oct 13, 1991", @@ -66712,8 +98631,13 @@ "und": "San Diego Chargers", "sF": "30", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1991 Regular Season - Week 7" }, { "date": "Oct 13, 1991", @@ -66723,7 +98647,12 @@ "sF": "23", "sU": "20", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1991 Regular Season - Week 7" }, { "date": "Oct 13, 1991", @@ -66732,8 +98661,13 @@ "und": "Atlanta Falcons", "sF": "34", "sU": "39", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 36.0, + "pScore": { + "sU": 12.75, + "sF": 23.25 + }, + "week": "1991 Regular Season - Week 7" }, { "date": "Oct 13, 1991", @@ -66742,8 +98676,13 @@ "und": "Los Angeles Raiders", "sF": "20", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 34.0, + "pScore": { + "sU": 15.75, + "sF": 18.25 + }, + "week": "1991 Regular Season - Week 7" }, { "date": "Oct 14, 1991", @@ -66752,8 +98691,13 @@ "und": "Pittsburgh Steelers", "sF": "23", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 34.0, + "pScore": { + "sU": 15.25, + "sF": 18.75 + }, + "week": "1991 Regular Season - Week 7" }, { "date": "Oct 17, 1991", @@ -66763,7 +98707,12 @@ "sF": "10", "sU": "0", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1991 Regular Season - Week 8" }, { "date": "Oct 20, 1991", @@ -66772,8 +98721,13 @@ "und": "Indianapolis Colts", "sF": "17", "sU": "6", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 34.0, + "pScore": { + "sU": 10.75, + "sF": 23.25 + }, + "week": "1991 Regular Season - Week 8" }, { "date": "Oct 20, 1991", @@ -66782,8 +98736,13 @@ "und": "Miami Dolphins", "sF": "17", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.0, + "pScore": { + "sU": 18.25, + "sF": 23.75 + }, + "week": "1991 Regular Season - Week 8" }, { "date": "Oct 20, 1991", @@ -66793,7 +98752,12 @@ "sF": "23", "sU": "26", "spread": "7", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 13.5, + "sF": 20.5 + }, + "week": "1991 Regular Season - Week 8" }, { "date": "Oct 20, 1991", @@ -66803,7 +98767,12 @@ "sF": "23", "sU": "7", "spread": "13", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 9.5, + "sF": 22.5 + }, + "week": "1991 Regular Season - Week 8" }, { "date": "Oct 20, 1991", @@ -66812,8 +98781,13 @@ "und": "Seattle Seahawks", "sF": "7", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1991 Regular Season - Week 8" }, { "date": "Oct 20, 1991", @@ -66823,7 +98797,12 @@ "sF": "16", "sU": "19", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1991 Regular Season - Week 8" }, { "date": "Oct 20, 1991", @@ -66833,7 +98812,12 @@ "sF": "20", "sU": "17", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1991 Regular Season - Week 8" }, { "date": "Oct 20, 1991", @@ -66842,8 +98826,13 @@ "und": "Phoenix Cardinals", "sF": "10", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1991 Regular Season - Week 8" }, { "date": "Oct 20, 1991", @@ -66853,7 +98842,12 @@ "sF": "24", "sU": "30", "spread": "5", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.5, + "sF": 20.5 + }, + "week": "1991 Regular Season - Week 8" }, { "date": "Oct 20, 1991", @@ -66863,7 +98857,12 @@ "sF": "35", "sU": "3", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1991 Regular Season - Week 8" }, { "date": "Oct 21, 1991", @@ -66872,8 +98871,13 @@ "und": "Cincinnati Bengals", "sF": "35", "sU": "16", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 50.0, + "pScore": { + "sU": 18.25, + "sF": 31.75 + }, + "week": "1991 Regular Season - Week 8" }, { "date": "Oct 27, 1991", @@ -66882,8 +98886,13 @@ "und": "Los Angeles Rams", "sF": "31", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1991 Regular Season - Week 9" }, { "date": "Oct 27, 1991", @@ -66892,8 +98901,13 @@ "und": "Cincinnati Bengals", "sF": "35", "sU": "3", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 46.0, + "pScore": { + "sU": 15.25, + "sF": 30.75 + }, + "week": "1991 Regular Season - Week 9" }, { "date": "Oct 27, 1991", @@ -66902,8 +98916,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 32.0, + "pScore": { + "sU": 12.75, + "sF": 19.25 + }, + "week": "1991 Regular Season - Week 9" }, { "date": "Oct 27, 1991", @@ -66913,7 +98932,12 @@ "sF": "23", "sU": "7", "spread": "4", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.5, + "sF": 19.5 + }, + "week": "1991 Regular Season - Week 9" }, { "date": "Oct 27, 1991", @@ -66922,8 +98946,13 @@ "und": "Green Bay Packers", "sF": "0", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 34.0, + "pScore": { + "sU": 15.75, + "sF": 18.25 + }, + "week": "1991 Regular Season - Week 9" }, { "date": "Oct 27, 1991", @@ -66932,8 +98961,13 @@ "und": "Pittsburgh Steelers", "sF": "17", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 35.0, + "pScore": { + "sU": 16.75, + "sF": 18.25 + }, + "week": "1991 Regular Season - Week 9" }, { "date": "Oct 27, 1991", @@ -66942,8 +98976,13 @@ "und": "Dallas Cowboys", "sF": "34", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "1991 Regular Season - Week 9" }, { "date": "Oct 27, 1991", @@ -66953,7 +98992,12 @@ "sF": "9", "sU": "6", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "1991 Regular Season - Week 9" }, { "date": "Oct 27, 1991", @@ -66963,7 +99007,12 @@ "sF": "28", "sU": "0", "spread": "2", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 16.0, + "sF": 18.0 + }, + "week": "1991 Regular Season - Week 9" }, { "date": "Oct 27, 1991", @@ -66972,8 +99021,13 @@ "und": "San Diego Chargers", "sF": "20", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "1991 Regular Season - Week 9" }, { "date": "Oct 27, 1991", @@ -66982,8 +99036,13 @@ "und": "New York Giants", "sF": "17", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1991 Regular Season - Week 9" }, { "date": "Oct 28, 1991", @@ -66992,8 +99051,13 @@ "und": "Los Angeles Raiders", "sF": "24", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "1991 Regular Season - Week 9" }, { "date": "Nov 3, 1991", @@ -67003,7 +99067,12 @@ "sF": "14", "sU": "17", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "1991 Regular Season - Week 10" }, { "date": "Nov 3, 1991", @@ -67013,7 +99082,12 @@ "sF": "22", "sU": "17", "spread": "17", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 12.0, + "sF": 29.0 + }, + "week": "1991 Regular Season - Week 10" }, { "date": "Nov 3, 1991", @@ -67023,7 +99097,12 @@ "sF": "20", "sU": "10", "spread": "7", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 12.5, + "sF": 19.5 + }, + "week": "1991 Regular Season - Week 10" }, { "date": "Nov 3, 1991", @@ -67032,8 +99111,13 @@ "und": "Cincinnati Bengals", "sF": "21", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "1991 Regular Season - Week 10" }, { "date": "Nov 3, 1991", @@ -67042,8 +99126,13 @@ "und": "Tampa Bay Buccaneers", "sF": "28", "sU": "13", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 36.0, + "pScore": { + "sU": 12.25, + "sF": 23.75 + }, + "week": "1991 Regular Season - Week 10" }, { "date": "Nov 3, 1991", @@ -67052,8 +99141,13 @@ "und": "Green Bay Packers", "sF": "19", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "1991 Regular Season - Week 10" }, { "date": "Nov 3, 1991", @@ -67062,8 +99156,13 @@ "und": "Houston Oilers", "sF": "16", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "1991 Regular Season - Week 10" }, { "date": "Nov 3, 1991", @@ -67072,8 +99171,13 @@ "und": "Phoenix Cardinals", "sF": "27", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 36.0, + "pScore": { + "sU": 13.25, + "sF": 22.75 + }, + "week": "1991 Regular Season - Week 10" }, { "date": "Nov 3, 1991", @@ -67083,7 +99187,12 @@ "sF": "10", "sU": "6", "spread": "9", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 13.5, + "sF": 22.5 + }, + "week": "1991 Regular Season - Week 10" }, { "date": "Nov 3, 1991", @@ -67093,7 +99202,12 @@ "sF": "24", "sU": "17", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1991 Regular Season - Week 10" }, { "date": "Nov 3, 1991", @@ -67102,8 +99216,13 @@ "und": "Pittsburgh Steelers", "sF": "20", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "1991 Regular Season - Week 10" }, { "date": "Nov 4, 1991", @@ -67112,8 +99231,13 @@ "und": "Philadelphia Eagles", "sF": "7", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 32.0, + "pScore": { + "sU": 14.25, + "sF": 17.75 + }, + "week": "1991 Regular Season - Week 10" }, { "date": "Nov 10, 1991", @@ -67122,8 +99246,13 @@ "und": "Pittsburgh Steelers", "sF": "27", "sU": "33", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "1991 Regular Season - Week 11" }, { "date": "Nov 10, 1991", @@ -67133,7 +99262,12 @@ "sF": "32", "sU": "30", "spread": "2", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.5, + "sF": 17.5 + }, + "week": "1991 Regular Season - Week 11" }, { "date": "Nov 10, 1991", @@ -67143,7 +99277,12 @@ "sF": "34", "sU": "24", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1991 Regular Season - Week 11" }, { "date": "Nov 10, 1991", @@ -67153,7 +99292,12 @@ "sF": "26", "sU": "23", "spread": "10", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.5, + "sF": 26.5 + }, + "week": "1991 Regular Season - Week 11" }, { "date": "Nov 10, 1991", @@ -67162,12 +99306,13 @@ "und": "San Francisco 49ers", "sF": "10", "sU": "3", - "spread": "5", - "ou": "49", + "spread": "5.5", + "ou": 31.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 12.75, + "sF": 18.25 + }, + "week": "1991 Regular Season - Week 11" }, { "date": "Nov 10, 1991", @@ -67176,8 +99321,13 @@ "und": "Indianapolis Colts", "sF": "27", "sU": "28", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 32.0, + "pScore": { + "sU": 9.25, + "sF": 22.75 + }, + "week": "1991 Regular Season - Week 11" }, { "date": "Nov 10, 1991", @@ -67187,7 +99337,12 @@ "sF": "21", "sU": "30", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1991 Regular Season - Week 11" }, { "date": "Nov 10, 1991", @@ -67197,7 +99352,12 @@ "sF": "56", "sU": "17", "spread": "12", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 11.5, + "sF": 23.5 + }, + "week": "1991 Regular Season - Week 11" }, { "date": "Nov 10, 1991", @@ -67207,7 +99367,12 @@ "sF": "16", "sU": "17", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1991 Regular Season - Week 11" }, { "date": "Nov 10, 1991", @@ -67217,7 +99382,12 @@ "sF": "27", "sU": "20", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1991 Regular Season - Week 11" }, { "date": "Nov 10, 1991", @@ -67226,8 +99396,13 @@ "und": "Phoenix Cardinals", "sF": "21", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 34.0, + "pScore": { + "sU": 13.75, + "sF": 20.25 + }, + "week": "1991 Regular Season - Week 11" }, { "date": "Nov 10, 1991", @@ -67237,7 +99412,12 @@ "sF": "14", "sU": "17", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "1991 Regular Season - Week 11" }, { "date": "Nov 10, 1991", @@ -67246,8 +99426,13 @@ "und": "New England Patriots", "sF": "30", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "1991 Regular Season - Week 11" }, { "date": "Nov 11, 1991", @@ -67257,7 +99442,12 @@ "sF": "17", "sU": "34", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1991 Regular Season - Week 11" }, { "date": "Nov 17, 1991", @@ -67266,8 +99456,13 @@ "und": "Tampa Bay Buccaneers", "sF": "43", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "1991 Regular Season - Week 12" }, { "date": "Nov 17, 1991", @@ -67277,7 +99472,12 @@ "sF": "35", "sU": "21", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "1991 Regular Season - Week 12" }, { "date": "Nov 17, 1991", @@ -67286,8 +99486,13 @@ "und": "Indianapolis Colts", "sF": "31", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 38.0, + "pScore": { + "sU": 14.25, + "sF": 23.75 + }, + "week": "1991 Regular Season - Week 12" }, { "date": "Nov 17, 1991", @@ -67296,8 +99501,13 @@ "und": "Denver Broncos", "sF": "20", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.0, + "pScore": { + "sU": 14.75, + "sF": 21.25 + }, + "week": "1991 Regular Season - Week 12" }, { "date": "Nov 17, 1991", @@ -67307,7 +99517,12 @@ "sF": "28", "sU": "21", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1991 Regular Season - Week 12" }, { "date": "Nov 17, 1991", @@ -67316,8 +99531,13 @@ "und": "Cincinnati Bengals", "sF": "17", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 38.0, + "pScore": { + "sU": 14.25, + "sF": 23.75 + }, + "week": "1991 Regular Season - Week 12" }, { "date": "Nov 17, 1991", @@ -67327,7 +99547,12 @@ "sF": "41", "sU": "14", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "1991 Regular Season - Week 12" }, { "date": "Nov 17, 1991", @@ -67336,8 +99561,13 @@ "und": "Los Angeles Rams", "sF": "21", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.0, + "pScore": { + "sU": 20.75, + "sF": 25.25 + }, + "week": "1991 Regular Season - Week 12" }, { "date": "Nov 17, 1991", @@ -67346,8 +99576,13 @@ "und": "Seattle Seahawks", "sF": "31", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 34.0, + "pScore": { + "sU": 15.25, + "sF": 18.75 + }, + "week": "1991 Regular Season - Week 12" }, { "date": "Nov 17, 1991", @@ -67357,7 +99592,12 @@ "sF": "22", "sU": "9", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "1991 Regular Season - Week 12" }, { "date": "Nov 17, 1991", @@ -67366,8 +99606,13 @@ "und": "San Diego Chargers", "sF": "21", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 32.0, + "pScore": { + "sU": 13.75, + "sF": 18.25 + }, + "week": "1991 Regular Season - Week 12" }, { "date": "Nov 17, 1991", @@ -67377,7 +99622,12 @@ "sF": "14", "sU": "10", "spread": "12", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 10.0, + "sF": 22.0 + }, + "week": "1991 Regular Season - Week 12" }, { "date": "Nov 17, 1991", @@ -67387,7 +99637,12 @@ "sF": "28", "sU": "24", "spread": "13", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 16.0, + "sF": 29.0 + }, + "week": "1991 Regular Season - Week 12" }, { "date": "Nov 18, 1991", @@ -67397,7 +99652,12 @@ "sF": "41", "sU": "27", "spread": "4", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.0, + "sF": 25.0 + }, + "week": "1991 Regular Season - Week 12" }, { "date": "Nov 24, 1991", @@ -67406,8 +99666,13 @@ "und": "Cincinnati Bengals", "sF": "38", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.0, + "pScore": { + "sU": 14.75, + "sF": 21.25 + }, + "week": "1991 Regular Season - Week 13" }, { "date": "Nov 24, 1991", @@ -67417,7 +99682,12 @@ "sF": "15", "sU": "20", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1991 Regular Season - Week 13" }, { "date": "Nov 24, 1991", @@ -67427,7 +99697,12 @@ "sF": "14", "sU": "10", "spread": "7", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 13.5, + "sF": 20.5 + }, + "week": "1991 Regular Season - Week 13" }, { "date": "Nov 24, 1991", @@ -67437,7 +99712,12 @@ "sF": "14", "sU": "34", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1991 Regular Season - Week 13" }, { "date": "Nov 24, 1991", @@ -67446,8 +99726,13 @@ "und": "New England Patriots", "sF": "13", "sU": "16", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 42.0, + "pScore": { + "sU": 16.75, + "sF": 25.25 + }, + "week": "1991 Regular Season - Week 13" }, { "date": "Nov 24, 1991", @@ -67456,8 +99741,13 @@ "und": "Pittsburgh Steelers", "sF": "14", "sU": "26", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.0, + "pScore": { + "sU": 16.25, + "sF": 23.75 + }, + "week": "1991 Regular Season - Week 13" }, { "date": "Nov 24, 1991", @@ -67467,7 +99757,12 @@ "sF": "21", "sU": "14", "spread": "9", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 12.5, + "sF": 21.5 + }, + "week": "1991 Regular Season - Week 13" }, { "date": "Nov 24, 1991", @@ -67476,8 +99771,13 @@ "und": "Dallas Cowboys", "sF": "21", "sU": "24", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 42.0, + "pScore": { + "sU": 14.75, + "sF": 27.25 + }, + "week": "1991 Regular Season - Week 13" }, { "date": "Nov 24, 1991", @@ -67487,7 +99787,12 @@ "sF": "13", "sU": "16", "spread": "8", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.0, + "sF": 22.0 + }, + "week": "1991 Regular Season - Week 13" }, { "date": "Nov 24, 1991", @@ -67497,7 +99802,12 @@ "sF": "24", "sU": "3", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1991 Regular Season - Week 13" }, { "date": "Nov 24, 1991", @@ -67506,8 +99816,13 @@ "und": "Phoenix Cardinals", "sF": "34", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 33.0, + "pScore": { + "sU": 13.25, + "sF": 19.75 + }, + "week": "1991 Regular Season - Week 13" }, { "date": "Nov 24, 1991", @@ -67516,8 +99831,13 @@ "und": "Denver Broncos", "sF": "13", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1991 Regular Season - Week 13" }, { "date": "Nov 24, 1991", @@ -67526,8 +99846,13 @@ "und": "Atlanta Falcons", "sF": "20", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "1991 Regular Season - Week 13" }, { "date": "Nov 25, 1991", @@ -67537,7 +99862,12 @@ "sF": "33", "sU": "10", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1991 Regular Season - Week 13" }, { "date": "Nov 28, 1991", @@ -67547,7 +99877,12 @@ "sF": "16", "sU": "6", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1991 Regular Season - Week 14" }, { "date": "Nov 28, 1991", @@ -67557,7 +99892,12 @@ "sF": "20", "sU": "10", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1991 Regular Season - Week 14" }, { "date": "Dec 1, 1991", @@ -67566,8 +99906,13 @@ "und": "Green Bay Packers", "sF": "35", "sU": "31", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.0, + "pScore": { + "sU": 14.75, + "sF": 23.25 + }, + "week": "1991 Regular Season - Week 14" }, { "date": "Dec 1, 1991", @@ -67577,7 +99922,12 @@ "sF": "24", "sU": "13", "spread": "9", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.5, + "sF": 27.5 + }, + "week": "1991 Regular Season - Week 14" }, { "date": "Dec 1, 1991", @@ -67586,8 +99936,13 @@ "und": "Indianapolis Colts", "sF": "31", "sU": "0", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.0, + "pScore": { + "sU": 16.75, + "sF": 21.25 + }, + "week": "1991 Regular Season - Week 14" }, { "date": "Dec 1, 1991", @@ -67597,7 +99952,12 @@ "sF": "33", "sU": "14", "spread": "9", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.5, + "sF": 23.5 + }, + "week": "1991 Regular Season - Week 14" }, { "date": "Dec 1, 1991", @@ -67607,7 +99967,12 @@ "sF": "24", "sU": "27", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1991 Regular Season - Week 14" }, { "date": "Dec 1, 1991", @@ -67616,8 +99981,13 @@ "und": "New England Patriots", "sF": "20", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 33.0, + "pScore": { + "sU": 13.25, + "sF": 19.75 + }, + "week": "1991 Regular Season - Week 14" }, { "date": "Dec 1, 1991", @@ -67627,7 +99997,12 @@ "sF": "27", "sU": "6", "spread": "12", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 17.0, + "sF": 29.0 + }, + "week": "1991 Regular Season - Week 14" }, { "date": "Dec 1, 1991", @@ -67637,7 +100012,12 @@ "sF": "38", "sU": "24", "spread": "4", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.0, + "sF": 19.0 + }, + "week": "1991 Regular Season - Week 14" }, { "date": "Dec 1, 1991", @@ -67646,8 +100026,13 @@ "und": "Kansas City Chiefs", "sF": "6", "sU": "19", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 36.0, + "pScore": { + "sU": 17.25, + "sF": 18.75 + }, + "week": "1991 Regular Season - Week 14" }, { "date": "Dec 1, 1991", @@ -67656,8 +100041,13 @@ "und": "San Diego Chargers", "sF": "9", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 36.0, + "pScore": { + "sU": 15.25, + "sF": 20.75 + }, + "week": "1991 Regular Season - Week 14" }, { "date": "Dec 2, 1991", @@ -67666,8 +100056,13 @@ "und": "Philadelphia Eagles", "sF": "6", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "1991 Regular Season - Week 14" }, { "date": "Dec 8, 1991", @@ -67676,8 +100071,13 @@ "und": "Green Bay Packers", "sF": "27", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 36.0, + "pScore": { + "sU": 13.25, + "sF": 22.75 + }, + "week": "1991 Regular Season - Week 15" }, { "date": "Dec 8, 1991", @@ -67687,7 +100087,12 @@ "sF": "23", "sU": "14", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "1991 Regular Season - Week 15" }, { "date": "Dec 8, 1991", @@ -67697,7 +100102,12 @@ "sF": "31", "sU": "6", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "1991 Regular Season - Week 15" }, { "date": "Dec 8, 1991", @@ -67707,7 +100117,12 @@ "sF": "20", "sU": "17", "spread": "9", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 13.5, + "sF": 22.5 + }, + "week": "1991 Regular Season - Week 15" }, { "date": "Dec 8, 1991", @@ -67717,7 +100132,12 @@ "sF": "23", "sU": "17", "spread": "8", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 13.0, + "sF": 21.0 + }, + "week": "1991 Regular Season - Week 15" }, { "date": "Dec 8, 1991", @@ -67727,7 +100147,12 @@ "sF": "14", "sU": "19", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "1991 Regular Season - Week 15" }, { "date": "Dec 8, 1991", @@ -67736,8 +100161,13 @@ "und": "New York Jets", "sF": "34", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.0, + "pScore": { + "sU": 18.25, + "sF": 23.75 + }, + "week": "1991 Regular Season - Week 15" }, { "date": "Dec 8, 1991", @@ -67746,8 +100176,13 @@ "und": "Buffalo Bills", "sF": "27", "sU": "30", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.0, + "pScore": { + "sU": 19.75, + "sF": 21.25 + }, + "week": "1991 Regular Season - Week 15" }, { "date": "Dec 8, 1991", @@ -67757,7 +100192,12 @@ "sF": "31", "sU": "14", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1991 Regular Season - Week 15" }, { "date": "Dec 8, 1991", @@ -67767,7 +100207,12 @@ "sF": "20", "sU": "14", "spread": "14", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 13.0, + "sF": 27.0 + }, + "week": "1991 Regular Season - Week 15" }, { "date": "Dec 8, 1991", @@ -67776,8 +100221,13 @@ "und": "Seattle Seahawks", "sF": "24", "sU": "22", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1991 Regular Season - Week 15" }, { "date": "Dec 8, 1991", @@ -67787,7 +100237,12 @@ "sF": "26", "sU": "24", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1991 Regular Season - Week 15" }, { "date": "Dec 9, 1991", @@ -67797,7 +100252,12 @@ "sF": "37", "sU": "13", "spread": "8", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.0, + "sF": 27.0 + }, + "week": "1991 Regular Season - Week 15" }, { "date": "Dec 14, 1991", @@ -67807,7 +100267,12 @@ "sF": "27", "sU": "0", "spread": "13", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 10.5, + "sF": 23.5 + }, + "week": "1991 Regular Season - Week 16" }, { "date": "Dec 14, 1991", @@ -67816,8 +100281,13 @@ "und": "Kansas City Chiefs", "sF": "28", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.0, + "pScore": { + "sU": 16.25, + "sF": 20.75 + }, + "week": "1991 Regular Season - Week 16" }, { "date": "Dec 15, 1991", @@ -67827,7 +100297,12 @@ "sF": "26", "sU": "13", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "1991 Regular Season - Week 16" }, { "date": "Dec 15, 1991", @@ -67837,7 +100312,12 @@ "sF": "17", "sU": "14", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1991 Regular Season - Week 16" }, { "date": "Dec 15, 1991", @@ -67847,7 +100327,12 @@ "sF": "21", "sU": "17", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "1991 Regular Season - Week 16" }, { "date": "Dec 15, 1991", @@ -67857,7 +100342,12 @@ "sF": "20", "sU": "14", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "1991 Regular Season - Week 16" }, { "date": "Dec 15, 1991", @@ -67867,7 +100357,12 @@ "sF": "3", "sU": "6", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1991 Regular Season - Week 16" }, { "date": "Dec 15, 1991", @@ -67876,8 +100371,13 @@ "und": "Dallas Cowboys", "sF": "13", "sU": "25", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 32.0, + "pScore": { + "sU": 14.25, + "sF": 17.75 + }, + "week": "1991 Regular Season - Week 16" }, { "date": "Dec 15, 1991", @@ -67887,7 +100387,12 @@ "sF": "17", "sU": "10", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1991 Regular Season - Week 16" }, { "date": "Dec 15, 1991", @@ -67896,8 +100401,13 @@ "und": "Phoenix Cardinals", "sF": "24", "sU": "19", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 34.0, + "pScore": { + "sU": 11.25, + "sF": 22.75 + }, + "week": "1991 Regular Season - Week 16" }, { "date": "Dec 15, 1991", @@ -67907,7 +100417,12 @@ "sF": "30", "sU": "38", "spread": "1", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.5, + "sF": 19.5 + }, + "week": "1991 Regular Season - Week 16" }, { "date": "Dec 15, 1991", @@ -67917,7 +100432,12 @@ "sF": "34", "sU": "17", "spread": "9", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.0, + "sF": 23.0 + }, + "week": "1991 Regular Season - Week 16" }, { "date": "Dec 15, 1991", @@ -67927,7 +100447,12 @@ "sF": "35", "sU": "7", "spread": "13", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 14.75, + "sF": 27.75 + }, + "week": "1991 Regular Season - Week 16" }, { "date": "Dec 16, 1991", @@ -67937,7 +100462,12 @@ "sF": "27", "sU": "0", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1991 Regular Season - Week 16" }, { "date": "Dec 21, 1991", @@ -67947,7 +100477,12 @@ "sF": "20", "sU": "24", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1991 Regular Season - Week 17" }, { "date": "Dec 21, 1991", @@ -67957,7 +100492,12 @@ "sF": "7", "sU": "27", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "1991 Regular Season - Week 17" }, { "date": "Dec 22, 1991", @@ -67967,7 +100507,12 @@ "sF": "14", "sU": "17", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "1991 Regular Season - Week 17" }, { "date": "Dec 22, 1991", @@ -67977,7 +100522,12 @@ "sF": "7", "sU": "29", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1991 Regular Season - Week 17" }, { "date": "Dec 22, 1991", @@ -67987,7 +100537,12 @@ "sF": "31", "sU": "27", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1991 Regular Season - Week 17" }, { "date": "Dec 22, 1991", @@ -67996,8 +100551,13 @@ "und": "New York Jets", "sF": "20", "sU": "23", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "1991 Regular Season - Week 17" }, { "date": "Dec 22, 1991", @@ -68007,7 +100567,12 @@ "sF": "17", "sU": "10", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1991 Regular Season - Week 17" }, { "date": "Dec 22, 1991", @@ -68016,8 +100581,13 @@ "und": "Indianapolis Colts", "sF": "17", "sU": "3", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 35.0, + "pScore": { + "sU": 14.75, + "sF": 20.25 + }, + "week": "1991 Regular Season - Week 17" }, { "date": "Dec 22, 1991", @@ -68026,8 +100596,13 @@ "und": "Kansas City Chiefs", "sF": "21", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.0, + "pScore": { + "sU": 16.25, + "sF": 18.75 + }, + "week": "1991 Regular Season - Week 17" }, { "date": "Dec 22, 1991", @@ -68037,7 +100612,12 @@ "sF": "22", "sU": "24", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1991 Regular Season - Week 17" }, { "date": "Dec 22, 1991", @@ -68047,7 +100627,12 @@ "sF": "27", "sU": "3", "spread": "7", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.0, + "sF": 21.0 + }, + "week": "1991 Regular Season - Week 17" }, { "date": "Dec 22, 1991", @@ -68057,7 +100642,12 @@ "sF": "17", "sU": "14", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1991 Regular Season - Week 17" }, { "date": "Dec 22, 1991", @@ -68067,7 +100657,12 @@ "sF": "23", "sU": "9", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1991 Regular Season - Week 17" }, { "date": "Dec 23, 1991", @@ -68077,7 +100672,12 @@ "sF": "52", "sU": "14", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "1991 Regular Season - Week 17" }, { "date": "Dec 28, 1991", @@ -68087,7 +100687,12 @@ "sF": "10", "sU": "6", "spread": "5", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.5, + "sF": 20.5 + }, + "week": "1991 Playoffs" }, { "date": "Dec 28, 1991", @@ -68097,7 +100702,12 @@ "sF": "20", "sU": "27", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1991 Playoffs" }, { "date": "Dec 29, 1991", @@ -68107,7 +100717,12 @@ "sF": "13", "sU": "17", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1991 Playoffs" }, { "date": "Dec 29, 1991", @@ -68117,7 +100732,12 @@ "sF": "17", "sU": "10", "spread": "9", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.5, + "sF": 26.5 + }, + "week": "1991 Playoffs" }, { "date": "Jan 4, 1992", @@ -68126,8 +100746,13 @@ "und": "Atlanta Falcons (6)", "sF": "24", "sU": "7", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 43.0, + "pScore": { + "sU": 15.75, + "sF": 27.25 + }, + "week": "1991 Playoffs" }, { "date": "Jan 4, 1992", @@ -68136,8 +100761,13 @@ "und": "Houston Oilers (3)", "sF": "26", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1991 Playoffs" }, { "date": "Jan 5, 1992", @@ -68146,8 +100776,13 @@ "und": "Kansas City Chiefs (4)", "sF": "37", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 41.0, + "pScore": { + "sU": 15.25, + "sF": 25.75 + }, + "week": "1991 Playoffs" }, { "date": "Jan 12, 1992", @@ -68156,8 +100791,13 @@ "und": "Denver Broncos (2)", "sF": "10", "sU": "7", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 46.0, + "pScore": { + "sU": 17.25, + "sF": 28.75 + }, + "week": "1991 Playoffs" }, { "date": "Jan 12, 1992", @@ -68167,7 +100807,12 @@ "sF": "41", "sU": "10", "spread": "14", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 14.5, + "sF": 28.5 + }, + "week": "1991 Playoffs" }, { "date": "Jan 26, 1992", @@ -68177,7 +100822,12 @@ "sF": "37", "sU": "24", "spread": "7", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.5, + "sF": 27.5 + }, + "week": "1991 Playoffs" }, { "date": "Sep 6, 1992", @@ -68187,7 +100837,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1992 Regular Season - Week 1" }, { "date": "Sep 6, 1992", @@ -68197,7 +100852,12 @@ "sF": "40", "sU": "7", "spread": "11", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.0, + "sF": 28.0 + }, + "week": "1992 Regular Season - Week 1" }, { "date": "Sep 6, 1992", @@ -68206,8 +100866,13 @@ "und": "Detroit Lions", "sF": "27", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1992 Regular Season - Week 1" }, { "date": "Sep 6, 1992", @@ -68217,7 +100882,12 @@ "sF": "23", "sU": "20", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "1992 Regular Season - Week 1" }, { "date": "Sep 6, 1992", @@ -68226,8 +100896,13 @@ "und": "Pittsburgh Steelers", "sF": "24", "sU": "29", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 45.0, + "pScore": { + "sU": 16.25, + "sF": 28.75 + }, + "week": "1992 Regular Season - Week 1" }, { "date": "Sep 6, 1992", @@ -68237,7 +100912,12 @@ "sF": "3", "sU": "14", "spread": "6", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 14.0, + "sF": 20.0 + }, + "week": "1992 Regular Season - Week 1" }, { "date": "Sep 6, 1992", @@ -68246,8 +100926,13 @@ "und": "New Orleans Saints", "sF": "15", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 34.0, + "pScore": { + "sU": 15.25, + "sF": 18.75 + }, + "week": "1992 Regular Season - Week 1" }, { "date": "Sep 6, 1992", @@ -68257,7 +100942,12 @@ "sF": "31", "sU": "14", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1992 Regular Season - Week 1" }, { "date": "Sep 6, 1992", @@ -68266,8 +100956,13 @@ "und": "San Diego Chargers", "sF": "24", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.0, + "pScore": { + "sU": 16.25, + "sF": 18.75 + }, + "week": "1992 Regular Season - Week 1" }, { "date": "Sep 6, 1992", @@ -68277,7 +100972,12 @@ "sF": "3", "sU": "21", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1992 Regular Season - Week 1" }, { "date": "Sep 6, 1992", @@ -68287,7 +100987,12 @@ "sF": "23", "sU": "7", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1992 Regular Season - Week 1" }, { "date": "Sep 6, 1992", @@ -68297,7 +101002,12 @@ "sF": "17", "sU": "13", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1992 Regular Season - Week 1" }, { "date": "Sep 7, 1992", @@ -68307,7 +101017,12 @@ "sF": "10", "sU": "23", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "1992 Regular Season - Week 1" }, { "date": "Sep 13, 1992", @@ -68316,8 +101031,13 @@ "und": "Cincinnati Bengals", "sF": "21", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1992 Regular Season - Week 2" }, { "date": "Sep 13, 1992", @@ -68326,8 +101046,13 @@ "und": "Minnesota Vikings", "sF": "31", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1992 Regular Season - Week 2" }, { "date": "Sep 13, 1992", @@ -68337,7 +101062,12 @@ "sF": "26", "sU": "7", "spread": "10", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 11.5, + "sF": 21.5 + }, + "week": "1992 Regular Season - Week 2" }, { "date": "Sep 13, 1992", @@ -68347,7 +101077,12 @@ "sF": "28", "sU": "6", "spread": "4", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.0, + "sF": 19.0 + }, + "week": "1992 Regular Season - Week 2" }, { "date": "Sep 13, 1992", @@ -68357,7 +101092,12 @@ "sF": "34", "sU": "28", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1992 Regular Season - Week 2" }, { "date": "Sep 13, 1992", @@ -68366,8 +101106,13 @@ "und": "Green Bay Packers", "sF": "31", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1992 Regular Season - Week 2" }, { "date": "Sep 13, 1992", @@ -68377,7 +101122,12 @@ "sF": "24", "sU": "17", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "1992 Regular Season - Week 2" }, { "date": "Sep 13, 1992", @@ -68386,8 +101136,13 @@ "und": "San Diego Chargers", "sF": "21", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 34.0, + "pScore": { + "sU": 13.75, + "sF": 20.25 + }, + "week": "1992 Regular Season - Week 2" }, { "date": "Sep 13, 1992", @@ -68397,7 +101152,12 @@ "sF": "10", "sU": "20", "spread": "9", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.0, + "sF": 24.0 + }, + "week": "1992 Regular Season - Week 2" }, { "date": "Sep 13, 1992", @@ -68407,7 +101167,12 @@ "sF": "14", "sU": "0", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1992 Regular Season - Week 2" }, { "date": "Sep 13, 1992", @@ -68416,8 +101181,13 @@ "und": "Pittsburgh Steelers", "sF": "10", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1992 Regular Season - Week 2" }, { "date": "Sep 13, 1992", @@ -68426,8 +101196,13 @@ "und": "Buffalo Bills", "sF": "31", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1992 Regular Season - Week 2" }, { "date": "Sep 13, 1992", @@ -68437,7 +101212,12 @@ "sF": "31", "sU": "14", "spread": "7", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.0, + "sF": 21.0 + }, + "week": "1992 Regular Season - Week 2" }, { "date": "Sep 14, 1992", @@ -68446,8 +101226,13 @@ "und": "Cleveland Browns", "sF": "27", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1992 Regular Season - Week 2" }, { "date": "Sep 20, 1992", @@ -68457,7 +101242,12 @@ "sF": "7", "sU": "10", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1992 Regular Season - Week 3" }, { "date": "Sep 20, 1992", @@ -68466,8 +101256,13 @@ "und": "Kansas City Chiefs", "sF": "23", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.0, + "pScore": { + "sU": 16.75, + "sF": 22.25 + }, + "week": "1992 Regular Season - Week 3" }, { "date": "Sep 20, 1992", @@ -68477,7 +101272,12 @@ "sF": "26", "sU": "20", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1992 Regular Season - Week 3" }, { "date": "Sep 20, 1992", @@ -68487,7 +101287,12 @@ "sF": "6", "sU": "10", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "1992 Regular Season - Week 3" }, { "date": "Sep 20, 1992", @@ -68497,7 +101302,12 @@ "sF": "31", "sU": "14", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1992 Regular Season - Week 3" }, { "date": "Sep 20, 1992", @@ -68506,8 +101316,13 @@ "und": "Denver Broncos", "sF": "30", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "1992 Regular Season - Week 3" }, { "date": "Sep 20, 1992", @@ -68516,8 +101331,13 @@ "und": "Phoenix Cardinals", "sF": "31", "sU": "20", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 40.0, + "pScore": { + "sU": 13.25, + "sF": 26.75 + }, + "week": "1992 Regular Season - Week 3" }, { "date": "Sep 20, 1992", @@ -68526,8 +101346,13 @@ "und": "Cleveland Browns", "sF": "16", "sU": "28", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 33.0, + "pScore": { + "sU": 12.25, + "sF": 20.75 + }, + "week": "1992 Regular Season - Week 3" }, { "date": "Sep 20, 1992", @@ -68536,8 +101361,13 @@ "und": "Los Angeles Rams", "sF": "26", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.0, + "pScore": { + "sU": 14.75, + "sF": 23.25 + }, + "week": "1992 Regular Season - Week 3" }, { "date": "Sep 20, 1992", @@ -68547,7 +101377,12 @@ "sF": "6", "sU": "23", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1992 Regular Season - Week 3" }, { "date": "Sep 20, 1992", @@ -68557,7 +101392,12 @@ "sF": "13", "sU": "10", "spread": "9", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 18.0, + "sF": 27.0 + }, + "week": "1992 Regular Season - Week 3" }, { "date": "Sep 20, 1992", @@ -68567,7 +101407,12 @@ "sF": "38", "sU": "0", "spread": "17", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 12.0, + "sF": 29.0 + }, + "week": "1992 Regular Season - Week 3" }, { "date": "Sep 21, 1992", @@ -68577,7 +101422,12 @@ "sF": "14", "sU": "27", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "1992 Regular Season - Week 3" }, { "date": "Sep 27, 1992", @@ -68586,8 +101436,13 @@ "und": "Atlanta Falcons", "sF": "41", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "1992 Regular Season - Week 4" }, { "date": "Sep 27, 1992", @@ -68597,7 +101452,12 @@ "sF": "7", "sU": "42", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1992 Regular Season - Week 4" }, { "date": "Sep 27, 1992", @@ -68606,8 +101466,13 @@ "und": "Cleveland Browns", "sF": "12", "sU": "0", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 34.0, + "pScore": { + "sU": 14.75, + "sF": 19.25 + }, + "week": "1992 Regular Season - Week 4" }, { "date": "Sep 27, 1992", @@ -68616,8 +101481,13 @@ "und": "Tampa Bay Buccaneers", "sF": "23", "sU": "27", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 41.0, + "pScore": { + "sU": 15.25, + "sF": 25.75 + }, + "week": "1992 Regular Season - Week 4" }, { "date": "Sep 27, 1992", @@ -68627,7 +101497,12 @@ "sF": "27", "sU": "0", "spread": "11", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.0, + "sF": 26.0 + }, + "week": "1992 Regular Season - Week 4" }, { "date": "Sep 27, 1992", @@ -68637,7 +101512,12 @@ "sF": "41", "sU": "7", "spread": "14", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 12.0, + "sF": 26.0 + }, + "week": "1992 Regular Season - Week 4" }, { "date": "Sep 27, 1992", @@ -68646,8 +101526,13 @@ "und": "Green Bay Packers", "sF": "3", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1992 Regular Season - Week 4" }, { "date": "Sep 27, 1992", @@ -68657,7 +101542,12 @@ "sF": "19", "sU": "17", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "1992 Regular Season - Week 4" }, { "date": "Sep 27, 1992", @@ -68667,7 +101557,12 @@ "sF": "16", "sU": "10", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1992 Regular Season - Week 4" }, { "date": "Sep 28, 1992", @@ -68677,7 +101572,12 @@ "sF": "27", "sU": "7", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1992 Regular Season - Week 4" }, { "date": "Oct 4, 1992", @@ -68686,8 +101586,13 @@ "und": "Green Bay Packers", "sF": "24", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "1992 Regular Season - Week 5" }, { "date": "Oct 4, 1992", @@ -68696,8 +101601,13 @@ "und": "Miami Dolphins", "sF": "10", "sU": "37", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 50.0, + "pScore": { + "sU": 19.75, + "sF": 30.25 + }, + "week": "1992 Regular Season - Week 5" }, { "date": "Oct 4, 1992", @@ -68707,7 +101617,12 @@ "sF": "21", "sU": "20", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "1992 Regular Season - Week 5" }, { "date": "Oct 4, 1992", @@ -68717,7 +101632,12 @@ "sF": "14", "sU": "24", "spread": "10", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 12.5, + "sF": 22.5 + }, + "week": "1992 Regular Season - Week 5" }, { "date": "Oct 4, 1992", @@ -68727,7 +101647,12 @@ "sF": "20", "sU": "19", "spread": "1", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 16.0, + "sF": 17.0 + }, + "week": "1992 Regular Season - Week 5" }, { "date": "Oct 4, 1992", @@ -68737,7 +101662,12 @@ "sF": "24", "sU": "27", "spread": "10", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.5, + "sF": 24.5 + }, + "week": "1992 Regular Season - Week 5" }, { "date": "Oct 4, 1992", @@ -68746,8 +101676,13 @@ "und": "Seattle Seahawks", "sF": "17", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 32.0, + "pScore": { + "sU": 14.25, + "sF": 17.75 + }, + "week": "1992 Regular Season - Week 5" }, { "date": "Oct 4, 1992", @@ -68757,7 +101692,12 @@ "sF": "27", "sU": "24", "spread": "15", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 13.5, + "sF": 28.5 + }, + "week": "1992 Regular Season - Week 5" }, { "date": "Oct 4, 1992", @@ -68767,7 +101707,12 @@ "sF": "30", "sU": "21", "spread": "10", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 12.5, + "sF": 22.5 + }, + "week": "1992 Regular Season - Week 5" }, { "date": "Oct 5, 1992", @@ -68776,8 +101721,13 @@ "und": "Dallas Cowboys", "sF": "31", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1992 Regular Season - Week 5" }, { "date": "Oct 11, 1992", @@ -68787,7 +101737,12 @@ "sF": "9", "sU": "17", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "1992 Regular Season - Week 6" }, { "date": "Oct 11, 1992", @@ -68797,7 +101752,12 @@ "sF": "27", "sU": "0", "spread": "18", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 9.5, + "sF": 27.5 + }, + "week": "1992 Regular Season - Week 6" }, { "date": "Oct 11, 1992", @@ -68807,7 +101767,12 @@ "sF": "17", "sU": "24", "spread": "2", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 16.0, + "sF": 18.0 + }, + "week": "1992 Regular Season - Week 6" }, { "date": "Oct 11, 1992", @@ -68817,7 +101782,12 @@ "sF": "21", "sU": "17", "spread": "8", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.0, + "sF": 26.0 + }, + "week": "1992 Regular Season - Week 6" }, { "date": "Oct 11, 1992", @@ -68826,8 +101796,13 @@ "und": "New England Patriots", "sF": "24", "sU": "12", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": 39.0, + "pScore": { + "sU": 10.75, + "sF": 28.25 + }, + "week": "1992 Regular Season - Week 6" }, { "date": "Oct 11, 1992", @@ -68837,7 +101812,12 @@ "sF": "31", "sU": "21", "spread": "8", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.0, + "sF": 23.0 + }, + "week": "1992 Regular Season - Week 6" }, { "date": "Oct 11, 1992", @@ -68847,7 +101827,12 @@ "sF": "38", "sU": "24", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1992 Regular Season - Week 6" }, { "date": "Oct 11, 1992", @@ -68857,7 +101842,12 @@ "sF": "3", "sU": "6", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1992 Regular Season - Week 6" }, { "date": "Oct 11, 1992", @@ -68866,8 +101856,13 @@ "und": "Los Angeles Raiders", "sF": "3", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.0, + "pScore": { + "sU": 16.25, + "sF": 25.75 + }, + "week": "1992 Regular Season - Week 6" }, { "date": "Oct 11, 1992", @@ -68877,7 +101872,12 @@ "sF": "13", "sU": "10", "spread": "9", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 12.5, + "sF": 21.5 + }, + "week": "1992 Regular Season - Week 6" }, { "date": "Oct 12, 1992", @@ -68887,7 +101887,12 @@ "sF": "34", "sU": "3", "spread": "8", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.0, + "sF": 23.0 + }, + "week": "1992 Regular Season - Week 6" }, { "date": "Oct 15, 1992", @@ -68896,8 +101901,13 @@ "und": "Detroit Lions", "sF": "31", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "1992 Regular Season - Week 7" }, { "date": "Oct 18, 1992", @@ -68906,8 +101916,13 @@ "und": "Tampa Bay Buccaneers", "sF": "31", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "1992 Regular Season - Week 7" }, { "date": "Oct 18, 1992", @@ -68917,7 +101932,12 @@ "sF": "17", "sU": "6", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "1992 Regular Season - Week 7" }, { "date": "Oct 18, 1992", @@ -68927,7 +101947,12 @@ "sF": "17", "sU": "10", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1992 Regular Season - Week 7" }, { "date": "Oct 18, 1992", @@ -68937,7 +101962,12 @@ "sF": "14", "sU": "34", "spread": "2", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 15.0, + "sF": 17.0 + }, + "week": "1992 Regular Season - Week 7" }, { "date": "Oct 18, 1992", @@ -68947,7 +101977,12 @@ "sF": "16", "sU": "12", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1992 Regular Season - Week 7" }, { "date": "Oct 18, 1992", @@ -68957,7 +101992,12 @@ "sF": "21", "sU": "27", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1992 Regular Season - Week 7" }, { "date": "Oct 18, 1992", @@ -68966,8 +102006,13 @@ "und": "Los Angeles Rams", "sF": "17", "sU": "38", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.0, + "pScore": { + "sU": 17.75, + "sF": 19.25 + }, + "week": "1992 Regular Season - Week 7" }, { "date": "Oct 18, 1992", @@ -68977,7 +102022,12 @@ "sF": "38", "sU": "17", "spread": "15", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 12.0, + "sF": 27.0 + }, + "week": "1992 Regular Season - Week 7" }, { "date": "Oct 18, 1992", @@ -68987,7 +102037,12 @@ "sF": "30", "sU": "21", "spread": "7", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.0, + "sF": 21.0 + }, + "week": "1992 Regular Season - Week 7" }, { "date": "Oct 18, 1992", @@ -68997,7 +102052,12 @@ "sF": "56", "sU": "17", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "1992 Regular Season - Week 7" }, { "date": "Oct 18, 1992", @@ -69007,7 +102067,12 @@ "sF": "19", "sU": "0", "spread": "7", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 12.5, + "sF": 19.5 + }, + "week": "1992 Regular Season - Week 7" }, { "date": "Oct 19, 1992", @@ -69016,8 +102081,13 @@ "und": "Cincinnati Bengals", "sF": "20", "sU": "0", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.0, + "pScore": { + "sU": 15.25, + "sF": 22.75 + }, + "week": "1992 Regular Season - Week 7" }, { "date": "Oct 25, 1992", @@ -69026,8 +102096,13 @@ "und": "Green Bay Packers", "sF": "30", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1992 Regular Season - Week 8" }, { "date": "Oct 25, 1992", @@ -69037,7 +102112,12 @@ "sF": "26", "sU": "10", "spread": "17", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 13.5, + "sF": 30.5 + }, + "week": "1992 Regular Season - Week 8" }, { "date": "Oct 25, 1992", @@ -69046,8 +102126,13 @@ "und": "Minnesota Vikings", "sF": "15", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1992 Regular Season - Week 8" }, { "date": "Oct 25, 1992", @@ -69056,8 +102141,13 @@ "und": "Seattle Seahawks", "sF": "23", "sU": "10", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 32.0, + "pScore": { + "sU": 8.75, + "sF": 23.25 + }, + "week": "1992 Regular Season - Week 8" }, { "date": "Oct 25, 1992", @@ -69067,7 +102157,12 @@ "sF": "7", "sU": "3", "spread": "15", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 11.5, + "sF": 26.5 + }, + "week": "1992 Regular Season - Week 8" }, { "date": "Oct 25, 1992", @@ -69076,8 +102171,13 @@ "und": "Detroit Lions", "sF": "7", "sU": "38", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1992 Regular Season - Week 8" }, { "date": "Oct 25, 1992", @@ -69087,7 +102187,12 @@ "sF": "28", "sU": "13", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1992 Regular Season - Week 8" }, { "date": "Oct 25, 1992", @@ -69096,8 +102201,13 @@ "und": "Indianapolis Colts", "sF": "20", "sU": "31", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 39.0, + "pScore": { + "sU": 12.75, + "sF": 26.25 + }, + "week": "1992 Regular Season - Week 8" }, { "date": "Oct 25, 1992", @@ -69106,8 +102216,13 @@ "und": "New England Patriots", "sF": "19", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 30.0, + "pScore": { + "sU": 12.75, + "sF": 17.25 + }, + "week": "1992 Regular Season - Week 8" }, { "date": "Oct 25, 1992", @@ -69116,8 +102231,13 @@ "und": "Denver Broncos", "sF": "24", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 33.0, + "pScore": { + "sU": 15.75, + "sF": 17.25 + }, + "week": "1992 Regular Season - Week 8" }, { "date": "Oct 25, 1992", @@ -69126,8 +102246,13 @@ "und": "Pittsburgh Steelers", "sF": "3", "sU": "27", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 36.0, + "pScore": { + "sU": 13.75, + "sF": 22.25 + }, + "week": "1992 Regular Season - Week 8" }, { "date": "Oct 26, 1992", @@ -69136,8 +102261,13 @@ "und": "New York Jets", "sF": "24", "sU": "20", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.0, + "pScore": { + "sU": 17.25, + "sF": 25.75 + }, + "week": "1992 Regular Season - Week 8" }, { "date": "Nov 1, 1992", @@ -69147,7 +102277,12 @@ "sF": "30", "sU": "28", "spread": "5", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.5, + "sF": 23.5 + }, + "week": "1992 Regular Season - Week 9" }, { "date": "Nov 1, 1992", @@ -69157,7 +102292,12 @@ "sF": "16", "sU": "7", "spread": "19", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 10.5, + "sF": 29.5 + }, + "week": "1992 Regular Season - Week 9" }, { "date": "Nov 1, 1992", @@ -69167,7 +102307,12 @@ "sF": "13", "sU": "27", "spread": "10", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.5, + "sF": 24.5 + }, + "week": "1992 Regular Season - Week 9" }, { "date": "Nov 1, 1992", @@ -69176,8 +102321,13 @@ "und": "Tampa Bay Buccaneers", "sF": "23", "sU": "21", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 36.0, + "pScore": { + "sU": 12.25, + "sF": 23.75 + }, + "week": "1992 Regular Season - Week 9" }, { "date": "Nov 1, 1992", @@ -69186,8 +102336,13 @@ "und": "New York Jets", "sF": "14", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "1992 Regular Season - Week 9" }, { "date": "Nov 1, 1992", @@ -69197,7 +102352,12 @@ "sF": "20", "sU": "21", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1992 Regular Season - Week 9" }, { "date": "Nov 1, 1992", @@ -69207,7 +102367,12 @@ "sF": "10", "sU": "30", "spread": "2", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.5, + "sF": 18.5 + }, + "week": "1992 Regular Season - Week 9" }, { "date": "Nov 1, 1992", @@ -69217,7 +102382,12 @@ "sF": "20", "sU": "10", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1992 Regular Season - Week 9" }, { "date": "Nov 1, 1992", @@ -69227,7 +102397,12 @@ "sF": "14", "sU": "24", "spread": "13", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 15.5, + "sF": 28.5 + }, + "week": "1992 Regular Season - Week 9" }, { "date": "Nov 1, 1992", @@ -69237,7 +102412,12 @@ "sF": "26", "sU": "0", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1992 Regular Season - Week 9" }, { "date": "Nov 1, 1992", @@ -69246,8 +102426,13 @@ "und": "New York Giants", "sF": "7", "sU": "24", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 38.0, + "pScore": { + "sU": 13.75, + "sF": 24.25 + }, + "week": "1992 Regular Season - Week 9" }, { "date": "Nov 2, 1992", @@ -69256,8 +102441,13 @@ "und": "Minnesota Vikings", "sF": "10", "sU": "38", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1992 Regular Season - Week 9" }, { "date": "Nov 8, 1992", @@ -69266,8 +102456,13 @@ "und": "Detroit Lions", "sF": "37", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1992 Regular Season - Week 10" }, { "date": "Nov 8, 1992", @@ -69277,7 +102472,12 @@ "sF": "14", "sU": "24", "spread": "11", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 14.5, + "sF": 25.5 + }, + "week": "1992 Regular Season - Week 10" }, { "date": "Nov 8, 1992", @@ -69286,8 +102486,13 @@ "und": "Indianapolis Colts", "sF": "28", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "1992 Regular Season - Week 10" }, { "date": "Nov 8, 1992", @@ -69297,7 +102502,12 @@ "sF": "31", "sU": "14", "spread": "8", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 12.0, + "sF": 20.0 + }, + "week": "1992 Regular Season - Week 10" }, { "date": "Nov 8, 1992", @@ -69307,7 +102517,12 @@ "sF": "27", "sU": "7", "spread": "9", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.0, + "sF": 23.0 + }, + "week": "1992 Regular Season - Week 10" }, { "date": "Nov 8, 1992", @@ -69316,8 +102531,13 @@ "und": "Los Angeles Raiders", "sF": "31", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 33.0, + "pScore": { + "sU": 13.25, + "sF": 19.75 + }, + "week": "1992 Regular Season - Week 10" }, { "date": "Nov 8, 1992", @@ -69327,7 +102547,12 @@ "sF": "35", "sU": "7", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1992 Regular Season - Week 10" }, { "date": "Nov 8, 1992", @@ -69337,7 +102562,12 @@ "sF": "28", "sU": "20", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1992 Regular Season - Week 10" }, { "date": "Nov 8, 1992", @@ -69347,7 +102577,12 @@ "sF": "27", "sU": "16", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "1992 Regular Season - Week 10" }, { "date": "Nov 8, 1992", @@ -69357,7 +102592,12 @@ "sF": "16", "sU": "14", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "1992 Regular Season - Week 10" }, { "date": "Nov 8, 1992", @@ -69367,7 +102607,12 @@ "sF": "14", "sU": "20", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "1992 Regular Season - Week 10" }, { "date": "Nov 8, 1992", @@ -69376,8 +102621,13 @@ "und": "Seattle Seahawks", "sF": "16", "sU": "3", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 33.0, + "pScore": { + "sU": 10.25, + "sF": 22.75 + }, + "week": "1992 Regular Season - Week 10" }, { "date": "Nov 8, 1992", @@ -69387,7 +102637,12 @@ "sF": "28", "sU": "31", "spread": "9", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.0, + "sF": 24.0 + }, + "week": "1992 Regular Season - Week 10" }, { "date": "Nov 9, 1992", @@ -69397,7 +102652,12 @@ "sF": "41", "sU": "3", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "1992 Regular Season - Week 10" }, { "date": "Nov 15, 1992", @@ -69407,7 +102667,12 @@ "sF": "20", "sU": "17", "spread": "4", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.75, + "sF": 22.75 + }, + "week": "1992 Regular Season - Week 11" }, { "date": "Nov 15, 1992", @@ -69416,8 +102681,13 @@ "und": "San Diego Chargers", "sF": "13", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 31.0, + "pScore": { + "sU": 14.25, + "sF": 16.75 + }, + "week": "1992 Regular Season - Week 11" }, { "date": "Nov 15, 1992", @@ -69426,8 +102696,13 @@ "und": "Green Bay Packers", "sF": "24", "sU": "27", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 35.0, + "pScore": { + "sU": 13.25, + "sF": 21.75 + }, + "week": "1992 Regular Season - Week 11" }, { "date": "Nov 15, 1992", @@ -69437,7 +102712,12 @@ "sF": "34", "sU": "37", "spread": "7", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 12.5, + "sF": 19.5 + }, + "week": "1992 Regular Season - Week 11" }, { "date": "Nov 15, 1992", @@ -69447,7 +102727,12 @@ "sF": "35", "sU": "16", "spread": "1", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 17.0, + "sF": 18.0 + }, + "week": "1992 Regular Season - Week 11" }, { "date": "Nov 15, 1992", @@ -69456,8 +102741,13 @@ "und": "Houston Oilers", "sF": "13", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.0, + "pScore": { + "sU": 17.75, + "sF": 25.25 + }, + "week": "1992 Regular Season - Week 11" }, { "date": "Nov 15, 1992", @@ -69467,7 +102757,12 @@ "sF": "17", "sU": "14", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1992 Regular Season - Week 11" }, { "date": "Nov 15, 1992", @@ -69477,7 +102772,12 @@ "sF": "17", "sU": "14", "spread": "11", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 11.5, + "sF": 22.5 + }, + "week": "1992 Regular Season - Week 11" }, { "date": "Nov 15, 1992", @@ -69486,8 +102786,13 @@ "und": "Los Angeles Rams", "sF": "23", "sU": "27", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 40.0, + "pScore": { + "sU": 12.75, + "sF": 27.25 + }, + "week": "1992 Regular Season - Week 11" }, { "date": "Nov 15, 1992", @@ -69497,7 +102802,12 @@ "sF": "20", "sU": "3", "spread": "14", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 9.0, + "sF": 23.0 + }, + "week": "1992 Regular Season - Week 11" }, { "date": "Nov 15, 1992", @@ -69507,7 +102817,12 @@ "sF": "21", "sU": "20", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1992 Regular Season - Week 11" }, { "date": "Nov 15, 1992", @@ -69516,8 +102831,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1992 Regular Season - Week 11" }, { "date": "Nov 15, 1992", @@ -69526,8 +102846,13 @@ "und": "New York Giants", "sF": "27", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1992 Regular Season - Week 11" }, { "date": "Nov 16, 1992", @@ -69537,7 +102862,12 @@ "sF": "26", "sU": "20", "spread": "1", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.75, + "sF": 23.75 + }, + "week": "1992 Regular Season - Week 11" }, { "date": "Nov 22, 1992", @@ -69547,7 +102877,12 @@ "sF": "41", "sU": "14", "spread": "13", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 15.0, + "sF": 28.0 + }, + "week": "1992 Regular Season - Week 12" }, { "date": "Nov 22, 1992", @@ -69556,8 +102891,13 @@ "und": "Green Bay Packers", "sF": "3", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "1992 Regular Season - Week 12" }, { "date": "Nov 22, 1992", @@ -69566,8 +102906,13 @@ "und": "Detroit Lions", "sF": "13", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1992 Regular Season - Week 12" }, { "date": "Nov 22, 1992", @@ -69576,8 +102921,13 @@ "und": "Houston Oilers", "sF": "19", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1992 Regular Season - Week 12" }, { "date": "Nov 22, 1992", @@ -69587,7 +102937,12 @@ "sF": "17", "sU": "13", "spread": "9", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.0, + "sF": 23.0 + }, + "week": "1992 Regular Season - Week 12" }, { "date": "Nov 22, 1992", @@ -69596,8 +102951,13 @@ "und": "New York Giants", "sF": "47", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "1992 Regular Season - Week 12" }, { "date": "Nov 22, 1992", @@ -69607,7 +102967,12 @@ "sF": "30", "sU": "14", "spread": "12", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 10.5, + "sF": 22.5 + }, + "week": "1992 Regular Season - Week 12" }, { "date": "Nov 22, 1992", @@ -69616,8 +102981,13 @@ "und": "Denver Broncos", "sF": "24", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "1992 Regular Season - Week 12" }, { "date": "Nov 22, 1992", @@ -69627,7 +102997,12 @@ "sF": "27", "sU": "10", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1992 Regular Season - Week 12" }, { "date": "Nov 22, 1992", @@ -69636,8 +103011,13 @@ "und": "New England Patriots", "sF": "3", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 35.0, + "pScore": { + "sU": 15.25, + "sF": 19.75 + }, + "week": "1992 Regular Season - Week 12" }, { "date": "Nov 22, 1992", @@ -69646,8 +103026,13 @@ "und": "Phoenix Cardinals", "sF": "16", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 42.0, + "pScore": { + "sU": 16.75, + "sF": 25.25 + }, + "week": "1992 Regular Season - Week 12" }, { "date": "Nov 22, 1992", @@ -69656,8 +103041,13 @@ "und": "Tampa Bay Buccaneers", "sF": "29", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 37.0, + "pScore": { + "sU": 14.25, + "sF": 22.75 + }, + "week": "1992 Regular Season - Week 12" }, { "date": "Nov 22, 1992", @@ -69667,7 +103057,12 @@ "sF": "24", "sU": "14", "spread": "12", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 10.0, + "sF": 22.0 + }, + "week": "1992 Regular Season - Week 12" }, { "date": "Nov 23, 1992", @@ -69677,7 +103072,12 @@ "sF": "20", "sU": "3", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1992 Regular Season - Week 12" }, { "date": "Nov 26, 1992", @@ -69686,8 +103086,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.0, + "pScore": { + "sU": 19.75, + "sF": 21.25 + }, + "week": "1992 Regular Season - Week 13" }, { "date": "Nov 26, 1992", @@ -69697,7 +103102,12 @@ "sF": "30", "sU": "3", "spread": "15", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 13.0, + "sF": 28.0 + }, + "week": "1992 Regular Season - Week 13" }, { "date": "Nov 29, 1992", @@ -69706,8 +103116,13 @@ "und": "New England Patriots", "sF": "34", "sU": "0", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.0, + "pScore": { + "sU": 17.75, + "sF": 23.25 + }, + "week": "1992 Regular Season - Week 13" }, { "date": "Nov 29, 1992", @@ -69716,8 +103131,13 @@ "und": "Cincinnati Bengals", "sF": "21", "sU": "9", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.0, + "pScore": { + "sU": 14.25, + "sF": 21.75 + }, + "week": "1992 Regular Season - Week 13" }, { "date": "Nov 29, 1992", @@ -69726,8 +103146,13 @@ "und": "Chicago Bears", "sF": "27", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "1992 Regular Season - Week 13" }, { "date": "Nov 29, 1992", @@ -69736,8 +103161,13 @@ "und": "Tampa Bay Buccaneers", "sF": "19", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 36.0, + "pScore": { + "sU": 15.25, + "sF": 20.75 + }, + "week": "1992 Regular Season - Week 13" }, { "date": "Nov 29, 1992", @@ -69747,7 +103177,12 @@ "sF": "24", "sU": "13", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1992 Regular Season - Week 13" }, { "date": "Nov 29, 1992", @@ -69757,7 +103192,12 @@ "sF": "23", "sU": "7", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "1992 Regular Season - Week 13" }, { "date": "Nov 29, 1992", @@ -69767,7 +103207,12 @@ "sF": "41", "sU": "3", "spread": "8", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.0, + "sF": 22.0 + }, + "week": "1992 Regular Season - Week 13" }, { "date": "Nov 29, 1992", @@ -69776,8 +103221,13 @@ "und": "Indianapolis Colts", "sF": "13", "sU": "16", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 41.0, + "pScore": { + "sU": 12.25, + "sF": 28.75 + }, + "week": "1992 Regular Season - Week 13" }, { "date": "Nov 29, 1992", @@ -69786,8 +103236,13 @@ "und": "Los Angeles Rams", "sF": "31", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1992 Regular Season - Week 13" }, { "date": "Nov 29, 1992", @@ -69796,8 +103251,13 @@ "und": "Philadelphia Eagles", "sF": "20", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1992 Regular Season - Week 13" }, { "date": "Nov 29, 1992", @@ -69806,8 +103266,13 @@ "und": "Los Angeles Raiders", "sF": "27", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "1992 Regular Season - Week 13" }, { "date": "Nov 30, 1992", @@ -69816,8 +103281,13 @@ "und": "Seattle Seahawks", "sF": "13", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 34.0, + "pScore": { + "sU": 14.25, + "sF": 19.75 + }, + "week": "1992 Regular Season - Week 13" }, { "date": "Dec 3, 1992", @@ -69827,7 +103297,12 @@ "sF": "22", "sU": "14", "spread": "10", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.5, + "sF": 24.5 + }, + "week": "1992 Regular Season - Week 14" }, { "date": "Dec 6, 1992", @@ -69837,7 +103312,12 @@ "sF": "17", "sU": "24", "spread": "17", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 9.5, + "sF": 26.5 + }, + "week": "1992 Regular Season - Week 14" }, { "date": "Dec 6, 1992", @@ -69847,7 +103327,12 @@ "sF": "37", "sU": "21", "spread": "10", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 11.5, + "sF": 21.5 + }, + "week": "1992 Regular Season - Week 14" }, { "date": "Dec 6, 1992", @@ -69856,8 +103341,13 @@ "und": "Detroit Lions", "sF": "38", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "1992 Regular Season - Week 14" }, { "date": "Dec 6, 1992", @@ -69866,8 +103356,13 @@ "und": "Indianapolis Colts", "sF": "0", "sU": "6", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 33.0, + "pScore": { + "sU": 15.75, + "sF": 17.25 + }, + "week": "1992 Regular Season - Week 14" }, { "date": "Dec 6, 1992", @@ -69876,8 +103371,13 @@ "und": "Minnesota Vikings", "sF": "28", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 36.0, + "pScore": { + "sU": 15.25, + "sF": 20.75 + }, + "week": "1992 Regular Season - Week 14" }, { "date": "Dec 6, 1992", @@ -69886,8 +103386,13 @@ "und": "Seattle Seahawks", "sF": "20", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 31.0, + "pScore": { + "sU": 8.75, + "sF": 22.25 + }, + "week": "1992 Regular Season - Week 14" }, { "date": "Dec 6, 1992", @@ -69897,7 +103402,12 @@ "sF": "31", "sU": "27", "spread": "7", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.0, + "sF": 21.0 + }, + "week": "1992 Regular Season - Week 14" }, { "date": "Dec 6, 1992", @@ -69906,8 +103416,13 @@ "und": "Los Angeles Raiders", "sF": "7", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 33.0, + "pScore": { + "sU": 15.25, + "sF": 17.75 + }, + "week": "1992 Regular Season - Week 14" }, { "date": "Dec 6, 1992", @@ -69917,7 +103432,12 @@ "sF": "28", "sU": "10", "spread": "7", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.0, + "sF": 21.0 + }, + "week": "1992 Regular Season - Week 14" }, { "date": "Dec 6, 1992", @@ -69926,8 +103446,13 @@ "und": "Phoenix Cardinals", "sF": "27", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.0, + "pScore": { + "sU": 16.25, + "sF": 20.75 + }, + "week": "1992 Regular Season - Week 14" }, { "date": "Dec 6, 1992", @@ -69937,7 +103462,12 @@ "sF": "27", "sU": "3", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "1992 Regular Season - Week 14" }, { "date": "Dec 6, 1992", @@ -69947,7 +103477,12 @@ "sF": "27", "sU": "31", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "1992 Regular Season - Week 14" }, { "date": "Dec 7, 1992", @@ -69957,7 +103492,12 @@ "sF": "24", "sU": "7", "spread": "11", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 15.5, + "sF": 26.5 + }, + "week": "1992 Regular Season - Week 14" }, { "date": "Dec 12, 1992", @@ -69967,7 +103507,12 @@ "sF": "27", "sU": "17", "spread": "14", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 11.5, + "sF": 25.5 + }, + "week": "1992 Regular Season - Week 15" }, { "date": "Dec 12, 1992", @@ -69977,7 +103522,12 @@ "sF": "19", "sU": "0", "spread": "4", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.75, + "sF": 20.75 + }, + "week": "1992 Regular Season - Week 15" }, { "date": "Dec 13, 1992", @@ -69986,8 +103536,13 @@ "und": "Chicago Bears", "sF": "6", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "1992 Regular Season - Week 15" }, { "date": "Dec 13, 1992", @@ -69996,8 +103551,13 @@ "und": "Detroit Lions", "sF": "14", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1992 Regular Season - Week 15" }, { "date": "Dec 13, 1992", @@ -70006,8 +103566,13 @@ "und": "New England Patriots", "sF": "27", "sU": "20", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 33.0, + "pScore": { + "sU": 8.25, + "sF": 24.75 + }, + "week": "1992 Regular Season - Week 15" }, { "date": "Dec 13, 1992", @@ -70017,7 +103582,12 @@ "sF": "20", "sU": "17", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "1992 Regular Season - Week 15" }, { "date": "Dec 13, 1992", @@ -70026,8 +103596,13 @@ "und": "Indianapolis Colts", "sF": "6", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 34.0, + "pScore": { + "sU": 14.25, + "sF": 19.75 + }, + "week": "1992 Regular Season - Week 15" }, { "date": "Dec 13, 1992", @@ -70037,7 +103612,12 @@ "sF": "35", "sU": "7", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1992 Regular Season - Week 15" }, { "date": "Dec 13, 1992", @@ -70046,8 +103626,13 @@ "und": "Los Angeles Rams", "sF": "37", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "1992 Regular Season - Week 15" }, { "date": "Dec 13, 1992", @@ -70057,7 +103642,12 @@ "sF": "27", "sU": "10", "spread": "14", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 12.0, + "sF": 26.0 + }, + "week": "1992 Regular Season - Week 15" }, { "date": "Dec 13, 1992", @@ -70066,8 +103656,13 @@ "und": "Seattle Seahawks", "sF": "20", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 34.0, + "pScore": { + "sU": 12.25, + "sF": 21.75 + }, + "week": "1992 Regular Season - Week 15" }, { "date": "Dec 13, 1992", @@ -70077,7 +103672,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1992 Regular Season - Week 15" }, { "date": "Dec 13, 1992", @@ -70087,7 +103687,12 @@ "sF": "14", "sU": "16", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1992 Regular Season - Week 15" }, { "date": "Dec 14, 1992", @@ -70096,8 +103701,13 @@ "und": "Los Angeles Raiders", "sF": "20", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "1992 Regular Season - Week 15" }, { "date": "Dec 19, 1992", @@ -70106,8 +103716,13 @@ "und": "New York Giants", "sF": "21", "sU": "35", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 34.0, + "pScore": { + "sU": 13.25, + "sF": 20.75 + }, + "week": "1992 Regular Season - Week 16" }, { "date": "Dec 19, 1992", @@ -70117,7 +103732,12 @@ "sF": "21", "sU": "14", "spread": "20", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 10.5, + "sF": 30.5 + }, + "week": "1992 Regular Season - Week 16" }, { "date": "Dec 20, 1992", @@ -70126,8 +103746,13 @@ "und": "New England Patriots", "sF": "20", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 34.0, + "pScore": { + "sU": 14.75, + "sF": 19.25 + }, + "week": "1992 Regular Season - Week 16" }, { "date": "Dec 20, 1992", @@ -70137,7 +103762,12 @@ "sF": "17", "sU": "14", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "1992 Regular Season - Week 16" }, { "date": "Dec 20, 1992", @@ -70147,7 +103777,12 @@ "sF": "28", "sU": "13", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1992 Regular Season - Week 16" }, { "date": "Dec 20, 1992", @@ -70156,8 +103791,13 @@ "und": "Phoenix Cardinals", "sF": "16", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.0, + "pScore": { + "sU": 16.25, + "sF": 18.75 + }, + "week": "1992 Regular Season - Week 16" }, { "date": "Dec 20, 1992", @@ -70166,8 +103806,13 @@ "und": "Buffalo Bills", "sF": "16", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1992 Regular Season - Week 16" }, { "date": "Dec 20, 1992", @@ -70177,7 +103822,12 @@ "sF": "17", "sU": "13", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1992 Regular Season - Week 16" }, { "date": "Dec 20, 1992", @@ -70186,8 +103836,13 @@ "und": "Minnesota Vikings", "sF": "3", "sU": "6", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 35.0, + "pScore": { + "sU": 16.75, + "sF": 18.25 + }, + "week": "1992 Regular Season - Week 16" }, { "date": "Dec 20, 1992", @@ -70197,7 +103852,12 @@ "sF": "10", "sU": "6", "spread": "9", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 13.0, + "sF": 22.0 + }, + "week": "1992 Regular Season - Week 16" }, { "date": "Dec 20, 1992", @@ -70207,7 +103867,12 @@ "sF": "16", "sU": "3", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1992 Regular Season - Week 16" }, { "date": "Dec 20, 1992", @@ -70217,7 +103882,12 @@ "sF": "36", "sU": "14", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1992 Regular Season - Week 16" }, { "date": "Dec 20, 1992", @@ -70226,8 +103896,13 @@ "und": "New York Jets", "sF": "19", "sU": "17", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 37.0, + "pScore": { + "sU": 12.75, + "sF": 24.25 + }, + "week": "1992 Regular Season - Week 16" }, { "date": "Dec 21, 1992", @@ -70237,7 +103912,12 @@ "sF": "41", "sU": "17", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1992 Regular Season - Week 16" }, { "date": "Dec 26, 1992", @@ -70247,7 +103927,12 @@ "sF": "20", "sU": "0", "spread": "8", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 12.5, + "sF": 20.5 + }, + "week": "1992 Regular Season - Week 17" }, { "date": "Dec 26, 1992", @@ -70256,8 +103941,13 @@ "und": "Los Angeles Raiders", "sF": "20", "sU": "21", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 35.0, + "pScore": { + "sU": 10.75, + "sF": 24.25 + }, + "week": "1992 Regular Season - Week 17" }, { "date": "Dec 27, 1992", @@ -70267,7 +103957,12 @@ "sF": "21", "sU": "17", "spread": "2", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 16.0, + "sF": 18.0 + }, + "week": "1992 Regular Season - Week 17" }, { "date": "Dec 27, 1992", @@ -70277,7 +103972,12 @@ "sF": "42", "sU": "20", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1992 Regular Season - Week 17" }, { "date": "Dec 27, 1992", @@ -70287,7 +103987,12 @@ "sF": "27", "sU": "7", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1992 Regular Season - Week 17" }, { "date": "Dec 27, 1992", @@ -70297,7 +104002,12 @@ "sF": "16", "sU": "13", "spread": "11", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 11.5, + "sF": 22.5 + }, + "week": "1992 Regular Season - Week 17" }, { "date": "Dec 27, 1992", @@ -70307,7 +104017,12 @@ "sF": "20", "sU": "10", "spread": "8", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.0, + "sF": 23.0 + }, + "week": "1992 Regular Season - Week 17" }, { "date": "Dec 27, 1992", @@ -70316,8 +104031,13 @@ "und": "Cleveland Browns", "sF": "23", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 32.0, + "pScore": { + "sU": 12.75, + "sF": 19.25 + }, + "week": "1992 Regular Season - Week 17" }, { "date": "Dec 27, 1992", @@ -70327,7 +104047,12 @@ "sF": "27", "sU": "14", "spread": "12", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 13.5, + "sF": 25.5 + }, + "week": "1992 Regular Season - Week 17" }, { "date": "Dec 27, 1992", @@ -70337,7 +104062,12 @@ "sF": "38", "sU": "27", "spread": "1", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 22.0, + "sF": 23.0 + }, + "week": "1992 Regular Season - Week 17" }, { "date": "Dec 27, 1992", @@ -70346,8 +104076,13 @@ "und": "Tampa Bay Buccaneers", "sF": "3", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.0, + "pScore": { + "sU": 15.25, + "sF": 22.75 + }, + "week": "1992 Regular Season - Week 17" }, { "date": "Dec 27, 1992", @@ -70356,8 +104091,13 @@ "und": "Seattle Seahawks", "sF": "31", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 34.0, + "pScore": { + "sU": 12.25, + "sF": 21.75 + }, + "week": "1992 Regular Season - Week 17" }, { "date": "Dec 27, 1992", @@ -70366,8 +104106,13 @@ "und": "Houston Oilers", "sF": "3", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1992 Regular Season - Week 17" }, { "date": "Dec 28, 1992", @@ -70376,8 +104121,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "6", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 37.0, + "pScore": { + "sU": 11.75, + "sF": 25.25 + }, + "week": "1992 Regular Season - Week 17" }, { "date": "Jan 2, 1993", @@ -70386,8 +104136,13 @@ "und": "Washington Redskins (6)", "sF": "7", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1992 Playoffs" }, { "date": "Jan 2, 1993", @@ -70397,7 +104152,12 @@ "sF": "17", "sU": "0", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1992 Playoffs" }, { "date": "Jan 3, 1993", @@ -70407,7 +104167,12 @@ "sF": "41", "sU": "38", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1992 Playoffs" }, { "date": "Jan 3, 1993", @@ -70416,8 +104181,13 @@ "und": "Philadelphia Eagles (5)", "sF": "20", "sU": "36", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "1992 Playoffs" }, { "date": "Jan 9, 1993", @@ -70426,8 +104196,13 @@ "und": "Buffalo Bills (4)", "sF": "3", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 36.0, + "pScore": { + "sU": 17.25, + "sF": 18.75 + }, + "week": "1992 Playoffs" }, { "date": "Jan 9, 1993", @@ -70436,8 +104211,13 @@ "und": "Washington Redskins (6)", "sF": "20", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 39.0, + "pScore": { + "sU": 14.75, + "sF": 24.25 + }, + "week": "1992 Playoffs" }, { "date": "Jan 10, 1993", @@ -70446,8 +104226,13 @@ "und": "Philadelphia Eagles (5)", "sF": "34", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "1992 Playoffs" }, { "date": "Jan 10, 1993", @@ -70457,7 +104242,12 @@ "sF": "31", "sU": "0", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1992 Playoffs" }, { "date": "Jan 17, 1993", @@ -70466,8 +104256,13 @@ "und": "Miami Dolphins (2)", "sF": "29", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1992 Playoffs" }, { "date": "Jan 17, 1993", @@ -70477,7 +104272,12 @@ "sF": "20", "sU": "30", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1992 Playoffs" }, { "date": "Jan 31, 1993", @@ -70486,8 +104286,13 @@ "und": "Buffalo Bills (4)", "sF": "52", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1992 Playoffs" }, { "date": "Sep 5, 1993", @@ -70497,7 +104302,12 @@ "sF": "38", "sU": "14", "spread": "14", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 12.25, + "sF": 26.25 + }, + "week": "1993 Regular Season - Week 1" }, { "date": "Sep 5, 1993", @@ -70506,8 +104316,13 @@ "und": "Cincinnati Bengals", "sF": "27", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 35.5, + "pScore": { + "sU": 14.0, + "sF": 21.5 + }, + "week": "1993 Regular Season - Week 1" }, { "date": "Sep 5, 1993", @@ -70517,7 +104332,12 @@ "sF": "30", "sU": "13", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "1993 Regular Season - Week 1" }, { "date": "Sep 5, 1993", @@ -70526,8 +104346,13 @@ "und": "Los Angeles Rams", "sF": "36", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.5, + "pScore": { + "sU": 16.0, + "sF": 22.5 + }, + "week": "1993 Regular Season - Week 1" }, { "date": "Sep 5, 1993", @@ -70537,7 +104362,12 @@ "sF": "24", "sU": "20", "spread": "6", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 15.25, + "sF": 21.25 + }, + "week": "1993 Regular Season - Week 1" }, { "date": "Sep 5, 1993", @@ -70546,8 +104376,13 @@ "und": "Phoenix Cardinals", "sF": "23", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.5, + "pScore": { + "sU": 15.5, + "sF": 22.0 + }, + "week": "1993 Regular Season - Week 1" }, { "date": "Sep 5, 1993", @@ -70557,7 +104392,12 @@ "sF": "24", "sU": "13", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "1993 Regular Season - Week 1" }, { "date": "Sep 5, 1993", @@ -70567,7 +104407,12 @@ "sF": "27", "sU": "3", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1993 Regular Season - Week 1" }, { "date": "Sep 5, 1993", @@ -70577,7 +104422,12 @@ "sF": "20", "sU": "26", "spread": "1", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 17.0, + "sF": 18.0 + }, + "week": "1993 Regular Season - Week 1" }, { "date": "Sep 5, 1993", @@ -70587,7 +104437,12 @@ "sF": "7", "sU": "24", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1993 Regular Season - Week 1" }, { "date": "Sep 5, 1993", @@ -70597,7 +104452,12 @@ "sF": "18", "sU": "12", "spread": "11", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 11.0, + "sF": 22.0 + }, + "week": "1993 Regular Season - Week 1" }, { "date": "Sep 5, 1993", @@ -70607,7 +104467,12 @@ "sF": "33", "sU": "21", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1993 Regular Season - Week 1" }, { "date": "Sep 6, 1993", @@ -70616,8 +104481,13 @@ "und": "Dallas Cowboys", "sF": "35", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1993 Regular Season - Week 1" }, { "date": "Sep 12, 1993", @@ -70626,8 +104496,13 @@ "und": "Atlanta Falcons", "sF": "34", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "1993 Regular Season - Week 2" }, { "date": "Sep 12, 1993", @@ -70637,7 +104512,12 @@ "sF": "9", "sU": "6", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "1993 Regular Season - Week 2" }, { "date": "Sep 12, 1993", @@ -70646,8 +104526,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1993 Regular Season - Week 2" }, { "date": "Sep 12, 1993", @@ -70657,7 +104542,12 @@ "sF": "30", "sU": "0", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1993 Regular Season - Week 2" }, { "date": "Sep 12, 1993", @@ -70667,7 +104557,12 @@ "sF": "10", "sU": "7", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1993 Regular Season - Week 2" }, { "date": "Sep 12, 1993", @@ -70677,7 +104572,12 @@ "sF": "19", "sU": "16", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1993 Regular Season - Week 2" }, { "date": "Sep 12, 1993", @@ -70687,7 +104587,12 @@ "sF": "23", "sU": "7", "spread": "10", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 13.75, + "sF": 23.75 + }, + "week": "1993 Regular Season - Week 2" }, { "date": "Sep 12, 1993", @@ -70697,7 +104602,12 @@ "sF": "10", "sU": "17", "spread": "10", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.25, + "sF": 25.25 + }, + "week": "1993 Regular Season - Week 2" }, { "date": "Sep 12, 1993", @@ -70707,7 +104617,12 @@ "sF": "10", "sU": "13", "spread": "5", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.75, + "sF": 24.75 + }, + "week": "1993 Regular Season - Week 2" }, { "date": "Sep 12, 1993", @@ -70717,7 +104632,12 @@ "sF": "34", "sU": "17", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1993 Regular Season - Week 2" }, { "date": "Sep 12, 1993", @@ -70727,7 +104647,12 @@ "sF": "0", "sU": "27", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "1993 Regular Season - Week 2" }, { "date": "Sep 12, 1993", @@ -70737,7 +104662,12 @@ "sF": "14", "sU": "24", "spread": "9", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 15.25, + "sF": 24.25 + }, + "week": "1993 Regular Season - Week 2" }, { "date": "Sep 12, 1993", @@ -70747,7 +104677,12 @@ "sF": "17", "sU": "13", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "1993 Regular Season - Week 2" }, { "date": "Sep 13, 1993", @@ -70756,8 +104691,13 @@ "und": "Cleveland Browns", "sF": "13", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "1993 Regular Season - Week 2" }, { "date": "Sep 19, 1993", @@ -70766,8 +104706,13 @@ "und": "Seattle Seahawks", "sF": "14", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 32.0, + "pScore": { + "sU": 14.75, + "sF": 17.25 + }, + "week": "1993 Regular Season - Week 3" }, { "date": "Sep 19, 1993", @@ -70777,7 +104722,12 @@ "sF": "14", "sU": "3", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "1993 Regular Season - Week 3" }, { "date": "Sep 19, 1993", @@ -70787,7 +104737,12 @@ "sF": "20", "sU": "10", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1993 Regular Season - Week 3" }, { "date": "Sep 19, 1993", @@ -70796,8 +104751,13 @@ "und": "Washington Redskins", "sF": "34", "sU": "31", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 36.0, + "pScore": { + "sU": 15.25, + "sF": 20.75 + }, + "week": "1993 Regular Season - Week 3" }, { "date": "Sep 19, 1993", @@ -70806,8 +104766,13 @@ "und": "Cincinnati Bengals", "sF": "34", "sU": "7", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 34.0, + "pScore": { + "sU": 12.75, + "sF": 21.25 + }, + "week": "1993 Regular Season - Week 3" }, { "date": "Sep 19, 1993", @@ -70817,7 +104782,12 @@ "sF": "16", "sU": "19", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1993 Regular Season - Week 3" }, { "date": "Sep 19, 1993", @@ -70826,8 +104796,13 @@ "und": "Houston Oilers", "sF": "18", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1993 Regular Season - Week 3" }, { "date": "Sep 19, 1993", @@ -70836,8 +104811,13 @@ "und": "Atlanta Falcons", "sF": "37", "sU": "30", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 47.0, + "pScore": { + "sU": 16.75, + "sF": 30.25 + }, + "week": "1993 Regular Season - Week 3" }, { "date": "Sep 19, 1993", @@ -70846,8 +104826,13 @@ "und": "Phoenix Cardinals", "sF": "17", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.5, + "pScore": { + "sU": 16.0, + "sF": 22.5 + }, + "week": "1993 Regular Season - Week 3" }, { "date": "Sep 20, 1993", @@ -70857,7 +104842,12 @@ "sF": "15", "sU": "7", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1993 Regular Season - Week 3" }, { "date": "Sep 26, 1993", @@ -70867,7 +104857,12 @@ "sF": "13", "sU": "22", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1993 Regular Season - Week 4" }, { "date": "Sep 26, 1993", @@ -70877,7 +104872,12 @@ "sF": "47", "sU": "17", "spread": "7", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 13.25, + "sF": 20.25 + }, + "week": "1993 Regular Season - Week 4" }, { "date": "Sep 26, 1993", @@ -70887,7 +104887,12 @@ "sF": "26", "sU": "20", "spread": "5", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 15.75, + "sF": 20.75 + }, + "week": "1993 Regular Season - Week 4" }, { "date": "Sep 26, 1993", @@ -70896,8 +104901,13 @@ "und": "Los Angeles Rams", "sF": "13", "sU": "28", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 39.5, + "pScore": { + "sU": 14.5, + "sF": 25.0 + }, + "week": "1993 Regular Season - Week 4" }, { "date": "Sep 26, 1993", @@ -70906,8 +104916,13 @@ "und": "Indianapolis Colts", "sF": "10", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 33.0, + "pScore": { + "sU": 15.25, + "sF": 17.75 + }, + "week": "1993 Regular Season - Week 4" }, { "date": "Sep 26, 1993", @@ -70917,7 +104932,12 @@ "sF": "15", "sU": "13", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "1993 Regular Season - Week 4" }, { "date": "Sep 26, 1993", @@ -70927,7 +104947,12 @@ "sF": "19", "sU": "10", "spread": "3", - "ou": -1 + "ou": 31.5, + "pScore": { + "sU": 14.25, + "sF": 17.25 + }, + "week": "1993 Regular Season - Week 4" }, { "date": "Sep 26, 1993", @@ -70937,7 +104962,12 @@ "sF": "13", "sU": "16", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1993 Regular Season - Week 4" }, { "date": "Sep 26, 1993", @@ -70946,8 +104976,13 @@ "und": "New England Patriots", "sF": "45", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 36.5, + "pScore": { + "sU": 13.5, + "sF": 23.0 + }, + "week": "1993 Regular Season - Week 4" }, { "date": "Sep 27, 1993", @@ -70957,7 +104992,12 @@ "sF": "17", "sU": "45", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "1993 Regular Season - Week 4" }, { "date": "Oct 3, 1993", @@ -70967,7 +105007,12 @@ "sF": "6", "sU": "0", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "1993 Regular Season - Week 5" }, { "date": "Oct 3, 1993", @@ -70977,7 +105022,12 @@ "sF": "36", "sU": "14", "spread": "11", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.0, + "sF": 24.0 + }, + "week": "1993 Regular Season - Week 5" }, { "date": "Oct 3, 1993", @@ -70987,7 +105037,12 @@ "sF": "24", "sU": "9", "spread": "9", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 13.75, + "sF": 22.75 + }, + "week": "1993 Regular Season - Week 5" }, { "date": "Oct 3, 1993", @@ -70997,7 +105052,12 @@ "sF": "10", "sU": "27", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "1993 Regular Season - Week 5" }, { "date": "Oct 3, 1993", @@ -71006,8 +105066,13 @@ "und": "Indianapolis Colts", "sF": "35", "sU": "13", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 36.5, + "pScore": { + "sU": 14.0, + "sF": 22.5 + }, + "week": "1993 Regular Season - Week 5" }, { "date": "Oct 3, 1993", @@ -71017,7 +105082,12 @@ "sF": "37", "sU": "6", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1993 Regular Season - Week 5" }, { "date": "Oct 3, 1993", @@ -71027,7 +105097,12 @@ "sF": "30", "sU": "35", "spread": "1", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.75, + "sF": 20.75 + }, + "week": "1993 Regular Season - Week 5" }, { "date": "Oct 3, 1993", @@ -71036,8 +105111,13 @@ "und": "Minnesota Vikings", "sF": "38", "sU": "19", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 39.0, + "pScore": { + "sU": 14.75, + "sF": 24.25 + }, + "week": "1993 Regular Season - Week 5" }, { "date": "Oct 3, 1993", @@ -71046,8 +105126,13 @@ "und": "Seattle Seahawks", "sF": "14", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 31.5, + "pScore": { + "sU": 14.0, + "sF": 17.5 + }, + "week": "1993 Regular Season - Week 5" }, { "date": "Oct 3, 1993", @@ -71057,7 +105142,12 @@ "sF": "17", "sU": "14", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1993 Regular Season - Week 5" }, { "date": "Oct 4, 1993", @@ -71067,7 +105157,12 @@ "sF": "17", "sU": "10", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1993 Regular Season - Week 5" }, { "date": "Oct 10, 1993", @@ -71077,7 +105172,12 @@ "sF": "24", "sU": "14", "spread": "2", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.25, + "sF": 19.25 + }, + "week": "1993 Regular Season - Week 6" }, { "date": "Oct 10, 1993", @@ -71087,7 +105187,12 @@ "sF": "27", "sU": "3", "spread": "11", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 13.5, + "sF": 24.5 + }, + "week": "1993 Regular Season - Week 6" }, { "date": "Oct 10, 1993", @@ -71097,7 +105202,12 @@ "sF": "17", "sU": "15", "spread": "14", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 10.5, + "sF": 24.5 + }, + "week": "1993 Regular Season - Week 6" }, { "date": "Oct 10, 1993", @@ -71106,8 +105216,13 @@ "und": "Tampa Bay Buccaneers", "sF": "15", "sU": "0", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 36.6, + "pScore": { + "sU": 13.55, + "sF": 23.05 + }, + "week": "1993 Regular Season - Week 6" }, { "date": "Oct 10, 1993", @@ -71117,7 +105232,12 @@ "sF": "6", "sU": "17", "spread": "7", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 14.75, + "sF": 21.75 + }, + "week": "1993 Regular Season - Week 6" }, { "date": "Oct 10, 1993", @@ -71126,8 +105246,13 @@ "und": "New York Giants", "sF": "7", "sU": "41", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1993 Regular Season - Week 6" }, { "date": "Oct 10, 1993", @@ -71136,8 +105261,13 @@ "und": "New York Jets", "sF": "24", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1993 Regular Season - Week 6" }, { "date": "Oct 10, 1993", @@ -71147,7 +105277,12 @@ "sF": "21", "sU": "23", "spread": "10", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.5, + "sF": 23.5 + }, + "week": "1993 Regular Season - Week 6" }, { "date": "Oct 10, 1993", @@ -71157,7 +105292,12 @@ "sF": "16", "sU": "3", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "1993 Regular Season - Week 6" }, { "date": "Oct 10, 1993", @@ -71166,8 +105306,13 @@ "und": "Denver Broncos", "sF": "30", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1993 Regular Season - Week 6" }, { "date": "Oct 11, 1993", @@ -71176,8 +105321,13 @@ "und": "Houston Oilers", "sF": "35", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1993 Regular Season - Week 6" }, { "date": "Oct 14, 1993", @@ -71187,7 +105337,12 @@ "sF": "30", "sU": "24", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "1993 Regular Season - Week 7" }, { "date": "Oct 17, 1993", @@ -71196,8 +105351,13 @@ "und": "Cincinnati Bengals", "sF": "28", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 34.0, + "pScore": { + "sU": 14.25, + "sF": 19.75 + }, + "week": "1993 Regular Season - Week 7" }, { "date": "Oct 17, 1993", @@ -71206,8 +105366,13 @@ "und": "Seattle Seahawks", "sF": "30", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 34.5, + "pScore": { + "sU": 14.5, + "sF": 20.0 + }, + "week": "1993 Regular Season - Week 7" }, { "date": "Oct 17, 1993", @@ -71216,8 +105381,13 @@ "und": "New England Patriots", "sF": "28", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.0, + "pScore": { + "sU": 14.75, + "sF": 21.25 + }, + "week": "1993 Regular Season - Week 7" }, { "date": "Oct 17, 1993", @@ -71226,8 +105396,13 @@ "und": "Philadelphia Eagles", "sF": "21", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 35.5, + "pScore": { + "sU": 14.0, + "sF": 21.5 + }, + "week": "1993 Regular Season - Week 7" }, { "date": "Oct 17, 1993", @@ -71237,7 +105412,12 @@ "sF": "14", "sU": "37", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "1993 Regular Season - Week 7" }, { "date": "Oct 17, 1993", @@ -71246,12 +105426,13 @@ "und": "San Francisco 49ers", "sF": "26", "sU": "17", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": 43.0, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 18.25, + "sF": 24.75 + }, + "week": "1993 Regular Season - Week 7" }, { "date": "Oct 17, 1993", @@ -71260,8 +105441,13 @@ "und": "Phoenix Cardinals", "sF": "6", "sU": "36", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.5, + "pScore": { + "sU": 18.0, + "sF": 19.5 + }, + "week": "1993 Regular Season - Week 7" }, { "date": "Oct 17, 1993", @@ -71271,7 +105457,12 @@ "sF": "17", "sU": "14", "spread": "4", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.0, + "sF": 19.0 + }, + "week": "1993 Regular Season - Week 7" }, { "date": "Oct 18, 1993", @@ -71280,8 +105471,13 @@ "und": "Los Angeles Raiders", "sF": "20", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "1993 Regular Season - Week 7" }, { "date": "Oct 24, 1993", @@ -71290,8 +105486,13 @@ "und": "Cincinnati Bengals", "sF": "28", "sU": "12", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 39.0, + "pScore": { + "sU": 12.75, + "sF": 26.25 + }, + "week": "1993 Regular Season - Week 8" }, { "date": "Oct 24, 1993", @@ -71301,7 +105502,12 @@ "sF": "15", "sU": "26", "spread": "11", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.0, + "sF": 27.0 + }, + "week": "1993 Regular Season - Week 8" }, { "date": "Oct 24, 1993", @@ -71311,7 +105517,12 @@ "sF": "19", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1993 Regular Season - Week 8" }, { "date": "Oct 24, 1993", @@ -71321,7 +105532,12 @@ "sF": "37", "sU": "14", "spread": "6", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 15.25, + "sF": 21.25 + }, + "week": "1993 Regular Season - Week 8" }, { "date": "Oct 24, 1993", @@ -71331,7 +105547,12 @@ "sF": "23", "sU": "28", "spread": "2", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 16.25, + "sF": 18.25 + }, + "week": "1993 Regular Season - Week 8" }, { "date": "Oct 24, 1993", @@ -71341,7 +105562,12 @@ "sF": "16", "sU": "13", "spread": "1", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 18.25, + "sF": 19.25 + }, + "week": "1993 Regular Season - Week 8" }, { "date": "Oct 24, 1993", @@ -71350,8 +105576,13 @@ "und": "Phoenix Cardinals", "sF": "28", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 42.5, + "pScore": { + "sU": 16.0, + "sF": 26.5 + }, + "week": "1993 Regular Season - Week 8" }, { "date": "Oct 24, 1993", @@ -71360,8 +105591,13 @@ "und": "New England Patriots", "sF": "10", "sU": "9", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 33.0, + "pScore": { + "sU": 12.25, + "sF": 20.75 + }, + "week": "1993 Regular Season - Week 8" }, { "date": "Oct 24, 1993", @@ -71370,8 +105606,13 @@ "und": "Indianapolis Colts", "sF": "41", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 35.5, + "pScore": { + "sU": 14.0, + "sF": 21.5 + }, + "week": "1993 Regular Season - Week 8" }, { "date": "Oct 25, 1993", @@ -71381,7 +105622,12 @@ "sF": "12", "sU": "19", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "1993 Regular Season - Week 8" }, { "date": "Oct 31, 1993", @@ -71390,8 +105636,13 @@ "und": "Tampa Bay Buccaneers", "sF": "24", "sU": "31", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.5, + "pScore": { + "sU": 16.5, + "sF": 26.0 + }, + "week": "1993 Regular Season - Week 9" }, { "date": "Oct 31, 1993", @@ -71400,8 +105651,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "1993 Regular Season - Week 9" }, { "date": "Oct 31, 1993", @@ -71411,7 +105667,12 @@ "sF": "9", "sU": "6", "spread": "7", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 14.25, + "sF": 21.25 + }, + "week": "1993 Regular Season - Week 9" }, { "date": "Oct 31, 1993", @@ -71421,7 +105682,12 @@ "sF": "10", "sU": "30", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "1993 Regular Season - Week 9" }, { "date": "Oct 31, 1993", @@ -71430,8 +105696,13 @@ "und": "New York Jets", "sF": "6", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "1993 Regular Season - Week 9" }, { "date": "Oct 31, 1993", @@ -71440,8 +105711,13 @@ "und": "Seattle Seahawks", "sF": "28", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 36.5, + "pScore": { + "sU": 14.0, + "sF": 22.5 + }, + "week": "1993 Regular Season - Week 9" }, { "date": "Oct 31, 1993", @@ -71451,7 +105727,12 @@ "sF": "23", "sU": "30", "spread": "4", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 15.25, + "sF": 19.25 + }, + "week": "1993 Regular Season - Week 9" }, { "date": "Oct 31, 1993", @@ -71460,8 +105741,13 @@ "und": "Philadelphia Eagles", "sF": "23", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 38.5, + "pScore": { + "sU": 14.0, + "sF": 24.5 + }, + "week": "1993 Regular Season - Week 9" }, { "date": "Oct 31, 1993", @@ -71471,7 +105757,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1993 Regular Season - Week 9" }, { "date": "Oct 31, 1993", @@ -71481,7 +105772,12 @@ "sF": "40", "sU": "17", "spread": "13", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 15.25, + "sF": 28.25 + }, + "week": "1993 Regular Season - Week 9" }, { "date": "Oct 31, 1993", @@ -71491,7 +105787,12 @@ "sF": "27", "sU": "30", "spread": "4", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.5, + "sF": 19.5 + }, + "week": "1993 Regular Season - Week 9" }, { "date": "Nov 1, 1993", @@ -71501,7 +105802,12 @@ "sF": "24", "sU": "10", "spread": "9", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.75, + "sF": 24.75 + }, + "week": "1993 Regular Season - Week 9" }, { "date": "Nov 7, 1993", @@ -71510,8 +105816,13 @@ "und": "Cincinnati Bengals", "sF": "24", "sU": "16", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 35.5, + "pScore": { + "sU": 13.0, + "sF": 22.5 + }, + "week": "1993 Regular Season - Week 10" }, { "date": "Nov 7, 1993", @@ -71520,8 +105831,13 @@ "und": "Denver Broncos", "sF": "14", "sU": "29", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1993 Regular Season - Week 10" }, { "date": "Nov 7, 1993", @@ -71531,7 +105847,12 @@ "sF": "31", "sU": "9", "spread": "10", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.5, + "sF": 23.5 + }, + "week": "1993 Regular Season - Week 10" }, { "date": "Nov 7, 1993", @@ -71541,7 +105862,12 @@ "sF": "23", "sU": "0", "spread": "12", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 14.0, + "sF": 26.0 + }, + "week": "1993 Regular Season - Week 10" }, { "date": "Nov 7, 1993", @@ -71551,7 +105877,12 @@ "sF": "24", "sU": "14", "spread": "9", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 14.25, + "sF": 23.25 + }, + "week": "1993 Regular Season - Week 10" }, { "date": "Nov 7, 1993", @@ -71561,7 +105892,12 @@ "sF": "17", "sU": "30", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1993 Regular Season - Week 10" }, { "date": "Nov 7, 1993", @@ -71570,8 +105906,13 @@ "und": "New England Patriots", "sF": "13", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 37.0, + "pScore": { + "sU": 13.75, + "sF": 23.25 + }, + "week": "1993 Regular Season - Week 10" }, { "date": "Nov 7, 1993", @@ -71581,7 +105922,12 @@ "sF": "16", "sU": "14", "spread": "2", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 15.75, + "sF": 17.75 + }, + "week": "1993 Regular Season - Week 10" }, { "date": "Nov 7, 1993", @@ -71590,8 +105936,13 @@ "und": "New York Jets", "sF": "10", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.5, + "pScore": { + "sU": 18.5, + "sF": 20.0 + }, + "week": "1993 Regular Season - Week 10" }, { "date": "Nov 7, 1993", @@ -71601,7 +105952,12 @@ "sF": "16", "sU": "3", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "1993 Regular Season - Week 10" }, { "date": "Nov 7, 1993", @@ -71610,8 +105966,13 @@ "und": "Indianapolis Colts", "sF": "30", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "1993 Regular Season - Week 10" }, { "date": "Nov 8, 1993", @@ -71621,7 +105982,12 @@ "sF": "23", "sU": "16", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1993 Regular Season - Week 10" }, { "date": "Nov 14, 1993", @@ -71631,7 +105997,12 @@ "sF": "38", "sU": "3", "spread": "8", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.5, + "sF": 22.5 + }, + "week": "1993 Regular Season - Week 11" }, { "date": "Nov 14, 1993", @@ -71640,8 +106011,13 @@ "und": "Phoenix Cardinals", "sF": "20", "sU": "15", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 38.0, + "pScore": { + "sU": 12.75, + "sF": 25.25 + }, + "week": "1993 Regular Season - Week 11" }, { "date": "Nov 14, 1993", @@ -71651,7 +106027,12 @@ "sF": "17", "sU": "19", "spread": "6", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.75, + "sF": 21.75 + }, + "week": "1993 Regular Season - Week 11" }, { "date": "Nov 14, 1993", @@ -71660,8 +106041,13 @@ "und": "Washington Redskins", "sF": "20", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.0, + "pScore": { + "sU": 14.75, + "sF": 22.25 + }, + "week": "1993 Regular Season - Week 11" }, { "date": "Nov 14, 1993", @@ -71671,7 +106057,12 @@ "sF": "19", "sU": "14", "spread": "6", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 15.25, + "sF": 21.25 + }, + "week": "1993 Regular Season - Week 11" }, { "date": "Nov 14, 1993", @@ -71680,8 +106071,13 @@ "und": "Tampa Bay Buccaneers", "sF": "45", "sU": "21", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 42.0, + "pScore": { + "sU": 13.75, + "sF": 28.25 + }, + "week": "1993 Regular Season - Week 11" }, { "date": "Nov 14, 1993", @@ -71691,7 +106087,12 @@ "sF": "23", "sU": "26", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1993 Regular Season - Week 11" }, { "date": "Nov 14, 1993", @@ -71700,8 +106101,13 @@ "und": "Indianapolis Colts", "sF": "31", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.5, + "pScore": { + "sU": 16.5, + "sF": 21.0 + }, + "week": "1993 Regular Season - Week 11" }, { "date": "Nov 14, 1993", @@ -71711,7 +106117,12 @@ "sF": "20", "sU": "31", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "1993 Regular Season - Week 11" }, { "date": "Nov 14, 1993", @@ -71721,7 +106132,12 @@ "sF": "0", "sU": "13", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1993 Regular Season - Week 11" }, { "date": "Nov 14, 1993", @@ -71731,7 +106147,12 @@ "sF": "22", "sU": "5", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "1993 Regular Season - Week 11" }, { "date": "Nov 14, 1993", @@ -71740,8 +106161,13 @@ "und": "Chicago Bears", "sF": "13", "sU": "16", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 34.5, + "pScore": { + "sU": 13.0, + "sF": 21.5 + }, + "week": "1993 Regular Season - Week 11" }, { "date": "Nov 15, 1993", @@ -71751,7 +106177,12 @@ "sF": "23", "sU": "0", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1993 Regular Season - Week 11" }, { "date": "Nov 21, 1993", @@ -71761,7 +106192,12 @@ "sF": "14", "sU": "27", "spread": "10", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 15.75, + "sF": 25.75 + }, + "week": "1993 Regular Season - Week 12" }, { "date": "Nov 21, 1993", @@ -71771,7 +106207,12 @@ "sF": "23", "sU": "9", "spread": "13", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 12.0, + "sF": 25.0 + }, + "week": "1993 Regular Season - Week 12" }, { "date": "Nov 21, 1993", @@ -71780,8 +106221,13 @@ "und": "Cleveland Browns", "sF": "27", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 36.0, + "pScore": { + "sU": 15.75, + "sF": 20.25 + }, + "week": "1993 Regular Season - Week 12" }, { "date": "Nov 21, 1993", @@ -71790,8 +106236,13 @@ "und": "Detroit Lions", "sF": "26", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "1993 Regular Season - Week 12" }, { "date": "Nov 21, 1993", @@ -71801,7 +106252,12 @@ "sF": "17", "sU": "19", "spread": "10", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 12.5, + "sF": 22.5 + }, + "week": "1993 Regular Season - Week 12" }, { "date": "Nov 21, 1993", @@ -71811,7 +106267,12 @@ "sF": "17", "sU": "13", "spread": "8", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 13.25, + "sF": 21.25 + }, + "week": "1993 Regular Season - Week 12" }, { "date": "Nov 21, 1993", @@ -71820,8 +106281,13 @@ "und": "Cincinnati Bengals", "sF": "17", "sU": "12", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 37.5, + "pScore": { + "sU": 11.0, + "sF": 26.5 + }, + "week": "1993 Regular Season - Week 12" }, { "date": "Nov 21, 1993", @@ -71831,7 +106297,12 @@ "sF": "37", "sU": "13", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "1993 Regular Season - Week 12" }, { "date": "Nov 21, 1993", @@ -71841,7 +106312,12 @@ "sF": "10", "sU": "6", "spread": "2", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.75, + "sF": 19.75 + }, + "week": "1993 Regular Season - Week 12" }, { "date": "Nov 21, 1993", @@ -71851,7 +106327,12 @@ "sF": "7", "sU": "3", "spread": "5", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 14.75, + "sF": 19.75 + }, + "week": "1993 Regular Season - Week 12" }, { "date": "Nov 21, 1993", @@ -71860,8 +106341,13 @@ "und": "Los Angeles Raiders", "sF": "7", "sU": "12", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "1993 Regular Season - Week 12" }, { "date": "Nov 21, 1993", @@ -71871,7 +106357,12 @@ "sF": "10", "sU": "23", "spread": "8", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.0, + "sF": 23.0 + }, + "week": "1993 Regular Season - Week 12" }, { "date": "Nov 22, 1993", @@ -71881,7 +106372,12 @@ "sF": "42", "sU": "7", "spread": "8", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 16.75, + "sF": 24.75 + }, + "week": "1993 Regular Season - Week 12" }, { "date": "Nov 25, 1993", @@ -71891,7 +106387,12 @@ "sF": "6", "sU": "10", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1993 Regular Season - Week 13" }, { "date": "Nov 25, 1993", @@ -71901,7 +106402,12 @@ "sF": "14", "sU": "16", "spread": "10", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.5, + "sF": 23.5 + }, + "week": "1993 Regular Season - Week 13" }, { "date": "Nov 28, 1993", @@ -71910,8 +106416,13 @@ "und": "Cleveland Browns", "sF": "17", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "1993 Regular Season - Week 13" }, { "date": "Nov 28, 1993", @@ -71921,7 +106432,12 @@ "sF": "10", "sU": "16", "spread": "9", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 13.25, + "sF": 22.25 + }, + "week": "1993 Regular Season - Week 13" }, { "date": "Nov 28, 1993", @@ -71930,8 +106446,13 @@ "und": "Tampa Bay Buccaneers", "sF": "13", "sU": "10", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 37.5, + "pScore": { + "sU": 12.5, + "sF": 25.0 + }, + "week": "1993 Regular Season - Week 13" }, { "date": "Nov 28, 1993", @@ -71940,8 +106461,13 @@ "und": "New Orleans Saints", "sF": "14", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1993 Regular Season - Week 13" }, { "date": "Nov 28, 1993", @@ -71951,7 +106477,12 @@ "sF": "6", "sU": "0", "spread": "4", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.5, + "sF": 19.5 + }, + "week": "1993 Regular Season - Week 13" }, { "date": "Nov 28, 1993", @@ -71960,8 +106491,13 @@ "und": "Philadelphia Eagles", "sF": "14", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 34.5, + "pScore": { + "sU": 16.0, + "sF": 18.5 + }, + "week": "1993 Regular Season - Week 13" }, { "date": "Nov 28, 1993", @@ -71971,7 +106507,12 @@ "sF": "23", "sU": "7", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1993 Regular Season - Week 13" }, { "date": "Nov 28, 1993", @@ -71981,7 +106522,12 @@ "sF": "35", "sU": "10", "spread": "13", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 15.0, + "sF": 28.0 + }, + "week": "1993 Regular Season - Week 13" }, { "date": "Nov 28, 1993", @@ -71991,7 +106537,12 @@ "sF": "19", "sU": "17", "spread": "7", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 14.25, + "sF": 21.25 + }, + "week": "1993 Regular Season - Week 13" }, { "date": "Nov 28, 1993", @@ -72001,7 +106552,12 @@ "sF": "17", "sU": "9", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1993 Regular Season - Week 13" }, { "date": "Nov 28, 1993", @@ -72010,8 +106566,13 @@ "und": "Pittsburgh Steelers", "sF": "23", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "1993 Regular Season - Week 13" }, { "date": "Nov 29, 1993", @@ -72021,7 +106582,12 @@ "sF": "31", "sU": "0", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1993 Regular Season - Week 13" }, { "date": "Dec 5, 1993", @@ -72031,7 +106597,12 @@ "sF": "24", "sU": "25", "spread": "7", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 13.5, + "sF": 20.5 + }, + "week": "1993 Regular Season - Week 14" }, { "date": "Dec 5, 1993", @@ -72040,8 +106611,13 @@ "und": "Green Bay Packers", "sF": "30", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 32.0, + "pScore": { + "sU": 15.25, + "sF": 16.75 + }, + "week": "1993 Regular Season - Week 14" }, { "date": "Dec 5, 1993", @@ -72051,7 +106627,12 @@ "sF": "13", "sU": "17", "spread": "4", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 14.5, + "sF": 18.5 + }, + "week": "1993 Regular Season - Week 14" }, { "date": "Dec 5, 1993", @@ -72061,7 +106642,12 @@ "sF": "0", "sU": "13", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "1993 Regular Season - Week 14" }, { "date": "Dec 5, 1993", @@ -72070,8 +106656,13 @@ "und": "Atlanta Falcons", "sF": "33", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "1993 Regular Season - Week 14" }, { "date": "Dec 5, 1993", @@ -72080,8 +106671,13 @@ "und": "Indianapolis Colts", "sF": "6", "sU": "9", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 35.0, + "pScore": { + "sU": 12.25, + "sF": 22.75 + }, + "week": "1993 Regular Season - Week 14" }, { "date": "Dec 5, 1993", @@ -72091,7 +106687,12 @@ "sF": "17", "sU": "14", "spread": "11", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 11.5, + "sF": 22.5 + }, + "week": "1993 Regular Season - Week 14" }, { "date": "Dec 5, 1993", @@ -72100,8 +106701,13 @@ "und": "Washington Redskins", "sF": "17", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.6, + "pScore": { + "sU": 17.05, + "sF": 19.55 + }, + "week": "1993 Regular Season - Week 14" }, { "date": "Dec 5, 1993", @@ -72110,8 +106716,13 @@ "und": "New York Giants", "sF": "14", "sU": "19", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1993 Regular Season - Week 14" }, { "date": "Dec 5, 1993", @@ -72121,7 +106732,12 @@ "sF": "38", "sU": "10", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1993 Regular Season - Week 14" }, { "date": "Dec 5, 1993", @@ -72131,7 +106747,12 @@ "sF": "13", "sU": "10", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "1993 Regular Season - Week 14" }, { "date": "Dec 5, 1993", @@ -72141,7 +106762,12 @@ "sF": "31", "sU": "16", "spread": "7", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 14.25, + "sF": 21.25 + }, + "week": "1993 Regular Season - Week 14" }, { "date": "Dec 5, 1993", @@ -72151,7 +106777,12 @@ "sF": "21", "sU": "8", "spread": "24", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 10.0, + "sF": 34.0 + }, + "week": "1993 Regular Season - Week 14" }, { "date": "Dec 6, 1993", @@ -72161,7 +106792,12 @@ "sF": "23", "sU": "17", "spread": "16", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 10.5, + "sF": 26.5 + }, + "week": "1993 Regular Season - Week 14" }, { "date": "Dec 11, 1993", @@ -72171,7 +106807,12 @@ "sF": "3", "sU": "0", "spread": "3", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 15.75, + "sF": 18.75 + }, + "week": "1993 Regular Season - Week 15" }, { "date": "Dec 11, 1993", @@ -72181,7 +106822,12 @@ "sF": "24", "sU": "27", "spread": "8", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.0, + "sF": 28.0 + }, + "week": "1993 Regular Season - Week 15" }, { "date": "Dec 12, 1993", @@ -72191,7 +106837,12 @@ "sF": "19", "sU": "17", "spread": "10", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 14.75, + "sF": 24.75 + }, + "week": "1993 Regular Season - Week 15" }, { "date": "Dec 12, 1993", @@ -72200,8 +106851,13 @@ "und": "Cincinnati Bengals", "sF": "7", "sU": "2", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 31.0, + "pScore": { + "sU": 12.75, + "sF": 18.25 + }, + "week": "1993 Regular Season - Week 15" }, { "date": "Dec 12, 1993", @@ -72211,7 +106867,12 @@ "sF": "20", "sU": "23", "spread": "14", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 11.25, + "sF": 25.25 + }, + "week": "1993 Regular Season - Week 15" }, { "date": "Dec 12, 1993", @@ -72221,7 +106882,12 @@ "sF": "20", "sU": "6", "spread": "11", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 11.0, + "sF": 22.0 + }, + "week": "1993 Regular Season - Week 15" }, { "date": "Dec 12, 1993", @@ -72231,7 +106897,12 @@ "sF": "10", "sU": "7", "spread": "4", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 14.75, + "sF": 18.75 + }, + "week": "1993 Regular Season - Week 15" }, { "date": "Dec 12, 1993", @@ -72241,7 +106912,12 @@ "sF": "10", "sU": "13", "spread": "5", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 14.5, + "sF": 19.5 + }, + "week": "1993 Regular Season - Week 15" }, { "date": "Dec 12, 1993", @@ -72251,7 +106927,12 @@ "sF": "27", "sU": "21", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1993 Regular Season - Week 15" }, { "date": "Dec 12, 1993", @@ -72260,8 +106941,13 @@ "und": "Seattle Seahawks", "sF": "27", "sU": "23", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 36.0, + "pScore": { + "sU": 13.75, + "sF": 22.25 + }, + "week": "1993 Regular Season - Week 15" }, { "date": "Dec 12, 1993", @@ -72271,7 +106957,12 @@ "sF": "37", "sU": "20", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1993 Regular Season - Week 15" }, { "date": "Dec 12, 1993", @@ -72281,7 +106972,12 @@ "sF": "14", "sU": "21", "spread": "7", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.0, + "sF": 21.0 + }, + "week": "1993 Regular Season - Week 15" }, { "date": "Dec 12, 1993", @@ -72291,7 +106987,12 @@ "sF": "13", "sU": "20", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "1993 Regular Season - Week 15" }, { "date": "Dec 13, 1993", @@ -72300,8 +107001,13 @@ "und": "Pittsburgh Steelers", "sF": "20", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "1993 Regular Season - Week 15" }, { "date": "Dec 18, 1993", @@ -72310,8 +107016,13 @@ "und": "Chicago Bears", "sF": "13", "sU": "3", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 33.0, + "pScore": { + "sU": 15.75, + "sF": 17.25 + }, + "week": "1993 Regular Season - Week 16" }, { "date": "Dec 18, 1993", @@ -72321,7 +107032,12 @@ "sF": "28", "sU": "7", "spread": "7", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 14.75, + "sF": 21.75 + }, + "week": "1993 Regular Season - Week 16" }, { "date": "Dec 19, 1993", @@ -72331,7 +107047,12 @@ "sF": "3", "sU": "15", "spread": "1", - "ou": -1 + "ou": 32.5, + "pScore": { + "sU": 15.75, + "sF": 16.75 + }, + "week": "1993 Regular Season - Week 16" }, { "date": "Dec 19, 1993", @@ -72340,8 +107061,13 @@ "und": "New England Patriots", "sF": "17", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 31.0, + "pScore": { + "sU": 12.75, + "sF": 18.25 + }, + "week": "1993 Regular Season - Week 16" }, { "date": "Dec 19, 1993", @@ -72350,8 +107076,13 @@ "und": "Minnesota Vikings", "sF": "17", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 33.5, + "pScore": { + "sU": 13.5, + "sF": 20.0 + }, + "week": "1993 Regular Season - Week 16" }, { "date": "Dec 19, 1993", @@ -72360,8 +107091,13 @@ "und": "Buffalo Bills", "sF": "34", "sU": "47", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1993 Regular Season - Week 16" }, { "date": "Dec 19, 1993", @@ -72370,8 +107106,13 @@ "und": "Houston Oilers", "sF": "17", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1993 Regular Season - Week 16" }, { "date": "Dec 19, 1993", @@ -72381,7 +107122,12 @@ "sF": "17", "sU": "30", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1993 Regular Season - Week 16" }, { "date": "Dec 19, 1993", @@ -72391,7 +107137,12 @@ "sF": "55", "sU": "17", "spread": "8", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.5, + "sF": 24.5 + }, + "week": "1993 Regular Season - Week 16" }, { "date": "Dec 19, 1993", @@ -72400,8 +107151,13 @@ "und": "San Diego Chargers", "sF": "28", "sU": "24", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 36.0, + "pScore": { + "sU": 13.75, + "sF": 22.25 + }, + "week": "1993 Regular Season - Week 16" }, { "date": "Dec 19, 1993", @@ -72410,8 +107166,13 @@ "und": "Tampa Bay Buccaneers", "sF": "27", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 37.0, + "pScore": { + "sU": 13.75, + "sF": 23.25 + }, + "week": "1993 Regular Season - Week 16" }, { "date": "Dec 19, 1993", @@ -72421,7 +107182,12 @@ "sF": "27", "sU": "30", "spread": "2", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.75, + "sF": 18.75 + }, + "week": "1993 Regular Season - Week 16" }, { "date": "Dec 19, 1993", @@ -72430,8 +107196,13 @@ "und": "Indianapolis Colts", "sF": "20", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 32.5, + "pScore": { + "sU": 15.5, + "sF": 17.0 + }, + "week": "1993 Regular Season - Week 16" }, { "date": "Dec 20, 1993", @@ -72441,7 +107212,12 @@ "sF": "14", "sU": "24", "spread": "1", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 17.25, + "sF": 18.25 + }, + "week": "1993 Regular Season - Week 16" }, { "date": "Dec 25, 1993", @@ -72450,8 +107226,13 @@ "und": "Houston Oilers", "sF": "7", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.0, + "pScore": { + "sU": 19.75, + "sF": 27.25 + }, + "week": "1993 Regular Season - Week 17" }, { "date": "Dec 26, 1993", @@ -72461,7 +107242,12 @@ "sF": "16", "sU": "14", "spread": "7", - "ou": -1 + "ou": 31.0, + "pScore": { + "sU": 12.0, + "sF": 19.0 + }, + "week": "1993 Regular Season - Week 17" }, { "date": "Dec 26, 1993", @@ -72471,7 +107257,12 @@ "sF": "14", "sU": "20", "spread": "3", - "ou": -1 + "ou": 28.0, + "pScore": { + "sU": 12.5, + "sF": 15.5 + }, + "week": "1993 Regular Season - Week 17" }, { "date": "Dec 26, 1993", @@ -72480,8 +107271,13 @@ "und": "Cincinnati Bengals", "sF": "17", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 34.0, + "pScore": { + "sU": 15.25, + "sF": 18.75 + }, + "week": "1993 Regular Season - Week 17" }, { "date": "Dec 26, 1993", @@ -72491,7 +107287,12 @@ "sF": "28", "sU": "0", "spread": "3", - "ou": -1 + "ou": 32.5, + "pScore": { + "sU": 14.75, + "sF": 17.75 + }, + "week": "1993 Regular Season - Week 17" }, { "date": "Dec 26, 1993", @@ -72501,7 +107302,12 @@ "sF": "38", "sU": "0", "spread": "6", - "ou": -1 + "ou": 28.0, + "pScore": { + "sU": 11.0, + "sF": 17.0 + }, + "week": "1993 Regular Season - Week 17" }, { "date": "Dec 26, 1993", @@ -72511,7 +107317,12 @@ "sF": "37", "sU": "26", "spread": "3", - "ou": -1 + "ou": 29.5, + "pScore": { + "sU": 13.25, + "sF": 16.25 + }, + "week": "1993 Regular Season - Week 17" }, { "date": "Dec 26, 1993", @@ -72521,7 +107332,12 @@ "sF": "38", "sU": "3", "spread": "17", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 10.5, + "sF": 27.5 + }, + "week": "1993 Regular Season - Week 17" }, { "date": "Dec 26, 1993", @@ -72530,8 +107346,13 @@ "und": "Tampa Bay Buccaneers", "sF": "10", "sU": "17", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 38.0, + "pScore": { + "sU": 12.25, + "sF": 25.75 + }, + "week": "1993 Regular Season - Week 17" }, { "date": "Dec 26, 1993", @@ -72541,7 +107362,12 @@ "sF": "42", "sU": "14", "spread": "2", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.5, + "sF": 18.5 + }, + "week": "1993 Regular Season - Week 17" }, { "date": "Dec 26, 1993", @@ -72551,7 +107377,12 @@ "sF": "6", "sU": "17", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1993 Regular Season - Week 17" }, { "date": "Dec 26, 1993", @@ -72561,7 +107392,12 @@ "sF": "6", "sU": "16", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1993 Regular Season - Week 17" }, { "date": "Dec 26, 1993", @@ -72571,7 +107407,12 @@ "sF": "10", "sU": "30", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1993 Regular Season - Week 17" }, { "date": "Dec 27, 1993", @@ -72581,7 +107422,12 @@ "sF": "45", "sU": "20", "spread": "1", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.5, + "sF": 19.5 + }, + "week": "1993 Regular Season - Week 17" }, { "date": "Dec 31, 1993", @@ -72591,7 +107437,12 @@ "sF": "14", "sU": "9", "spread": "7", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 13.0, + "sF": 20.0 + }, + "week": "1993 Regular Season - Week 18" }, { "date": "Jan 2, 1994", @@ -72601,7 +107452,12 @@ "sF": "10", "sU": "27", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1993 Regular Season - Week 18" }, { "date": "Jan 2, 1994", @@ -72611,7 +107467,12 @@ "sF": "20", "sU": "30", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1993 Regular Season - Week 18" }, { "date": "Jan 2, 1994", @@ -72621,7 +107482,12 @@ "sF": "30", "sU": "10", "spread": "11", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 12.5, + "sF": 23.5 + }, + "week": "1993 Regular Season - Week 18" }, { "date": "Jan 2, 1994", @@ -72630,8 +107496,13 @@ "und": "Seattle Seahawks", "sF": "34", "sU": "24", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 34.0, + "pScore": { + "sU": 12.75, + "sF": 21.25 + }, + "week": "1993 Regular Season - Week 18" }, { "date": "Jan 2, 1994", @@ -72640,8 +107511,13 @@ "und": "New York Giants", "sF": "16", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "1993 Regular Season - Week 18" }, { "date": "Jan 2, 1994", @@ -72651,7 +107527,12 @@ "sF": "16", "sU": "9", "spread": "5", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 14.0, + "sF": 19.0 + }, + "week": "1993 Regular Season - Week 18" }, { "date": "Jan 2, 1994", @@ -72661,7 +107542,12 @@ "sF": "33", "sU": "30", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "1993 Regular Season - Week 18" }, { "date": "Jan 2, 1994", @@ -72671,7 +107557,12 @@ "sF": "6", "sU": "20", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "1993 Regular Season - Week 18" }, { "date": "Jan 2, 1994", @@ -72681,7 +107572,12 @@ "sF": "20", "sU": "13", "spread": "6", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 14.0, + "sF": 20.0 + }, + "week": "1993 Regular Season - Week 18" }, { "date": "Jan 2, 1994", @@ -72690,8 +107586,13 @@ "und": "New York Jets", "sF": "24", "sU": "0", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.5, + "pScore": { + "sU": 16.5, + "sF": 22.0 + }, + "week": "1993 Regular Season - Week 18" }, { "date": "Jan 3, 1994", @@ -72700,8 +107601,13 @@ "und": "Philadelphia Eagles", "sF": "34", "sU": "37", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 41.0, + "pScore": { + "sU": 15.25, + "sF": 25.75 + }, + "week": "1993 Regular Season - Week 18" }, { "date": "Jan 8, 1994", @@ -72710,8 +107616,13 @@ "und": "Pittsburgh Steelers (6)", "sF": "27", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.0, + "pScore": { + "sU": 14.25, + "sF": 21.75 + }, + "week": "1993 Playoffs" }, { "date": "Jan 8, 1994", @@ -72720,8 +107631,13 @@ "und": "Green Bay Packers (6)", "sF": "24", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.5, + "pScore": { + "sU": 18.5, + "sF": 20.0 + }, + "week": "1993 Playoffs" }, { "date": "Jan 9, 1994", @@ -72730,8 +107646,13 @@ "und": "Minnesota Vikings (5)", "sF": "17", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 33.0, + "pScore": { + "sU": 13.25, + "sF": 19.75 + }, + "week": "1993 Playoffs" }, { "date": "Jan 9, 1994", @@ -72741,7 +107662,12 @@ "sF": "42", "sU": "24", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1993 Playoffs" }, { "date": "Jan 15, 1994", @@ -72751,7 +107677,12 @@ "sF": "29", "sU": "23", "spread": "7", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 13.25, + "sF": 20.25 + }, + "week": "1993 Playoffs" }, { "date": "Jan 15, 1994", @@ -72761,7 +107692,12 @@ "sF": "44", "sU": "3", "spread": "8", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 16.75, + "sF": 24.75 + }, + "week": "1993 Playoffs" }, { "date": "Jan 16, 1994", @@ -72770,8 +107706,13 @@ "und": "Green Bay Packers (6)", "sF": "27", "sU": "17", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 42.0, + "pScore": { + "sU": 14.25, + "sF": 27.75 + }, + "week": "1993 Playoffs" }, { "date": "Jan 16, 1994", @@ -72781,7 +107722,12 @@ "sF": "20", "sU": "28", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "1993 Playoffs" }, { "date": "Jan 23, 1994", @@ -72791,7 +107737,12 @@ "sF": "30", "sU": "13", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1993 Playoffs" }, { "date": "Jan 23, 1994", @@ -72801,11 +107752,12 @@ "sF": "38", "sU": "21", "spread": "3", - "ou": "49", + "ou": 48.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 22.5, + "sF": 25.5 + }, + "week": "1993 Playoffs" }, { "date": "Jan 30, 1994", @@ -72814,8 +107766,13 @@ "und": "Buffalo Bills (1)", "sF": "30", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 50.5, + "pScore": { + "sU": 20.0, + "sF": 30.5 + }, + "week": "1993 Playoffs" }, { "date": "Sep 4, 1994", @@ -72825,7 +107782,12 @@ "sF": "21", "sU": "9", "spread": "6", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 14.75, + "sF": 20.75 + }, + "week": "1994 Regular Season - Week 1" }, { "date": "Sep 4, 1994", @@ -72835,7 +107797,12 @@ "sF": "28", "sU": "20", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1994 Regular Season - Week 1" }, { "date": "Sep 4, 1994", @@ -72845,7 +107812,12 @@ "sF": "31", "sU": "28", "spread": "5", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.0, + "sF": 25.0 + }, + "week": "1994 Regular Season - Week 1" }, { "date": "Sep 4, 1994", @@ -72854,8 +107826,13 @@ "und": "Minnesota Vikings", "sF": "16", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1994 Regular Season - Week 1" }, { "date": "Sep 4, 1994", @@ -72865,7 +107842,12 @@ "sF": "21", "sU": "45", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "1994 Regular Season - Week 1" }, { "date": "Sep 4, 1994", @@ -72875,7 +107857,12 @@ "sF": "30", "sU": "17", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1994 Regular Season - Week 1" }, { "date": "Sep 4, 1994", @@ -72885,7 +107872,12 @@ "sF": "28", "sU": "23", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1994 Regular Season - Week 1" }, { "date": "Sep 4, 1994", @@ -72894,8 +107886,13 @@ "und": "Seattle Seahawks", "sF": "7", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 36.0, + "pScore": { + "sU": 17.25, + "sF": 18.75 + }, + "week": "1994 Regular Season - Week 1" }, { "date": "Sep 4, 1994", @@ -72905,7 +107902,12 @@ "sF": "3", "sU": "23", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1994 Regular Season - Week 1" }, { "date": "Sep 4, 1994", @@ -72914,8 +107916,13 @@ "und": "Los Angeles Rams", "sF": "12", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.0, + "pScore": { + "sU": 14.75, + "sF": 21.25 + }, + "week": "1994 Regular Season - Week 1" }, { "date": "Sep 4, 1994", @@ -72925,7 +107932,12 @@ "sF": "39", "sU": "35", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "1994 Regular Season - Week 1" }, { "date": "Sep 4, 1994", @@ -72934,8 +107946,13 @@ "und": "Pittsburgh Steelers", "sF": "26", "sU": "9", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.5, + "pScore": { + "sU": 17.0, + "sF": 22.5 + }, + "week": "1994 Regular Season - Week 1" }, { "date": "Sep 4, 1994", @@ -72945,7 +107962,12 @@ "sF": "34", "sU": "37", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "1994 Regular Season - Week 1" }, { "date": "Sep 5, 1994", @@ -72955,7 +107977,12 @@ "sF": "44", "sU": "14", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "1994 Regular Season - Week 1" }, { "date": "Sep 11, 1994", @@ -72964,8 +107991,13 @@ "und": "Los Angeles Rams", "sF": "31", "sU": "13", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.5, + "pScore": { + "sU": 17.5, + "sF": 26.0 + }, + "week": "1994 Regular Season - Week 2" }, { "date": "Sep 11, 1994", @@ -72974,8 +108006,13 @@ "und": "Pittsburgh Steelers", "sF": "10", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1994 Regular Season - Week 2" }, { "date": "Sep 11, 1994", @@ -72985,7 +108022,12 @@ "sF": "14", "sU": "24", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1994 Regular Season - Week 2" }, { "date": "Sep 11, 1994", @@ -72995,7 +108037,12 @@ "sF": "17", "sU": "24", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "1994 Regular Season - Week 2" }, { "date": "Sep 11, 1994", @@ -73004,8 +108051,13 @@ "und": "Detroit Lions", "sF": "10", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.5, + "pScore": { + "sU": 19.0, + "sF": 23.5 + }, + "week": "1994 Regular Season - Week 2" }, { "date": "Sep 11, 1994", @@ -73014,8 +108066,13 @@ "und": "Buffalo Bills", "sF": "35", "sU": "38", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1994 Regular Season - Week 2" }, { "date": "Sep 11, 1994", @@ -73025,7 +108082,12 @@ "sF": "24", "sU": "10", "spread": "2", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.75, + "sF": 19.75 + }, + "week": "1994 Regular Season - Week 2" }, { "date": "Sep 11, 1994", @@ -73034,8 +108096,13 @@ "und": "Houston Oilers", "sF": "20", "sU": "17", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 43.5, + "pScore": { + "sU": 14.5, + "sF": 29.0 + }, + "week": "1994 Regular Season - Week 2" }, { "date": "Sep 11, 1994", @@ -73044,8 +108111,13 @@ "und": "Seattle Seahawks", "sF": "9", "sU": "38", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.5, + "pScore": { + "sU": 18.0, + "sF": 24.5 + }, + "week": "1994 Regular Season - Week 2" }, { "date": "Sep 11, 1994", @@ -73055,7 +108127,12 @@ "sF": "24", "sU": "38", "spread": "8", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.0, + "sF": 23.0 + }, + "week": "1994 Regular Season - Week 2" }, { "date": "Sep 11, 1994", @@ -73065,7 +108142,12 @@ "sF": "25", "sU": "22", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "1994 Regular Season - Week 2" }, { "date": "Sep 11, 1994", @@ -73075,7 +108157,12 @@ "sF": "27", "sU": "10", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "1994 Regular Season - Week 2" }, { "date": "Sep 11, 1994", @@ -73084,8 +108171,13 @@ "und": "New York Giants", "sF": "17", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.5, + "pScore": { + "sU": 16.0, + "sF": 19.5 + }, + "week": "1994 Regular Season - Week 2" }, { "date": "Sep 12, 1994", @@ -73094,8 +108186,13 @@ "und": "Chicago Bears", "sF": "30", "sU": "22", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.5, + "pScore": { + "sU": 17.0, + "sF": 20.5 + }, + "week": "1994 Regular Season - Week 2" }, { "date": "Sep 18, 1994", @@ -73104,8 +108201,13 @@ "und": "Cincinnati Bengals", "sF": "31", "sU": "28", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "1994 Regular Season - Week 3" }, { "date": "Sep 18, 1994", @@ -73115,7 +108217,12 @@ "sF": "32", "sU": "0", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "1994 Regular Season - Week 3" }, { "date": "Sep 18, 1994", @@ -73124,8 +108231,13 @@ "und": "Buffalo Bills", "sF": "7", "sU": "15", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "1994 Regular Season - Week 3" }, { "date": "Sep 18, 1994", @@ -73134,8 +108246,13 @@ "und": "New York Jets", "sF": "28", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "1994 Regular Season - Week 3" }, { "date": "Sep 18, 1994", @@ -73144,8 +108261,13 @@ "und": "Green Bay Packers", "sF": "13", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1994 Regular Season - Week 3" }, { "date": "Sep 18, 1994", @@ -73155,7 +108277,12 @@ "sF": "31", "sU": "21", "spread": "8", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.0, + "sF": 23.0 + }, + "week": "1994 Regular Season - Week 3" }, { "date": "Sep 18, 1994", @@ -73164,8 +108291,13 @@ "und": "New Orleans Saints", "sF": "7", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "1994 Regular Season - Week 3" }, { "date": "Sep 18, 1994", @@ -73174,8 +108306,13 @@ "und": "Los Angeles Raiders", "sF": "16", "sU": "48", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 50.5, + "pScore": { + "sU": 23.0, + "sF": 27.5 + }, + "week": "1994 Regular Season - Week 3" }, { "date": "Sep 18, 1994", @@ -73184,8 +108321,13 @@ "und": "Los Angeles Rams", "sF": "34", "sU": "19", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 45.0, + "pScore": { + "sU": 15.75, + "sF": 29.25 + }, + "week": "1994 Regular Season - Week 3" }, { "date": "Sep 18, 1994", @@ -73195,7 +108337,12 @@ "sF": "31", "sU": "23", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "1994 Regular Season - Week 3" }, { "date": "Sep 18, 1994", @@ -73204,8 +108351,13 @@ "und": "San Diego Chargers", "sF": "10", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "1994 Regular Season - Week 3" }, { "date": "Sep 18, 1994", @@ -73214,8 +108366,13 @@ "und": "Atlanta Falcons", "sF": "30", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "1994 Regular Season - Week 3" }, { "date": "Sep 19, 1994", @@ -73225,7 +108382,12 @@ "sF": "17", "sU": "20", "spread": "13", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 15.75, + "sF": 28.75 + }, + "week": "1994 Regular Season - Week 3" }, { "date": "Sep 25, 1994", @@ -73235,7 +108397,12 @@ "sF": "30", "sU": "3", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1994 Regular Season - Week 4" }, { "date": "Sep 25, 1994", @@ -73244,8 +108411,13 @@ "und": "Indianapolis Colts", "sF": "21", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.5, + "pScore": { + "sU": 19.0, + "sF": 20.5 + }, + "week": "1994 Regular Season - Week 4" }, { "date": "Sep 25, 1994", @@ -73254,8 +108426,13 @@ "und": "Los Angeles Rams", "sF": "0", "sU": "16", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 44.5, + "pScore": { + "sU": 15.0, + "sF": 29.5 + }, + "week": "1994 Regular Season - Week 4" }, { "date": "Sep 25, 1994", @@ -73264,8 +108441,13 @@ "und": "Miami Dolphins", "sF": "38", "sU": "35", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1994 Regular Season - Week 4" }, { "date": "Sep 25, 1994", @@ -73275,7 +108457,12 @@ "sF": "27", "sU": "20", "spread": "1", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.5, + "sF": 24.5 + }, + "week": "1994 Regular Season - Week 4" }, { "date": "Sep 25, 1994", @@ -73285,7 +108472,12 @@ "sF": "17", "sU": "23", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "1994 Regular Season - Week 4" }, { "date": "Sep 25, 1994", @@ -73294,8 +108486,13 @@ "und": "Cincinnati Bengals", "sF": "20", "sU": "13", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 41.0, + "pScore": { + "sU": 16.25, + "sF": 24.75 + }, + "week": "1994 Regular Season - Week 4" }, { "date": "Sep 25, 1994", @@ -73304,8 +108501,13 @@ "und": "San Diego Chargers", "sF": "24", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "1994 Regular Season - Week 4" }, { "date": "Sep 25, 1994", @@ -73315,7 +108517,12 @@ "sF": "24", "sU": "13", "spread": "15", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 15.0, + "sF": 30.0 + }, + "week": "1994 Regular Season - Week 4" }, { "date": "Sep 25, 1994", @@ -73325,7 +108532,12 @@ "sF": "13", "sU": "30", "spread": "1", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.75, + "sF": 19.75 + }, + "week": "1994 Regular Season - Week 4" }, { "date": "Sep 25, 1994", @@ -73334,8 +108546,13 @@ "und": "Chicago Bears", "sF": "7", "sU": "19", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.5, + "pScore": { + "sU": 15.5, + "sF": 23.0 + }, + "week": "1994 Regular Season - Week 4" }, { "date": "Sep 26, 1994", @@ -73344,8 +108561,13 @@ "und": "Denver Broncos", "sF": "27", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.0, + "pScore": { + "sU": 21.25, + "sF": 27.75 + }, + "week": "1994 Regular Season - Week 4" }, { "date": "Oct 2, 1994", @@ -73354,8 +108576,13 @@ "und": "New York Jets", "sF": "27", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1994 Regular Season - Week 5" }, { "date": "Oct 2, 1994", @@ -73364,8 +108591,13 @@ "und": "Indianapolis Colts", "sF": "15", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1994 Regular Season - Week 5" }, { "date": "Oct 2, 1994", @@ -73375,7 +108607,12 @@ "sF": "17", "sU": "16", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "1994 Regular Season - Week 5" }, { "date": "Oct 2, 1994", @@ -73385,7 +108622,12 @@ "sF": "14", "sU": "24", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "1994 Regular Season - Week 5" }, { "date": "Oct 2, 1994", @@ -73394,8 +108636,13 @@ "und": "Washington Redskins", "sF": "34", "sU": "7", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 45.0, + "pScore": { + "sU": 16.75, + "sF": 28.25 + }, + "week": "1994 Regular Season - Week 5" }, { "date": "Oct 2, 1994", @@ -73404,8 +108651,13 @@ "und": "Arizona Cardinals", "sF": "7", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "1994 Regular Season - Week 5" }, { "date": "Oct 2, 1994", @@ -73415,7 +108667,12 @@ "sF": "13", "sU": "20", "spread": "2", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.25, + "sF": 20.25 + }, + "week": "1994 Regular Season - Week 5" }, { "date": "Oct 2, 1994", @@ -73424,8 +108681,13 @@ "und": "Los Angeles Rams", "sF": "8", "sU": "5", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.0, + "pScore": { + "sU": 21.25, + "sF": 22.75 + }, + "week": "1994 Regular Season - Week 5" }, { "date": "Oct 2, 1994", @@ -73435,7 +108697,12 @@ "sF": "22", "sU": "27", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1994 Regular Season - Week 5" }, { "date": "Oct 2, 1994", @@ -73445,7 +108712,12 @@ "sF": "8", "sU": "40", "spread": "9", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 18.0, + "sF": 27.0 + }, + "week": "1994 Regular Season - Week 5" }, { "date": "Oct 2, 1994", @@ -73455,7 +108727,12 @@ "sF": "23", "sU": "7", "spread": "8", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.25, + "sF": 26.25 + }, + "week": "1994 Regular Season - Week 5" }, { "date": "Oct 3, 1994", @@ -73465,7 +108742,12 @@ "sF": "30", "sU": "14", "spread": "8", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.5, + "sF": 23.5 + }, + "week": "1994 Regular Season - Week 5" }, { "date": "Oct 9, 1994", @@ -73475,7 +108757,12 @@ "sF": "34", "sU": "13", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1994 Regular Season - Week 6" }, { "date": "Oct 9, 1994", @@ -73484,8 +108771,13 @@ "und": "Miami Dolphins", "sF": "21", "sU": "11", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "1994 Regular Season - Week 6" }, { "date": "Oct 9, 1994", @@ -73494,8 +108786,13 @@ "und": "New Orleans Saints", "sF": "17", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1994 Regular Season - Week 6" }, { "date": "Oct 9, 1994", @@ -73504,8 +108801,13 @@ "und": "Detroit Lions", "sF": "27", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.0, + "pScore": { + "sU": 19.75, + "sF": 24.25 + }, + "week": "1994 Regular Season - Week 6" }, { "date": "Oct 9, 1994", @@ -73514,8 +108816,13 @@ "und": "Los Angeles Rams", "sF": "24", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 35.0, + "pScore": { + "sU": 13.25, + "sF": 21.75 + }, + "week": "1994 Regular Season - Week 6" }, { "date": "Oct 9, 1994", @@ -73524,8 +108831,13 @@ "und": "Indianapolis Colts", "sF": "16", "sU": "6", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 36.5, + "pScore": { + "sU": 15.5, + "sF": 21.0 + }, + "week": "1994 Regular Season - Week 6" }, { "date": "Oct 9, 1994", @@ -73534,8 +108846,13 @@ "und": "Arizona Cardinals", "sF": "38", "sU": "3", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 37.5, + "pScore": { + "sU": 12.5, + "sF": 25.0 + }, + "week": "1994 Regular Season - Week 6" }, { "date": "Oct 9, 1994", @@ -73545,7 +108862,12 @@ "sF": "17", "sU": "21", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "1994 Regular Season - Week 6" }, { "date": "Oct 9, 1994", @@ -73554,8 +108876,13 @@ "und": "Kansas City Chiefs", "sF": "20", "sU": "6", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.0, + "pScore": { + "sU": 20.75, + "sF": 22.25 + }, + "week": "1994 Regular Season - Week 6" }, { "date": "Oct 9, 1994", @@ -73564,8 +108891,13 @@ "und": "Denver Broncos", "sF": "9", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "1994 Regular Season - Week 6" }, { "date": "Oct 9, 1994", @@ -73575,7 +108907,12 @@ "sF": "21", "sU": "17", "spread": "13", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 14.5, + "sF": 27.5 + }, + "week": "1994 Regular Season - Week 6" }, { "date": "Oct 10, 1994", @@ -73584,8 +108921,13 @@ "und": "Minnesota Vikings", "sF": "10", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1994 Regular Season - Week 6" }, { "date": "Oct 13, 1994", @@ -73595,7 +108937,12 @@ "sF": "11", "sU": "8", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1994 Regular Season - Week 7" }, { "date": "Oct 16, 1994", @@ -73605,7 +108952,12 @@ "sF": "42", "sU": "3", "spread": "5", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.75, + "sF": 25.75 + }, + "week": "1994 Regular Season - Week 7" }, { "date": "Oct 16, 1994", @@ -73614,8 +108966,13 @@ "und": "Indianapolis Colts", "sF": "17", "sU": "27", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 38.0, + "pScore": { + "sU": 14.25, + "sF": 23.75 + }, + "week": "1994 Regular Season - Week 7" }, { "date": "Oct 16, 1994", @@ -73624,8 +108981,13 @@ "und": "Los Angeles Raiders", "sF": "20", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "1994 Regular Season - Week 7" }, { "date": "Oct 16, 1994", @@ -73635,7 +108997,12 @@ "sF": "24", "sU": "17", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1994 Regular Season - Week 7" }, { "date": "Oct 16, 1994", @@ -73644,8 +109011,13 @@ "und": "Cincinnati Bengals", "sF": "14", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 39.0, + "pScore": { + "sU": 12.75, + "sF": 26.25 + }, + "week": "1994 Regular Season - Week 7" }, { "date": "Oct 16, 1994", @@ -73655,7 +109027,12 @@ "sF": "19", "sU": "16", "spread": "1", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 17.0, + "sF": 18.0 + }, + "week": "1994 Regular Season - Week 7" }, { "date": "Oct 16, 1994", @@ -73664,8 +109041,13 @@ "und": "Philadelphia Eagles", "sF": "24", "sU": "13", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 42.0, + "pScore": { + "sU": 16.75, + "sF": 25.25 + }, + "week": "1994 Regular Season - Week 7" }, { "date": "Oct 16, 1994", @@ -73674,8 +109056,13 @@ "und": "Los Angeles Rams", "sF": "10", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 36.5, + "pScore": { + "sU": 17.5, + "sF": 19.0 + }, + "week": "1994 Regular Season - Week 7" }, { "date": "Oct 16, 1994", @@ -73685,7 +109072,12 @@ "sF": "36", "sU": "22", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1994 Regular Season - Week 7" }, { "date": "Oct 17, 1994", @@ -73694,8 +109086,13 @@ "und": "Kansas City Chiefs", "sF": "28", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.0, + "pScore": { + "sU": 20.75, + "sF": 22.25 + }, + "week": "1994 Regular Season - Week 7" }, { "date": "Oct 20, 1994", @@ -73705,7 +109102,12 @@ "sF": "13", "sU": "10", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "1994 Regular Season - Week 8" }, { "date": "Oct 23, 1994", @@ -73714,8 +109116,13 @@ "und": "Cincinnati Bengals", "sF": "37", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 34.5, + "pScore": { + "sU": 12.0, + "sF": 22.5 + }, + "week": "1994 Regular Season - Week 8" }, { "date": "Oct 23, 1994", @@ -73725,7 +109132,12 @@ "sF": "21", "sU": "16", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1994 Regular Season - Week 8" }, { "date": "Oct 23, 1994", @@ -73735,7 +109147,12 @@ "sF": "27", "sU": "41", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1994 Regular Season - Week 8" }, { "date": "Oct 23, 1994", @@ -73745,7 +109162,12 @@ "sF": "38", "sU": "23", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1994 Regular Season - Week 8" }, { "date": "Oct 23, 1994", @@ -73754,8 +109176,13 @@ "und": "Los Angeles Rams", "sF": "37", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "1994 Regular Season - Week 8" }, { "date": "Oct 23, 1994", @@ -73765,7 +109192,12 @@ "sF": "6", "sU": "10", "spread": "1", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.75, + "sF": 18.75 + }, + "week": "1994 Regular Season - Week 8" }, { "date": "Oct 23, 1994", @@ -73774,8 +109206,13 @@ "und": "Arizona Cardinals", "sF": "28", "sU": "21", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 36.0, + "pScore": { + "sU": 13.75, + "sF": 22.25 + }, + "week": "1994 Regular Season - Week 8" }, { "date": "Oct 23, 1994", @@ -73784,8 +109221,13 @@ "und": "Atlanta Falcons", "sF": "30", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.5, + "pScore": { + "sU": 20.0, + "sF": 24.5 + }, + "week": "1994 Regular Season - Week 8" }, { "date": "Oct 23, 1994", @@ -73794,8 +109236,13 @@ "und": "Denver Broncos", "sF": "15", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "1994 Regular Season - Week 8" }, { "date": "Oct 23, 1994", @@ -73804,8 +109251,13 @@ "und": "Tampa Bay Buccaneers", "sF": "41", "sU": "16", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 43.0, + "pScore": { + "sU": 13.75, + "sF": 29.25 + }, + "week": "1994 Regular Season - Week 8" }, { "date": "Oct 24, 1994", @@ -73815,7 +109267,12 @@ "sF": "21", "sU": "6", "spread": "11", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 13.25, + "sF": 24.25 + }, + "week": "1994 Regular Season - Week 8" }, { "date": "Oct 30, 1994", @@ -73824,8 +109281,13 @@ "und": "Kansas City Chiefs", "sF": "44", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1994 Regular Season - Week 9" }, { "date": "Oct 30, 1994", @@ -73835,7 +109297,12 @@ "sF": "23", "sU": "20", "spread": "15", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 11.5, + "sF": 26.5 + }, + "week": "1994 Regular Season - Week 9" }, { "date": "Oct 30, 1994", @@ -73845,7 +109312,12 @@ "sF": "25", "sU": "28", "spread": "1", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 16.75, + "sF": 17.75 + }, + "week": "1994 Regular Season - Week 9" }, { "date": "Oct 30, 1994", @@ -73855,7 +109327,12 @@ "sF": "31", "sU": "29", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1994 Regular Season - Week 9" }, { "date": "Oct 30, 1994", @@ -73865,7 +109342,12 @@ "sF": "26", "sU": "14", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1994 Regular Season - Week 9" }, { "date": "Oct 30, 1994", @@ -73875,7 +109357,12 @@ "sF": "25", "sU": "28", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "1994 Regular Season - Week 9" }, { "date": "Oct 30, 1994", @@ -73884,8 +109371,13 @@ "und": "Houston Oilers", "sF": "17", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 39.0, + "pScore": { + "sU": 14.75, + "sF": 24.25 + }, + "week": "1994 Regular Season - Week 9" }, { "date": "Oct 30, 1994", @@ -73895,7 +109387,12 @@ "sF": "3", "sU": "23", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "1994 Regular Season - Week 9" }, { "date": "Oct 30, 1994", @@ -73904,8 +109401,13 @@ "und": "Seattle Seahawks", "sF": "35", "sU": "15", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "1994 Regular Season - Week 9" }, { "date": "Oct 30, 1994", @@ -73914,8 +109416,13 @@ "und": "Tampa Bay Buccaneers", "sF": "36", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.5, + "pScore": { + "sU": 15.0, + "sF": 21.5 + }, + "week": "1994 Regular Season - Week 9" }, { "date": "Oct 30, 1994", @@ -73925,7 +109432,12 @@ "sF": "20", "sU": "17", "spread": "2", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.5, + "sF": 18.5 + }, + "week": "1994 Regular Season - Week 9" }, { "date": "Oct 31, 1994", @@ -73934,8 +109446,13 @@ "und": "Green Bay Packers", "sF": "6", "sU": "33", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 34.0, + "pScore": { + "sU": 16.25, + "sF": 17.75 + }, + "week": "1994 Regular Season - Week 9" }, { "date": "Nov 6, 1994", @@ -73944,8 +109461,13 @@ "und": "San Diego Chargers", "sF": "10", "sU": "9", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "1994 Regular Season - Week 10" }, { "date": "Nov 6, 1994", @@ -73954,8 +109476,13 @@ "und": "Detroit Lions", "sF": "38", "sU": "30", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 35.5, + "pScore": { + "sU": 15.0, + "sF": 20.5 + }, + "week": "1994 Regular Season - Week 10" }, { "date": "Nov 6, 1994", @@ -73965,7 +109492,12 @@ "sF": "12", "sU": "9", "spread": "3", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 15.75, + "sF": 18.75 + }, + "week": "1994 Regular Season - Week 10" }, { "date": "Nov 6, 1994", @@ -73974,8 +109506,13 @@ "und": "Indianapolis Colts", "sF": "22", "sU": "21", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 40.0, + "pScore": { + "sU": 15.25, + "sF": 24.75 + }, + "week": "1994 Regular Season - Week 10" }, { "date": "Nov 6, 1994", @@ -73984,8 +109521,13 @@ "und": "New Orleans Saints", "sF": "21", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 38.5, + "pScore": { + "sU": 14.5, + "sF": 24.0 + }, + "week": "1994 Regular Season - Week 10" }, { "date": "Nov 6, 1994", @@ -73995,7 +109537,12 @@ "sF": "20", "sU": "6", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1994 Regular Season - Week 10" }, { "date": "Nov 6, 1994", @@ -74005,7 +109552,12 @@ "sF": "37", "sU": "22", "spread": "10", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.25, + "sF": 27.25 + }, + "week": "1994 Regular Season - Week 10" }, { "date": "Nov 6, 1994", @@ -74015,7 +109567,12 @@ "sF": "13", "sU": "6", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1994 Regular Season - Week 10" }, { "date": "Nov 6, 1994", @@ -74025,7 +109582,12 @@ "sF": "21", "sU": "27", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1994 Regular Season - Week 10" }, { "date": "Nov 6, 1994", @@ -74034,8 +109596,13 @@ "und": "New York Jets", "sF": "17", "sU": "22", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "1994 Regular Season - Week 10" }, { "date": "Nov 6, 1994", @@ -74044,8 +109611,13 @@ "und": "Arizona Cardinals", "sF": "17", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.5, + "pScore": { + "sU": 14.5, + "sF": 21.0 + }, + "week": "1994 Regular Season - Week 10" }, { "date": "Nov 6, 1994", @@ -74054,8 +109626,13 @@ "und": "Cincinnati Bengals", "sF": "17", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.0, + "pScore": { + "sU": 14.25, + "sF": 21.75 + }, + "week": "1994 Regular Season - Week 10" }, { "date": "Nov 6, 1994", @@ -74064,8 +109641,13 @@ "und": "Los Angeles Raiders", "sF": "13", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "1994 Regular Season - Week 10" }, { "date": "Nov 7, 1994", @@ -74074,8 +109656,13 @@ "und": "New York Giants", "sF": "38", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 38.0, + "pScore": { + "sU": 12.25, + "sF": 25.75 + }, + "week": "1994 Regular Season - Week 10" }, { "date": "Nov 13, 1994", @@ -74085,7 +109672,12 @@ "sF": "34", "sU": "31", "spread": "1", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 16.5, + "sF": 17.5 + }, + "week": "1994 Regular Season - Week 11" }, { "date": "Nov 13, 1994", @@ -74095,7 +109687,12 @@ "sF": "13", "sU": "14", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "1994 Regular Season - Week 11" }, { "date": "Nov 13, 1994", @@ -74105,7 +109702,12 @@ "sF": "14", "sU": "17", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1994 Regular Season - Week 11" }, { "date": "Nov 13, 1994", @@ -74114,8 +109716,13 @@ "und": "New England Patriots", "sF": "20", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1994 Regular Season - Week 11" }, { "date": "Nov 13, 1994", @@ -74124,8 +109731,13 @@ "und": "Atlanta Falcons", "sF": "33", "sU": "32", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "1994 Regular Season - Week 11" }, { "date": "Nov 13, 1994", @@ -74135,7 +109747,12 @@ "sF": "9", "sU": "10", "spread": "1", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 16.75, + "sF": 17.75 + }, + "week": "1994 Regular Season - Week 11" }, { "date": "Nov 13, 1994", @@ -74144,8 +109761,13 @@ "und": "Cleveland Browns", "sF": "7", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "1994 Regular Season - Week 11" }, { "date": "Nov 13, 1994", @@ -74155,7 +109777,12 @@ "sF": "17", "sU": "10", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1994 Regular Season - Week 11" }, { "date": "Nov 13, 1994", @@ -74165,7 +109792,12 @@ "sF": "17", "sU": "10", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1994 Regular Season - Week 11" }, { "date": "Nov 13, 1994", @@ -74175,7 +109807,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "1994 Regular Season - Week 11" }, { "date": "Nov 13, 1994", @@ -74185,7 +109822,12 @@ "sF": "21", "sU": "14", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1994 Regular Season - Week 11" }, { "date": "Nov 13, 1994", @@ -74195,7 +109837,12 @@ "sF": "14", "sU": "9", "spread": "10", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.5, + "sF": 23.5 + }, + "week": "1994 Regular Season - Week 11" }, { "date": "Nov 14, 1994", @@ -74204,8 +109851,13 @@ "und": "Buffalo Bills", "sF": "23", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.0, + "pScore": { + "sU": 17.75, + "sF": 19.25 + }, + "week": "1994 Regular Season - Week 11" }, { "date": "Nov 20, 1994", @@ -74215,7 +109867,12 @@ "sF": "29", "sU": "20", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1994 Regular Season - Week 12" }, { "date": "Nov 20, 1994", @@ -74225,7 +109882,12 @@ "sF": "20", "sU": "10", "spread": "3", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 15.75, + "sF": 18.75 + }, + "week": "1994 Regular Season - Week 12" }, { "date": "Nov 20, 1994", @@ -74235,7 +109897,12 @@ "sF": "17", "sU": "13", "spread": "1", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 19.25, + "sF": 20.25 + }, + "week": "1994 Regular Season - Week 12" }, { "date": "Nov 20, 1994", @@ -74244,8 +109911,13 @@ "und": "Washington Redskins", "sF": "31", "sU": "7", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 43.5, + "pScore": { + "sU": 14.0, + "sF": 29.5 + }, + "week": "1994 Regular Season - Week 12" }, { "date": "Nov 20, 1994", @@ -74255,7 +109927,12 @@ "sF": "20", "sU": "13", "spread": "4", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 15.25, + "sF": 19.25 + }, + "week": "1994 Regular Season - Week 12" }, { "date": "Nov 20, 1994", @@ -74264,8 +109941,13 @@ "und": "New England Patriots", "sF": "17", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "1994 Regular Season - Week 12" }, { "date": "Nov 20, 1994", @@ -74274,8 +109956,13 @@ "und": "Miami Dolphins", "sF": "16", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "1994 Regular Season - Week 12" }, { "date": "Nov 20, 1994", @@ -74284,8 +109971,13 @@ "und": "Arizona Cardinals", "sF": "6", "sU": "12", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 33.0, + "pScore": { + "sU": 14.75, + "sF": 18.25 + }, + "week": "1994 Regular Season - Week 12" }, { "date": "Nov 20, 1994", @@ -74295,7 +109987,12 @@ "sF": "32", "sU": "28", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "1994 Regular Season - Week 12" }, { "date": "Nov 20, 1994", @@ -74304,8 +110001,13 @@ "und": "New Orleans Saints", "sF": "24", "sU": "19", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "1994 Regular Season - Week 12" }, { "date": "Nov 20, 1994", @@ -74315,7 +110017,12 @@ "sF": "21", "sU": "31", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "1994 Regular Season - Week 12" }, { "date": "Nov 20, 1994", @@ -74325,7 +110032,12 @@ "sF": "22", "sU": "21", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1994 Regular Season - Week 12" }, { "date": "Nov 20, 1994", @@ -74335,7 +110047,12 @@ "sF": "31", "sU": "27", "spread": "14", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 14.5, + "sF": 28.5 + }, + "week": "1994 Regular Season - Week 12" }, { "date": "Nov 21, 1994", @@ -74345,7 +110062,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1994 Regular Season - Week 12" }, { "date": "Nov 24, 1994", @@ -74354,8 +110076,13 @@ "und": "Detroit Lions", "sF": "21", "sU": "35", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.0, + "pScore": { + "sU": 18.75, + "sF": 20.25 + }, + "week": "1994 Regular Season - Week 13" }, { "date": "Nov 24, 1994", @@ -74365,7 +110092,12 @@ "sF": "42", "sU": "31", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "1994 Regular Season - Week 13" }, { "date": "Nov 27, 1994", @@ -74374,8 +110106,13 @@ "und": "Atlanta Falcons", "sF": "21", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "1994 Regular Season - Week 13" }, { "date": "Nov 27, 1994", @@ -74385,7 +110122,12 @@ "sF": "34", "sU": "10", "spread": "8", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 12.5, + "sF": 20.5 + }, + "week": "1994 Regular Season - Week 13" }, { "date": "Nov 27, 1994", @@ -74394,8 +110136,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "20", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 40.0, + "pScore": { + "sU": 13.25, + "sF": 26.75 + }, + "week": "1994 Regular Season - Week 13" }, { "date": "Nov 27, 1994", @@ -74404,8 +110151,13 @@ "und": "Miami Dolphins", "sF": "24", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.5, + "pScore": { + "sU": 18.0, + "sF": 19.5 + }, + "week": "1994 Regular Season - Week 13" }, { "date": "Nov 27, 1994", @@ -74415,7 +110167,12 @@ "sF": "16", "sU": "19", "spread": "3", - "ou": -1 + "ou": 31.0, + "pScore": { + "sU": 14.0, + "sF": 17.0 + }, + "week": "1994 Regular Season - Week 13" }, { "date": "Nov 27, 1994", @@ -74424,8 +110181,13 @@ "und": "Cincinnati Bengals", "sF": "15", "sU": "13", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.5, + "pScore": { + "sU": 17.5, + "sF": 26.0 + }, + "week": "1994 Regular Season - Week 13" }, { "date": "Nov 27, 1994", @@ -74434,8 +110196,13 @@ "und": "Pittsburgh Steelers", "sF": "3", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1994 Regular Season - Week 13" }, { "date": "Nov 27, 1994", @@ -74445,7 +110212,12 @@ "sF": "31", "sU": "17", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "1994 Regular Season - Week 13" }, { "date": "Nov 27, 1994", @@ -74454,8 +110226,13 @@ "und": "Seattle Seahawks", "sF": "9", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "1994 Regular Season - Week 13" }, { "date": "Nov 27, 1994", @@ -74465,7 +110242,12 @@ "sF": "19", "sU": "21", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "1994 Regular Season - Week 13" }, { "date": "Nov 27, 1994", @@ -74475,7 +110257,12 @@ "sF": "10", "sU": "12", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "1994 Regular Season - Week 13" }, { "date": "Nov 28, 1994", @@ -74484,8 +110271,13 @@ "und": "New Orleans Saints", "sF": "35", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 46.5, + "pScore": { + "sU": 19.0, + "sF": 27.5 + }, + "week": "1994 Regular Season - Week 13" }, { "date": "Dec 1, 1994", @@ -74494,8 +110286,13 @@ "und": "Chicago Bears", "sF": "33", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 36.0, + "pScore": { + "sU": 15.25, + "sF": 20.75 + }, + "week": "1994 Regular Season - Week 14" }, { "date": "Dec 4, 1994", @@ -74505,7 +110302,12 @@ "sF": "38", "sU": "15", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "1994 Regular Season - Week 14" }, { "date": "Dec 4, 1994", @@ -74514,8 +110316,13 @@ "und": "New York Jets", "sF": "24", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1994 Regular Season - Week 14" }, { "date": "Dec 4, 1994", @@ -74524,8 +110331,13 @@ "und": "Philadelphia Eagles", "sF": "31", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1994 Regular Season - Week 14" }, { "date": "Dec 4, 1994", @@ -74534,8 +110346,13 @@ "und": "Washington Redskins", "sF": "26", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1994 Regular Season - Week 14" }, { "date": "Dec 4, 1994", @@ -74545,7 +110362,12 @@ "sF": "13", "sU": "16", "spread": "7", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 13.0, + "sF": 20.0 + }, + "week": "1994 Regular Season - Week 14" }, { "date": "Dec 4, 1994", @@ -74554,8 +110376,13 @@ "und": "Green Bay Packers", "sF": "34", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.5, + "pScore": { + "sU": 18.5, + "sF": 20.0 + }, + "week": "1994 Regular Season - Week 14" }, { "date": "Dec 4, 1994", @@ -74565,7 +110392,12 @@ "sF": "30", "sU": "12", "spread": "3", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 14.5, + "sF": 17.5 + }, + "week": "1994 Regular Season - Week 14" }, { "date": "Dec 4, 1994", @@ -74574,8 +110406,13 @@ "und": "Denver Broncos", "sF": "17", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1994 Regular Season - Week 14" }, { "date": "Dec 4, 1994", @@ -74585,7 +110422,12 @@ "sF": "15", "sU": "31", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1994 Regular Season - Week 14" }, { "date": "Dec 4, 1994", @@ -74595,7 +110437,12 @@ "sF": "50", "sU": "14", "spread": "13", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 17.5, + "sF": 30.5 + }, + "week": "1994 Regular Season - Week 14" }, { "date": "Dec 4, 1994", @@ -74605,7 +110452,12 @@ "sF": "19", "sU": "31", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "1994 Regular Season - Week 14" }, { "date": "Dec 4, 1994", @@ -74615,7 +110467,12 @@ "sF": "31", "sU": "42", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1994 Regular Season - Week 14" }, { "date": "Dec 5, 1994", @@ -74625,7 +110482,12 @@ "sF": "17", "sU": "24", "spread": "4", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.75, + "sF": 20.75 + }, + "week": "1994 Regular Season - Week 14" }, { "date": "Dec 10, 1994", @@ -74635,7 +110497,12 @@ "sF": "7", "sU": "18", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "1994 Regular Season - Week 15" }, { "date": "Dec 10, 1994", @@ -74644,8 +110511,13 @@ "und": "Cleveland Browns", "sF": "14", "sU": "19", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 38.0, + "pScore": { + "sU": 13.75, + "sF": 24.25 + }, + "week": "1994 Regular Season - Week 15" }, { "date": "Dec 11, 1994", @@ -74654,8 +110526,13 @@ "und": "Minnesota Vikings", "sF": "17", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1994 Regular Season - Week 15" }, { "date": "Dec 11, 1994", @@ -74665,7 +110542,12 @@ "sF": "40", "sU": "3", "spread": "4", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.5, + "sF": 19.5 + }, + "week": "1994 Regular Season - Week 15" }, { "date": "Dec 11, 1994", @@ -74675,7 +110557,12 @@ "sF": "28", "sU": "13", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1994 Regular Season - Week 15" }, { "date": "Dec 11, 1994", @@ -74684,8 +110571,13 @@ "und": "Cincinnati Bengals", "sF": "27", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 35.0, + "pScore": { + "sU": 14.75, + "sF": 20.25 + }, + "week": "1994 Regular Season - Week 15" }, { "date": "Dec 11, 1994", @@ -74695,7 +110587,12 @@ "sF": "14", "sU": "3", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "1994 Regular Season - Week 15" }, { "date": "Dec 11, 1994", @@ -74704,8 +110601,13 @@ "und": "Los Angeles Rams", "sF": "24", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1994 Regular Season - Week 15" }, { "date": "Dec 11, 1994", @@ -74714,8 +110616,13 @@ "und": "Washington Redskins", "sF": "17", "sU": "15", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 34.5, + "pScore": { + "sU": 13.5, + "sF": 21.0 + }, + "week": "1994 Regular Season - Week 15" }, { "date": "Dec 11, 1994", @@ -74725,7 +110632,12 @@ "sF": "14", "sU": "16", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "1994 Regular Season - Week 15" }, { "date": "Dec 11, 1994", @@ -74735,7 +110647,12 @@ "sF": "23", "sU": "13", "spread": "5", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.25, + "sF": 23.25 + }, + "week": "1994 Regular Season - Week 15" }, { "date": "Dec 11, 1994", @@ -74745,7 +110662,12 @@ "sF": "38", "sU": "15", "spread": "9", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 18.25, + "sF": 27.25 + }, + "week": "1994 Regular Season - Week 15" }, { "date": "Dec 11, 1994", @@ -74755,7 +110677,12 @@ "sF": "20", "sU": "29", "spread": "4", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.0, + "sF": 25.0 + }, + "week": "1994 Regular Season - Week 15" }, { "date": "Dec 12, 1994", @@ -74764,8 +110691,13 @@ "und": "Kansas City Chiefs", "sF": "45", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.5, + "pScore": { + "sU": 17.5, + "sF": 22.0 + }, + "week": "1994 Regular Season - Week 15" }, { "date": "Dec 17, 1994", @@ -74774,8 +110706,13 @@ "und": "Minnesota Vikings", "sF": "41", "sU": "19", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "1994 Regular Season - Week 16" }, { "date": "Dec 17, 1994", @@ -74785,7 +110722,12 @@ "sF": "42", "sU": "19", "spread": "15", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 16.25, + "sF": 31.25 + }, + "week": "1994 Regular Season - Week 16" }, { "date": "Dec 18, 1994", @@ -74795,7 +110737,12 @@ "sF": "17", "sU": "41", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1994 Regular Season - Week 16" }, { "date": "Dec 18, 1994", @@ -74805,7 +110752,12 @@ "sF": "27", "sU": "13", "spread": "7", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 13.25, + "sF": 20.25 + }, + "week": "1994 Regular Season - Week 16" }, { "date": "Dec 18, 1994", @@ -74814,8 +110766,13 @@ "und": "Atlanta Falcons", "sF": "21", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.5, + "pScore": { + "sU": 16.0, + "sF": 23.5 + }, + "week": "1994 Regular Season - Week 16" }, { "date": "Dec 18, 1994", @@ -74825,7 +110782,12 @@ "sF": "21", "sU": "6", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1994 Regular Season - Week 16" }, { "date": "Dec 18, 1994", @@ -74835,7 +110797,12 @@ "sF": "14", "sU": "17", "spread": "2", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.5, + "sF": 20.5 + }, + "week": "1994 Regular Season - Week 16" }, { "date": "Dec 18, 1994", @@ -74845,7 +110812,12 @@ "sF": "28", "sU": "7", "spread": "7", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 13.75, + "sF": 20.75 + }, + "week": "1994 Regular Season - Week 16" }, { "date": "Dec 18, 1994", @@ -74854,8 +110826,13 @@ "und": "Indianapolis Colts", "sF": "6", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1994 Regular Season - Week 16" }, { "date": "Dec 18, 1994", @@ -74864,8 +110841,13 @@ "und": "Houston Oilers", "sF": "31", "sU": "9", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 34.0, + "pScore": { + "sU": 12.25, + "sF": 21.75 + }, + "week": "1994 Regular Season - Week 16" }, { "date": "Dec 18, 1994", @@ -74874,8 +110856,13 @@ "und": "New York Giants", "sF": "13", "sU": "16", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 35.0, + "pScore": { + "sU": 15.25, + "sF": 19.75 + }, + "week": "1994 Regular Season - Week 16" }, { "date": "Dec 18, 1994", @@ -74884,8 +110871,13 @@ "und": "Cleveland Browns", "sF": "17", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 32.5, + "pScore": { + "sU": 14.5, + "sF": 18.0 + }, + "week": "1994 Regular Season - Week 16" }, { "date": "Dec 18, 1994", @@ -74895,7 +110887,12 @@ "sF": "17", "sU": "16", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "1994 Regular Season - Week 16" }, { "date": "Dec 19, 1994", @@ -74905,7 +110902,12 @@ "sF": "24", "sU": "16", "spread": "10", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 17.75, + "sF": 27.75 + }, + "week": "1994 Regular Season - Week 16" }, { "date": "Dec 24, 1994", @@ -74915,7 +110917,12 @@ "sF": "6", "sU": "10", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1994 Regular Season - Week 17" }, { "date": "Dec 24, 1994", @@ -74925,7 +110932,12 @@ "sF": "13", "sU": "3", "spread": "1", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.75, + "sF": 18.75 + }, + "week": "1994 Regular Season - Week 17" }, { "date": "Dec 24, 1994", @@ -74934,8 +110946,13 @@ "und": "Seattle Seahawks", "sF": "35", "sU": "9", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 34.0, + "pScore": { + "sU": 11.75, + "sF": 22.25 + }, + "week": "1994 Regular Season - Week 17" }, { "date": "Dec 24, 1994", @@ -74945,7 +110962,12 @@ "sF": "10", "sU": "9", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1994 Regular Season - Week 17" }, { "date": "Dec 24, 1994", @@ -74955,7 +110977,12 @@ "sF": "10", "sU": "15", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1994 Regular Season - Week 17" }, { "date": "Dec 24, 1994", @@ -74964,8 +110991,13 @@ "und": "Tampa Bay Buccaneers", "sF": "34", "sU": "19", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "1994 Regular Season - Week 17" }, { "date": "Dec 24, 1994", @@ -74974,8 +111006,13 @@ "und": "New Orleans Saints", "sF": "28", "sU": "30", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.0, + "pScore": { + "sU": 20.25, + "sF": 24.75 + }, + "week": "1994 Regular Season - Week 17" }, { "date": "Dec 24, 1994", @@ -74984,8 +111021,13 @@ "und": "Houston Oilers", "sF": "10", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 34.0, + "pScore": { + "sU": 16.25, + "sF": 17.75 + }, + "week": "1994 Regular Season - Week 17" }, { "date": "Dec 24, 1994", @@ -74994,8 +111036,13 @@ "und": "Kansas City Chiefs", "sF": "9", "sU": "19", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.5, + "pScore": { + "sU": 17.0, + "sF": 20.5 + }, + "week": "1994 Regular Season - Week 17" }, { "date": "Dec 24, 1994", @@ -75004,8 +111051,13 @@ "und": "Washington Redskins", "sF": "21", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "1994 Regular Season - Week 17" }, { "date": "Dec 24, 1994", @@ -75014,8 +111066,13 @@ "und": "Pittsburgh Steelers", "sF": "37", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "1994 Regular Season - Week 17" }, { "date": "Dec 25, 1994", @@ -75024,8 +111081,13 @@ "und": "Detroit Lions", "sF": "27", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "1994 Regular Season - Week 17" }, { "date": "Dec 26, 1994", @@ -75034,8 +111096,13 @@ "und": "Minnesota Vikings", "sF": "14", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.0, + "pScore": { + "sU": 20.75, + "sF": 27.25 + }, + "week": "1994 Regular Season - Week 17" }, { "date": "Dec 31, 1994", @@ -75044,8 +111111,13 @@ "und": "Detroit Lions (5)", "sF": "16", "sU": "12", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "1994 Playoffs" }, { "date": "Dec 31, 1994", @@ -75055,7 +111127,12 @@ "sF": "27", "sU": "17", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "1994 Playoffs" }, { "date": "Jan 1, 1995", @@ -75065,7 +111142,12 @@ "sF": "20", "sU": "13", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "1994 Playoffs" }, { "date": "Jan 1, 1995", @@ -75075,7 +111157,12 @@ "sF": "18", "sU": "35", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "1994 Playoffs" }, { "date": "Jan 7, 1995", @@ -75084,8 +111171,13 @@ "und": "Cleveland Browns (4)", "sF": "29", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 32.5, + "pScore": { + "sU": 14.5, + "sF": 18.0 + }, + "week": "1994 Playoffs" }, { "date": "Jan 7, 1995", @@ -75094,8 +111186,13 @@ "und": "Chicago Bears (6)", "sF": "44", "sU": "15", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": 46.5, + "pScore": { + "sU": 14.5, + "sF": 32.0 + }, + "week": "1994 Playoffs" }, { "date": "Jan 8, 1995", @@ -75105,7 +111202,12 @@ "sF": "35", "sU": "9", "spread": "10", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.5, + "sF": 26.5 + }, + "week": "1994 Playoffs" }, { "date": "Jan 8, 1995", @@ -75115,7 +111217,12 @@ "sF": "22", "sU": "21", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "1994 Playoffs" }, { "date": "Jan 15, 1995", @@ -75125,7 +111232,12 @@ "sF": "13", "sU": "17", "spread": "9", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 13.0, + "sF": 22.0 + }, + "week": "1994 Playoffs" }, { "date": "Jan 15, 1995", @@ -75134,8 +111246,13 @@ "und": "Dallas Cowboys (2)", "sF": "38", "sU": "28", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "1994 Playoffs" }, { "date": "Jan 29, 1995", @@ -75145,7 +111262,12 @@ "sF": "49", "sU": "26", "spread": "18", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 18.0, + "sF": 36.0 + }, + "week": "1994 Playoffs" }, { "date": "Sep 3, 1995", @@ -75154,8 +111276,13 @@ "und": "Carolina Panthers", "sF": "23", "sU": "20", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 40.5, + "pScore": { + "sU": 16.0, + "sF": 24.5 + }, + "week": "1995 Regular Season - Week 1" }, { "date": "Sep 3, 1995", @@ -75164,8 +111291,13 @@ "und": "St Louis Rams", "sF": "14", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "1995 Regular Season - Week 1" }, { "date": "Sep 3, 1995", @@ -75174,8 +111306,13 @@ "und": "Cincinnati Bengals", "sF": "21", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "1995 Regular Season - Week 1" }, { "date": "Sep 3, 1995", @@ -75185,7 +111322,12 @@ "sF": "10", "sU": "3", "spread": "4", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.5, + "sF": 19.5 + }, + "week": "1995 Regular Season - Week 1" }, { "date": "Sep 3, 1995", @@ -75195,7 +111337,12 @@ "sF": "17", "sU": "14", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1995 Regular Season - Week 1" }, { "date": "Sep 3, 1995", @@ -75204,8 +111351,13 @@ "und": "New Orleans Saints", "sF": "24", "sU": "22", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 46.0, + "pScore": { + "sU": 18.75, + "sF": 27.25 + }, + "week": "1995 Regular Season - Week 1" }, { "date": "Sep 3, 1995", @@ -75215,7 +111367,12 @@ "sF": "6", "sU": "21", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1995 Regular Season - Week 1" }, { "date": "Sep 3, 1995", @@ -75224,8 +111381,13 @@ "und": "Detroit Lions", "sF": "23", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.0, + "pScore": { + "sU": 15.75, + "sF": 21.25 + }, + "week": "1995 Regular Season - Week 1" }, { "date": "Sep 3, 1995", @@ -75234,8 +111396,13 @@ "und": "Minnesota Vikings", "sF": "31", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.5, + "pScore": { + "sU": 18.0, + "sF": 20.5 + }, + "week": "1995 Regular Season - Week 1" }, { "date": "Sep 3, 1995", @@ -75245,7 +111412,12 @@ "sF": "52", "sU": "14", "spread": "9", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 14.75, + "sF": 23.75 + }, + "week": "1995 Regular Season - Week 1" }, { "date": "Sep 3, 1995", @@ -75255,7 +111427,12 @@ "sF": "17", "sU": "7", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1995 Regular Season - Week 1" }, { "date": "Sep 3, 1995", @@ -75265,7 +111442,12 @@ "sF": "7", "sU": "27", "spread": "3", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 15.75, + "sF": 18.75 + }, + "week": "1995 Regular Season - Week 1" }, { "date": "Sep 3, 1995", @@ -75275,7 +111457,12 @@ "sF": "22", "sU": "7", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "1995 Regular Season - Week 1" }, { "date": "Sep 4, 1995", @@ -75284,8 +111471,13 @@ "und": "New York Giants", "sF": "35", "sU": "0", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "1995 Regular Season - Week 1" }, { "date": "Sep 10, 1995", @@ -75295,7 +111487,12 @@ "sF": "31", "sU": "9", "spread": "9", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.5, + "sF": 23.5 + }, + "week": "1995 Regular Season - Week 2" }, { "date": "Sep 10, 1995", @@ -75304,8 +111501,13 @@ "und": "Tampa Bay Buccaneers", "sF": "22", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.0, + "pScore": { + "sU": 14.75, + "sF": 22.25 + }, + "week": "1995 Regular Season - Week 2" }, { "date": "Sep 10, 1995", @@ -75315,7 +111517,12 @@ "sF": "34", "sU": "17", "spread": "5", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 14.25, + "sF": 19.25 + }, + "week": "1995 Regular Season - Week 2" }, { "date": "Sep 10, 1995", @@ -75324,8 +111531,13 @@ "und": "New York Giants", "sF": "20", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.0, + "pScore": { + "sU": 15.75, + "sF": 21.25 + }, + "week": "1995 Regular Season - Week 2" }, { "date": "Sep 10, 1995", @@ -75335,7 +111547,12 @@ "sF": "20", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1995 Regular Season - Week 2" }, { "date": "Sep 10, 1995", @@ -75345,7 +111562,12 @@ "sF": "20", "sU": "3", "spread": "1", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.5, + "sF": 23.5 + }, + "week": "1995 Regular Season - Week 2" }, { "date": "Sep 10, 1995", @@ -75354,8 +111576,13 @@ "und": "New Orleans Saints", "sF": "17", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1995 Regular Season - Week 2" }, { "date": "Sep 10, 1995", @@ -75364,8 +111591,13 @@ "und": "Washington Redskins", "sF": "20", "sU": "8", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "1995 Regular Season - Week 2" }, { "date": "Sep 10, 1995", @@ -75375,7 +111607,12 @@ "sF": "24", "sU": "17", "spread": "8", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.5, + "sF": 22.5 + }, + "week": "1995 Regular Season - Week 2" }, { "date": "Sep 10, 1995", @@ -75385,7 +111622,12 @@ "sF": "31", "sU": "21", "spread": "10", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.5, + "sF": 26.5 + }, + "week": "1995 Regular Season - Week 2" }, { "date": "Sep 10, 1995", @@ -75395,7 +111637,12 @@ "sF": "27", "sU": "24", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1995 Regular Season - Week 2" }, { "date": "Sep 10, 1995", @@ -75405,7 +111652,12 @@ "sF": "14", "sU": "10", "spread": "8", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 14.75, + "sF": 22.75 + }, + "week": "1995 Regular Season - Week 2" }, { "date": "Sep 10, 1995", @@ -75415,7 +111667,12 @@ "sF": "41", "sU": "10", "spread": "13", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 17.75, + "sF": 30.75 + }, + "week": "1995 Regular Season - Week 2" }, { "date": "Sep 10, 1995", @@ -75425,7 +111682,12 @@ "sF": "19", "sU": "31", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "1995 Regular Season - Week 2" }, { "date": "Sep 11, 1995", @@ -75435,7 +111697,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "1995 Regular Season - Week 2" }, { "date": "Sep 17, 1995", @@ -75445,7 +111712,12 @@ "sF": "20", "sU": "14", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1995 Regular Season - Week 3" }, { "date": "Sep 17, 1995", @@ -75455,7 +111727,12 @@ "sF": "31", "sU": "10", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "1995 Regular Season - Week 3" }, { "date": "Sep 17, 1995", @@ -75464,8 +111741,13 @@ "und": "Arizona Cardinals", "sF": "17", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "1995 Regular Season - Week 3" }, { "date": "Sep 17, 1995", @@ -75474,8 +111756,13 @@ "und": "New York Giants", "sF": "14", "sU": "6", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.5, + "pScore": { + "sU": 16.0, + "sF": 21.5 + }, + "week": "1995 Regular Season - Week 3" }, { "date": "Sep 17, 1995", @@ -75485,7 +111772,12 @@ "sF": "14", "sU": "7", "spread": "8", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 12.75, + "sF": 20.75 + }, + "week": "1995 Regular Season - Week 3" }, { "date": "Sep 17, 1995", @@ -75495,7 +111787,12 @@ "sF": "23", "sU": "17", "spread": "2", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.5, + "sF": 20.5 + }, + "week": "1995 Regular Season - Week 3" }, { "date": "Sep 17, 1995", @@ -75505,7 +111802,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "1995 Regular Season - Week 3" }, { "date": "Sep 17, 1995", @@ -75515,7 +111817,12 @@ "sF": "21", "sU": "27", "spread": "2", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.75, + "sF": 19.75 + }, + "week": "1995 Regular Season - Week 3" }, { "date": "Sep 17, 1995", @@ -75525,7 +111832,12 @@ "sF": "38", "sU": "31", "spread": "9", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 16.75, + "sF": 25.75 + }, + "week": "1995 Regular Season - Week 3" }, { "date": "Sep 17, 1995", @@ -75535,7 +111847,12 @@ "sF": "27", "sU": "10", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1995 Regular Season - Week 3" }, { "date": "Sep 17, 1995", @@ -75544,8 +111861,13 @@ "und": "New England Patriots", "sF": "28", "sU": "3", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 48.0, + "pScore": { + "sU": 18.25, + "sF": 29.75 + }, + "week": "1995 Regular Season - Week 3" }, { "date": "Sep 17, 1995", @@ -75555,7 +111877,12 @@ "sF": "24", "sU": "21", "spread": "4", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.75, + "sF": 20.75 + }, + "week": "1995 Regular Season - Week 3" }, { "date": "Sep 17, 1995", @@ -75565,7 +111892,12 @@ "sF": "25", "sU": "6", "spread": "2", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.75, + "sF": 19.75 + }, + "week": "1995 Regular Season - Week 3" }, { "date": "Sep 17, 1995", @@ -75575,7 +111907,12 @@ "sF": "23", "sU": "17", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "1995 Regular Season - Week 3" }, { "date": "Sep 18, 1995", @@ -75585,7 +111922,12 @@ "sF": "23", "sU": "10", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "1995 Regular Season - Week 3" }, { "date": "Sep 24, 1995", @@ -75595,7 +111937,12 @@ "sF": "45", "sU": "29", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1995 Regular Season - Week 4" }, { "date": "Sep 24, 1995", @@ -75604,8 +111951,13 @@ "und": "Minnesota Vikings", "sF": "24", "sU": "44", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.0, + "pScore": { + "sU": 15.75, + "sF": 21.25 + }, + "week": "1995 Regular Season - Week 4" }, { "date": "Sep 24, 1995", @@ -75614,8 +111966,13 @@ "und": "Chicago Bears", "sF": "34", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.5, + "pScore": { + "sU": 18.0, + "sF": 19.5 + }, + "week": "1995 Regular Season - Week 4" }, { "date": "Sep 24, 1995", @@ -75625,7 +111982,12 @@ "sF": "14", "sU": "6", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1995 Regular Season - Week 4" }, { "date": "Sep 24, 1995", @@ -75634,8 +111996,13 @@ "und": "New York Jets", "sF": "13", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "1995 Regular Season - Week 4" }, { "date": "Sep 24, 1995", @@ -75645,7 +112012,12 @@ "sF": "28", "sU": "38", "spread": "6", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 15.25, + "sF": 21.25 + }, + "week": "1995 Regular Season - Week 4" }, { "date": "Sep 24, 1995", @@ -75654,8 +112026,13 @@ "und": "Kansas City Chiefs", "sF": "35", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1995 Regular Season - Week 4" }, { "date": "Sep 24, 1995", @@ -75664,8 +112041,13 @@ "und": "Arizona Cardinals", "sF": "34", "sU": "20", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 39.0, + "pScore": { + "sU": 12.25, + "sF": 26.75 + }, + "week": "1995 Regular Season - Week 4" }, { "date": "Sep 24, 1995", @@ -75675,7 +112057,12 @@ "sF": "48", "sU": "17", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1995 Regular Season - Week 4" }, { "date": "Sep 24, 1995", @@ -75684,8 +112071,13 @@ "und": "Denver Broncos", "sF": "17", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "1995 Regular Season - Week 4" }, { "date": "Sep 24, 1995", @@ -75694,8 +112086,13 @@ "und": "Jacksonville Jaguars", "sF": "24", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 37.0, + "pScore": { + "sU": 13.25, + "sF": 23.75 + }, + "week": "1995 Regular Season - Week 4" }, { "date": "Sep 25, 1995", @@ -75705,7 +112102,12 @@ "sF": "24", "sU": "27", "spread": "11", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 18.5, + "sF": 29.5 + }, + "week": "1995 Regular Season - Week 4" }, { "date": "Oct 1, 1995", @@ -75715,7 +112117,12 @@ "sF": "30", "sU": "17", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1995 Regular Season - Week 5" }, { "date": "Oct 1, 1995", @@ -75724,8 +112131,13 @@ "und": "Carolina Panthers", "sF": "20", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 35.0, + "pScore": { + "sU": 14.75, + "sF": 20.25 + }, + "week": "1995 Regular Season - Week 5" }, { "date": "Oct 1, 1995", @@ -75734,8 +112146,13 @@ "und": "Cincinnati Bengals", "sF": "26", "sU": "23", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 45.5, + "pScore": { + "sU": 17.5, + "sF": 28.0 + }, + "week": "1995 Regular Season - Week 5" }, { "date": "Oct 1, 1995", @@ -75745,7 +112162,12 @@ "sF": "21", "sU": "18", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1995 Regular Season - Week 5" }, { "date": "Oct 1, 1995", @@ -75754,8 +112176,13 @@ "und": "Philadelphia Eagles", "sF": "10", "sU": "15", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.0, + "pScore": { + "sU": 21.75, + "sF": 23.25 + }, + "week": "1995 Regular Season - Week 5" }, { "date": "Oct 1, 1995", @@ -75765,7 +112192,12 @@ "sF": "23", "sU": "27", "spread": "13", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 15.75, + "sF": 28.75 + }, + "week": "1995 Regular Season - Week 5" }, { "date": "Oct 1, 1995", @@ -75774,8 +112206,13 @@ "und": "Arizona Cardinals", "sF": "24", "sU": "3", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.0, + "pScore": { + "sU": 17.75, + "sF": 19.25 + }, + "week": "1995 Regular Season - Week 5" }, { "date": "Oct 1, 1995", @@ -75784,8 +112221,13 @@ "und": "Jacksonville Jaguars", "sF": "16", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 34.5, + "pScore": { + "sU": 12.5, + "sF": 22.0 + }, + "week": "1995 Regular Season - Week 5" }, { "date": "Oct 1, 1995", @@ -75795,7 +112237,12 @@ "sF": "31", "sU": "16", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1995 Regular Season - Week 5" }, { "date": "Oct 1, 1995", @@ -75805,7 +112252,12 @@ "sF": "20", "sU": "6", "spread": "15", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 15.25, + "sF": 30.25 + }, + "week": "1995 Regular Season - Week 5" }, { "date": "Oct 1, 1995", @@ -75815,7 +112267,12 @@ "sF": "10", "sU": "27", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1995 Regular Season - Week 5" }, { "date": "Oct 1, 1995", @@ -75824,8 +112281,13 @@ "und": "New York Jets", "sF": "47", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.5, + "pScore": { + "sU": 15.5, + "sF": 23.0 + }, + "week": "1995 Regular Season - Week 5" }, { "date": "Oct 2, 1995", @@ -75835,7 +112297,12 @@ "sF": "19", "sU": "22", "spread": "7", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 14.75, + "sF": 21.75 + }, + "week": "1995 Regular Season - Week 5" }, { "date": "Oct 8, 1995", @@ -75844,8 +112311,13 @@ "und": "New York Jets", "sF": "29", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 38.0, + "pScore": { + "sU": 14.25, + "sF": 23.75 + }, + "week": "1995 Regular Season - Week 6" }, { "date": "Oct 8, 1995", @@ -75854,8 +112326,13 @@ "und": "Carolina Panthers", "sF": "31", "sU": "27", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 36.5, + "pScore": { + "sU": 11.5, + "sF": 25.0 + }, + "week": "1995 Regular Season - Week 6" }, { "date": "Oct 8, 1995", @@ -75864,8 +112341,13 @@ "und": "Green Bay Packers", "sF": "34", "sU": "24", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.0, + "pScore": { + "sU": 16.25, + "sF": 25.75 + }, + "week": "1995 Regular Season - Week 6" }, { "date": "Oct 8, 1995", @@ -75874,8 +112356,13 @@ "und": "Jacksonville Jaguars", "sF": "16", "sU": "20", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 36.5, + "pScore": { + "sU": 13.0, + "sF": 23.5 + }, + "week": "1995 Regular Season - Week 6" }, { "date": "Oct 8, 1995", @@ -75885,7 +112372,12 @@ "sF": "23", "sU": "17", "spread": "10", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.5, + "sF": 23.5 + }, + "week": "1995 Regular Season - Week 6" }, { "date": "Oct 8, 1995", @@ -75895,7 +112387,12 @@ "sF": "37", "sU": "34", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1995 Regular Season - Week 6" }, { "date": "Oct 8, 1995", @@ -75904,8 +112401,13 @@ "und": "Cincinnati Bengals", "sF": "19", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1995 Regular Season - Week 6" }, { "date": "Oct 8, 1995", @@ -75914,8 +112416,13 @@ "und": "Detroit Lions", "sF": "20", "sU": "38", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.0, + "pScore": { + "sU": 18.75, + "sF": 20.25 + }, + "week": "1995 Regular Season - Week 6" }, { "date": "Oct 8, 1995", @@ -75925,7 +112432,12 @@ "sF": "24", "sU": "27", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "1995 Regular Season - Week 6" }, { "date": "Oct 8, 1995", @@ -75935,7 +112447,12 @@ "sF": "27", "sU": "21", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1995 Regular Season - Week 6" }, { "date": "Oct 8, 1995", @@ -75944,8 +112461,13 @@ "und": "Seattle Seahawks", "sF": "34", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 39.0, + "pScore": { + "sU": 14.75, + "sF": 24.25 + }, + "week": "1995 Regular Season - Week 6" }, { "date": "Oct 8, 1995", @@ -75954,8 +112476,13 @@ "und": "Denver Broncos", "sF": "3", "sU": "37", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1995 Regular Season - Week 6" }, { "date": "Oct 9, 1995", @@ -75964,8 +112491,13 @@ "und": "San Diego Chargers", "sF": "29", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1995 Regular Season - Week 6" }, { "date": "Oct 12, 1995", @@ -75975,7 +112507,12 @@ "sF": "21", "sU": "19", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1995 Regular Season - Week 7" }, { "date": "Oct 15, 1995", @@ -75984,8 +112521,13 @@ "und": "Seattle Seahawks", "sF": "27", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.0, + "pScore": { + "sU": 15.25, + "sF": 22.75 + }, + "week": "1995 Regular Season - Week 7" }, { "date": "Oct 15, 1995", @@ -75994,8 +112536,13 @@ "und": "Detroit Lions", "sF": "30", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1995 Regular Season - Week 7" }, { "date": "Oct 15, 1995", @@ -76005,7 +112552,12 @@ "sF": "17", "sU": "18", "spread": "10", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 18.25, + "sF": 28.25 + }, + "week": "1995 Regular Season - Week 7" }, { "date": "Oct 15, 1995", @@ -76014,8 +112566,13 @@ "und": "Jacksonville Jaguars", "sF": "30", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.0, + "pScore": { + "sU": 14.75, + "sF": 22.25 + }, + "week": "1995 Regular Season - Week 7" }, { "date": "Oct 15, 1995", @@ -76025,7 +112582,12 @@ "sF": "31", "sU": "26", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1995 Regular Season - Week 7" }, { "date": "Oct 15, 1995", @@ -76035,7 +112597,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1995 Regular Season - Week 7" }, { "date": "Oct 15, 1995", @@ -76045,7 +112612,12 @@ "sF": "17", "sU": "20", "spread": "2", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.25, + "sF": 19.25 + }, + "week": "1995 Regular Season - Week 7" }, { "date": "Oct 15, 1995", @@ -76054,8 +112626,13 @@ "und": "Washington Redskins", "sF": "24", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1995 Regular Season - Week 7" }, { "date": "Oct 15, 1995", @@ -76064,8 +112641,13 @@ "und": "Carolina Panthers", "sF": "15", "sU": "26", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.0, + "pScore": { + "sU": 17.75, + "sF": 19.25 + }, + "week": "1995 Regular Season - Week 7" }, { "date": "Oct 15, 1995", @@ -76074,8 +112656,13 @@ "und": "New Orleans Saints", "sF": "30", "sU": "33", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "1995 Regular Season - Week 7" }, { "date": "Oct 15, 1995", @@ -76085,7 +112672,12 @@ "sF": "23", "sU": "9", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1995 Regular Season - Week 7" }, { "date": "Oct 16, 1995", @@ -76095,7 +112687,12 @@ "sF": "0", "sU": "27", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "1995 Regular Season - Week 7" }, { "date": "Oct 19, 1995", @@ -76105,7 +112702,12 @@ "sF": "9", "sU": "27", "spread": "8", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.0, + "sF": 24.0 + }, + "week": "1995 Regular Season - Week 8" }, { "date": "Oct 22, 1995", @@ -76114,8 +112716,13 @@ "und": "Carolina Panthers", "sF": "3", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "1995 Regular Season - Week 8" }, { "date": "Oct 22, 1995", @@ -76125,7 +112732,12 @@ "sF": "35", "sU": "32", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "1995 Regular Season - Week 8" }, { "date": "Oct 22, 1995", @@ -76134,8 +112746,13 @@ "und": "Jacksonville Jaguars", "sF": "15", "sU": "23", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 37.0, + "pScore": { + "sU": 11.75, + "sF": 25.25 + }, + "week": "1995 Regular Season - Week 8" }, { "date": "Oct 22, 1995", @@ -76145,7 +112762,12 @@ "sF": "38", "sU": "21", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1995 Regular Season - Week 8" }, { "date": "Oct 22, 1995", @@ -76155,7 +112777,12 @@ "sF": "16", "sU": "17", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "1995 Regular Season - Week 8" }, { "date": "Oct 22, 1995", @@ -76165,7 +112792,12 @@ "sF": "21", "sU": "24", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1995 Regular Season - Week 8" }, { "date": "Oct 22, 1995", @@ -76175,7 +112807,12 @@ "sF": "30", "sU": "36", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "1995 Regular Season - Week 8" }, { "date": "Oct 22, 1995", @@ -76185,7 +112822,12 @@ "sF": "7", "sU": "21", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1995 Regular Season - Week 8" }, { "date": "Oct 22, 1995", @@ -76195,7 +112837,12 @@ "sF": "30", "sU": "17", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1995 Regular Season - Week 8" }, { "date": "Oct 22, 1995", @@ -76205,7 +112852,12 @@ "sF": "35", "sU": "25", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1995 Regular Season - Week 8" }, { "date": "Oct 22, 1995", @@ -76214,8 +112866,13 @@ "und": "St Louis Rams", "sF": "44", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1995 Regular Season - Week 8" }, { "date": "Oct 29, 1995", @@ -76225,7 +112882,12 @@ "sF": "28", "sU": "13", "spread": "10", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.0, + "sF": 28.0 + }, + "week": "1995 Regular Season - Week 9" }, { "date": "Oct 29, 1995", @@ -76235,7 +112897,12 @@ "sF": "29", "sU": "26", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1995 Regular Season - Week 9" }, { "date": "Oct 29, 1995", @@ -76244,8 +112911,13 @@ "und": "Green Bay Packers", "sF": "24", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "1995 Regular Season - Week 9" }, { "date": "Oct 29, 1995", @@ -76254,8 +112926,13 @@ "und": "New York Jets", "sF": "17", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 40.0, + "pScore": { + "sU": 14.75, + "sF": 25.25 + }, + "week": "1995 Regular Season - Week 9" }, { "date": "Oct 29, 1995", @@ -76265,7 +112942,12 @@ "sF": "17", "sU": "20", "spread": "8", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.25, + "sF": 23.25 + }, + "week": "1995 Regular Season - Week 9" }, { "date": "Oct 29, 1995", @@ -76274,8 +112956,13 @@ "und": "St Louis Rams", "sF": "20", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1995 Regular Season - Week 9" }, { "date": "Oct 29, 1995", @@ -76285,7 +112972,12 @@ "sF": "24", "sU": "7", "spread": "10", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.0, + "sF": 24.0 + }, + "week": "1995 Regular Season - Week 9" }, { "date": "Oct 29, 1995", @@ -76295,7 +112987,12 @@ "sF": "20", "sU": "14", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1995 Regular Season - Week 9" }, { "date": "Oct 29, 1995", @@ -76305,7 +113002,12 @@ "sF": "7", "sU": "19", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1995 Regular Season - Week 9" }, { "date": "Oct 29, 1995", @@ -76315,7 +113017,12 @@ "sF": "23", "sU": "6", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1995 Regular Season - Week 9" }, { "date": "Oct 29, 1995", @@ -76325,7 +113032,12 @@ "sF": "7", "sU": "11", "spread": "14", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 15.25, + "sF": 29.25 + }, + "week": "1995 Regular Season - Week 9" }, { "date": "Oct 29, 1995", @@ -76335,7 +113047,12 @@ "sF": "15", "sU": "24", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1995 Regular Season - Week 9" }, { "date": "Oct 30, 1995", @@ -76344,8 +113061,13 @@ "und": "Chicago Bears", "sF": "6", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "1995 Regular Season - Week 9" }, { "date": "Nov 5, 1995", @@ -76355,7 +113077,12 @@ "sF": "34", "sU": "22", "spread": "1", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.5, + "sF": 23.5 + }, + "week": "1995 Regular Season - Week 10" }, { "date": "Nov 5, 1995", @@ -76365,7 +113092,12 @@ "sF": "10", "sU": "37", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1995 Regular Season - Week 10" }, { "date": "Nov 5, 1995", @@ -76375,7 +113107,12 @@ "sF": "10", "sU": "16", "spread": "4", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.75, + "sF": 20.75 + }, + "week": "1995 Regular Season - Week 10" }, { "date": "Nov 5, 1995", @@ -76384,8 +113121,13 @@ "und": "Washington Redskins", "sF": "24", "sU": "3", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.0, + "pScore": { + "sU": 17.25, + "sF": 25.75 + }, + "week": "1995 Regular Season - Week 10" }, { "date": "Nov 5, 1995", @@ -76395,7 +113137,12 @@ "sF": "24", "sU": "27", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "1995 Regular Season - Week 10" }, { "date": "Nov 5, 1995", @@ -76404,8 +113151,13 @@ "und": "St Louis Rams", "sF": "19", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.5, + "pScore": { + "sU": 20.0, + "sF": 21.5 + }, + "week": "1995 Regular Season - Week 10" }, { "date": "Nov 5, 1995", @@ -76414,8 +113166,13 @@ "und": "New York Jets", "sF": "20", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1995 Regular Season - Week 10" }, { "date": "Nov 5, 1995", @@ -76424,8 +113181,13 @@ "und": "Pittsburgh Steelers", "sF": "34", "sU": "37", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1995 Regular Season - Week 10" }, { "date": "Nov 5, 1995", @@ -76434,8 +113196,13 @@ "und": "Cincinnati Bengals", "sF": "20", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1995 Regular Season - Week 10" }, { "date": "Nov 5, 1995", @@ -76445,7 +113212,12 @@ "sF": "38", "sU": "6", "spread": "8", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.25, + "sF": 24.25 + }, + "week": "1995 Regular Season - Week 10" }, { "date": "Nov 5, 1995", @@ -76455,7 +113227,12 @@ "sF": "7", "sU": "13", "spread": "14", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 13.0, + "sF": 27.0 + }, + "week": "1995 Regular Season - Week 10" }, { "date": "Nov 5, 1995", @@ -76464,8 +113241,13 @@ "und": "Miami Dolphins", "sF": "14", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.0, + "pScore": { + "sU": 20.75, + "sF": 22.25 + }, + "week": "1995 Regular Season - Week 10" }, { "date": "Nov 6, 1995", @@ -76474,8 +113256,13 @@ "und": "Philadelphia Eagles", "sF": "34", "sU": "12", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 43.5, + "pScore": { + "sU": 14.5, + "sF": 29.0 + }, + "week": "1995 Regular Season - Week 10" }, { "date": "Nov 12, 1995", @@ -76484,8 +113271,13 @@ "und": "Atlanta Falcons", "sF": "23", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1995 Regular Season - Week 11" }, { "date": "Nov 12, 1995", @@ -76494,8 +113286,13 @@ "und": "Tampa Bay Buccaneers", "sF": "27", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.0, + "pScore": { + "sU": 17.75, + "sF": 23.25 + }, + "week": "1995 Regular Season - Week 11" }, { "date": "Nov 12, 1995", @@ -76505,7 +113302,12 @@ "sF": "35", "sU": "28", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "1995 Regular Season - Week 11" }, { "date": "Nov 12, 1995", @@ -76514,8 +113316,13 @@ "und": "Cincinnati Bengals", "sF": "25", "sU": "32", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1995 Regular Season - Week 11" }, { "date": "Nov 12, 1995", @@ -76525,7 +113332,12 @@ "sF": "47", "sU": "30", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1995 Regular Season - Week 11" }, { "date": "Nov 12, 1995", @@ -76534,8 +113346,13 @@ "und": "New England Patriots", "sF": "17", "sU": "34", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 42.0, + "pScore": { + "sU": 16.75, + "sF": 25.25 + }, + "week": "1995 Regular Season - Week 11" }, { "date": "Nov 12, 1995", @@ -76544,8 +113361,13 @@ "und": "Indianapolis Colts", "sF": "17", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.0, + "pScore": { + "sU": 19.25, + "sF": 20.75 + }, + "week": "1995 Regular Season - Week 11" }, { "date": "Nov 12, 1995", @@ -76554,8 +113376,13 @@ "und": "New York Giants", "sF": "17", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1995 Regular Season - Week 11" }, { "date": "Nov 12, 1995", @@ -76564,8 +113391,13 @@ "und": "Carolina Panthers", "sF": "28", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.5, + "pScore": { + "sU": 15.5, + "sF": 22.0 + }, + "week": "1995 Regular Season - Week 11" }, { "date": "Nov 12, 1995", @@ -76575,7 +113407,12 @@ "sF": "30", "sU": "24", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1995 Regular Season - Week 11" }, { "date": "Nov 12, 1995", @@ -76584,12 +113421,13 @@ "und": "San Francisco 49ers", "sF": "20", "sU": "38", - "spread": "13", - "ou": "49", + "spread": "13.5", + "ou": 42.0, "pScore": { - "sU": 18, - "sF": 31 - } + "sU": 14.25, + "sF": 27.75 + }, + "week": "1995 Regular Season - Week 11" }, { "date": "Nov 12, 1995", @@ -76599,7 +113437,12 @@ "sF": "7", "sU": "22", "spread": "1", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.5, + "sF": 19.5 + }, + "week": "1995 Regular Season - Week 11" }, { "date": "Nov 12, 1995", @@ -76609,7 +113452,12 @@ "sF": "13", "sU": "31", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "1995 Regular Season - Week 11" }, { "date": "Nov 13, 1995", @@ -76619,7 +113467,12 @@ "sF": "20", "sU": "3", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1995 Regular Season - Week 11" }, { "date": "Nov 19, 1995", @@ -76628,8 +113481,13 @@ "und": "St Louis Rams", "sF": "31", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1995 Regular Season - Week 12" }, { "date": "Nov 19, 1995", @@ -76639,7 +113497,12 @@ "sF": "17", "sU": "24", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "1995 Regular Season - Week 12" }, { "date": "Nov 19, 1995", @@ -76648,8 +113511,13 @@ "und": "Cincinnati Bengals", "sF": "49", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "1995 Regular Season - Week 12" }, { "date": "Nov 19, 1995", @@ -76658,8 +113526,13 @@ "und": "Cleveland Browns", "sF": "31", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1995 Regular Season - Week 12" }, { "date": "Nov 19, 1995", @@ -76668,8 +113541,13 @@ "und": "Indianapolis Colts", "sF": "10", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.5, + "pScore": { + "sU": 17.0, + "sF": 20.5 + }, + "week": "1995 Regular Season - Week 12" }, { "date": "Nov 19, 1995", @@ -76679,7 +113557,12 @@ "sF": "28", "sU": "19", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1995 Regular Season - Week 12" }, { "date": "Nov 19, 1995", @@ -76689,7 +113572,12 @@ "sF": "17", "sU": "16", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1995 Regular Season - Week 12" }, { "date": "Nov 19, 1995", @@ -76698,8 +113586,13 @@ "und": "Seattle Seahawks", "sF": "20", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1995 Regular Season - Week 12" }, { "date": "Nov 19, 1995", @@ -76708,8 +113601,13 @@ "und": "San Diego Chargers", "sF": "30", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1995 Regular Season - Week 12" }, { "date": "Nov 19, 1995", @@ -76718,8 +113616,13 @@ "und": "New Orleans Saints", "sF": "43", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.5, + "pScore": { + "sU": 17.5, + "sF": 23.0 + }, + "week": "1995 Regular Season - Week 12" }, { "date": "Nov 19, 1995", @@ -76728,8 +113631,13 @@ "und": "New York Jets", "sF": "28", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "1995 Regular Season - Week 12" }, { "date": "Nov 19, 1995", @@ -76739,7 +113647,12 @@ "sF": "34", "sU": "21", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1995 Regular Season - Week 12" }, { "date": "Nov 19, 1995", @@ -76748,8 +113661,13 @@ "und": "Houston Oilers", "sF": "20", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 39.0, + "pScore": { + "sU": 14.75, + "sF": 24.25 + }, + "week": "1995 Regular Season - Week 12" }, { "date": "Nov 20, 1995", @@ -76759,11 +113677,12 @@ "sF": "20", "sU": "44", "spread": "2", - "ou": "49", + "ou": 44.0, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 21.0, + "sF": 23.0 + }, + "week": "1995 Regular Season - Week 12" }, { "date": "Nov 23, 1995", @@ -76773,7 +113692,12 @@ "sF": "44", "sU": "38", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "1995 Regular Season - Week 13" }, { "date": "Nov 23, 1995", @@ -76782,8 +113706,13 @@ "und": "Kansas City Chiefs", "sF": "24", "sU": "12", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.0, + "pScore": { + "sU": 16.25, + "sF": 26.75 + }, + "week": "1995 Regular Season - Week 13" }, { "date": "Nov 26, 1995", @@ -76793,7 +113722,12 @@ "sF": "25", "sU": "35", "spread": "6", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 16.25, + "sF": 22.25 + }, + "week": "1995 Regular Season - Week 13" }, { "date": "Nov 26, 1995", @@ -76803,7 +113737,12 @@ "sF": "35", "sU": "13", "spread": "9", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 14.75, + "sF": 23.75 + }, + "week": "1995 Regular Season - Week 13" }, { "date": "Nov 26, 1995", @@ -76812,8 +113751,13 @@ "und": "Indianapolis Colts", "sF": "28", "sU": "36", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1995 Regular Season - Week 13" }, { "date": "Nov 26, 1995", @@ -76822,8 +113766,13 @@ "und": "Jacksonville Jaguars", "sF": "17", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1995 Regular Season - Week 13" }, { "date": "Nov 26, 1995", @@ -76832,8 +113781,13 @@ "und": "New York Giants", "sF": "27", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1995 Regular Season - Week 13" }, { "date": "Nov 26, 1995", @@ -76843,7 +113797,12 @@ "sF": "14", "sU": "7", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1995 Regular Season - Week 13" }, { "date": "Nov 26, 1995", @@ -76852,8 +113811,13 @@ "und": "Arizona Cardinals", "sF": "37", "sU": "40", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1995 Regular Season - Week 13" }, { "date": "Nov 26, 1995", @@ -76863,7 +113827,12 @@ "sF": "20", "sU": "17", "spread": "6", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.75, + "sF": 22.75 + }, + "week": "1995 Regular Season - Week 13" }, { "date": "Nov 26, 1995", @@ -76873,7 +113842,12 @@ "sF": "33", "sU": "42", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1995 Regular Season - Week 13" }, { "date": "Nov 26, 1995", @@ -76882,8 +113856,13 @@ "und": "St Louis Rams", "sF": "41", "sU": "13", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 44.0, + "pScore": { + "sU": 14.75, + "sF": 29.25 + }, + "week": "1995 Regular Season - Week 13" }, { "date": "Nov 26, 1995", @@ -76893,7 +113872,12 @@ "sF": "10", "sU": "16", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "1995 Regular Season - Week 13" }, { "date": "Nov 26, 1995", @@ -76903,7 +113887,12 @@ "sF": "34", "sU": "26", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "1995 Regular Season - Week 13" }, { "date": "Nov 27, 1995", @@ -76913,7 +113902,12 @@ "sF": "6", "sU": "12", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "1995 Regular Season - Week 13" }, { "date": "Nov 30, 1995", @@ -76922,8 +113916,13 @@ "und": "New York Giants", "sF": "6", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.0, + "pScore": { + "sU": 19.75, + "sF": 21.25 + }, + "week": "1995 Regular Season - Week 14" }, { "date": "Dec 3, 1995", @@ -76932,8 +113931,13 @@ "und": "Carolina Panthers", "sF": "10", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.5, + "pScore": { + "sU": 17.0, + "sF": 21.5 + }, + "week": "1995 Regular Season - Week 14" }, { "date": "Dec 3, 1995", @@ -76942,8 +113946,13 @@ "und": "Cincinnati Bengals", "sF": "24", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 45.5, + "pScore": { + "sU": 17.5, + "sF": 28.0 + }, + "week": "1995 Regular Season - Week 14" }, { "date": "Dec 3, 1995", @@ -76952,8 +113961,13 @@ "und": "Atlanta Falcons", "sF": "21", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.0, + "pScore": { + "sU": 21.75, + "sF": 26.25 + }, + "week": "1995 Regular Season - Week 14" }, { "date": "Dec 3, 1995", @@ -76963,7 +113977,12 @@ "sF": "31", "sU": "17", "spread": "8", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 17.75, + "sF": 25.75 + }, + "week": "1995 Regular Season - Week 14" }, { "date": "Dec 3, 1995", @@ -76972,8 +113991,13 @@ "und": "New Orleans Saints", "sF": "17", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.5, + "pScore": { + "sU": 18.5, + "sF": 23.0 + }, + "week": "1995 Regular Season - Week 14" }, { "date": "Dec 3, 1995", @@ -76982,8 +114006,13 @@ "und": "New York Jets", "sF": "23", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "1995 Regular Season - Week 14" }, { "date": "Dec 3, 1995", @@ -76993,7 +114022,12 @@ "sF": "21", "sU": "7", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "1995 Regular Season - Week 14" }, { "date": "Dec 3, 1995", @@ -77003,7 +114037,12 @@ "sF": "17", "sU": "24", "spread": "17", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 14.5, + "sF": 31.5 + }, + "week": "1995 Regular Season - Week 14" }, { "date": "Dec 3, 1995", @@ -77013,7 +114052,12 @@ "sF": "31", "sU": "23", "spread": "11", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 15.75, + "sF": 26.75 + }, + "week": "1995 Regular Season - Week 14" }, { "date": "Dec 3, 1995", @@ -77023,7 +114067,12 @@ "sF": "23", "sU": "29", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "1995 Regular Season - Week 14" }, { "date": "Dec 3, 1995", @@ -77032,8 +114081,13 @@ "und": "Cleveland Browns", "sF": "31", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1995 Regular Season - Week 14" }, { "date": "Dec 3, 1995", @@ -77043,7 +114097,12 @@ "sF": "14", "sU": "26", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "1995 Regular Season - Week 14" }, { "date": "Dec 3, 1995", @@ -77052,8 +114111,13 @@ "und": "Buffalo Bills", "sF": "27", "sU": "17", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 46.0, + "pScore": { + "sU": 16.25, + "sF": 29.75 + }, + "week": "1995 Regular Season - Week 14" }, { "date": "Dec 4, 1995", @@ -77063,7 +114127,12 @@ "sF": "27", "sU": "7", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "1995 Regular Season - Week 14" }, { "date": "Dec 9, 1995", @@ -77072,8 +114141,13 @@ "und": "Cleveland Browns", "sF": "27", "sU": "11", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.0, + "pScore": { + "sU": 17.25, + "sF": 26.75 + }, + "week": "1995 Regular Season - Week 15" }, { "date": "Dec 9, 1995", @@ -77082,8 +114156,13 @@ "und": "Arizona Cardinals", "sF": "28", "sU": "25", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 39.0, + "pScore": { + "sU": 15.25, + "sF": 23.75 + }, + "week": "1995 Regular Season - Week 15" }, { "date": "Dec 10, 1995", @@ -77093,7 +114172,12 @@ "sF": "19", "sU": "14", "spread": "5", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.0, + "sF": 26.0 + }, + "week": "1995 Regular Season - Week 15" }, { "date": "Dec 10, 1995", @@ -77102,8 +114186,13 @@ "und": "Carolina Panthers", "sF": "31", "sU": "10", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 43.5, + "pScore": { + "sU": 14.5, + "sF": 29.0 + }, + "week": "1995 Regular Season - Week 15" }, { "date": "Dec 10, 1995", @@ -77112,8 +114201,13 @@ "und": "Cincinnati Bengals", "sF": "10", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "1995 Regular Season - Week 15" }, { "date": "Dec 10, 1995", @@ -77122,8 +114216,13 @@ "und": "Houston Oilers", "sF": "24", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "1995 Regular Season - Week 15" }, { "date": "Dec 10, 1995", @@ -77133,7 +114232,12 @@ "sF": "41", "sU": "31", "spread": "5", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.25, + "sF": 21.25 + }, + "week": "1995 Regular Season - Week 15" }, { "date": "Dec 10, 1995", @@ -77143,7 +114247,12 @@ "sF": "31", "sU": "28", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1995 Regular Season - Week 15" }, { "date": "Dec 10, 1995", @@ -77153,7 +114262,12 @@ "sF": "17", "sU": "20", "spread": "9", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.0, + "sF": 26.0 + }, + "week": "1995 Regular Season - Week 15" }, { "date": "Dec 10, 1995", @@ -77162,8 +114276,13 @@ "und": "St Louis Rams", "sF": "45", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1995 Regular Season - Week 15" }, { "date": "Dec 10, 1995", @@ -77173,7 +114292,12 @@ "sF": "27", "sU": "31", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "1995 Regular Season - Week 15" }, { "date": "Dec 10, 1995", @@ -77183,7 +114307,12 @@ "sF": "20", "sU": "13", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1995 Regular Season - Week 15" }, { "date": "Dec 10, 1995", @@ -77193,7 +114322,12 @@ "sF": "10", "sU": "29", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "1995 Regular Season - Week 15" }, { "date": "Dec 10, 1995", @@ -77203,7 +114337,12 @@ "sF": "10", "sU": "13", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1995 Regular Season - Week 15" }, { "date": "Dec 11, 1995", @@ -77213,7 +114352,12 @@ "sF": "13", "sU": "6", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1995 Regular Season - Week 15" }, { "date": "Dec 16, 1995", @@ -77222,8 +114366,13 @@ "und": "New England Patriots", "sF": "41", "sU": "27", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 40.0, + "pScore": { + "sU": 15.25, + "sF": 24.75 + }, + "week": "1995 Regular Season - Week 16" }, { "date": "Dec 16, 1995", @@ -77233,7 +114382,12 @@ "sF": "34", "sU": "23", "spread": "5", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.5, + "sF": 25.5 + }, + "week": "1995 Regular Season - Week 16" }, { "date": "Dec 17, 1995", @@ -77242,8 +114396,13 @@ "und": "Miami Dolphins", "sF": "23", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1995 Regular Season - Week 16" }, { "date": "Dec 17, 1995", @@ -77253,7 +114412,12 @@ "sF": "17", "sU": "21", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1995 Regular Season - Week 16" }, { "date": "Dec 17, 1995", @@ -77262,8 +114426,13 @@ "und": "Tampa Bay Buccaneers", "sF": "31", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.5, + "pScore": { + "sU": 15.5, + "sF": 23.0 + }, + "week": "1995 Regular Season - Week 16" }, { "date": "Dec 17, 1995", @@ -77273,7 +114442,12 @@ "sF": "10", "sU": "26", "spread": "2", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.5, + "sF": 20.5 + }, + "week": "1995 Regular Season - Week 16" }, { "date": "Dec 17, 1995", @@ -77283,7 +114457,12 @@ "sF": "44", "sU": "0", "spread": "13", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 16.75, + "sF": 29.75 + }, + "week": "1995 Regular Season - Week 16" }, { "date": "Dec 17, 1995", @@ -77293,7 +114472,12 @@ "sF": "23", "sU": "6", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "1995 Regular Season - Week 16" }, { "date": "Dec 17, 1995", @@ -77303,7 +114487,12 @@ "sF": "21", "sU": "20", "spread": "9", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 14.75, + "sF": 23.75 + }, + "week": "1995 Regular Season - Week 16" }, { "date": "Dec 17, 1995", @@ -77312,8 +114501,13 @@ "und": "Washington Redskins", "sF": "23", "sU": "35", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1995 Regular Season - Week 16" }, { "date": "Dec 17, 1995", @@ -77323,7 +114517,12 @@ "sF": "21", "sU": "20", "spread": "15", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 13.25, + "sF": 28.25 + }, + "week": "1995 Regular Season - Week 16" }, { "date": "Dec 17, 1995", @@ -77333,7 +114532,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1995 Regular Season - Week 16" }, { "date": "Dec 17, 1995", @@ -77342,8 +114546,13 @@ "und": "Denver Broncos", "sF": "20", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.5, + "pScore": { + "sU": 17.0, + "sF": 23.5 + }, + "week": "1995 Regular Season - Week 16" }, { "date": "Dec 17, 1995", @@ -77352,8 +114561,13 @@ "und": "Seattle Seahawks", "sF": "10", "sU": "44", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1995 Regular Season - Week 16" }, { "date": "Dec 18, 1995", @@ -77362,8 +114576,13 @@ "und": "Minnesota Vikings", "sF": "37", "sU": "30", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 48.0, + "pScore": { + "sU": 17.25, + "sF": 30.75 + }, + "week": "1995 Regular Season - Week 16" }, { "date": "Dec 23, 1995", @@ -77372,8 +114591,13 @@ "und": "New York Giants", "sF": "27", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.5, + "pScore": { + "sU": 17.0, + "sF": 21.5 + }, + "week": "1995 Regular Season - Week 17" }, { "date": "Dec 23, 1995", @@ -77383,7 +114607,12 @@ "sF": "37", "sU": "10", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1995 Regular Season - Week 17" }, { "date": "Dec 23, 1995", @@ -77393,7 +114622,12 @@ "sF": "10", "sU": "7", "spread": "6", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.25, + "sF": 24.25 + }, + "week": "1995 Regular Season - Week 17" }, { "date": "Dec 24, 1995", @@ -77403,7 +114637,12 @@ "sF": "27", "sU": "28", "spread": "10", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 19.5, + "sF": 29.5 + }, + "week": "1995 Regular Season - Week 17" }, { "date": "Dec 24, 1995", @@ -77412,8 +114651,13 @@ "und": "Houston Oilers", "sF": "17", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.0, + "pScore": { + "sU": 16.25, + "sF": 20.75 + }, + "week": "1995 Regular Season - Week 17" }, { "date": "Dec 24, 1995", @@ -77423,7 +114667,12 @@ "sF": "20", "sU": "14", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "1995 Regular Season - Week 17" }, { "date": "Dec 24, 1995", @@ -77433,7 +114682,12 @@ "sF": "24", "sU": "27", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "1995 Regular Season - Week 17" }, { "date": "Dec 24, 1995", @@ -77442,8 +114696,13 @@ "und": "Pittsburgh Steelers", "sF": "24", "sU": "19", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1995 Regular Season - Week 17" }, { "date": "Dec 24, 1995", @@ -77453,7 +114712,12 @@ "sF": "21", "sU": "24", "spread": "4", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 17.75, + "sF": 21.75 + }, + "week": "1995 Regular Season - Week 17" }, { "date": "Dec 24, 1995", @@ -77462,8 +114726,13 @@ "und": "Seattle Seahawks", "sF": "26", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1995 Regular Season - Week 17" }, { "date": "Dec 24, 1995", @@ -77472,8 +114741,13 @@ "und": "New York Jets", "sF": "12", "sU": "0", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "1995 Regular Season - Week 17" }, { "date": "Dec 24, 1995", @@ -77483,7 +114757,12 @@ "sF": "28", "sU": "31", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "1995 Regular Season - Week 17" }, { "date": "Dec 24, 1995", @@ -77493,7 +114772,12 @@ "sF": "41", "sU": "22", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "1995 Regular Season - Week 17" }, { "date": "Dec 24, 1995", @@ -77502,8 +114786,13 @@ "und": "Carolina Panthers", "sF": "20", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "1995 Regular Season - Week 17" }, { "date": "Dec 25, 1995", @@ -77512,8 +114801,13 @@ "und": "Arizona Cardinals", "sF": "37", "sU": "13", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 41.5, + "pScore": { + "sU": 16.5, + "sF": 25.0 + }, + "week": "1995 Regular Season - Week 17" }, { "date": "Dec 30, 1995", @@ -77522,8 +114816,13 @@ "und": "Miami Dolphins (6)", "sF": "37", "sU": "22", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "1995 Playoffs" }, { "date": "Dec 30, 1995", @@ -77533,7 +114832,12 @@ "sF": "37", "sU": "58", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1995 Playoffs" }, { "date": "Dec 31, 1995", @@ -77542,8 +114846,13 @@ "und": "Atlanta Falcons (6)", "sF": "37", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.0, + "pScore": { + "sU": 17.25, + "sF": 26.75 + }, + "week": "1995 Playoffs" }, { "date": "Dec 31, 1995", @@ -77552,8 +114861,13 @@ "und": "Indianapolis Colts (5)", "sF": "20", "sU": "35", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "1995 Playoffs" }, { "date": "Jan 6, 1996", @@ -77563,7 +114877,12 @@ "sF": "40", "sU": "21", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1995 Playoffs" }, { "date": "Jan 6, 1996", @@ -77572,8 +114891,13 @@ "und": "Green Bay Packers (3)", "sF": "17", "sU": "27", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 52.0, + "pScore": { + "sU": 21.25, + "sF": 30.75 + }, + "week": "1995 Playoffs" }, { "date": "Jan 7, 1996", @@ -77582,8 +114906,13 @@ "und": "Philadelphia Eagles (4)", "sF": "30", "sU": "11", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 45.5, + "pScore": { + "sU": 16.0, + "sF": 29.5 + }, + "week": "1995 Playoffs" }, { "date": "Jan 7, 1996", @@ -77592,8 +114921,13 @@ "und": "Indianapolis Colts (5)", "sF": "7", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 41.5, + "pScore": { + "sU": 15.5, + "sF": 26.0 + }, + "week": "1995 Playoffs" }, { "date": "Jan 14, 1996", @@ -77603,7 +114937,12 @@ "sF": "20", "sU": "16", "spread": "11", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.0, + "sF": 27.0 + }, + "week": "1995 Playoffs" }, { "date": "Jan 14, 1996", @@ -77613,7 +114952,12 @@ "sF": "38", "sU": "27", "spread": "9", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 20.75, + "sF": 29.75 + }, + "week": "1995 Playoffs" }, { "date": "Jan 28, 1996", @@ -77622,8 +114966,13 @@ "und": "Pittsburgh Steelers (2)", "sF": "27", "sU": "17", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 52.0, + "pScore": { + "sU": 19.25, + "sF": 32.75 + }, + "week": "1995 Playoffs" }, { "date": "Sep 1, 1996", @@ -77633,7 +114982,12 @@ "sF": "19", "sU": "14", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "1996 Regular Season - Week 1" }, { "date": "Sep 1, 1996", @@ -77643,7 +114997,12 @@ "sF": "6", "sU": "29", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1996 Regular Season - Week 1" }, { "date": "Sep 1, 1996", @@ -77653,7 +115012,12 @@ "sF": "20", "sU": "19", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1996 Regular Season - Week 1" }, { "date": "Sep 1, 1996", @@ -77662,8 +115026,13 @@ "und": "Arizona Cardinals", "sF": "20", "sU": "13", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.0, + "pScore": { + "sU": 14.75, + "sF": 23.25 + }, + "week": "1996 Regular Season - Week 1" }, { "date": "Sep 1, 1996", @@ -77672,8 +115041,13 @@ "und": "Jacksonville Jaguars", "sF": "9", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.0, + "pScore": { + "sU": 16.75, + "sF": 21.25 + }, + "week": "1996 Regular Season - Week 1" }, { "date": "Sep 1, 1996", @@ -77682,8 +115056,13 @@ "und": "Detroit Lions", "sF": "17", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "1996 Regular Season - Week 1" }, { "date": "Sep 1, 1996", @@ -77693,7 +115072,12 @@ "sF": "26", "sU": "16", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1996 Regular Season - Week 1" }, { "date": "Sep 1, 1996", @@ -77702,8 +115086,13 @@ "und": "Philadelphia Eagles", "sF": "14", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.5, + "pScore": { + "sU": 19.5, + "sF": 21.0 + }, + "week": "1996 Regular Season - Week 1" }, { "date": "Sep 1, 1996", @@ -77713,7 +115102,12 @@ "sF": "31", "sU": "6", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "1996 Regular Season - Week 1" }, { "date": "Sep 1, 1996", @@ -77723,7 +115117,12 @@ "sF": "24", "sU": "10", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "1996 Regular Season - Week 1" }, { "date": "Sep 1, 1996", @@ -77732,8 +115131,13 @@ "und": "Seattle Seahawks", "sF": "29", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "1996 Regular Season - Week 1" }, { "date": "Sep 1, 1996", @@ -77743,7 +115147,12 @@ "sF": "27", "sU": "11", "spread": "12", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 16.5, + "sF": 28.5 + }, + "week": "1996 Regular Season - Week 1" }, { "date": "Sep 1, 1996", @@ -77753,7 +115162,12 @@ "sF": "34", "sU": "3", "spread": "6", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.75, + "sF": 22.75 + }, + "week": "1996 Regular Season - Week 1" }, { "date": "Sep 1, 1996", @@ -77762,8 +115176,13 @@ "und": "New York Giants", "sF": "23", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "1996 Regular Season - Week 1" }, { "date": "Sep 2, 1996", @@ -77772,8 +115191,13 @@ "und": "Chicago Bears", "sF": "6", "sU": "22", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1996 Regular Season - Week 1" }, { "date": "Sep 8, 1996", @@ -77783,7 +115207,12 @@ "sF": "17", "sU": "23", "spread": "4", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.0, + "sF": 25.0 + }, + "week": "1996 Regular Season - Week 2" }, { "date": "Sep 8, 1996", @@ -77792,8 +115221,13 @@ "und": "New England Patriots", "sF": "17", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.5, + "pScore": { + "sU": 18.5, + "sF": 23.0 + }, + "week": "1996 Regular Season - Week 2" }, { "date": "Sep 8, 1996", @@ -77803,7 +115237,12 @@ "sF": "21", "sU": "6", "spread": "11", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 15.5, + "sF": 26.5 + }, + "week": "1996 Regular Season - Week 2" }, { "date": "Sep 8, 1996", @@ -77812,8 +115251,13 @@ "und": "Houston Oilers", "sF": "27", "sU": "34", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "1996 Regular Season - Week 2" }, { "date": "Sep 8, 1996", @@ -77822,8 +115266,13 @@ "und": "Oakland Raiders", "sF": "19", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "1996 Regular Season - Week 2" }, { "date": "Sep 8, 1996", @@ -77833,7 +115282,12 @@ "sF": "20", "sU": "22", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "1996 Regular Season - Week 2" }, { "date": "Sep 8, 1996", @@ -77842,8 +115296,13 @@ "und": "New York Jets", "sF": "21", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.0, + "pScore": { + "sU": 16.75, + "sF": 21.25 + }, + "week": "1996 Regular Season - Week 2" }, { "date": "Sep 8, 1996", @@ -77853,7 +115312,12 @@ "sF": "31", "sU": "17", "spread": "4", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.75, + "sF": 20.75 + }, + "week": "1996 Regular Season - Week 2" }, { "date": "Sep 8, 1996", @@ -77863,7 +115327,12 @@ "sF": "27", "sU": "0", "spread": "10", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.0, + "sF": 24.0 + }, + "week": "1996 Regular Season - Week 2" }, { "date": "Sep 8, 1996", @@ -77872,8 +115341,13 @@ "und": "Cincinnati Bengals", "sF": "27", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1996 Regular Season - Week 2" }, { "date": "Sep 8, 1996", @@ -77882,8 +115356,13 @@ "und": "St Louis Rams", "sF": "34", "sU": "0", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 44.0, + "pScore": { + "sU": 15.75, + "sF": 28.25 + }, + "week": "1996 Regular Season - Week 2" }, { "date": "Sep 8, 1996", @@ -77893,7 +115372,12 @@ "sF": "30", "sU": "20", "spread": "2", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.75, + "sF": 21.75 + }, + "week": "1996 Regular Season - Week 2" }, { "date": "Sep 8, 1996", @@ -77903,7 +115387,12 @@ "sF": "38", "sU": "10", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1996 Regular Season - Week 2" }, { "date": "Sep 9, 1996", @@ -77912,8 +115401,13 @@ "und": "Philadelphia Eagles", "sF": "39", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.0, + "pScore": { + "sU": 16.25, + "sF": 23.75 + }, + "week": "1996 Regular Season - Week 2" }, { "date": "Sep 15, 1996", @@ -77922,8 +115416,13 @@ "und": "Minnesota Vikings", "sF": "14", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "1996 Regular Season - Week 3" }, { "date": "Sep 15, 1996", @@ -77933,7 +115432,12 @@ "sF": "30", "sU": "15", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "1996 Regular Season - Week 3" }, { "date": "Sep 15, 1996", @@ -77942,8 +115446,13 @@ "und": "San Diego Chargers", "sF": "42", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 44.0, + "pScore": { + "sU": 17.75, + "sF": 26.25 + }, + "week": "1996 Regular Season - Week 3" }, { "date": "Sep 15, 1996", @@ -77952,8 +115461,13 @@ "und": "Baltimore Ravens", "sF": "29", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1996 Regular Season - Week 3" }, { "date": "Sep 15, 1996", @@ -77962,8 +115476,13 @@ "und": "New York Jets", "sF": "36", "sU": "27", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 39.5, + "pScore": { + "sU": 13.5, + "sF": 26.0 + }, + "week": "1996 Regular Season - Week 3" }, { "date": "Sep 15, 1996", @@ -77973,7 +115492,12 @@ "sF": "31", "sU": "0", "spread": "10", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 14.75, + "sF": 24.75 + }, + "week": "1996 Regular Season - Week 3" }, { "date": "Sep 15, 1996", @@ -77982,8 +115506,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.5, + "pScore": { + "sU": 20.5, + "sF": 22.0 + }, + "week": "1996 Regular Season - Week 3" }, { "date": "Sep 15, 1996", @@ -77992,8 +115521,13 @@ "und": "Indianapolis Colts", "sF": "24", "sU": "25", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 38.5, + "pScore": { + "sU": 14.5, + "sF": 24.0 + }, + "week": "1996 Regular Season - Week 3" }, { "date": "Sep 15, 1996", @@ -78003,7 +115537,12 @@ "sF": "31", "sU": "10", "spread": "1", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.75, + "sF": 19.75 + }, + "week": "1996 Regular Season - Week 3" }, { "date": "Sep 15, 1996", @@ -78012,8 +115551,13 @@ "und": "Jacksonville Jaguars", "sF": "17", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "1996 Regular Season - Week 3" }, { "date": "Sep 15, 1996", @@ -78022,8 +115566,13 @@ "und": "Seattle Seahawks", "sF": "35", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "1996 Regular Season - Week 3" }, { "date": "Sep 15, 1996", @@ -78033,7 +115582,12 @@ "sF": "27", "sU": "23", "spread": "13", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 13.75, + "sF": 26.75 + }, + "week": "1996 Regular Season - Week 3" }, { "date": "Sep 16, 1996", @@ -78043,7 +115597,12 @@ "sF": "24", "sU": "6", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1996 Regular Season - Week 3" }, { "date": "Sep 22, 1996", @@ -78053,7 +115612,12 @@ "sF": "7", "sU": "23", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "1996 Regular Season - Week 4" }, { "date": "Sep 22, 1996", @@ -78063,7 +115627,12 @@ "sF": "17", "sU": "14", "spread": "5", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.75, + "sF": 22.75 + }, + "week": "1996 Regular Season - Week 4" }, { "date": "Sep 22, 1996", @@ -78072,8 +115641,13 @@ "und": "Minnesota Vikings", "sF": "21", "sU": "30", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "1996 Regular Season - Week 4" }, { "date": "Sep 22, 1996", @@ -78083,7 +115657,12 @@ "sF": "28", "sU": "25", "spread": "8", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.5, + "sF": 23.5 + }, + "week": "1996 Regular Season - Week 4" }, { "date": "Sep 22, 1996", @@ -78092,8 +115671,13 @@ "und": "Arizona Cardinals", "sF": "14", "sU": "28", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.0, + "pScore": { + "sU": 15.75, + "sF": 23.25 + }, + "week": "1996 Regular Season - Week 4" }, { "date": "Sep 22, 1996", @@ -78103,7 +115687,12 @@ "sF": "6", "sU": "13", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "1996 Regular Season - Week 4" }, { "date": "Sep 22, 1996", @@ -78113,7 +115702,12 @@ "sF": "10", "sU": "17", "spread": "2", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.25, + "sF": 21.25 + }, + "week": "1996 Regular Season - Week 4" }, { "date": "Sep 22, 1996", @@ -78122,8 +115716,13 @@ "und": "Buffalo Bills", "sF": "7", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1996 Regular Season - Week 4" }, { "date": "Sep 22, 1996", @@ -78132,8 +115731,13 @@ "und": "Chicago Bears", "sF": "35", "sU": "16", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.0, + "pScore": { + "sU": 18.75, + "sF": 23.25 + }, + "week": "1996 Regular Season - Week 4" }, { "date": "Sep 22, 1996", @@ -78143,7 +115747,12 @@ "sF": "34", "sU": "40", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "1996 Regular Season - Week 4" }, { "date": "Sep 22, 1996", @@ -78153,7 +115762,12 @@ "sF": "17", "sU": "13", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1996 Regular Season - Week 4" }, { "date": "Sep 22, 1996", @@ -78163,7 +115777,12 @@ "sF": "18", "sU": "33", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "1996 Regular Season - Week 4" }, { "date": "Sep 23, 1996", @@ -78172,8 +115791,13 @@ "und": "Miami Dolphins", "sF": "10", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1996 Regular Season - Week 4" }, { "date": "Sep 29, 1996", @@ -78183,7 +115807,12 @@ "sF": "17", "sU": "10", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1996 Regular Season - Week 5" }, { "date": "Sep 29, 1996", @@ -78193,7 +115822,12 @@ "sF": "19", "sU": "17", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1996 Regular Season - Week 5" }, { "date": "Sep 29, 1996", @@ -78203,7 +115837,12 @@ "sF": "14", "sU": "10", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1996 Regular Season - Week 5" }, { "date": "Sep 29, 1996", @@ -78212,8 +115851,13 @@ "und": "Jacksonville Jaguars", "sF": "14", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "1996 Regular Season - Week 5" }, { "date": "Sep 29, 1996", @@ -78222,8 +115866,13 @@ "und": "New York Giants", "sF": "10", "sU": "15", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "1996 Regular Season - Week 5" }, { "date": "Sep 29, 1996", @@ -78232,8 +115881,13 @@ "und": "Houston Oilers", "sF": "30", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.0, + "pScore": { + "sU": 16.75, + "sF": 22.25 + }, + "week": "1996 Regular Season - Week 5" }, { "date": "Sep 29, 1996", @@ -78242,8 +115896,13 @@ "und": "Tampa Bay Buccaneers", "sF": "27", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1996 Regular Season - Week 5" }, { "date": "Sep 29, 1996", @@ -78253,7 +115912,12 @@ "sF": "31", "sU": "28", "spread": "1", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.75, + "sF": 19.75 + }, + "week": "1996 Regular Season - Week 5" }, { "date": "Sep 29, 1996", @@ -78263,7 +115927,12 @@ "sF": "22", "sU": "19", "spread": "2", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.25, + "sF": 20.25 + }, + "week": "1996 Regular Season - Week 5" }, { "date": "Sep 29, 1996", @@ -78273,7 +115942,12 @@ "sF": "39", "sU": "17", "spread": "13", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 15.0, + "sF": 28.0 + }, + "week": "1996 Regular Season - Week 5" }, { "date": "Sep 29, 1996", @@ -78282,8 +115956,13 @@ "und": "Seattle Seahawks", "sF": "31", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "1996 Regular Season - Week 5" }, { "date": "Sep 29, 1996", @@ -78292,8 +115971,13 @@ "und": "New York Jets", "sF": "31", "sU": "16", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.5, + "pScore": { + "sU": 15.0, + "sF": 23.5 + }, + "week": "1996 Regular Season - Week 5" }, { "date": "Sep 30, 1996", @@ -78302,8 +115986,13 @@ "und": "Dallas Cowboys", "sF": "19", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1996 Regular Season - Week 5" }, { "date": "Oct 6, 1996", @@ -78313,7 +116002,12 @@ "sF": "46", "sU": "38", "spread": "2", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.5, + "sF": 20.5 + }, + "week": "1996 Regular Season - Week 6" }, { "date": "Oct 6, 1996", @@ -78322,8 +116016,13 @@ "und": "Chicago Bears", "sF": "37", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "1996 Regular Season - Week 6" }, { "date": "Oct 6, 1996", @@ -78333,7 +116032,12 @@ "sF": "28", "sU": "24", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "1996 Regular Season - Week 6" }, { "date": "Oct 6, 1996", @@ -78342,8 +116046,13 @@ "und": "Seattle Seahawks", "sF": "15", "sU": "22", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.0, + "pScore": { + "sU": 15.75, + "sF": 23.25 + }, + "week": "1996 Regular Season - Week 6" }, { "date": "Oct 6, 1996", @@ -78353,7 +116062,12 @@ "sF": "14", "sU": "12", "spread": "6", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.75, + "sF": 22.75 + }, + "week": "1996 Regular Season - Week 6" }, { "date": "Oct 6, 1996", @@ -78362,8 +116076,13 @@ "und": "New York Jets", "sF": "34", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1996 Regular Season - Week 6" }, { "date": "Oct 6, 1996", @@ -78372,8 +116091,13 @@ "und": "Indianapolis Colts", "sF": "16", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1996 Regular Season - Week 6" }, { "date": "Oct 6, 1996", @@ -78382,8 +116106,13 @@ "und": "San Diego Chargers", "sF": "28", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1996 Regular Season - Week 6" }, { "date": "Oct 6, 1996", @@ -78393,7 +116122,12 @@ "sF": "17", "sU": "13", "spread": "2", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.25, + "sF": 21.25 + }, + "week": "1996 Regular Season - Week 6" }, { "date": "Oct 6, 1996", @@ -78402,8 +116136,13 @@ "und": "St Louis Rams", "sF": "28", "sU": "11", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.0, + "pScore": { + "sU": 16.25, + "sF": 26.75 + }, + "week": "1996 Regular Season - Week 6" }, { "date": "Oct 6, 1996", @@ -78413,7 +116152,12 @@ "sF": "27", "sU": "30", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "1996 Regular Season - Week 6" }, { "date": "Oct 7, 1996", @@ -78423,7 +116167,12 @@ "sF": "7", "sU": "17", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1996 Regular Season - Week 6" }, { "date": "Oct 13, 1996", @@ -78432,8 +116181,13 @@ "und": "Houston Oilers", "sF": "13", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.5, + "pScore": { + "sU": 21.5, + "sF": 23.0 + }, + "week": "1996 Regular Season - Week 7" }, { "date": "Oct 13, 1996", @@ -78442,8 +116196,13 @@ "und": "Miami Dolphins", "sF": "7", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.5, + "pScore": { + "sU": 15.0, + "sF": 21.5 + }, + "week": "1996 Regular Season - Week 7" }, { "date": "Oct 13, 1996", @@ -78453,7 +116212,12 @@ "sF": "45", "sU": "13", "spread": "7", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.75, + "sF": 22.75 + }, + "week": "1996 Regular Season - Week 7" }, { "date": "Oct 13, 1996", @@ -78462,8 +116226,13 @@ "und": "Arizona Cardinals", "sF": "17", "sU": "3", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 41.0, + "pScore": { + "sU": 13.25, + "sF": 27.75 + }, + "week": "1996 Regular Season - Week 7" }, { "date": "Oct 13, 1996", @@ -78472,8 +116241,13 @@ "und": "New York Jets", "sF": "21", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.5, + "pScore": { + "sU": 15.5, + "sF": 23.0 + }, + "week": "1996 Regular Season - Week 7" }, { "date": "Oct 13, 1996", @@ -78482,8 +116256,13 @@ "und": "Washington Redskins", "sF": "22", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "1996 Regular Season - Week 7" }, { "date": "Oct 13, 1996", @@ -78493,7 +116272,12 @@ "sF": "27", "sU": "24", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "1996 Regular Season - Week 7" }, { "date": "Oct 13, 1996", @@ -78503,7 +116287,12 @@ "sF": "20", "sU": "10", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "1996 Regular Season - Week 7" }, { "date": "Oct 13, 1996", @@ -78512,8 +116301,13 @@ "und": "Tampa Bay Buccaneers", "sF": "13", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.5, + "pScore": { + "sU": 15.5, + "sF": 22.0 + }, + "week": "1996 Regular Season - Week 7" }, { "date": "Oct 13, 1996", @@ -78523,7 +116317,12 @@ "sF": "19", "sU": "10", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "1996 Regular Season - Week 7" }, { "date": "Oct 13, 1996", @@ -78533,7 +116332,12 @@ "sF": "37", "sU": "21", "spread": "1", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 20.25, + "sF": 21.25 + }, + "week": "1996 Regular Season - Week 7" }, { "date": "Oct 13, 1996", @@ -78543,7 +116347,12 @@ "sF": "26", "sU": "21", "spread": "9", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.0, + "sF": 24.0 + }, + "week": "1996 Regular Season - Week 7" }, { "date": "Oct 14, 1996", @@ -78552,12 +116361,13 @@ "und": "San Francisco 49ers", "sF": "23", "sU": "20", - "spread": "5", - "ou": "49", + "spread": "5.5", + "ou": 45.5, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 20.0, + "sF": 25.5 + }, + "week": "1996 Regular Season - Week 7" }, { "date": "Oct 17, 1996", @@ -78567,7 +116377,12 @@ "sF": "34", "sU": "16", "spread": "9", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.0, + "sF": 24.0 + }, + "week": "1996 Regular Season - Week 8" }, { "date": "Oct 20, 1996", @@ -78577,7 +116392,12 @@ "sF": "19", "sU": "7", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "1996 Regular Season - Week 8" }, { "date": "Oct 20, 1996", @@ -78587,7 +116407,12 @@ "sF": "32", "sU": "28", "spread": "15", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 14.0, + "sF": 29.0 + }, + "week": "1996 Regular Season - Week 8" }, { "date": "Oct 20, 1996", @@ -78596,8 +116421,13 @@ "und": "New England Patriots", "sF": "9", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "1996 Regular Season - Week 8" }, { "date": "Oct 20, 1996", @@ -78606,8 +116436,13 @@ "und": "Miami Dolphins", "sF": "35", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1996 Regular Season - Week 8" }, { "date": "Oct 20, 1996", @@ -78616,8 +116451,13 @@ "und": "New York Giants", "sF": "31", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.5, + "pScore": { + "sU": 15.0, + "sF": 22.5 + }, + "week": "1996 Regular Season - Week 8" }, { "date": "Oct 20, 1996", @@ -78627,7 +116467,12 @@ "sF": "13", "sU": "9", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1996 Regular Season - Week 8" }, { "date": "Oct 20, 1996", @@ -78637,7 +116482,12 @@ "sF": "45", "sU": "34", "spread": "11", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 16.5, + "sF": 27.5 + }, + "week": "1996 Regular Season - Week 8" }, { "date": "Oct 20, 1996", @@ -78647,7 +116497,12 @@ "sF": "13", "sU": "23", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "1996 Regular Season - Week 8" }, { "date": "Oct 20, 1996", @@ -78657,7 +116512,12 @@ "sF": "25", "sU": "22", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "1996 Regular Season - Week 8" }, { "date": "Oct 20, 1996", @@ -78666,8 +116526,13 @@ "und": "Cincinnati Bengals", "sF": "28", "sU": "21", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 43.0, + "pScore": { + "sU": 14.25, + "sF": 28.75 + }, + "week": "1996 Regular Season - Week 8" }, { "date": "Oct 21, 1996", @@ -78676,8 +116541,13 @@ "und": "Oakland Raiders", "sF": "14", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1996 Regular Season - Week 8" }, { "date": "Oct 27, 1996", @@ -78687,7 +116557,12 @@ "sF": "20", "sU": "17", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1996 Regular Season - Week 9" }, { "date": "Oct 27, 1996", @@ -78697,7 +116572,12 @@ "sF": "37", "sU": "31", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1996 Regular Season - Week 9" }, { "date": "Oct 27, 1996", @@ -78706,8 +116586,13 @@ "und": "Jacksonville Jaguars", "sF": "28", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1996 Regular Season - Week 9" }, { "date": "Oct 27, 1996", @@ -78717,7 +116602,12 @@ "sF": "7", "sU": "35", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "1996 Regular Season - Week 9" }, { "date": "Oct 27, 1996", @@ -78726,8 +116616,13 @@ "und": "Tampa Bay Buccaneers", "sF": "13", "sU": "7", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": 42.0, + "pScore": { + "sU": 12.25, + "sF": 29.75 + }, + "week": "1996 Regular Season - Week 9" }, { "date": "Oct 27, 1996", @@ -78737,7 +116632,12 @@ "sF": "10", "sU": "9", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1996 Regular Season - Week 9" }, { "date": "Oct 27, 1996", @@ -78747,7 +116647,12 @@ "sF": "20", "sU": "9", "spread": "4", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.75, + "sF": 20.75 + }, + "week": "1996 Regular Season - Week 9" }, { "date": "Oct 27, 1996", @@ -78757,7 +116662,12 @@ "sF": "31", "sU": "16", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1996 Regular Season - Week 9" }, { "date": "Oct 27, 1996", @@ -78766,8 +116676,13 @@ "und": "New York Jets", "sF": "21", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 36.5, + "pScore": { + "sU": 16.0, + "sF": 20.5 + }, + "week": "1996 Regular Season - Week 9" }, { "date": "Oct 27, 1996", @@ -78777,7 +116692,12 @@ "sF": "34", "sU": "7", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1996 Regular Season - Week 9" }, { "date": "Oct 27, 1996", @@ -78787,7 +116707,12 @@ "sF": "29", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1996 Regular Season - Week 9" }, { "date": "Oct 27, 1996", @@ -78796,8 +116721,13 @@ "und": "Seattle Seahawks", "sF": "13", "sU": "32", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1996 Regular Season - Week 9" }, { "date": "Oct 27, 1996", @@ -78807,7 +116737,12 @@ "sF": "28", "sU": "25", "spread": "4", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 17.75, + "sF": 21.75 + }, + "week": "1996 Regular Season - Week 9" }, { "date": "Oct 28, 1996", @@ -78816,8 +116751,13 @@ "und": "Chicago Bears", "sF": "13", "sU": "15", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "1996 Regular Season - Week 9" }, { "date": "Nov 3, 1996", @@ -78826,8 +116766,13 @@ "und": "Atlanta Falcons", "sF": "17", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.5, + "pScore": { + "sU": 20.0, + "sF": 21.5 + }, + "week": "1996 Regular Season - Week 10" }, { "date": "Nov 3, 1996", @@ -78836,8 +116781,13 @@ "und": "Cincinnati Bengals", "sF": "21", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "1996 Regular Season - Week 10" }, { "date": "Nov 3, 1996", @@ -78846,8 +116796,13 @@ "und": "Tampa Bay Buccaneers", "sF": "13", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.0, + "pScore": { + "sU": 14.75, + "sF": 21.25 + }, + "week": "1996 Regular Season - Week 10" }, { "date": "Nov 3, 1996", @@ -78856,8 +116811,13 @@ "und": "Philadelphia Eagles", "sF": "21", "sU": "31", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 40.5, + "pScore": { + "sU": 16.0, + "sF": 24.5 + }, + "week": "1996 Regular Season - Week 10" }, { "date": "Nov 3, 1996", @@ -78867,7 +116827,12 @@ "sF": "28", "sU": "18", "spread": "11", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 16.5, + "sF": 27.5 + }, + "week": "1996 Regular Season - Week 10" }, { "date": "Nov 3, 1996", @@ -78877,7 +116842,12 @@ "sF": "19", "sU": "26", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1996 Regular Season - Week 10" }, { "date": "Nov 3, 1996", @@ -78886,8 +116856,13 @@ "und": "Arizona Cardinals", "sF": "16", "sU": "8", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.0, + "pScore": { + "sU": 15.75, + "sF": 21.25 + }, + "week": "1996 Regular Season - Week 10" }, { "date": "Nov 3, 1996", @@ -78897,7 +116872,12 @@ "sF": "42", "sU": "6", "spread": "13", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 13.5, + "sF": 26.5 + }, + "week": "1996 Regular Season - Week 10" }, { "date": "Nov 3, 1996", @@ -78907,7 +116887,12 @@ "sF": "38", "sU": "13", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "1996 Regular Season - Week 10" }, { "date": "Nov 3, 1996", @@ -78916,8 +116901,13 @@ "und": "Minnesota Vikings", "sF": "21", "sU": "6", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "1996 Regular Season - Week 10" }, { "date": "Nov 3, 1996", @@ -78927,7 +116917,12 @@ "sF": "42", "sU": "23", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "1996 Regular Season - Week 10" }, { "date": "Nov 3, 1996", @@ -78936,8 +116931,13 @@ "und": "New Orleans Saints", "sF": "24", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 41.0, + "pScore": { + "sU": 16.25, + "sF": 24.75 + }, + "week": "1996 Regular Season - Week 10" }, { "date": "Nov 4, 1996", @@ -78947,7 +116947,12 @@ "sF": "21", "sU": "22", "spread": "2", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.25, + "sF": 23.25 + }, + "week": "1996 Regular Season - Week 10" }, { "date": "Nov 10, 1996", @@ -78957,7 +116962,12 @@ "sF": "24", "sU": "34", "spread": "4", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.75, + "sF": 22.75 + }, + "week": "1996 Regular Season - Week 11" }, { "date": "Nov 10, 1996", @@ -78967,7 +116977,12 @@ "sF": "20", "sU": "27", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1996 Regular Season - Week 11" }, { "date": "Nov 10, 1996", @@ -78976,8 +116991,13 @@ "und": "Indianapolis Colts", "sF": "37", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "1996 Regular Season - Week 11" }, { "date": "Nov 10, 1996", @@ -78986,8 +117006,13 @@ "und": "New Orleans Saints", "sF": "31", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "1996 Regular Season - Week 11" }, { "date": "Nov 10, 1996", @@ -78996,8 +117021,13 @@ "und": "New York Jets", "sF": "31", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "1996 Regular Season - Week 11" }, { "date": "Nov 10, 1996", @@ -79006,8 +117036,13 @@ "und": "Buffalo Bills", "sF": "17", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1996 Regular Season - Week 11" }, { "date": "Nov 10, 1996", @@ -79016,8 +117051,13 @@ "und": "St Louis Rams", "sF": "16", "sU": "59", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.5, + "pScore": { + "sU": 20.5, + "sF": 22.0 + }, + "week": "1996 Regular Season - Week 11" }, { "date": "Nov 10, 1996", @@ -79026,8 +117066,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.0, + "pScore": { + "sU": 15.75, + "sF": 21.25 + }, + "week": "1996 Regular Season - Week 11" }, { "date": "Nov 10, 1996", @@ -79036,8 +117081,13 @@ "und": "Arizona Cardinals", "sF": "34", "sU": "37", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 40.0, + "pScore": { + "sU": 14.75, + "sF": 25.25 + }, + "week": "1996 Regular Season - Week 11" }, { "date": "Nov 10, 1996", @@ -79046,8 +117096,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "12", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 42.0, + "pScore": { + "sU": 15.75, + "sF": 26.25 + }, + "week": "1996 Regular Season - Week 11" }, { "date": "Nov 10, 1996", @@ -79056,8 +117111,13 @@ "und": "Baltimore Ravens", "sF": "30", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "1996 Regular Season - Week 11" }, { "date": "Nov 10, 1996", @@ -79066,8 +117126,13 @@ "und": "Dallas Cowboys", "sF": "17", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "1996 Regular Season - Week 11" }, { "date": "Nov 10, 1996", @@ -79077,7 +117142,12 @@ "sF": "42", "sU": "23", "spread": "2", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.5, + "sF": 20.5 + }, + "week": "1996 Regular Season - Week 11" }, { "date": "Nov 10, 1996", @@ -79086,8 +117156,13 @@ "und": "New York Giants", "sF": "27", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 36.0, + "pScore": { + "sU": 15.75, + "sF": 20.25 + }, + "week": "1996 Regular Season - Week 11" }, { "date": "Nov 11, 1996", @@ -79096,8 +117171,13 @@ "und": "Detroit Lions", "sF": "27", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1996 Regular Season - Week 11" }, { "date": "Nov 17, 1996", @@ -79107,7 +117187,12 @@ "sF": "17", "sU": "15", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1996 Regular Season - Week 12" }, { "date": "Nov 17, 1996", @@ -79117,7 +117202,12 @@ "sF": "31", "sU": "17", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1996 Regular Season - Week 12" }, { "date": "Nov 17, 1996", @@ -79126,8 +117216,13 @@ "und": "Seattle Seahawks", "sF": "17", "sU": "16", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.0, + "pScore": { + "sU": 20.25, + "sF": 24.75 + }, + "week": "1996 Regular Season - Week 12" }, { "date": "Nov 17, 1996", @@ -79137,7 +117232,12 @@ "sF": "34", "sU": "29", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1996 Regular Season - Week 12" }, { "date": "Nov 17, 1996", @@ -79146,8 +117246,13 @@ "und": "Chicago Bears", "sF": "14", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 36.0, + "pScore": { + "sU": 13.75, + "sF": 22.25 + }, + "week": "1996 Regular Season - Week 12" }, { "date": "Nov 17, 1996", @@ -79156,8 +117261,13 @@ "und": "Denver Broncos", "sF": "8", "sU": "34", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "1996 Regular Season - Week 12" }, { "date": "Nov 17, 1996", @@ -79167,7 +117277,12 @@ "sF": "21", "sU": "26", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1996 Regular Season - Week 12" }, { "date": "Nov 17, 1996", @@ -79177,7 +117292,12 @@ "sF": "28", "sU": "3", "spread": "11", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.0, + "sF": 26.0 + }, + "week": "1996 Regular Season - Week 12" }, { "date": "Nov 17, 1996", @@ -79187,7 +117307,12 @@ "sF": "20", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1996 Regular Season - Week 12" }, { "date": "Nov 17, 1996", @@ -79196,8 +117321,13 @@ "und": "New York Giants", "sF": "31", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 36.0, + "pScore": { + "sU": 17.25, + "sF": 18.75 + }, + "week": "1996 Regular Season - Week 12" }, { "date": "Nov 17, 1996", @@ -79206,8 +117336,13 @@ "und": "Miami Dolphins", "sF": "20", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1996 Regular Season - Week 12" }, { "date": "Nov 17, 1996", @@ -79217,7 +117352,12 @@ "sF": "17", "sU": "25", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "1996 Regular Season - Week 12" }, { "date": "Nov 17, 1996", @@ -79227,7 +117367,12 @@ "sF": "38", "sU": "20", "spread": "12", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 16.5, + "sF": 28.5 + }, + "week": "1996 Regular Season - Week 12" }, { "date": "Nov 17, 1996", @@ -79236,8 +117381,13 @@ "und": "Minnesota Vikings", "sF": "13", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1996 Regular Season - Week 12" }, { "date": "Nov 18, 1996", @@ -79247,7 +117397,12 @@ "sF": "21", "sU": "6", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "1996 Regular Season - Week 12" }, { "date": "Nov 24, 1996", @@ -79257,7 +117412,12 @@ "sF": "25", "sU": "28", "spread": "4", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.0, + "sF": 25.0 + }, + "week": "1996 Regular Season - Week 13" }, { "date": "Nov 24, 1996", @@ -79266,8 +117426,13 @@ "und": "New York Jets", "sF": "35", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.0, + "pScore": { + "sU": 16.25, + "sF": 25.75 + }, + "week": "1996 Regular Season - Week 13" }, { "date": "Nov 24, 1996", @@ -79277,7 +117442,12 @@ "sF": "31", "sU": "14", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1996 Regular Season - Week 13" }, { "date": "Nov 24, 1996", @@ -79287,7 +117457,12 @@ "sF": "41", "sU": "31", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "1996 Regular Season - Week 13" }, { "date": "Nov 24, 1996", @@ -79296,8 +117471,13 @@ "und": "Carolina Panthers", "sF": "6", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.5, + "pScore": { + "sU": 17.5, + "sF": 22.0 + }, + "week": "1996 Regular Season - Week 13" }, { "date": "Nov 24, 1996", @@ -79306,8 +117486,13 @@ "und": "San Diego Chargers", "sF": "14", "sU": "28", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.0, + "pScore": { + "sU": 16.75, + "sF": 22.25 + }, + "week": "1996 Regular Season - Week 13" }, { "date": "Nov 24, 1996", @@ -79316,8 +117501,13 @@ "und": "Minnesota Vikings", "sF": "21", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "1996 Regular Season - Week 13" }, { "date": "Nov 24, 1996", @@ -79327,7 +117517,12 @@ "sF": "27", "sU": "13", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "1996 Regular Season - Week 13" }, { "date": "Nov 24, 1996", @@ -79336,8 +117531,13 @@ "und": "New Orleans Saints", "sF": "13", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "1996 Regular Season - Week 13" }, { "date": "Nov 24, 1996", @@ -79346,8 +117546,13 @@ "und": "Washington Redskins", "sF": "19", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1996 Regular Season - Week 13" }, { "date": "Nov 24, 1996", @@ -79356,8 +117561,13 @@ "und": "Arizona Cardinals", "sF": "30", "sU": "36", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1996 Regular Season - Week 13" }, { "date": "Nov 24, 1996", @@ -79367,7 +117577,12 @@ "sF": "6", "sU": "20", "spread": "9", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.5, + "sF": 23.5 + }, + "week": "1996 Regular Season - Week 13" }, { "date": "Nov 24, 1996", @@ -79377,7 +117592,12 @@ "sF": "21", "sU": "27", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1996 Regular Season - Week 13" }, { "date": "Nov 24, 1996", @@ -79386,8 +117606,13 @@ "und": "St Louis Rams", "sF": "24", "sU": "9", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "1996 Regular Season - Week 13" }, { "date": "Nov 25, 1996", @@ -79396,8 +117621,13 @@ "und": "Pittsburgh Steelers", "sF": "17", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1996 Regular Season - Week 13" }, { "date": "Nov 28, 1996", @@ -79407,7 +117637,12 @@ "sF": "28", "sU": "24", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "1996 Regular Season - Week 14" }, { "date": "Nov 28, 1996", @@ -79417,7 +117652,12 @@ "sF": "21", "sU": "10", "spread": "9", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 17.25, + "sF": 26.25 + }, + "week": "1996 Regular Season - Week 14" }, { "date": "Dec 1, 1996", @@ -79426,8 +117666,13 @@ "und": "Baltimore Ravens", "sF": "17", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "1996 Regular Season - Week 14" }, { "date": "Dec 1, 1996", @@ -79437,7 +117682,12 @@ "sF": "24", "sU": "0", "spread": "6", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 15.25, + "sF": 21.25 + }, + "week": "1996 Regular Season - Week 14" }, { "date": "Dec 1, 1996", @@ -79447,7 +117697,12 @@ "sF": "28", "sU": "17", "spread": "10", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 14.75, + "sF": 24.75 + }, + "week": "1996 Regular Season - Week 14" }, { "date": "Dec 1, 1996", @@ -79457,7 +117712,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1996 Regular Season - Week 14" }, { "date": "Dec 1, 1996", @@ -79467,7 +117727,12 @@ "sF": "30", "sU": "27", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1996 Regular Season - Week 14" }, { "date": "Dec 1, 1996", @@ -79476,8 +117741,13 @@ "und": "Arizona Cardinals", "sF": "41", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.0, + "pScore": { + "sU": 18.75, + "sF": 23.25 + }, + "week": "1996 Regular Season - Week 14" }, { "date": "Dec 1, 1996", @@ -79486,8 +117756,13 @@ "und": "New York Giants", "sF": "24", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "1996 Regular Season - Week 14" }, { "date": "Dec 1, 1996", @@ -79496,8 +117771,13 @@ "und": "Seattle Seahawks", "sF": "34", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.0, + "pScore": { + "sU": 16.25, + "sF": 26.75 + }, + "week": "1996 Regular Season - Week 14" }, { "date": "Dec 1, 1996", @@ -79507,7 +117787,12 @@ "sF": "10", "sU": "26", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1996 Regular Season - Week 14" }, { "date": "Dec 1, 1996", @@ -79517,7 +117802,12 @@ "sF": "35", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1996 Regular Season - Week 14" }, { "date": "Dec 1, 1996", @@ -79527,7 +117817,12 @@ "sF": "17", "sU": "7", "spread": "2", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.75, + "sF": 22.75 + }, + "week": "1996 Regular Season - Week 14" }, { "date": "Dec 1, 1996", @@ -79537,7 +117832,12 @@ "sF": "7", "sU": "45", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "1996 Regular Season - Week 14" }, { "date": "Dec 2, 1996", @@ -79546,8 +117846,13 @@ "und": "Atlanta Falcons", "sF": "34", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.0, + "pScore": { + "sU": 17.25, + "sF": 26.75 + }, + "week": "1996 Regular Season - Week 14" }, { "date": "Dec 5, 1996", @@ -79557,7 +117862,12 @@ "sF": "10", "sU": "37", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1996 Regular Season - Week 15" }, { "date": "Dec 8, 1996", @@ -79566,8 +117876,13 @@ "und": "St Louis Rams", "sF": "35", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "1996 Regular Season - Week 15" }, { "date": "Dec 8, 1996", @@ -79577,7 +117892,12 @@ "sF": "21", "sU": "14", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "1996 Regular Season - Week 15" }, { "date": "Dec 8, 1996", @@ -79587,7 +117907,12 @@ "sF": "41", "sU": "6", "spread": "9", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.0, + "sF": 24.0 + }, + "week": "1996 Regular Season - Week 15" }, { "date": "Dec 8, 1996", @@ -79597,7 +117922,12 @@ "sF": "17", "sU": "23", "spread": "6", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.25, + "sF": 24.25 + }, + "week": "1996 Regular Season - Week 15" }, { "date": "Dec 8, 1996", @@ -79607,7 +117937,12 @@ "sF": "7", "sU": "17", "spread": "7", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.75, + "sF": 22.75 + }, + "week": "1996 Regular Season - Week 15" }, { "date": "Dec 8, 1996", @@ -79617,7 +117952,12 @@ "sF": "15", "sU": "31", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1996 Regular Season - Week 15" }, { "date": "Dec 8, 1996", @@ -79626,8 +117966,13 @@ "und": "San Diego Chargers", "sF": "16", "sU": "3", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 40.0, + "pScore": { + "sU": 15.25, + "sF": 24.75 + }, + "week": "1996 Regular Season - Week 15" }, { "date": "Dec 8, 1996", @@ -79637,7 +117982,12 @@ "sF": "10", "sU": "24", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1996 Regular Season - Week 15" }, { "date": "Dec 8, 1996", @@ -79647,7 +117997,12 @@ "sF": "10", "sU": "6", "spread": "10", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 16.25, + "sF": 26.25 + }, + "week": "1996 Regular Season - Week 15" }, { "date": "Dec 8, 1996", @@ -79657,7 +118012,12 @@ "sF": "34", "sU": "10", "spread": "13", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 15.25, + "sF": 28.25 + }, + "week": "1996 Regular Season - Week 15" }, { "date": "Dec 8, 1996", @@ -79667,7 +118027,12 @@ "sF": "24", "sU": "30", "spread": "9", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.5, + "sF": 24.5 + }, + "week": "1996 Regular Season - Week 15" }, { "date": "Dec 8, 1996", @@ -79677,7 +118042,12 @@ "sF": "18", "sU": "26", "spread": "4", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.75, + "sF": 22.75 + }, + "week": "1996 Regular Season - Week 15" }, { "date": "Dec 8, 1996", @@ -79686,8 +118056,13 @@ "und": "Minnesota Vikings", "sF": "22", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "1996 Regular Season - Week 15" }, { "date": "Dec 9, 1996", @@ -79697,7 +118072,12 @@ "sF": "26", "sU": "7", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1996 Regular Season - Week 15" }, { "date": "Dec 14, 1996", @@ -79707,7 +118087,12 @@ "sF": "21", "sU": "20", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1996 Regular Season - Week 16" }, { "date": "Dec 14, 1996", @@ -79717,7 +118102,12 @@ "sF": "27", "sU": "14", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "1996 Regular Season - Week 16" }, { "date": "Dec 15, 1996", @@ -79726,8 +118116,13 @@ "und": "St Louis Rams", "sF": "27", "sU": "34", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "1996 Regular Season - Week 16" }, { "date": "Dec 15, 1996", @@ -79736,8 +118131,13 @@ "und": "Baltimore Ravens", "sF": "27", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.0, + "pScore": { + "sU": 17.75, + "sF": 25.25 + }, + "week": "1996 Regular Season - Week 16" }, { "date": "Dec 15, 1996", @@ -79746,8 +118146,13 @@ "und": "New England Patriots", "sF": "12", "sU": "6", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.5, + "pScore": { + "sU": 19.0, + "sF": 24.5 + }, + "week": "1996 Regular Season - Week 16" }, { "date": "Dec 15, 1996", @@ -79757,7 +118162,12 @@ "sF": "31", "sU": "3", "spread": "8", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.5, + "sF": 27.5 + }, + "week": "1996 Regular Season - Week 16" }, { "date": "Dec 15, 1996", @@ -79767,7 +118177,12 @@ "sF": "13", "sU": "21", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1996 Regular Season - Week 16" }, { "date": "Dec 15, 1996", @@ -79777,7 +118192,12 @@ "sF": "21", "sU": "10", "spread": "6", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 15.25, + "sF": 21.25 + }, + "week": "1996 Regular Season - Week 16" }, { "date": "Dec 15, 1996", @@ -79787,7 +118207,12 @@ "sF": "3", "sU": "17", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1996 Regular Season - Week 16" }, { "date": "Dec 15, 1996", @@ -79796,8 +118221,13 @@ "und": "Pittsburgh Steelers", "sF": "25", "sU": "15", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "1996 Regular Season - Week 16" }, { "date": "Dec 15, 1996", @@ -79807,7 +118237,12 @@ "sF": "26", "sU": "27", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "1996 Regular Season - Week 16" }, { "date": "Dec 15, 1996", @@ -79817,7 +118252,12 @@ "sF": "24", "sU": "19", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1996 Regular Season - Week 16" }, { "date": "Dec 15, 1996", @@ -79827,7 +118267,12 @@ "sF": "19", "sU": "24", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1996 Regular Season - Week 16" }, { "date": "Dec 15, 1996", @@ -79837,7 +118282,12 @@ "sF": "20", "sU": "13", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1996 Regular Season - Week 16" }, { "date": "Dec 16, 1996", @@ -79847,7 +118297,12 @@ "sF": "14", "sU": "16", "spread": "1", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 20.25, + "sF": 21.25 + }, + "week": "1996 Regular Season - Week 16" }, { "date": "Dec 21, 1996", @@ -79856,8 +118311,13 @@ "und": "New York Giants", "sF": "23", "sU": "22", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 39.5, + "pScore": { + "sU": 15.5, + "sF": 24.0 + }, + "week": "1996 Regular Season - Week 17" }, { "date": "Dec 21, 1996", @@ -79867,7 +118327,12 @@ "sF": "14", "sU": "13", "spread": "5", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.5, + "sF": 23.5 + }, + "week": "1996 Regular Season - Week 17" }, { "date": "Dec 22, 1996", @@ -79877,7 +118342,12 @@ "sF": "21", "sU": "24", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "1996 Regular Season - Week 17" }, { "date": "Dec 22, 1996", @@ -79887,7 +118357,12 @@ "sF": "20", "sU": "9", "spread": "5", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 15.75, + "sF": 20.75 + }, + "week": "1996 Regular Season - Week 17" }, { "date": "Dec 22, 1996", @@ -79896,8 +118371,13 @@ "und": "Pittsburgh Steelers", "sF": "18", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 36.0, + "pScore": { + "sU": 15.25, + "sF": 20.75 + }, + "week": "1996 Regular Season - Week 17" }, { "date": "Dec 22, 1996", @@ -79906,8 +118386,13 @@ "und": "Cincinnati Bengals", "sF": "24", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "1996 Regular Season - Week 17" }, { "date": "Dec 22, 1996", @@ -79917,7 +118402,12 @@ "sF": "38", "sU": "10", "spread": "11", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.0, + "sF": 25.0 + }, + "week": "1996 Regular Season - Week 17" }, { "date": "Dec 22, 1996", @@ -79926,8 +118416,13 @@ "und": "Atlanta Falcons", "sF": "19", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 45.0, + "pScore": { + "sU": 18.25, + "sF": 26.75 + }, + "week": "1996 Regular Season - Week 17" }, { "date": "Dec 22, 1996", @@ -79936,8 +118431,13 @@ "und": "New York Jets", "sF": "31", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1996 Regular Season - Week 17" }, { "date": "Dec 22, 1996", @@ -79946,8 +118446,13 @@ "und": "Arizona Cardinals", "sF": "29", "sU": "19", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "1996 Regular Season - Week 17" }, { "date": "Dec 22, 1996", @@ -79956,8 +118461,13 @@ "und": "Chicago Bears", "sF": "34", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "1996 Regular Season - Week 17" }, { "date": "Dec 22, 1996", @@ -79967,7 +118477,12 @@ "sF": "21", "sU": "28", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1996 Regular Season - Week 17" }, { "date": "Dec 22, 1996", @@ -79977,7 +118492,12 @@ "sF": "10", "sU": "37", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1996 Regular Season - Week 17" }, { "date": "Dec 22, 1996", @@ -79986,8 +118506,13 @@ "und": "San Diego Chargers", "sF": "10", "sU": "16", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.5, + "pScore": { + "sU": 19.5, + "sF": 21.0 + }, + "week": "1996 Regular Season - Week 17" }, { "date": "Dec 23, 1996", @@ -79996,8 +118521,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "14", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 44.0, + "pScore": { + "sU": 15.75, + "sF": 28.25 + }, + "week": "1996 Regular Season - Week 17" }, { "date": "Dec 28, 1996", @@ -80006,8 +118536,13 @@ "und": "Jacksonville Jaguars (5)", "sF": "27", "sU": "30", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.0, + "pScore": { + "sU": 14.75, + "sF": 23.25 + }, + "week": "1996 Playoffs" }, { "date": "Dec 28, 1996", @@ -80017,7 +118552,12 @@ "sF": "40", "sU": "15", "spread": "10", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.0, + "sF": 25.0 + }, + "week": "1996 Playoffs" }, { "date": "Dec 29, 1996", @@ -80027,7 +118567,12 @@ "sF": "42", "sU": "14", "spread": "8", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.5, + "sF": 22.5 + }, + "week": "1996 Playoffs" }, { "date": "Dec 29, 1996", @@ -80036,8 +118581,13 @@ "und": "Philadelphia Eagles (5)", "sF": "14", "sU": "0", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 40.0, + "pScore": { + "sU": 14.75, + "sF": 25.25 + }, + "week": "1996 Playoffs" }, { "date": "Jan 4, 1997", @@ -80047,11 +118597,12 @@ "sF": "35", "sU": "14", "spread": "6", - "ou": "49", + "ou": 41.5, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 17.75, + "sF": 23.75 + }, + "week": "1996 Playoffs" }, { "date": "Jan 4, 1997", @@ -80061,7 +118612,12 @@ "sF": "27", "sU": "30", "spread": "14", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 15.5, + "sF": 29.5 + }, + "week": "1996 Playoffs" }, { "date": "Jan 5, 1997", @@ -80071,7 +118627,12 @@ "sF": "28", "sU": "3", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1996 Playoffs" }, { "date": "Jan 5, 1997", @@ -80080,8 +118641,13 @@ "und": "Carolina Panthers (2)", "sF": "17", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.5, + "pScore": { + "sU": 17.0, + "sF": 20.5 + }, + "week": "1996 Playoffs" }, { "date": "Jan 12, 1997", @@ -80091,7 +118657,12 @@ "sF": "30", "sU": "13", "spread": "12", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 13.5, + "sF": 25.5 + }, + "week": "1996 Playoffs" }, { "date": "Jan 12, 1997", @@ -80100,8 +118671,13 @@ "und": "Jacksonville Jaguars (5)", "sF": "20", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "1996 Playoffs" }, { "date": "Jan 26, 1997", @@ -80111,7 +118687,12 @@ "sF": "35", "sU": "21", "spread": "14", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 17.5, + "sF": 31.5 + }, + "week": "1996 Playoffs" }, { "date": "Aug 31, 1997", @@ -80120,8 +118701,13 @@ "und": "Minnesota Vikings", "sF": "13", "sU": "34", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1997 Regular Season - Week 1" }, { "date": "Aug 31, 1997", @@ -80130,8 +118716,13 @@ "und": "Arizona Cardinals", "sF": "24", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.5, + "pScore": { + "sU": 17.5, + "sF": 25.0 + }, + "week": "1997 Regular Season - Week 1" }, { "date": "Aug 31, 1997", @@ -80140,8 +118731,13 @@ "und": "Atlanta Falcons", "sF": "28", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.5, + "pScore": { + "sU": 17.0, + "sF": 24.5 + }, + "week": "1997 Regular Season - Week 1" }, { "date": "Aug 31, 1997", @@ -80151,7 +118747,12 @@ "sF": "16", "sU": "10", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1997 Regular Season - Week 1" }, { "date": "Aug 31, 1997", @@ -80160,8 +118761,13 @@ "und": "San Diego Chargers", "sF": "41", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.5, + "pScore": { + "sU": 18.0, + "sF": 24.5 + }, + "week": "1997 Regular Season - Week 1" }, { "date": "Aug 31, 1997", @@ -80171,7 +118777,12 @@ "sF": "17", "sU": "31", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1997 Regular Season - Week 1" }, { "date": "Aug 31, 1997", @@ -80181,7 +118792,12 @@ "sF": "37", "sU": "7", "spread": "1", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 19.25, + "sF": 20.25 + }, + "week": "1997 Regular Season - Week 1" }, { "date": "Aug 31, 1997", @@ -80190,8 +118806,13 @@ "und": "New Orleans Saints", "sF": "38", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.5, + "pScore": { + "sU": 17.0, + "sF": 21.5 + }, + "week": "1997 Regular Season - Week 1" }, { "date": "Aug 31, 1997", @@ -80201,7 +118822,12 @@ "sF": "21", "sU": "24", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "1997 Regular Season - Week 1" }, { "date": "Aug 31, 1997", @@ -80211,7 +118837,12 @@ "sF": "28", "sU": "27", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1997 Regular Season - Week 1" }, { "date": "Aug 31, 1997", @@ -80220,8 +118851,13 @@ "und": "Kansas City Chiefs", "sF": "19", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "1997 Regular Season - Week 1" }, { "date": "Aug 31, 1997", @@ -80230,8 +118866,13 @@ "und": "New York Jets", "sF": "3", "sU": "41", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "1997 Regular Season - Week 1" }, { "date": "Aug 31, 1997", @@ -80240,8 +118881,13 @@ "und": "Tampa Bay Buccaneers", "sF": "6", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "1997 Regular Season - Week 1" }, { "date": "Aug 31, 1997", @@ -80250,8 +118896,13 @@ "und": "Washington Redskins", "sF": "10", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1997 Regular Season - Week 1" }, { "date": "Sep 1, 1997", @@ -80261,7 +118912,12 @@ "sF": "38", "sU": "24", "spread": "14", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 14.0, + "sF": 28.0 + }, + "week": "1997 Regular Season - Week 1" }, { "date": "Sep 7, 1997", @@ -80270,8 +118926,13 @@ "und": "Atlanta Falcons", "sF": "9", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "1997 Regular Season - Week 2" }, { "date": "Sep 7, 1997", @@ -80280,8 +118941,13 @@ "und": "Baltimore Ravens", "sF": "10", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.0, + "pScore": { + "sU": 22.75, + "sF": 24.25 + }, + "week": "1997 Regular Season - Week 2" }, { "date": "Sep 7, 1997", @@ -80291,7 +118957,12 @@ "sF": "27", "sU": "24", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "1997 Regular Season - Week 2" }, { "date": "Sep 7, 1997", @@ -80301,7 +118972,12 @@ "sF": "17", "sU": "24", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 2" }, { "date": "Sep 7, 1997", @@ -80310,8 +118986,13 @@ "und": "Indianapolis Colts", "sF": "31", "sU": "6", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "1997 Regular Season - Week 2" }, { "date": "Sep 7, 1997", @@ -80320,8 +119001,13 @@ "und": "Tennessee Oilers", "sF": "16", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1997 Regular Season - Week 2" }, { "date": "Sep 7, 1997", @@ -80331,7 +119017,12 @@ "sF": "6", "sU": "20", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1997 Regular Season - Week 2" }, { "date": "Sep 7, 1997", @@ -80340,8 +119031,13 @@ "und": "Buffalo Bills", "sF": "22", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "1997 Regular Season - Week 2" }, { "date": "Sep 7, 1997", @@ -80350,8 +119046,13 @@ "und": "Washington Redskins", "sF": "14", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "1997 Regular Season - Week 2" }, { "date": "Sep 7, 1997", @@ -80361,7 +119062,12 @@ "sF": "15", "sU": "12", "spread": "5", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.75, + "sF": 22.75 + }, + "week": "1997 Regular Season - Week 2" }, { "date": "Sep 7, 1997", @@ -80370,8 +119076,13 @@ "und": "New York Giants", "sF": "40", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.0, + "pScore": { + "sU": 18.25, + "sF": 23.75 + }, + "week": "1997 Regular Season - Week 2" }, { "date": "Sep 7, 1997", @@ -80380,8 +119091,13 @@ "und": "Philadelphia Eagles", "sF": "9", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.0, + "pScore": { + "sU": 17.75, + "sF": 25.25 + }, + "week": "1997 Regular Season - Week 2" }, { "date": "Sep 7, 1997", @@ -80390,8 +119106,13 @@ "und": "Seattle Seahawks", "sF": "35", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.0, + "pScore": { + "sU": 18.75, + "sF": 23.25 + }, + "week": "1997 Regular Season - Week 2" }, { "date": "Sep 7, 1997", @@ -80400,8 +119121,13 @@ "und": "Arizona Cardinals", "sF": "22", "sU": "25", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 41.5, + "pScore": { + "sU": 16.0, + "sF": 25.5 + }, + "week": "1997 Regular Season - Week 2" }, { "date": "Sep 8, 1997", @@ -80410,8 +119136,13 @@ "und": "Kansas City Chiefs", "sF": "27", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 2" }, { "date": "Sep 14, 1997", @@ -80420,8 +119151,13 @@ "und": "Atlanta Falcons", "sF": "36", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1997 Regular Season - Week 3" }, { "date": "Sep 14, 1997", @@ -80430,8 +119166,13 @@ "und": "Detroit Lions", "sF": "7", "sU": "32", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1997 Regular Season - Week 3" }, { "date": "Sep 14, 1997", @@ -80441,7 +119182,12 @@ "sF": "23", "sU": "18", "spread": "11", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.0, + "sF": 26.0 + }, + "week": "1997 Regular Season - Week 3" }, { "date": "Sep 14, 1997", @@ -80450,8 +119196,13 @@ "und": "Buffalo Bills", "sF": "22", "sU": "16", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "1997 Regular Season - Week 3" }, { "date": "Sep 14, 1997", @@ -80460,8 +119211,13 @@ "und": "Tampa Bay Buccaneers", "sF": "14", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.0, + "pScore": { + "sU": 16.75, + "sF": 21.25 + }, + "week": "1997 Regular Season - Week 3" }, { "date": "Sep 14, 1997", @@ -80470,8 +119226,13 @@ "und": "Baltimore Ravens", "sF": "23", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "1997 Regular Season - Week 3" }, { "date": "Sep 14, 1997", @@ -80481,7 +119242,12 @@ "sF": "19", "sU": "13", "spread": "8", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.5, + "sF": 24.5 + }, + "week": "1997 Regular Season - Week 3" }, { "date": "Sep 14, 1997", @@ -80491,7 +119257,12 @@ "sF": "35", "sU": "14", "spread": "13", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 15.0, + "sF": 28.0 + }, + "week": "1997 Regular Season - Week 3" }, { "date": "Sep 14, 1997", @@ -80500,8 +119271,13 @@ "und": "Seattle Seahawks", "sF": "3", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1997 Regular Season - Week 3" }, { "date": "Sep 14, 1997", @@ -80511,7 +119287,12 @@ "sF": "33", "sU": "7", "spread": "8", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 14.25, + "sF": 22.25 + }, + "week": "1997 Regular Season - Week 3" }, { "date": "Sep 14, 1997", @@ -80521,7 +119302,12 @@ "sF": "27", "sU": "24", "spread": "10", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.25, + "sF": 27.25 + }, + "week": "1997 Regular Season - Week 3" }, { "date": "Sep 15, 1997", @@ -80531,7 +119317,12 @@ "sF": "21", "sU": "20", "spread": "9", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 16.25, + "sF": 25.25 + }, + "week": "1997 Regular Season - Week 3" }, { "date": "Sep 21, 1997", @@ -80540,8 +119331,13 @@ "und": "Kansas City Chiefs", "sF": "14", "sU": "35", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.5, + "pScore": { + "sU": 16.5, + "sF": 21.0 + }, + "week": "1997 Regular Season - Week 4" }, { "date": "Sep 21, 1997", @@ -80551,7 +119347,12 @@ "sF": "38", "sU": "32", "spread": "11", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 16.25, + "sF": 27.25 + }, + "week": "1997 Regular Season - Week 4" }, { "date": "Sep 21, 1997", @@ -80561,7 +119362,12 @@ "sF": "31", "sU": "3", "spread": "13", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 16.0, + "sF": 29.0 + }, + "week": "1997 Regular Season - Week 4" }, { "date": "Sep 21, 1997", @@ -80570,8 +119376,13 @@ "und": "New Orleans Saints", "sF": "17", "sU": "35", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.5, + "pScore": { + "sU": 17.0, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 4" }, { "date": "Sep 21, 1997", @@ -80580,8 +119391,13 @@ "und": "Baltimore Ravens", "sF": "10", "sU": "36", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.5, + "pScore": { + "sU": 19.5, + "sF": 24.0 + }, + "week": "1997 Regular Season - Week 4" }, { "date": "Sep 21, 1997", @@ -80591,7 +119407,12 @@ "sF": "37", "sU": "35", "spread": "6", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.75, + "sF": 21.75 + }, + "week": "1997 Regular Season - Week 4" }, { "date": "Sep 21, 1997", @@ -80601,7 +119422,12 @@ "sF": "38", "sU": "20", "spread": "12", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 16.5, + "sF": 28.5 + }, + "week": "1997 Regular Season - Week 4" }, { "date": "Sep 21, 1997", @@ -80611,7 +119437,12 @@ "sF": "34", "sU": "7", "spread": "15", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 11.75, + "sF": 26.75 + }, + "week": "1997 Regular Season - Week 4" }, { "date": "Sep 21, 1997", @@ -80620,8 +119451,13 @@ "und": "San Diego Chargers", "sF": "26", "sU": "22", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "1997 Regular Season - Week 4" }, { "date": "Sep 21, 1997", @@ -80630,8 +119466,13 @@ "und": "New York Giants", "sF": "13", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1997 Regular Season - Week 4" }, { "date": "Sep 21, 1997", @@ -80640,8 +119481,13 @@ "und": "Miami Dolphins", "sF": "31", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "1997 Regular Season - Week 4" }, { "date": "Sep 22, 1997", @@ -80651,7 +119497,12 @@ "sF": "30", "sU": "21", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "1997 Regular Season - Week 4" }, { "date": "Sep 28, 1997", @@ -80661,7 +119512,12 @@ "sF": "29", "sU": "21", "spread": "11", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 15.5, + "sF": 26.5 + }, + "week": "1997 Regular Season - Week 5" }, { "date": "Sep 28, 1997", @@ -80670,8 +119526,13 @@ "und": "Detroit Lions", "sF": "15", "sU": "26", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.5, + "pScore": { + "sU": 18.5, + "sF": 26.0 + }, + "week": "1997 Regular Season - Week 5" }, { "date": "Sep 28, 1997", @@ -80681,7 +119542,12 @@ "sF": "14", "sU": "9", "spread": "5", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 17.25, + "sF": 22.25 + }, + "week": "1997 Regular Season - Week 5" }, { "date": "Sep 28, 1997", @@ -80691,7 +119557,12 @@ "sF": "37", "sU": "24", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1997 Regular Season - Week 5" }, { "date": "Sep 28, 1997", @@ -80700,8 +119571,13 @@ "und": "Arizona Cardinals", "sF": "19", "sU": "18", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.0, + "pScore": { + "sU": 15.25, + "sF": 22.75 + }, + "week": "1997 Regular Season - Week 5" }, { "date": "Sep 28, 1997", @@ -80711,7 +119587,12 @@ "sF": "24", "sU": "12", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "1997 Regular Season - Week 5" }, { "date": "Sep 28, 1997", @@ -80721,7 +119602,12 @@ "sF": "14", "sU": "31", "spread": "4", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 20.75, + "sF": 24.75 + }, + "week": "1997 Regular Season - Week 5" }, { "date": "Sep 28, 1997", @@ -80731,7 +119617,12 @@ "sF": "27", "sU": "3", "spread": "14", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 13.75, + "sF": 27.75 + }, + "week": "1997 Regular Season - Week 5" }, { "date": "Sep 28, 1997", @@ -80740,8 +119631,13 @@ "und": "Seattle Seahawks", "sF": "20", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 5" }, { "date": "Sep 28, 1997", @@ -80751,7 +119647,12 @@ "sF": "35", "sU": "17", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "1997 Regular Season - Week 5" }, { "date": "Sep 28, 1997", @@ -80760,8 +119661,13 @@ "und": "Baltimore Ravens", "sF": "21", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.5, + "pScore": { + "sU": 21.5, + "sF": 23.0 + }, + "week": "1997 Regular Season - Week 5" }, { "date": "Sep 28, 1997", @@ -80770,8 +119676,13 @@ "und": "Philadelphia Eagles", "sF": "28", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1997 Regular Season - Week 5" }, { "date": "Sep 29, 1997", @@ -80780,8 +119691,13 @@ "und": "Carolina Panthers", "sF": "34", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1997 Regular Season - Week 5" }, { "date": "Oct 5, 1997", @@ -80791,7 +119707,12 @@ "sF": "42", "sU": "34", "spread": "2", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.75, + "sF": 22.75 + }, + "week": "1997 Regular Season - Week 6" }, { "date": "Oct 5, 1997", @@ -80800,8 +119721,13 @@ "und": "Detroit Lions", "sF": "22", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1997 Regular Season - Week 6" }, { "date": "Oct 5, 1997", @@ -80811,7 +119737,12 @@ "sF": "21", "sU": "16", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "1997 Regular Season - Week 6" }, { "date": "Oct 5, 1997", @@ -80821,7 +119752,12 @@ "sF": "21", "sU": "13", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "1997 Regular Season - Week 6" }, { "date": "Oct 5, 1997", @@ -80831,7 +119767,12 @@ "sF": "17", "sU": "14", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1997 Regular Season - Week 6" }, { "date": "Oct 5, 1997", @@ -80840,8 +119781,13 @@ "und": "New York Giants", "sF": "17", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.0, + "pScore": { + "sU": 15.75, + "sF": 23.25 + }, + "week": "1997 Regular Season - Week 6" }, { "date": "Oct 5, 1997", @@ -80850,8 +119796,13 @@ "und": "Washington Redskins", "sF": "24", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 6" }, { "date": "Oct 5, 1997", @@ -80861,7 +119812,12 @@ "sF": "20", "sU": "19", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1997 Regular Season - Week 6" }, { "date": "Oct 5, 1997", @@ -80871,7 +119827,12 @@ "sF": "16", "sU": "12", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 6" }, { "date": "Oct 5, 1997", @@ -80881,7 +119842,12 @@ "sF": "10", "sU": "25", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "1997 Regular Season - Week 6" }, { "date": "Oct 5, 1997", @@ -80890,8 +119856,13 @@ "und": "Tennessee Oilers", "sF": "16", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.5, + "pScore": { + "sU": 18.5, + "sF": 24.0 + }, + "week": "1997 Regular Season - Week 6" }, { "date": "Oct 5, 1997", @@ -80901,7 +119872,12 @@ "sF": "17", "sU": "20", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1997 Regular Season - Week 6" }, { "date": "Oct 6, 1997", @@ -80911,7 +119887,12 @@ "sF": "34", "sU": "13", "spread": "4", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.5, + "sF": 24.5 + }, + "week": "1997 Regular Season - Week 6" }, { "date": "Oct 12, 1997", @@ -80920,8 +119901,13 @@ "und": "Chicago Bears", "sF": "24", "sU": "23", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 41.0, + "pScore": { + "sU": 14.75, + "sF": 26.25 + }, + "week": "1997 Regular Season - Week 7" }, { "date": "Oct 12, 1997", @@ -80931,7 +119917,12 @@ "sF": "38", "sU": "21", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 7" }, { "date": "Oct 12, 1997", @@ -80941,7 +119932,12 @@ "sF": "33", "sU": "6", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "1997 Regular Season - Week 7" }, { "date": "Oct 12, 1997", @@ -80951,7 +119947,12 @@ "sF": "17", "sU": "23", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1997 Regular Season - Week 7" }, { "date": "Oct 12, 1997", @@ -80960,8 +119961,13 @@ "und": "Miami Dolphins", "sF": "20", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "1997 Regular Season - Week 7" }, { "date": "Oct 12, 1997", @@ -80970,8 +119976,13 @@ "und": "Detroit Lions", "sF": "9", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.0, + "pScore": { + "sU": 16.75, + "sF": 22.25 + }, + "week": "1997 Regular Season - Week 7" }, { "date": "Oct 12, 1997", @@ -80980,8 +119991,13 @@ "und": "Cincinnati Bengals", "sF": "30", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 7" }, { "date": "Oct 12, 1997", @@ -80990,8 +120006,13 @@ "und": "New York Giants", "sF": "13", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "1997 Regular Season - Week 7" }, { "date": "Oct 12, 1997", @@ -81001,7 +120022,12 @@ "sF": "21", "sU": "14", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 7" }, { "date": "Oct 12, 1997", @@ -81011,7 +120037,12 @@ "sF": "30", "sU": "10", "spread": "14", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 13.5, + "sF": 27.5 + }, + "week": "1997 Regular Season - Week 7" }, { "date": "Oct 12, 1997", @@ -81020,8 +120051,13 @@ "und": "Indianapolis Colts", "sF": "24", "sU": "22", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 41.0, + "pScore": { + "sU": 15.25, + "sF": 25.75 + }, + "week": "1997 Regular Season - Week 7" }, { "date": "Oct 13, 1997", @@ -81031,7 +120067,12 @@ "sF": "16", "sU": "21", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "1997 Regular Season - Week 7" }, { "date": "Oct 16, 1997", @@ -81040,8 +120081,13 @@ "und": "San Diego Chargers", "sF": "31", "sU": "3", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.0, + "pScore": { + "sU": 17.75, + "sF": 23.25 + }, + "week": "1997 Regular Season - Week 8" }, { "date": "Oct 19, 1997", @@ -81050,8 +120096,13 @@ "und": "Atlanta Falcons", "sF": "35", "sU": "28", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 40.5, + "pScore": { + "sU": 15.0, + "sF": 25.5 + }, + "week": "1997 Regular Season - Week 8" }, { "date": "Oct 19, 1997", @@ -81060,8 +120111,13 @@ "und": "Jacksonville Jaguars", "sF": "26", "sU": "22", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "1997 Regular Season - Week 8" }, { "date": "Oct 19, 1997", @@ -81070,8 +120126,13 @@ "und": "New Orleans Saints", "sF": "13", "sU": "0", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.0, + "pScore": { + "sU": 16.25, + "sF": 20.75 + }, + "week": "1997 Regular Season - Week 8" }, { "date": "Oct 19, 1997", @@ -81081,7 +120142,12 @@ "sF": "19", "sU": "24", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "1997 Regular Season - Week 8" }, { "date": "Oct 19, 1997", @@ -81090,8 +120156,13 @@ "und": "Arizona Cardinals", "sF": "13", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.0, + "pScore": { + "sU": 14.75, + "sF": 23.25 + }, + "week": "1997 Regular Season - Week 8" }, { "date": "Oct 19, 1997", @@ -81100,8 +120171,13 @@ "und": "St Louis Rams", "sF": "17", "sU": "9", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.0, + "pScore": { + "sU": 19.25, + "sF": 20.75 + }, + "week": "1997 Regular Season - Week 8" }, { "date": "Oct 19, 1997", @@ -81111,7 +120187,12 @@ "sF": "14", "sU": "28", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1997 Regular Season - Week 8" }, { "date": "Oct 19, 1997", @@ -81121,7 +120202,12 @@ "sF": "24", "sU": "13", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 8" }, { "date": "Oct 19, 1997", @@ -81131,7 +120217,12 @@ "sF": "26", "sU": "10", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "1997 Regular Season - Week 8" }, { "date": "Oct 19, 1997", @@ -81140,8 +120231,13 @@ "und": "New York Giants", "sF": "20", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "1997 Regular Season - Week 8" }, { "date": "Oct 19, 1997", @@ -81150,8 +120246,13 @@ "und": "Oakland Raiders", "sF": "25", "sU": "28", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.0, + "pScore": { + "sU": 20.25, + "sF": 25.75 + }, + "week": "1997 Regular Season - Week 8" }, { "date": "Oct 20, 1997", @@ -81160,8 +120261,13 @@ "und": "Indianapolis Colts", "sF": "9", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.5, + "pScore": { + "sU": 18.0, + "sF": 20.5 + }, + "week": "1997 Regular Season - Week 8" }, { "date": "Oct 26, 1997", @@ -81171,7 +120277,12 @@ "sF": "23", "sU": "20", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "1997 Regular Season - Week 9" }, { "date": "Oct 26, 1997", @@ -81180,8 +120291,13 @@ "und": "New Orleans Saints", "sF": "23", "sU": "0", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 39.0, + "pScore": { + "sU": 12.75, + "sF": 26.25 + }, + "week": "1997 Regular Season - Week 9" }, { "date": "Oct 26, 1997", @@ -81191,7 +120307,12 @@ "sF": "29", "sU": "27", "spread": "6", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.25, + "sF": 23.25 + }, + "week": "1997 Regular Season - Week 9" }, { "date": "Oct 26, 1997", @@ -81201,7 +120322,12 @@ "sF": "12", "sU": "13", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1997 Regular Season - Week 9" }, { "date": "Oct 26, 1997", @@ -81210,8 +120336,13 @@ "und": "St Louis Rams", "sF": "28", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.0, + "pScore": { + "sU": 16.75, + "sF": 22.25 + }, + "week": "1997 Regular Season - Week 9" }, { "date": "Oct 26, 1997", @@ -81220,8 +120351,13 @@ "und": "Baltimore Ravens", "sF": "17", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "1997 Regular Season - Week 9" }, { "date": "Oct 26, 1997", @@ -81231,7 +120367,12 @@ "sF": "14", "sU": "41", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1997 Regular Season - Week 9" }, { "date": "Oct 26, 1997", @@ -81241,7 +120382,12 @@ "sF": "23", "sU": "17", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "1997 Regular Season - Week 9" }, { "date": "Oct 26, 1997", @@ -81250,8 +120396,13 @@ "und": "Indianapolis Colts", "sF": "35", "sU": "19", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "1997 Regular Season - Week 9" }, { "date": "Oct 26, 1997", @@ -81260,8 +120411,13 @@ "und": "Oakland Raiders", "sF": "45", "sU": "34", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.0, + "pScore": { + "sU": 21.25, + "sF": 22.75 + }, + "week": "1997 Regular Season - Week 9" }, { "date": "Oct 26, 1997", @@ -81270,8 +120426,13 @@ "und": "Minnesota Vikings", "sF": "6", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1997 Regular Season - Week 9" }, { "date": "Oct 26, 1997", @@ -81280,8 +120441,13 @@ "und": "Atlanta Falcons", "sF": "21", "sU": "12", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.0, + "pScore": { + "sU": 14.75, + "sF": 23.25 + }, + "week": "1997 Regular Season - Week 9" }, { "date": "Oct 27, 1997", @@ -81290,8 +120456,13 @@ "und": "Chicago Bears", "sF": "33", "sU": "36", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 40.0, + "pScore": { + "sU": 15.25, + "sF": 24.75 + }, + "week": "1997 Regular Season - Week 9" }, { "date": "Oct 27, 1997", @@ -81301,7 +120472,12 @@ "sF": "10", "sU": "28", "spread": "1", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 22.0, + "sF": 23.0 + }, + "week": "1997 Regular Season - Week 9" }, { "date": "Nov 2, 1997", @@ -81311,7 +120487,12 @@ "sF": "34", "sU": "31", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "1997 Regular Season - Week 10" }, { "date": "Nov 2, 1997", @@ -81321,7 +120502,12 @@ "sF": "9", "sU": "6", "spread": "2", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.25, + "sF": 21.25 + }, + "week": "1997 Regular Season - Week 10" }, { "date": "Nov 2, 1997", @@ -81330,8 +120516,13 @@ "und": "Oakland Raiders", "sF": "38", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1997 Regular Season - Week 10" }, { "date": "Nov 2, 1997", @@ -81341,7 +120532,12 @@ "sF": "31", "sU": "8", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1997 Regular Season - Week 10" }, { "date": "Nov 2, 1997", @@ -81350,8 +120546,13 @@ "und": "Cincinnati Bengals", "sF": "31", "sU": "38", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.0, + "pScore": { + "sU": 20.75, + "sF": 22.25 + }, + "week": "1997 Regular Season - Week 10" }, { "date": "Nov 2, 1997", @@ -81360,8 +120561,13 @@ "und": "Indianapolis Colts", "sF": "31", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.0, + "pScore": { + "sU": 16.25, + "sF": 20.75 + }, + "week": "1997 Regular Season - Week 10" }, { "date": "Nov 2, 1997", @@ -81371,7 +120577,12 @@ "sF": "23", "sU": "18", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 10" }, { "date": "Nov 2, 1997", @@ -81380,8 +120591,13 @@ "und": "Baltimore Ravens", "sF": "19", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.0, + "pScore": { + "sU": 20.25, + "sF": 25.75 + }, + "week": "1997 Regular Season - Week 10" }, { "date": "Nov 2, 1997", @@ -81390,8 +120606,13 @@ "und": "Arizona Cardinals", "sF": "21", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.0, + "pScore": { + "sU": 16.25, + "sF": 20.75 + }, + "week": "1997 Regular Season - Week 10" }, { "date": "Nov 2, 1997", @@ -81400,8 +120621,13 @@ "und": "Seattle Seahawks", "sF": "30", "sU": "27", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.0, + "pScore": { + "sU": 17.25, + "sF": 26.75 + }, + "week": "1997 Regular Season - Week 10" }, { "date": "Nov 2, 1997", @@ -81411,7 +120637,12 @@ "sF": "17", "sU": "10", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1997 Regular Season - Week 10" }, { "date": "Nov 2, 1997", @@ -81421,7 +120652,12 @@ "sF": "30", "sU": "24", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "1997 Regular Season - Week 10" }, { "date": "Nov 2, 1997", @@ -81431,7 +120667,12 @@ "sF": "20", "sU": "10", "spread": "10", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.5, + "sF": 26.5 + }, + "week": "1997 Regular Season - Week 10" }, { "date": "Nov 3, 1997", @@ -81441,7 +120682,12 @@ "sF": "13", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1997 Regular Season - Week 10" }, { "date": "Nov 9, 1997", @@ -81451,7 +120697,12 @@ "sF": "31", "sU": "10", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1997 Regular Season - Week 11" }, { "date": "Nov 9, 1997", @@ -81460,8 +120711,13 @@ "und": "Arizona Cardinals", "sF": "24", "sU": "6", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.5, + "pScore": { + "sU": 15.0, + "sF": 23.5 + }, + "week": "1997 Regular Season - Week 11" }, { "date": "Nov 9, 1997", @@ -81471,7 +120727,12 @@ "sF": "17", "sU": "7", "spread": "15", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 13.75, + "sF": 28.75 + }, + "week": "1997 Regular Season - Week 11" }, { "date": "Nov 9, 1997", @@ -81480,8 +120741,13 @@ "und": "Indianapolis Colts", "sF": "28", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "1997 Regular Season - Week 11" }, { "date": "Nov 9, 1997", @@ -81491,7 +120757,12 @@ "sF": "24", "sU": "10", "spread": "5", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.5, + "sF": 23.5 + }, + "week": "1997 Regular Season - Week 11" }, { "date": "Nov 9, 1997", @@ -81500,8 +120771,13 @@ "und": "New York Jets", "sF": "24", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1997 Regular Season - Week 11" }, { "date": "Nov 9, 1997", @@ -81511,7 +120787,12 @@ "sF": "29", "sU": "22", "spread": "9", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 16.75, + "sF": 25.75 + }, + "week": "1997 Regular Season - Week 11" }, { "date": "Nov 9, 1997", @@ -81521,7 +120802,12 @@ "sF": "30", "sU": "7", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 11" }, { "date": "Nov 9, 1997", @@ -81531,7 +120817,12 @@ "sF": "31", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1997 Regular Season - Week 11" }, { "date": "Nov 9, 1997", @@ -81541,7 +120832,12 @@ "sF": "34", "sU": "0", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "1997 Regular Season - Week 11" }, { "date": "Nov 9, 1997", @@ -81550,8 +120846,13 @@ "und": "New Orleans Saints", "sF": "10", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "1997 Regular Season - Week 11" }, { "date": "Nov 9, 1997", @@ -81561,7 +120862,12 @@ "sF": "37", "sU": "31", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1997 Regular Season - Week 11" }, { "date": "Nov 9, 1997", @@ -81570,8 +120876,13 @@ "und": "New York Giants", "sF": "10", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "1997 Regular Season - Week 11" }, { "date": "Nov 9, 1997", @@ -81580,8 +120891,13 @@ "und": "Baltimore Ravens", "sF": "37", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1997 Regular Season - Week 11" }, { "date": "Nov 10, 1997", @@ -81590,8 +120906,13 @@ "und": "Philadelphia Eagles", "sF": "24", "sU": "12", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "1997 Regular Season - Week 11" }, { "date": "Nov 16, 1997", @@ -81600,8 +120921,13 @@ "und": "Philadelphia Eagles", "sF": "10", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1997 Regular Season - Week 12" }, { "date": "Nov 16, 1997", @@ -81611,7 +120937,12 @@ "sF": "15", "sU": "38", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "1997 Regular Season - Week 12" }, { "date": "Nov 16, 1997", @@ -81621,7 +120952,12 @@ "sF": "38", "sU": "41", "spread": "13", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 13.25, + "sF": 26.25 + }, + "week": "1997 Regular Season - Week 12" }, { "date": "Nov 16, 1997", @@ -81631,7 +120967,12 @@ "sF": "17", "sU": "9", "spread": "6", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.25, + "sF": 24.25 + }, + "week": "1997 Regular Season - Week 12" }, { "date": "Nov 16, 1997", @@ -81641,7 +120982,12 @@ "sF": "22", "sU": "24", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1997 Regular Season - Week 12" }, { "date": "Nov 16, 1997", @@ -81651,7 +120997,12 @@ "sF": "17", "sU": "20", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 12" }, { "date": "Nov 16, 1997", @@ -81660,8 +121011,13 @@ "und": "Arizona Cardinals", "sF": "19", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.0, + "pScore": { + "sU": 15.75, + "sF": 21.25 + }, + "week": "1997 Regular Season - Week 12" }, { "date": "Nov 16, 1997", @@ -81670,8 +121026,13 @@ "und": "Cincinnati Bengals", "sF": "20", "sU": "3", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "1997 Regular Season - Week 12" }, { "date": "Nov 16, 1997", @@ -81680,8 +121041,13 @@ "und": "Atlanta Falcons", "sF": "21", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "1997 Regular Season - Week 12" }, { "date": "Nov 16, 1997", @@ -81691,7 +121057,12 @@ "sF": "7", "sU": "27", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "1997 Regular Season - Week 12" }, { "date": "Nov 16, 1997", @@ -81701,7 +121072,12 @@ "sF": "23", "sU": "15", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1997 Regular Season - Week 12" }, { "date": "Nov 16, 1997", @@ -81710,8 +121086,13 @@ "und": "Washington Redskins", "sF": "17", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.5, + "pScore": { + "sU": 16.5, + "sF": 22.0 + }, + "week": "1997 Regular Season - Week 12" }, { "date": "Nov 16, 1997", @@ -81721,7 +121102,12 @@ "sF": "27", "sU": "19", "spread": "10", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 14.25, + "sF": 24.25 + }, + "week": "1997 Regular Season - Week 12" }, { "date": "Nov 17, 1997", @@ -81731,7 +121117,12 @@ "sF": "30", "sU": "13", "spread": "6", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 16.25, + "sF": 22.25 + }, + "week": "1997 Regular Season - Week 12" }, { "date": "Nov 23, 1997", @@ -81740,8 +121131,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.0, + "pScore": { + "sU": 16.75, + "sF": 21.25 + }, + "week": "1997 Regular Season - Week 13" }, { "date": "Nov 23, 1997", @@ -81751,7 +121147,12 @@ "sF": "13", "sU": "16", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1997 Regular Season - Week 13" }, { "date": "Nov 23, 1997", @@ -81760,8 +121161,13 @@ "und": "Chicago Bears", "sF": "7", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 36.5, + "pScore": { + "sU": 15.5, + "sF": 21.0 + }, + "week": "1997 Regular Season - Week 13" }, { "date": "Nov 23, 1997", @@ -81770,8 +121176,13 @@ "und": "Indianapolis Colts", "sF": "32", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 42.5, + "pScore": { + "sU": 17.0, + "sF": 25.5 + }, + "week": "1997 Regular Season - Week 13" }, { "date": "Nov 23, 1997", @@ -81781,7 +121192,12 @@ "sF": "45", "sU": "17", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 13" }, { "date": "Nov 23, 1997", @@ -81791,7 +121207,12 @@ "sF": "27", "sU": "24", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "1997 Regular Season - Week 13" }, { "date": "Nov 23, 1997", @@ -81801,7 +121222,12 @@ "sF": "23", "sU": "21", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "1997 Regular Season - Week 13" }, { "date": "Nov 23, 1997", @@ -81811,7 +121237,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1997 Regular Season - Week 13" }, { "date": "Nov 23, 1997", @@ -81820,8 +121251,13 @@ "und": "Buffalo Bills", "sF": "31", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1997 Regular Season - Week 13" }, { "date": "Nov 23, 1997", @@ -81831,7 +121267,12 @@ "sF": "26", "sU": "31", "spread": "6", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.25, + "sF": 23.25 + }, + "week": "1997 Regular Season - Week 13" }, { "date": "Nov 23, 1997", @@ -81841,7 +121282,12 @@ "sF": "17", "sU": "10", "spread": "14", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 13.0, + "sF": 27.0 + }, + "week": "1997 Regular Season - Week 13" }, { "date": "Nov 23, 1997", @@ -81851,7 +121297,12 @@ "sF": "14", "sU": "19", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1997 Regular Season - Week 13" }, { "date": "Nov 23, 1997", @@ -81861,7 +121312,12 @@ "sF": "16", "sU": "10", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1997 Regular Season - Week 13" }, { "date": "Nov 23, 1997", @@ -81870,8 +121326,13 @@ "und": "New York Giants", "sF": "7", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 36.0, + "pScore": { + "sU": 15.25, + "sF": 20.75 + }, + "week": "1997 Regular Season - Week 13" }, { "date": "Nov 24, 1997", @@ -81880,8 +121341,13 @@ "und": "Oakland Raiders", "sF": "31", "sU": "3", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 45.5, + "pScore": { + "sU": 18.5, + "sF": 27.0 + }, + "week": "1997 Regular Season - Week 13" }, { "date": "Nov 27, 1997", @@ -81891,7 +121357,12 @@ "sF": "55", "sU": "20", "spread": "8", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.5, + "sF": 25.5 + }, + "week": "1997 Regular Season - Week 14" }, { "date": "Nov 27, 1997", @@ -81900,8 +121371,13 @@ "und": "Tennessee Oilers", "sF": "14", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.5, + "pScore": { + "sU": 16.0, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 14" }, { "date": "Nov 30, 1997", @@ -81910,8 +121386,13 @@ "und": "Buffalo Bills", "sF": "10", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.5, + "pScore": { + "sU": 18.0, + "sF": 20.5 + }, + "week": "1997 Regular Season - Week 14" }, { "date": "Nov 30, 1997", @@ -81921,7 +121402,12 @@ "sF": "13", "sU": "16", "spread": "9", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 13.5, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 14" }, { "date": "Nov 30, 1997", @@ -81931,7 +121417,12 @@ "sF": "29", "sU": "27", "spread": "8", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 17.75, + "sF": 25.75 + }, + "week": "1997 Regular Season - Week 14" }, { "date": "Nov 30, 1997", @@ -81940,8 +121431,13 @@ "und": "Kansas City Chiefs", "sF": "9", "sU": "44", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.0, + "pScore": { + "sU": 16.25, + "sF": 20.75 + }, + "week": "1997 Regular Season - Week 14" }, { "date": "Nov 30, 1997", @@ -81950,8 +121446,13 @@ "und": "Indianapolis Colts", "sF": "20", "sU": "17", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 40.0, + "pScore": { + "sU": 14.25, + "sF": 25.75 + }, + "week": "1997 Regular Season - Week 14" }, { "date": "Nov 30, 1997", @@ -81961,7 +121462,12 @@ "sF": "44", "sU": "42", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "1997 Regular Season - Week 14" }, { "date": "Nov 30, 1997", @@ -81970,8 +121476,13 @@ "und": "St Louis Rams", "sF": "20", "sU": "23", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 36.5, + "pScore": { + "sU": 14.0, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 14" }, { "date": "Nov 30, 1997", @@ -81980,8 +121491,13 @@ "und": "Arizona Cardinals", "sF": "26", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "1997 Regular Season - Week 14" }, { "date": "Nov 30, 1997", @@ -81991,7 +121507,12 @@ "sF": "8", "sU": "20", "spread": "1", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 17.0, + "sF": 18.0 + }, + "week": "1997 Regular Season - Week 14" }, { "date": "Nov 30, 1997", @@ -82000,8 +121521,13 @@ "und": "Oakland Raiders", "sF": "34", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "1997 Regular Season - Week 14" }, { "date": "Nov 30, 1997", @@ -82011,7 +121537,12 @@ "sF": "17", "sU": "24", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "1997 Regular Season - Week 14" }, { "date": "Nov 30, 1997", @@ -82020,8 +121551,13 @@ "und": "San Diego Chargers", "sF": "38", "sU": "28", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.5, + "pScore": { + "sU": 17.5, + "sF": 26.0 + }, + "week": "1997 Regular Season - Week 14" }, { "date": "Dec 1, 1997", @@ -82031,7 +121567,12 @@ "sF": "27", "sU": "11", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1997 Regular Season - Week 14" }, { "date": "Dec 4, 1997", @@ -82041,7 +121582,12 @@ "sF": "14", "sU": "41", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1997 Regular Season - Week 15" }, { "date": "Dec 7, 1997", @@ -82051,7 +121597,12 @@ "sF": "31", "sU": "24", "spread": "1", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 22.25, + "sF": 23.25 + }, + "week": "1997 Regular Season - Week 15" }, { "date": "Dec 7, 1997", @@ -82060,8 +121611,13 @@ "und": "Chicago Bears", "sF": "3", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.0, + "pScore": { + "sU": 17.75, + "sF": 19.25 + }, + "week": "1997 Regular Season - Week 15" }, { "date": "Dec 7, 1997", @@ -82070,8 +121626,13 @@ "und": "New England Patriots", "sF": "20", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "1997 Regular Season - Week 15" }, { "date": "Dec 7, 1997", @@ -82081,7 +121642,12 @@ "sF": "30", "sU": "0", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "1997 Regular Season - Week 15" }, { "date": "Dec 7, 1997", @@ -82090,8 +121656,13 @@ "und": "St Louis Rams", "sF": "27", "sU": "34", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.0, + "pScore": { + "sU": 17.75, + "sF": 19.25 + }, + "week": "1997 Regular Season - Week 15" }, { "date": "Dec 7, 1997", @@ -82101,7 +121672,12 @@ "sF": "21", "sU": "31", "spread": "4", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 15.75, + "sF": 19.75 + }, + "week": "1997 Regular Season - Week 15" }, { "date": "Dec 7, 1997", @@ -82111,7 +121687,12 @@ "sF": "35", "sU": "24", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "1997 Regular Season - Week 15" }, { "date": "Dec 7, 1997", @@ -82121,7 +121702,12 @@ "sF": "17", "sU": "6", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1997 Regular Season - Week 15" }, { "date": "Dec 7, 1997", @@ -82130,8 +121716,13 @@ "und": "Arizona Cardinals", "sF": "38", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1997 Regular Season - Week 15" }, { "date": "Dec 7, 1997", @@ -82141,7 +121732,12 @@ "sF": "14", "sU": "22", "spread": "8", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.5, + "sF": 24.5 + }, + "week": "1997 Regular Season - Week 15" }, { "date": "Dec 7, 1997", @@ -82151,7 +121747,12 @@ "sF": "14", "sU": "3", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "1997 Regular Season - Week 15" }, { "date": "Dec 7, 1997", @@ -82161,7 +121762,12 @@ "sF": "28", "sU": "17", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1997 Regular Season - Week 15" }, { "date": "Dec 7, 1997", @@ -82170,8 +121776,13 @@ "und": "Detroit Lions", "sF": "33", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "1997 Regular Season - Week 15" }, { "date": "Dec 8, 1997", @@ -82180,8 +121791,13 @@ "und": "Carolina Panthers", "sF": "13", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.5, + "pScore": { + "sU": 15.0, + "sF": 21.5 + }, + "week": "1997 Regular Season - Week 15" }, { "date": "Dec 13, 1997", @@ -82191,7 +121807,12 @@ "sF": "30", "sU": "10", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "1997 Regular Season - Week 16" }, { "date": "Dec 13, 1997", @@ -82200,8 +121821,13 @@ "und": "Pittsburgh Steelers", "sF": "21", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1997 Regular Season - Week 16" }, { "date": "Dec 14, 1997", @@ -82211,7 +121837,12 @@ "sF": "20", "sU": "17", "spread": "2", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.25, + "sF": 22.25 + }, + "week": "1997 Regular Season - Week 16" }, { "date": "Dec 14, 1997", @@ -82221,7 +121852,12 @@ "sF": "20", "sU": "14", "spread": "5", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 16.75, + "sF": 21.75 + }, + "week": "1997 Regular Season - Week 16" }, { "date": "Dec 14, 1997", @@ -82230,8 +121866,13 @@ "und": "Dallas Cowboys", "sF": "31", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 16" }, { "date": "Dec 14, 1997", @@ -82241,7 +121882,12 @@ "sF": "0", "sU": "41", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 16" }, { "date": "Dec 14, 1997", @@ -82250,8 +121896,13 @@ "und": "Detroit Lions", "sF": "13", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "1997 Regular Season - Week 16" }, { "date": "Dec 14, 1997", @@ -82260,8 +121911,13 @@ "und": "New York Jets", "sF": "0", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1997 Regular Season - Week 16" }, { "date": "Dec 14, 1997", @@ -82271,7 +121927,12 @@ "sF": "31", "sU": "10", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 16" }, { "date": "Dec 14, 1997", @@ -82281,7 +121942,12 @@ "sF": "27", "sU": "10", "spread": "2", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.25, + "sF": 20.25 + }, + "week": "1997 Regular Season - Week 16" }, { "date": "Dec 14, 1997", @@ -82290,8 +121956,13 @@ "und": "Seattle Seahawks", "sF": "21", "sU": "22", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.0, + "pScore": { + "sU": 22.25, + "sF": 23.75 + }, + "week": "1997 Regular Season - Week 16" }, { "date": "Dec 14, 1997", @@ -82300,8 +121971,13 @@ "und": "San Diego Chargers", "sF": "29", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 41.0, + "pScore": { + "sU": 15.75, + "sF": 25.25 + }, + "week": "1997 Regular Season - Week 16" }, { "date": "Dec 14, 1997", @@ -82311,7 +121987,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1997 Regular Season - Week 16" }, { "date": "Dec 15, 1997", @@ -82321,7 +122002,12 @@ "sF": "34", "sU": "17", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1997 Regular Season - Week 16" }, { "date": "Dec 20, 1997", @@ -82331,7 +122017,12 @@ "sF": "31", "sU": "21", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "1997 Regular Season - Week 17" }, { "date": "Dec 20, 1997", @@ -82341,7 +122032,12 @@ "sF": "18", "sU": "30", "spread": "5", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.5, + "sF": 21.5 + }, + "week": "1997 Regular Season - Week 17" }, { "date": "Dec 21, 1997", @@ -82351,7 +122047,12 @@ "sF": "16", "sU": "14", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "1997 Regular Season - Week 17" }, { "date": "Dec 21, 1997", @@ -82360,8 +122061,13 @@ "und": "New York Giants", "sF": "7", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "1997 Regular Season - Week 17" }, { "date": "Dec 21, 1997", @@ -82371,7 +122077,12 @@ "sF": "25", "sU": "13", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1997 Regular Season - Week 17" }, { "date": "Dec 21, 1997", @@ -82380,8 +122091,13 @@ "und": "Indianapolis Colts", "sF": "39", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "1997 Regular Season - Week 17" }, { "date": "Dec 21, 1997", @@ -82390,8 +122106,13 @@ "und": "Chicago Bears", "sF": "31", "sU": "15", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.5, + "pScore": { + "sU": 14.5, + "sF": 22.0 + }, + "week": "1997 Regular Season - Week 17" }, { "date": "Dec 21, 1997", @@ -82400,8 +122121,13 @@ "und": "Tennessee Oilers", "sF": "6", "sU": "16", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.5, + "pScore": { + "sU": 19.0, + "sF": 20.5 + }, + "week": "1997 Regular Season - Week 17" }, { "date": "Dec 21, 1997", @@ -82410,8 +122136,13 @@ "und": "Philadelphia Eagles", "sF": "35", "sU": "32", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "1997 Regular Season - Week 17" }, { "date": "Dec 21, 1997", @@ -82420,8 +122151,13 @@ "und": "Arizona Cardinals", "sF": "26", "sU": "29", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.5, + "pScore": { + "sU": 20.5, + "sF": 22.0 + }, + "week": "1997 Regular Season - Week 17" }, { "date": "Dec 21, 1997", @@ -82431,7 +122167,12 @@ "sF": "38", "sU": "3", "spread": "13", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 14.25, + "sF": 27.25 + }, + "week": "1997 Regular Season - Week 17" }, { "date": "Dec 21, 1997", @@ -82440,8 +122181,13 @@ "und": "New York Jets", "sF": "13", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "1997 Regular Season - Week 17" }, { "date": "Dec 21, 1997", @@ -82450,8 +122196,13 @@ "und": "Oakland Raiders", "sF": "20", "sU": "9", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "1997 Regular Season - Week 17" }, { "date": "Dec 21, 1997", @@ -82460,8 +122211,13 @@ "und": "Seattle Seahawks", "sF": "9", "sU": "38", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "1997 Regular Season - Week 17" }, { "date": "Dec 22, 1997", @@ -82471,7 +122227,12 @@ "sF": "12", "sU": "14", "spread": "2", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.25, + "sF": 23.25 + }, + "week": "1997 Regular Season - Week 17" }, { "date": "Dec 27, 1997", @@ -82480,8 +122241,13 @@ "und": "Minnesota Vikings (6)", "sF": "22", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.0, + "pScore": { + "sU": 16.75, + "sF": 21.25 + }, + "week": "1997 Playoffs" }, { "date": "Dec 27, 1997", @@ -82491,7 +122257,12 @@ "sF": "42", "sU": "17", "spread": "8", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 18.75, + "sF": 26.75 + }, + "week": "1997 Playoffs" }, { "date": "Dec 28, 1997", @@ -82501,7 +122272,12 @@ "sF": "17", "sU": "3", "spread": "5", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.25, + "sF": 23.25 + }, + "week": "1997 Playoffs" }, { "date": "Dec 28, 1997", @@ -82511,7 +122287,12 @@ "sF": "20", "sU": "10", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "1997 Playoffs" }, { "date": "Jan 3, 1998", @@ -82520,8 +122301,13 @@ "und": "New England Patriots (3)", "sF": "7", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "1997 Playoffs" }, { "date": "Jan 3, 1998", @@ -82531,7 +122317,12 @@ "sF": "38", "sU": "22", "spread": "14", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 14.0, + "sF": 28.0 + }, + "week": "1997 Playoffs" }, { "date": "Jan 4, 1998", @@ -82541,7 +122332,12 @@ "sF": "21", "sU": "7", "spread": "14", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 12.0, + "sF": 26.0 + }, + "week": "1997 Playoffs" }, { "date": "Jan 11, 1998", @@ -82550,8 +122346,13 @@ "und": "Pittsburgh Steelers (2)", "sF": "24", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1997 Playoffs" }, { "date": "Jan 11, 1998", @@ -82560,12 +122361,13 @@ "und": "San Francisco 49ers (1)", "sF": "23", "sU": "10", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": 43.5, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 20.5, + "sF": 23.0 + }, + "week": "1997 Playoffs" }, { "date": "Jan 25, 1998", @@ -82574,8 +122376,13 @@ "und": "Denver Broncos (4)", "sF": "24", "sU": "31", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 48.5, + "pScore": { + "sU": 18.5, + "sF": 30.0 + }, + "week": "1997 Playoffs" }, { "date": "Sep 6, 1998", @@ -82585,7 +122392,12 @@ "sF": "20", "sU": "13", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1998 Regular Season - Week 1" }, { "date": "Sep 6, 1998", @@ -82594,8 +122406,13 @@ "und": "Atlanta Falcons", "sF": "14", "sU": "19", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.5, + "pScore": { + "sU": 17.0, + "sF": 21.5 + }, + "week": "1998 Regular Season - Week 1" }, { "date": "Sep 6, 1998", @@ -82605,7 +122422,12 @@ "sF": "24", "sU": "23", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "1998 Regular Season - Week 1" }, { "date": "Sep 6, 1998", @@ -82614,8 +122436,13 @@ "und": "Detroit Lions", "sF": "38", "sU": "19", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.5, + "pScore": { + "sU": 17.5, + "sF": 27.0 + }, + "week": "1998 Regular Season - Week 1" }, { "date": "Sep 6, 1998", @@ -82625,7 +122452,12 @@ "sF": "31", "sU": "7", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "1998 Regular Season - Week 1" }, { "date": "Sep 6, 1998", @@ -82634,8 +122466,13 @@ "und": "Washington Redskins", "sF": "31", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "1998 Regular Season - Week 1" }, { "date": "Sep 6, 1998", @@ -82644,8 +122481,13 @@ "und": "Philadelphia Eagles", "sF": "38", "sU": "0", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "1998 Regular Season - Week 1" }, { "date": "Sep 6, 1998", @@ -82655,7 +122497,12 @@ "sF": "17", "sU": "24", "spread": "4", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.25, + "sF": 20.25 + }, + "week": "1998 Regular Season - Week 1" }, { "date": "Sep 6, 1998", @@ -82664,8 +122511,13 @@ "und": "Arizona Cardinals", "sF": "38", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.5, + "pScore": { + "sU": 18.0, + "sF": 23.5 + }, + "week": "1998 Regular Season - Week 1" }, { "date": "Sep 6, 1998", @@ -82674,8 +122526,13 @@ "und": "Indianapolis Colts", "sF": "24", "sU": "15", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1998 Regular Season - Week 1" }, { "date": "Sep 6, 1998", @@ -82684,8 +122541,13 @@ "und": "Buffalo Bills", "sF": "16", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.0, + "pScore": { + "sU": 19.75, + "sF": 21.25 + }, + "week": "1998 Regular Season - Week 1" }, { "date": "Sep 6, 1998", @@ -82694,8 +122556,13 @@ "und": "New York Jets", "sF": "36", "sU": "30", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "1998 Regular Season - Week 1" }, { "date": "Sep 6, 1998", @@ -82705,7 +122572,12 @@ "sF": "28", "sU": "8", "spread": "8", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.5, + "sF": 24.5 + }, + "week": "1998 Regular Season - Week 1" }, { "date": "Sep 7, 1998", @@ -82715,7 +122587,12 @@ "sF": "27", "sU": "21", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "1998 Regular Season - Week 1" }, { "date": "Sep 13, 1998", @@ -82724,8 +122601,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "12", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.5, + "pScore": { + "sU": 15.0, + "sF": 23.5 + }, + "week": "1998 Regular Season - Week 2" }, { "date": "Sep 13, 1998", @@ -82735,7 +122617,12 @@ "sF": "28", "sU": "34", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "1998 Regular Season - Week 2" }, { "date": "Sep 13, 1998", @@ -82744,8 +122631,13 @@ "und": "Tampa Bay Buccaneers", "sF": "23", "sU": "15", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.0, + "pScore": { + "sU": 15.75, + "sF": 23.25 + }, + "week": "1998 Regular Season - Week 2" }, { "date": "Sep 13, 1998", @@ -82754,8 +122646,13 @@ "und": "Kansas City Chiefs", "sF": "21", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "1998 Regular Season - Week 2" }, { "date": "Sep 13, 1998", @@ -82764,8 +122661,13 @@ "und": "Buffalo Bills", "sF": "13", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.0, + "pScore": { + "sU": 15.25, + "sF": 22.75 + }, + "week": "1998 Regular Season - Week 2" }, { "date": "Sep 13, 1998", @@ -82775,7 +122677,12 @@ "sF": "14", "sU": "19", "spread": "4", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.5, + "sF": 19.5 + }, + "week": "1998 Regular Season - Week 2" }, { "date": "Sep 13, 1998", @@ -82784,8 +122691,13 @@ "und": "Baltimore Ravens", "sF": "10", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.5, + "pScore": { + "sU": 19.5, + "sF": 25.0 + }, + "week": "1998 Regular Season - Week 2" }, { "date": "Sep 13, 1998", @@ -82794,8 +122706,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "12", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 42.0, + "pScore": { + "sU": 15.25, + "sF": 26.75 + }, + "week": "1998 Regular Season - Week 2" }, { "date": "Sep 13, 1998", @@ -82804,8 +122721,13 @@ "und": "St Louis Rams", "sF": "38", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.0, + "pScore": { + "sU": 17.75, + "sF": 25.25 + }, + "week": "1998 Regular Season - Week 2" }, { "date": "Sep 13, 1998", @@ -82814,8 +122736,13 @@ "und": "San Diego Chargers", "sF": "7", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.0, + "pScore": { + "sU": 16.25, + "sF": 23.75 + }, + "week": "1998 Regular Season - Week 2" }, { "date": "Sep 13, 1998", @@ -82824,8 +122751,13 @@ "und": "Dallas Cowboys", "sF": "42", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "1998 Regular Season - Week 2" }, { "date": "Sep 13, 1998", @@ -82835,7 +122767,12 @@ "sF": "20", "sU": "17", "spread": "2", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.25, + "sF": 21.25 + }, + "week": "1998 Regular Season - Week 2" }, { "date": "Sep 13, 1998", @@ -82845,7 +122782,12 @@ "sF": "33", "sU": "14", "spread": "8", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.25, + "sF": 26.25 + }, + "week": "1998 Regular Season - Week 2" }, { "date": "Sep 13, 1998", @@ -82854,8 +122796,13 @@ "und": "Indianapolis Colts", "sF": "29", "sU": "6", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 39.5, + "pScore": { + "sU": 14.5, + "sF": 25.0 + }, + "week": "1998 Regular Season - Week 2" }, { "date": "Sep 14, 1998", @@ -82864,8 +122811,13 @@ "und": "Washington Redskins", "sF": "45", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.5, + "pScore": { + "sU": 19.5, + "sF": 24.0 + }, + "week": "1998 Regular Season - Week 2" }, { "date": "Sep 20, 1998", @@ -82874,8 +122826,13 @@ "und": "St Louis Rams", "sF": "33", "sU": "34", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.5, + "pScore": { + "sU": 17.0, + "sF": 21.5 + }, + "week": "1998 Regular Season - Week 3" }, { "date": "Sep 20, 1998", @@ -82885,7 +122842,12 @@ "sF": "13", "sU": "6", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "1998 Regular Season - Week 3" }, { "date": "Sep 20, 1998", @@ -82895,7 +122857,12 @@ "sF": "23", "sU": "7", "spread": "10", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.5, + "sF": 23.5 + }, + "week": "1998 Regular Season - Week 3" }, { "date": "Sep 20, 1998", @@ -82904,8 +122871,13 @@ "und": "Pittsburgh Steelers", "sF": "21", "sU": "0", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "1998 Regular Season - Week 3" }, { "date": "Sep 20, 1998", @@ -82914,8 +122886,13 @@ "und": "Detroit Lions", "sF": "29", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "1998 Regular Season - Week 3" }, { "date": "Sep 20, 1998", @@ -82924,8 +122901,13 @@ "und": "Tennessee Oilers", "sF": "27", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1998 Regular Season - Week 3" }, { "date": "Sep 20, 1998", @@ -82935,7 +122917,12 @@ "sF": "44", "sU": "6", "spread": "9", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.75, + "sF": 24.75 + }, + "week": "1998 Regular Season - Week 3" }, { "date": "Sep 20, 1998", @@ -82944,8 +122931,13 @@ "und": "Washington Redskins", "sF": "24", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.0, + "pScore": { + "sU": 17.25, + "sF": 25.75 + }, + "week": "1998 Regular Season - Week 3" }, { "date": "Sep 20, 1998", @@ -82954,8 +122946,13 @@ "und": "Chicago Bears", "sF": "27", "sU": "15", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.0, + "pScore": { + "sU": 14.75, + "sF": 22.25 + }, + "week": "1998 Regular Season - Week 3" }, { "date": "Sep 20, 1998", @@ -82965,7 +122962,12 @@ "sF": "24", "sU": "10", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1998 Regular Season - Week 3" }, { "date": "Sep 20, 1998", @@ -82975,7 +122977,12 @@ "sF": "34", "sU": "17", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "1998 Regular Season - Week 3" }, { "date": "Sep 20, 1998", @@ -82984,8 +122991,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "1998 Regular Season - Week 3" }, { "date": "Sep 21, 1998", @@ -82995,7 +123007,12 @@ "sF": "7", "sU": "31", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "1998 Regular Season - Week 3" }, { "date": "Sep 27, 1998", @@ -83005,7 +123022,12 @@ "sF": "37", "sU": "30", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "1998 Regular Season - Week 4" }, { "date": "Sep 27, 1998", @@ -83015,7 +123037,12 @@ "sF": "12", "sU": "13", "spread": "5", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.25, + "sF": 23.25 + }, + "week": "1998 Regular Season - Week 4" }, { "date": "Sep 27, 1998", @@ -83025,7 +123052,12 @@ "sF": "24", "sU": "21", "spread": "8", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.0, + "sF": 22.0 + }, + "week": "1998 Regular Season - Week 4" }, { "date": "Sep 27, 1998", @@ -83035,7 +123067,12 @@ "sF": "17", "sU": "20", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1998 Regular Season - Week 4" }, { "date": "Sep 27, 1998", @@ -83045,7 +123082,12 @@ "sF": "27", "sU": "22", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1998 Regular Season - Week 4" }, { "date": "Sep 27, 1998", @@ -83054,8 +123096,13 @@ "und": "Washington Redskins", "sF": "38", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "1998 Regular Season - Week 4" }, { "date": "Sep 27, 1998", @@ -83065,7 +123112,12 @@ "sF": "13", "sU": "10", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "1998 Regular Season - Week 4" }, { "date": "Sep 27, 1998", @@ -83074,8 +123126,13 @@ "und": "Chicago Bears", "sF": "31", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1998 Regular Season - Week 4" }, { "date": "Sep 27, 1998", @@ -83085,7 +123142,12 @@ "sF": "34", "sU": "16", "spread": "1", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 17.0, + "sF": 18.0 + }, + "week": "1998 Regular Season - Week 4" }, { "date": "Sep 27, 1998", @@ -83095,7 +123157,12 @@ "sF": "31", "sU": "20", "spread": "11", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.0, + "sF": 28.0 + }, + "week": "1998 Regular Season - Week 4" }, { "date": "Sep 27, 1998", @@ -83104,8 +123171,13 @@ "und": "Cincinnati Bengals", "sF": "31", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "1998 Regular Season - Week 4" }, { "date": "Sep 28, 1998", @@ -83114,8 +123186,13 @@ "und": "Detroit Lions", "sF": "6", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.5, + "pScore": { + "sU": 19.0, + "sF": 20.5 + }, + "week": "1998 Regular Season - Week 4" }, { "date": "Oct 4, 1998", @@ -83125,7 +123202,12 @@ "sF": "51", "sU": "23", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1998 Regular Season - Week 5" }, { "date": "Oct 4, 1998", @@ -83135,7 +123217,12 @@ "sF": "21", "sU": "26", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "1998 Regular Season - Week 5" }, { "date": "Oct 4, 1998", @@ -83145,7 +123232,12 @@ "sF": "31", "sU": "27", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1998 Regular Season - Week 5" }, { "date": "Oct 4, 1998", @@ -83155,7 +123247,12 @@ "sF": "17", "sU": "12", "spread": "1", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.75, + "sF": 18.75 + }, + "week": "1998 Regular Season - Week 5" }, { "date": "Oct 4, 1998", @@ -83165,7 +123262,12 @@ "sF": "30", "sU": "27", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1998 Regular Season - Week 5" }, { "date": "Oct 4, 1998", @@ -83174,8 +123276,13 @@ "und": "Miami Dolphins", "sF": "20", "sU": "9", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "1998 Regular Season - Week 5" }, { "date": "Oct 4, 1998", @@ -83185,7 +123292,12 @@ "sF": "10", "sU": "31", "spread": "1", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.75, + "sF": 19.75 + }, + "week": "1998 Regular Season - Week 5" }, { "date": "Oct 4, 1998", @@ -83194,8 +123306,13 @@ "und": "Oakland Raiders", "sF": "20", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "1998 Regular Season - Week 5" }, { "date": "Oct 4, 1998", @@ -83204,8 +123321,13 @@ "und": "Philadelphia Eagles", "sF": "41", "sU": "16", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 42.5, + "pScore": { + "sU": 13.5, + "sF": 29.0 + }, + "week": "1998 Regular Season - Week 5" }, { "date": "Oct 4, 1998", @@ -83215,7 +123337,12 @@ "sF": "20", "sU": "3", "spread": "4", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.5, + "sF": 19.5 + }, + "week": "1998 Regular Season - Week 5" }, { "date": "Oct 4, 1998", @@ -83225,7 +123352,12 @@ "sF": "17", "sU": "6", "spread": "4", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.25, + "sF": 20.25 + }, + "week": "1998 Regular Season - Week 5" }, { "date": "Oct 5, 1998", @@ -83235,7 +123367,12 @@ "sF": "24", "sU": "37", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "1998 Regular Season - Week 5" }, { "date": "Oct 11, 1998", @@ -83244,8 +123381,13 @@ "und": "Tennessee Oilers", "sF": "8", "sU": "12", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "1998 Regular Season - Week 6" }, { "date": "Oct 11, 1998", @@ -83254,8 +123396,13 @@ "und": "Cincinnati Bengals", "sF": "20", "sU": "25", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "1998 Regular Season - Week 6" }, { "date": "Oct 11, 1998", @@ -83265,7 +123412,12 @@ "sF": "27", "sU": "20", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1998 Regular Season - Week 6" }, { "date": "Oct 11, 1998", @@ -83275,7 +123427,12 @@ "sF": "31", "sU": "24", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1998 Regular Season - Week 6" }, { "date": "Oct 11, 1998", @@ -83285,7 +123442,12 @@ "sF": "40", "sU": "10", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "1998 Regular Season - Week 6" }, { "date": "Oct 11, 1998", @@ -83294,8 +123456,13 @@ "und": "New Orleans Saints", "sF": "31", "sU": "0", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.0, + "pScore": { + "sU": 16.25, + "sF": 26.75 + }, + "week": "1998 Regular Season - Week 6" }, { "date": "Oct 11, 1998", @@ -83304,8 +123471,13 @@ "und": "Philadelphia Eagles", "sF": "12", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "1998 Regular Season - Week 6" }, { "date": "Oct 11, 1998", @@ -83315,7 +123487,12 @@ "sF": "20", "sU": "7", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "1998 Regular Season - Week 6" }, { "date": "Oct 11, 1998", @@ -83325,7 +123502,12 @@ "sF": "7", "sU": "6", "spread": "5", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 15.75, + "sF": 20.75 + }, + "week": "1998 Regular Season - Week 6" }, { "date": "Oct 11, 1998", @@ -83334,8 +123516,13 @@ "und": "Seattle Seahawks", "sF": "21", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1998 Regular Season - Week 6" }, { "date": "Oct 11, 1998", @@ -83345,7 +123532,12 @@ "sF": "10", "sU": "30", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1998 Regular Season - Week 6" }, { "date": "Oct 11, 1998", @@ -83354,8 +123546,13 @@ "und": "Atlanta Falcons", "sF": "20", "sU": "34", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "1998 Regular Season - Week 6" }, { "date": "Oct 12, 1998", @@ -83364,8 +123561,13 @@ "und": "Miami Dolphins", "sF": "28", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "1998 Regular Season - Week 6" }, { "date": "Oct 15, 1998", @@ -83375,7 +123577,12 @@ "sF": "20", "sU": "27", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "1998 Regular Season - Week 7" }, { "date": "Oct 18, 1998", @@ -83385,7 +123592,12 @@ "sF": "31", "sU": "23", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "1998 Regular Season - Week 7" }, { "date": "Oct 18, 1998", @@ -83395,7 +123607,12 @@ "sF": "16", "sU": "17", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "1998 Regular Season - Week 7" }, { "date": "Oct 18, 1998", @@ -83404,8 +123621,13 @@ "und": "Washington Redskins", "sF": "41", "sU": "7", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 46.0, + "pScore": { + "sU": 16.25, + "sF": 29.75 + }, + "week": "1998 Regular Season - Week 7" }, { "date": "Oct 18, 1998", @@ -83414,8 +123636,13 @@ "und": "Arizona Cardinals", "sF": "34", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1998 Regular Season - Week 7" }, { "date": "Oct 18, 1998", @@ -83425,7 +123652,12 @@ "sF": "16", "sU": "6", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1998 Regular Season - Week 7" }, { "date": "Oct 18, 1998", @@ -83435,7 +123667,12 @@ "sF": "16", "sU": "13", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1998 Regular Season - Week 7" }, { "date": "Oct 18, 1998", @@ -83445,7 +123682,12 @@ "sF": "44", "sU": "14", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "1998 Regular Season - Week 7" }, { "date": "Oct 18, 1998", @@ -83455,7 +123697,12 @@ "sF": "34", "sU": "31", "spread": "18", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 13.25, + "sF": 31.25 + }, + "week": "1998 Regular Season - Week 7" }, { "date": "Oct 18, 1998", @@ -83465,7 +123712,12 @@ "sF": "12", "sU": "13", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "1998 Regular Season - Week 7" }, { "date": "Oct 18, 1998", @@ -83475,7 +123727,12 @@ "sF": "14", "sU": "0", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "1998 Regular Season - Week 7" }, { "date": "Oct 18, 1998", @@ -83485,7 +123742,12 @@ "sF": "13", "sU": "10", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "1998 Regular Season - Week 7" }, { "date": "Oct 19, 1998", @@ -83494,8 +123756,13 @@ "und": "New York Jets", "sF": "14", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "1998 Regular Season - Week 7" }, { "date": "Oct 25, 1998", @@ -83505,7 +123772,12 @@ "sF": "34", "sU": "13", "spread": "5", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.0, + "sF": 26.0 + }, + "week": "1998 Regular Season - Week 8" }, { "date": "Oct 25, 1998", @@ -83514,8 +123786,13 @@ "und": "Baltimore Ravens", "sF": "28", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 41.5, + "pScore": { + "sU": 15.5, + "sF": 26.0 + }, + "week": "1998 Regular Season - Week 8" }, { "date": "Oct 25, 1998", @@ -83525,7 +123802,12 @@ "sF": "12", "sU": "9", "spread": "2", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.25, + "sF": 19.25 + }, + "week": "1998 Regular Season - Week 8" }, { "date": "Oct 25, 1998", @@ -83535,7 +123817,12 @@ "sF": "3", "sU": "9", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "1998 Regular Season - Week 8" }, { "date": "Oct 25, 1998", @@ -83544,8 +123831,13 @@ "und": "Atlanta Falcons", "sF": "28", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "1998 Regular Season - Week 8" }, { "date": "Oct 25, 1998", @@ -83554,8 +123846,13 @@ "und": "St Louis Rams", "sF": "28", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 47.0, + "pScore": { + "sU": 18.75, + "sF": 28.25 + }, + "week": "1998 Regular Season - Week 8" }, { "date": "Oct 25, 1998", @@ -83565,7 +123862,12 @@ "sF": "20", "sU": "23", "spread": "6", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.25, + "sF": 23.25 + }, + "week": "1998 Regular Season - Week 8" }, { "date": "Oct 25, 1998", @@ -83575,7 +123877,12 @@ "sF": "37", "sU": "24", "spread": "8", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.0, + "sF": 28.0 + }, + "week": "1998 Regular Season - Week 8" }, { "date": "Oct 25, 1998", @@ -83584,8 +123891,13 @@ "und": "Cincinnati Bengals", "sF": "27", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "1998 Regular Season - Week 8" }, { "date": "Oct 25, 1998", @@ -83594,8 +123906,13 @@ "und": "San Diego Chargers", "sF": "27", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "1998 Regular Season - Week 8" }, { "date": "Oct 25, 1998", @@ -83604,8 +123921,13 @@ "und": "Buffalo Bills", "sF": "14", "sU": "30", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "1998 Regular Season - Week 8" }, { "date": "Oct 26, 1998", @@ -83615,7 +123937,12 @@ "sF": "13", "sU": "20", "spread": "6", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 15.25, + "sF": 21.25 + }, + "week": "1998 Regular Season - Week 8" }, { "date": "Nov 1, 1998", @@ -83625,7 +123952,12 @@ "sF": "37", "sU": "15", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1998 Regular Season - Week 9" }, { "date": "Nov 1, 1998", @@ -83634,8 +123966,13 @@ "und": "Baltimore Ravens", "sF": "45", "sU": "19", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "1998 Regular Season - Week 9" }, { "date": "Nov 1, 1998", @@ -83644,8 +123981,13 @@ "und": "Miami Dolphins", "sF": "30", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.0, + "pScore": { + "sU": 16.25, + "sF": 18.75 + }, + "week": "1998 Regular Season - Week 9" }, { "date": "Nov 1, 1998", @@ -83655,7 +123997,12 @@ "sF": "31", "sU": "17", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1998 Regular Season - Week 9" }, { "date": "Nov 1, 1998", @@ -83665,7 +124012,12 @@ "sF": "33", "sU": "26", "spread": "11", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 18.75, + "sF": 29.75 + }, + "week": "1998 Regular Season - Week 9" }, { "date": "Nov 1, 1998", @@ -83675,7 +124027,12 @@ "sF": "15", "sU": "17", "spread": "6", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.25, + "sF": 24.25 + }, + "week": "1998 Regular Season - Week 9" }, { "date": "Nov 1, 1998", @@ -83684,8 +124041,13 @@ "und": "Indianapolis Colts", "sF": "21", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.5, + "pScore": { + "sU": 16.0, + "sF": 21.5 + }, + "week": "1998 Regular Season - Week 9" }, { "date": "Nov 1, 1998", @@ -83694,8 +124056,13 @@ "und": "Tennessee Oilers", "sF": "31", "sU": "41", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.0, + "pScore": { + "sU": 15.75, + "sF": 21.25 + }, + "week": "1998 Regular Season - Week 9" }, { "date": "Nov 1, 1998", @@ -83704,8 +124071,13 @@ "und": "Tampa Bay Buccaneers", "sF": "24", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "1998 Regular Season - Week 9" }, { "date": "Nov 1, 1998", @@ -83714,8 +124086,13 @@ "und": "Washington Redskins", "sF": "14", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1998 Regular Season - Week 9" }, { "date": "Nov 1, 1998", @@ -83724,8 +124101,13 @@ "und": "New York Jets", "sF": "17", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.0, + "pScore": { + "sU": 16.25, + "sF": 20.75 + }, + "week": "1998 Regular Season - Week 9" }, { "date": "Nov 1, 1998", @@ -83735,11 +124117,12 @@ "sF": "36", "sU": "22", "spread": "3", - "ou": "49", + "ou": 49.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 23.0, + "sF": 26.0 + }, + "week": "1998 Regular Season - Week 9" }, { "date": "Nov 1, 1998", @@ -83749,7 +124132,12 @@ "sF": "18", "sU": "31", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "1998 Regular Season - Week 9" }, { "date": "Nov 2, 1998", @@ -83758,8 +124146,13 @@ "und": "Philadelphia Eagles", "sF": "34", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "1998 Regular Season - Week 9" }, { "date": "Nov 8, 1998", @@ -83769,7 +124162,12 @@ "sF": "10", "sU": "13", "spread": "2", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.5, + "sF": 20.5 + }, + "week": "1998 Regular Season - Week 10" }, { "date": "Nov 8, 1998", @@ -83779,7 +124177,12 @@ "sF": "12", "sU": "20", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "1998 Regular Season - Week 10" }, { "date": "Nov 8, 1998", @@ -83789,7 +124192,12 @@ "sF": "16", "sU": "6", "spread": "8", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 14.75, + "sF": 22.75 + }, + "week": "1998 Regular Season - Week 10" }, { "date": "Nov 8, 1998", @@ -83798,8 +124206,13 @@ "und": "Cincinnati Bengals", "sF": "24", "sU": "11", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 46.5, + "pScore": { + "sU": 18.0, + "sF": 28.5 + }, + "week": "1998 Regular Season - Week 10" }, { "date": "Nov 8, 1998", @@ -83808,8 +124221,13 @@ "und": "Indianapolis Colts", "sF": "27", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 37.0, + "pScore": { + "sU": 13.75, + "sF": 23.25 + }, + "week": "1998 Regular Season - Week 10" }, { "date": "Nov 8, 1998", @@ -83819,7 +124237,12 @@ "sF": "31", "sU": "24", "spread": "14", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 15.0, + "sF": 29.0 + }, + "week": "1998 Regular Season - Week 10" }, { "date": "Nov 8, 1998", @@ -83828,8 +124251,13 @@ "und": "Atlanta Falcons", "sF": "10", "sU": "41", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "1998 Regular Season - Week 10" }, { "date": "Nov 8, 1998", @@ -83839,7 +124267,12 @@ "sF": "9", "sU": "10", "spread": "4", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.25, + "sF": 20.25 + }, + "week": "1998 Regular Season - Week 10" }, { "date": "Nov 8, 1998", @@ -83848,8 +124281,13 @@ "und": "Washington Redskins", "sF": "29", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.0, + "pScore": { + "sU": 16.75, + "sF": 21.25 + }, + "week": "1998 Regular Season - Week 10" }, { "date": "Nov 8, 1998", @@ -83858,8 +124296,13 @@ "und": "Carolina Panthers", "sF": "25", "sU": "23", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 43.5, + "pScore": { + "sU": 15.0, + "sF": 28.5 + }, + "week": "1998 Regular Season - Week 10" }, { "date": "Nov 8, 1998", @@ -83869,7 +124312,12 @@ "sF": "27", "sU": "10", "spread": "16", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 14.0, + "sF": 30.0 + }, + "week": "1998 Regular Season - Week 10" }, { "date": "Nov 8, 1998", @@ -83879,7 +124327,12 @@ "sF": "34", "sU": "12", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1998 Regular Season - Week 10" }, { "date": "Nov 8, 1998", @@ -83889,7 +124342,12 @@ "sF": "24", "sU": "12", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1998 Regular Season - Week 10" }, { "date": "Nov 8, 1998", @@ -83899,7 +124357,12 @@ "sF": "22", "sU": "31", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1998 Regular Season - Week 10" }, { "date": "Nov 9, 1998", @@ -83909,7 +124372,12 @@ "sF": "20", "sU": "27", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1998 Regular Season - Week 10" }, { "date": "Nov 15, 1998", @@ -83919,7 +124387,12 @@ "sF": "19", "sU": "31", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "1998 Regular Season - Week 11" }, { "date": "Nov 15, 1998", @@ -83929,7 +124402,12 @@ "sF": "13", "sU": "10", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1998 Regular Season - Week 11" }, { "date": "Nov 15, 1998", @@ -83939,7 +124417,12 @@ "sF": "13", "sU": "9", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1998 Regular Season - Week 11" }, { "date": "Nov 15, 1998", @@ -83948,8 +124431,13 @@ "und": "Indianapolis Colts", "sF": "23", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "1998 Regular Season - Week 11" }, { "date": "Nov 15, 1998", @@ -83959,7 +124447,12 @@ "sF": "24", "sU": "3", "spread": "11", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 17.5, + "sF": 28.5 + }, + "week": "1998 Regular Season - Week 11" }, { "date": "Nov 15, 1998", @@ -83969,7 +124462,12 @@ "sF": "24", "sU": "3", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "1998 Regular Season - Week 11" }, { "date": "Nov 15, 1998", @@ -83978,8 +124476,13 @@ "und": "Pittsburgh Steelers", "sF": "23", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "1998 Regular Season - Week 11" }, { "date": "Nov 15, 1998", @@ -83989,7 +124492,12 @@ "sF": "28", "sU": "3", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1998 Regular Season - Week 11" }, { "date": "Nov 15, 1998", @@ -83998,8 +124506,13 @@ "und": "Oakland Raiders", "sF": "17", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "1998 Regular Season - Week 11" }, { "date": "Nov 15, 1998", @@ -84008,8 +124521,13 @@ "und": "Arizona Cardinals", "sF": "35", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "1998 Regular Season - Week 11" }, { "date": "Nov 15, 1998", @@ -84018,8 +124536,13 @@ "und": "Tampa Bay Buccaneers", "sF": "29", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "1998 Regular Season - Week 11" }, { "date": "Nov 15, 1998", @@ -84029,7 +124552,12 @@ "sF": "37", "sU": "3", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "1998 Regular Season - Week 11" }, { "date": "Nov 15, 1998", @@ -84038,8 +124566,13 @@ "und": "Chicago Bears", "sF": "26", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "1998 Regular Season - Week 11" }, { "date": "Nov 16, 1998", @@ -84049,7 +124582,12 @@ "sF": "30", "sU": "7", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1998 Regular Season - Week 11" }, { "date": "Nov 22, 1998", @@ -84059,7 +124597,12 @@ "sF": "20", "sU": "13", "spread": "12", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 14.75, + "sF": 26.75 + }, + "week": "1998 Regular Season - Week 12" }, { "date": "Nov 22, 1998", @@ -84069,7 +124612,12 @@ "sF": "34", "sU": "11", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "1998 Regular Season - Week 12" }, { "date": "Nov 22, 1998", @@ -84078,8 +124626,13 @@ "und": "Seattle Seahawks", "sF": "30", "sU": "22", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "1998 Regular Season - Week 12" }, { "date": "Nov 22, 1998", @@ -84089,7 +124642,12 @@ "sF": "28", "sU": "14", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "1998 Regular Season - Week 12" }, { "date": "Nov 22, 1998", @@ -84098,8 +124656,13 @@ "und": "Philadelphia Eagles", "sF": "20", "sU": "0", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 33.5, + "pScore": { + "sU": 14.0, + "sF": 19.5 + }, + "week": "1998 Regular Season - Week 12" }, { "date": "Nov 22, 1998", @@ -84108,8 +124671,13 @@ "und": "Jacksonville Jaguars", "sF": "30", "sU": "15", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1998 Regular Season - Week 12" }, { "date": "Nov 22, 1998", @@ -84119,7 +124687,12 @@ "sF": "25", "sU": "28", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "1998 Regular Season - Week 12" }, { "date": "Nov 22, 1998", @@ -84129,7 +124702,12 @@ "sF": "42", "sU": "45", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1998 Regular Season - Week 12" }, { "date": "Nov 22, 1998", @@ -84138,8 +124716,13 @@ "und": "Carolina Panthers", "sF": "20", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.0, + "pScore": { + "sU": 19.25, + "sF": 20.75 + }, + "week": "1998 Regular Season - Week 12" }, { "date": "Nov 22, 1998", @@ -84148,8 +124731,13 @@ "und": "Baltimore Ravens", "sF": "13", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.0, + "pScore": { + "sU": 17.75, + "sF": 19.25 + }, + "week": "1998 Regular Season - Week 12" }, { "date": "Nov 22, 1998", @@ -84159,7 +124747,12 @@ "sF": "40", "sU": "14", "spread": "11", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 16.5, + "sF": 27.5 + }, + "week": "1998 Regular Season - Week 12" }, { "date": "Nov 22, 1998", @@ -84169,7 +124762,12 @@ "sF": "37", "sU": "38", "spread": "3", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 15.25, + "sF": 18.25 + }, + "week": "1998 Regular Season - Week 12" }, { "date": "Nov 22, 1998", @@ -84178,8 +124776,13 @@ "und": "New York Jets", "sF": "3", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "1998 Regular Season - Week 12" }, { "date": "Nov 22, 1998", @@ -84188,8 +124791,13 @@ "und": "New Orleans Saints", "sF": "31", "sU": "20", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 44.0, + "pScore": { + "sU": 15.75, + "sF": 28.25 + }, + "week": "1998 Regular Season - Week 12" }, { "date": "Nov 23, 1998", @@ -84199,7 +124807,12 @@ "sF": "26", "sU": "23", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "1998 Regular Season - Week 12" }, { "date": "Nov 26, 1998", @@ -84208,8 +124821,13 @@ "und": "Detroit Lions", "sF": "16", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1998 Regular Season - Week 13" }, { "date": "Nov 26, 1998", @@ -84219,7 +124837,12 @@ "sF": "46", "sU": "36", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "1998 Regular Season - Week 13" }, { "date": "Nov 29, 1998", @@ -84229,7 +124852,12 @@ "sF": "38", "sU": "31", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "1998 Regular Season - Week 13" }, { "date": "Nov 29, 1998", @@ -84238,8 +124866,13 @@ "und": "Chicago Bears", "sF": "31", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "1998 Regular Season - Week 13" }, { "date": "Nov 29, 1998", @@ -84249,7 +124882,12 @@ "sF": "34", "sU": "17", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "1998 Regular Season - Week 13" }, { "date": "Nov 29, 1998", @@ -84259,7 +124897,12 @@ "sF": "34", "sU": "24", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "1998 Regular Season - Week 13" }, { "date": "Nov 29, 1998", @@ -84269,7 +124912,12 @@ "sF": "48", "sU": "21", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "1998 Regular Season - Week 13" }, { "date": "Nov 29, 1998", @@ -84279,7 +124927,12 @@ "sF": "21", "sU": "10", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "1998 Regular Season - Week 13" }, { "date": "Nov 29, 1998", @@ -84288,8 +124941,13 @@ "und": "Buffalo Bills", "sF": "25", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "1998 Regular Season - Week 13" }, { "date": "Nov 29, 1998", @@ -84298,8 +124956,13 @@ "und": "Tennessee Oilers", "sF": "20", "sU": "18", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1998 Regular Season - Week 13" }, { "date": "Nov 29, 1998", @@ -84309,7 +124972,12 @@ "sF": "24", "sU": "16", "spread": "18", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 9.5, + "sF": 27.5 + }, + "week": "1998 Regular Season - Week 13" }, { "date": "Nov 29, 1998", @@ -84318,8 +124986,13 @@ "und": "New Orleans Saints", "sF": "30", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 37.5, + "pScore": { + "sU": 14.5, + "sF": 23.0 + }, + "week": "1998 Regular Season - Week 13" }, { "date": "Nov 29, 1998", @@ -84329,7 +125002,12 @@ "sF": "19", "sU": "29", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "1998 Regular Season - Week 13" }, { "date": "Nov 29, 1998", @@ -84339,7 +125017,12 @@ "sF": "31", "sU": "16", "spread": "13", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 15.75, + "sF": 28.75 + }, + "week": "1998 Regular Season - Week 13" }, { "date": "Nov 30, 1998", @@ -84349,7 +125032,12 @@ "sF": "31", "sU": "7", "spread": "13", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 15.5, + "sF": 28.5 + }, + "week": "1998 Regular Season - Week 13" }, { "date": "Dec 3, 1998", @@ -84359,7 +125047,12 @@ "sF": "17", "sU": "14", "spread": "1", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 17.0, + "sF": 18.0 + }, + "week": "1998 Regular Season - Week 14" }, { "date": "Dec 6, 1998", @@ -84369,7 +125062,12 @@ "sF": "28", "sU": "21", "spread": "12", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 17.0, + "sF": 29.0 + }, + "week": "1998 Regular Season - Week 14" }, { "date": "Dec 6, 1998", @@ -84378,8 +125076,13 @@ "und": "Carolina Panthers", "sF": "31", "sU": "28", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 48.0, + "pScore": { + "sU": 19.25, + "sF": 28.75 + }, + "week": "1998 Regular Season - Week 14" }, { "date": "Dec 6, 1998", @@ -84388,8 +125091,13 @@ "und": "Cincinnati Bengals", "sF": "33", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "1998 Regular Season - Week 14" }, { "date": "Dec 6, 1998", @@ -84399,7 +125107,12 @@ "sF": "37", "sU": "22", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "1998 Regular Season - Week 14" }, { "date": "Dec 6, 1998", @@ -84408,8 +125121,13 @@ "und": "New Orleans Saints", "sF": "3", "sU": "22", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1998 Regular Season - Week 14" }, { "date": "Dec 6, 1998", @@ -84419,7 +125137,12 @@ "sF": "32", "sU": "31", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "1998 Regular Season - Week 14" }, { "date": "Dec 6, 1998", @@ -84428,8 +125151,13 @@ "und": "New England Patriots", "sF": "9", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "1998 Regular Season - Week 14" }, { "date": "Dec 6, 1998", @@ -84439,7 +125167,12 @@ "sF": "24", "sU": "20", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1998 Regular Season - Week 14" }, { "date": "Dec 6, 1998", @@ -84448,8 +125181,13 @@ "und": "New York Giants", "sF": "19", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.5, + "pScore": { + "sU": 18.5, + "sF": 23.0 + }, + "week": "1998 Regular Season - Week 14" }, { "date": "Dec 6, 1998", @@ -84458,8 +125196,13 @@ "und": "Kansas City Chiefs", "sF": "35", "sU": "31", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 45.0, + "pScore": { + "sU": 15.75, + "sF": 29.25 + }, + "week": "1998 Regular Season - Week 14" }, { "date": "Dec 6, 1998", @@ -84468,8 +125211,13 @@ "und": "Oakland Raiders", "sF": "27", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "1998 Regular Season - Week 14" }, { "date": "Dec 6, 1998", @@ -84479,7 +125227,12 @@ "sF": "16", "sU": "14", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "1998 Regular Season - Week 14" }, { "date": "Dec 6, 1998", @@ -84489,7 +125242,12 @@ "sF": "48", "sU": "22", "spread": "16", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 15.0, + "sF": 31.0 + }, + "week": "1998 Regular Season - Week 14" }, { "date": "Dec 7, 1998", @@ -84499,7 +125257,12 @@ "sF": "22", "sU": "24", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1998 Regular Season - Week 14" }, { "date": "Dec 13, 1998", @@ -84508,8 +125271,13 @@ "und": "Oakland Raiders", "sF": "44", "sU": "21", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.0, + "pScore": { + "sU": 14.75, + "sF": 23.25 + }, + "week": "1998 Regular Season - Week 15" }, { "date": "Dec 13, 1998", @@ -84519,7 +125287,12 @@ "sF": "25", "sU": "28", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "1998 Regular Season - Week 15" }, { "date": "Dec 13, 1998", @@ -84528,8 +125301,13 @@ "und": "Chicago Bears", "sF": "26", "sU": "20", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 42.0, + "pScore": { + "sU": 14.25, + "sF": 27.75 + }, + "week": "1998 Regular Season - Week 15" }, { "date": "Dec 13, 1998", @@ -84539,7 +125317,12 @@ "sF": "39", "sU": "26", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "1998 Regular Season - Week 15" }, { "date": "Dec 13, 1998", @@ -84549,7 +125332,12 @@ "sF": "13", "sU": "16", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "1998 Regular Season - Week 15" }, { "date": "Dec 13, 1998", @@ -84559,7 +125347,12 @@ "sF": "27", "sU": "17", "spread": "4", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.75, + "sF": 22.75 + }, + "week": "1998 Regular Season - Week 15" }, { "date": "Dec 13, 1998", @@ -84569,7 +125362,12 @@ "sF": "16", "sU": "20", "spread": "13", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 16.0, + "sF": 29.0 + }, + "week": "1998 Regular Season - Week 15" }, { "date": "Dec 13, 1998", @@ -84579,7 +125377,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1998 Regular Season - Week 15" }, { "date": "Dec 13, 1998", @@ -84589,7 +125392,12 @@ "sF": "18", "sU": "32", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "1998 Regular Season - Week 15" }, { "date": "Dec 13, 1998", @@ -84599,7 +125407,12 @@ "sF": "16", "sU": "3", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "1998 Regular Season - Week 15" }, { "date": "Dec 13, 1998", @@ -84609,7 +125422,12 @@ "sF": "38", "sU": "17", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "1998 Regular Season - Week 15" }, { "date": "Dec 13, 1998", @@ -84619,7 +125437,12 @@ "sF": "38", "sU": "28", "spread": "10", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.0, + "sF": 28.0 + }, + "week": "1998 Regular Season - Week 15" }, { "date": "Dec 13, 1998", @@ -84628,8 +125451,13 @@ "und": "Dallas Cowboys", "sF": "20", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "1998 Regular Season - Week 15" }, { "date": "Dec 13, 1998", @@ -84639,7 +125467,12 @@ "sF": "16", "sU": "21", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1998 Regular Season - Week 15" }, { "date": "Dec 14, 1998", @@ -84649,7 +125482,12 @@ "sF": "35", "sU": "13", "spread": "10", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 19.0, + "sF": 29.0 + }, + "week": "1998 Regular Season - Week 15" }, { "date": "Dec 19, 1998", @@ -84658,8 +125496,13 @@ "und": "New York Jets", "sF": "10", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1998 Regular Season - Week 16" }, { "date": "Dec 19, 1998", @@ -84669,7 +125512,12 @@ "sF": "16", "sU": "20", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1998 Regular Season - Week 16" }, { "date": "Dec 20, 1998", @@ -84679,7 +125527,12 @@ "sF": "20", "sU": "13", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "1998 Regular Season - Week 16" }, { "date": "Dec 20, 1998", @@ -84688,8 +125541,13 @@ "und": "Tennessee Oilers", "sF": "30", "sU": "22", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "1998 Regular Season - Week 16" }, { "date": "Dec 20, 1998", @@ -84699,7 +125557,12 @@ "sF": "21", "sU": "24", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "1998 Regular Season - Week 16" }, { "date": "Dec 20, 1998", @@ -84708,8 +125571,13 @@ "und": "Kansas City Chiefs", "sF": "28", "sU": "7", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "1998 Regular Season - Week 16" }, { "date": "Dec 20, 1998", @@ -84718,8 +125586,13 @@ "und": "Cincinnati Bengals", "sF": "24", "sU": "25", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 40.0, + "pScore": { + "sU": 14.75, + "sF": 25.25 + }, + "week": "1998 Regular Season - Week 16" }, { "date": "Dec 20, 1998", @@ -84729,7 +125602,12 @@ "sF": "10", "sU": "17", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1998 Regular Season - Week 16" }, { "date": "Dec 20, 1998", @@ -84739,7 +125617,12 @@ "sF": "27", "sU": "23", "spread": "7", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.25, + "sF": 27.25 + }, + "week": "1998 Regular Season - Week 16" }, { "date": "Dec 20, 1998", @@ -84748,8 +125631,13 @@ "und": "New Orleans Saints", "sF": "19", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "1998 Regular Season - Week 16" }, { "date": "Dec 20, 1998", @@ -84758,8 +125646,13 @@ "und": "Philadelphia Eagles", "sF": "13", "sU": "9", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 37.0, + "pScore": { + "sU": 13.25, + "sF": 23.75 + }, + "week": "1998 Regular Season - Week 16" }, { "date": "Dec 20, 1998", @@ -84768,8 +125661,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "1998 Regular Season - Week 16" }, { "date": "Dec 20, 1998", @@ -84778,8 +125676,13 @@ "und": "Jacksonville Jaguars", "sF": "50", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 48.0, + "pScore": { + "sU": 17.25, + "sF": 30.75 + }, + "week": "1998 Regular Season - Week 16" }, { "date": "Dec 21, 1998", @@ -84789,7 +125692,12 @@ "sF": "21", "sU": "31", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "1998 Regular Season - Week 16" }, { "date": "Dec 26, 1998", @@ -84799,7 +125707,12 @@ "sF": "26", "sU": "16", "spread": "7", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.5, + "sF": 27.5 + }, + "week": "1998 Regular Season - Week 17" }, { "date": "Dec 26, 1998", @@ -84809,7 +125722,12 @@ "sF": "24", "sU": "31", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "1998 Regular Season - Week 17" }, { "date": "Dec 27, 1998", @@ -84819,7 +125737,12 @@ "sF": "38", "sU": "16", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1998 Regular Season - Week 17" }, { "date": "Dec 27, 1998", @@ -84829,7 +125752,12 @@ "sF": "19", "sU": "10", "spread": "2", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.25, + "sF": 20.25 + }, + "week": "1998 Regular Season - Week 17" }, { "date": "Dec 27, 1998", @@ -84839,7 +125767,12 @@ "sF": "16", "sU": "13", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "1998 Regular Season - Week 17" }, { "date": "Dec 27, 1998", @@ -84848,8 +125781,13 @@ "und": "Cincinnati Bengals", "sF": "35", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "1998 Regular Season - Week 17" }, { "date": "Dec 27, 1998", @@ -84859,7 +125797,12 @@ "sF": "19", "sU": "27", "spread": "5", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 22.0, + "sF": 27.0 + }, + "week": "1998 Regular Season - Week 17" }, { "date": "Dec 27, 1998", @@ -84868,8 +125811,13 @@ "und": "New Orleans Saints", "sF": "45", "sU": "33", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1998 Regular Season - Week 17" }, { "date": "Dec 27, 1998", @@ -84878,8 +125826,13 @@ "und": "New England Patriots", "sF": "31", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "1998 Regular Season - Week 17" }, { "date": "Dec 27, 1998", @@ -84889,7 +125842,12 @@ "sF": "20", "sU": "10", "spread": "4", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.0, + "sF": 19.0 + }, + "week": "1998 Regular Season - Week 17" }, { "date": "Dec 27, 1998", @@ -84898,8 +125856,13 @@ "und": "St Louis Rams", "sF": "38", "sU": "19", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 45.0, + "pScore": { + "sU": 16.25, + "sF": 28.75 + }, + "week": "1998 Regular Season - Week 17" }, { "date": "Dec 27, 1998", @@ -84908,8 +125871,13 @@ "und": "San Diego Chargers", "sF": "16", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.0, + "pScore": { + "sU": 16.25, + "sF": 23.75 + }, + "week": "1998 Regular Season - Week 17" }, { "date": "Dec 27, 1998", @@ -84919,7 +125887,12 @@ "sF": "28", "sU": "21", "spread": "10", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 18.25, + "sF": 28.25 + }, + "week": "1998 Regular Season - Week 17" }, { "date": "Dec 27, 1998", @@ -84928,8 +125901,13 @@ "und": "Dallas Cowboys", "sF": "7", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.0, + "pScore": { + "sU": 19.75, + "sF": 21.25 + }, + "week": "1998 Regular Season - Week 17" }, { "date": "Dec 28, 1998", @@ -84939,7 +125917,12 @@ "sF": "21", "sU": "3", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "1998 Regular Season - Week 17" }, { "date": "Jan 2, 1999", @@ -84948,8 +125931,13 @@ "und": "Buffalo Bills (5)", "sF": "24", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1998 Playoffs" }, { "date": "Jan 2, 1999", @@ -84959,7 +125947,12 @@ "sF": "7", "sU": "20", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "1998 Playoffs" }, { "date": "Jan 3, 1999", @@ -84968,8 +125961,13 @@ "und": "New England Patriots (6)", "sF": "25", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 41.0, + "pScore": { + "sU": 16.25, + "sF": 24.75 + }, + "week": "1998 Playoffs" }, { "date": "Jan 3, 1999", @@ -84979,7 +125977,12 @@ "sF": "30", "sU": "27", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "1998 Playoffs" }, { "date": "Jan 9, 1999", @@ -84988,12 +125991,13 @@ "und": "San Francisco 49ers (4)", "sF": "20", "sU": "18", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": 53.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 24.75, + "sF": 28.25 + }, + "week": "1998 Playoffs" }, { "date": "Jan 9, 1999", @@ -85002,8 +126006,13 @@ "und": "Miami Dolphins (4)", "sF": "38", "sU": "3", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 48.0, + "pScore": { + "sU": 17.25, + "sF": 30.75 + }, + "week": "1998 Playoffs" }, { "date": "Jan 10, 1999", @@ -85013,7 +126022,12 @@ "sF": "34", "sU": "24", "spread": "9", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.0, + "sF": 26.0 + }, + "week": "1998 Playoffs" }, { "date": "Jan 10, 1999", @@ -85022,8 +126036,13 @@ "und": "Arizona Cardinals (6)", "sF": "41", "sU": "21", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 52.5, + "pScore": { + "sU": 18.0, + "sF": 34.5 + }, + "week": "1998 Playoffs" }, { "date": "Jan 17, 1999", @@ -85033,7 +126052,12 @@ "sF": "27", "sU": "30", "spread": "11", - "ou": -1 + "ou": 55.5, + "pScore": { + "sU": 22.25, + "sF": 33.25 + }, + "week": "1998 Playoffs" }, { "date": "Jan 17, 1999", @@ -85043,7 +126067,12 @@ "sF": "23", "sU": "10", "spread": "9", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 21.0, + "sF": 30.0 + }, + "week": "1998 Playoffs" }, { "date": "Jan 31, 1999", @@ -85052,8 +126081,13 @@ "und": "Atlanta Falcons (2)", "sF": "34", "sU": "19", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 52.0, + "pScore": { + "sU": 22.25, + "sF": 29.75 + }, + "week": "1998 Playoffs" }, { "date": "Sep 12, 1999", @@ -85062,8 +126096,13 @@ "und": "Dallas Cowboys", "sF": "35", "sU": "41", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "1999 Regular Season - Week 1" }, { "date": "Sep 12, 1999", @@ -85073,7 +126112,12 @@ "sF": "17", "sU": "20", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1999 Regular Season - Week 1" }, { "date": "Sep 12, 1999", @@ -85083,7 +126127,12 @@ "sF": "28", "sU": "24", "spread": "9", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.0, + "sF": 26.0 + }, + "week": "1999 Regular Season - Week 1" }, { "date": "Sep 12, 1999", @@ -85093,7 +126142,12 @@ "sF": "14", "sU": "31", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "1999 Regular Season - Week 1" }, { "date": "Sep 12, 1999", @@ -85102,8 +126156,13 @@ "und": "Carolina Panthers", "sF": "19", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "1999 Regular Season - Week 1" }, { "date": "Sep 12, 1999", @@ -85113,7 +126172,12 @@ "sF": "28", "sU": "30", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "1999 Regular Season - Week 1" }, { "date": "Sep 12, 1999", @@ -85123,7 +126187,12 @@ "sF": "36", "sU": "35", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "1999 Regular Season - Week 1" }, { "date": "Sep 12, 1999", @@ -85133,7 +126202,12 @@ "sF": "25", "sU": "24", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1999 Regular Season - Week 1" }, { "date": "Sep 12, 1999", @@ -85143,7 +126217,12 @@ "sF": "17", "sU": "14", "spread": "4", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 22.5, + "sF": 26.5 + }, + "week": "1999 Regular Season - Week 1" }, { "date": "Sep 12, 1999", @@ -85152,8 +126231,13 @@ "und": "Detroit Lions", "sF": "20", "sU": "28", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.0, + "pScore": { + "sU": 16.25, + "sF": 25.75 + }, + "week": "1999 Regular Season - Week 1" }, { "date": "Sep 12, 1999", @@ -85162,8 +126246,13 @@ "und": "New York Giants", "sF": "13", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.5, + "pScore": { + "sU": 16.0, + "sF": 21.5 + }, + "week": "1999 Regular Season - Week 1" }, { "date": "Sep 12, 1999", @@ -85172,12 +126261,13 @@ "und": "San Francisco 49ers", "sF": "41", "sU": "3", - "spread": "5", - "ou": "49", + "spread": "5.5", + "ou": 49.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 21.75, + "sF": 27.25 + }, + "week": "1999 Regular Season - Week 1" }, { "date": "Sep 12, 1999", @@ -85187,7 +126277,12 @@ "sF": "43", "sU": "0", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1999 Regular Season - Week 1" }, { "date": "Sep 13, 1999", @@ -85197,7 +126292,12 @@ "sF": "21", "sU": "38", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "1999 Regular Season - Week 1" }, { "date": "Sep 19, 1999", @@ -85207,7 +126307,12 @@ "sF": "7", "sU": "34", "spread": "1", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.75, + "sF": 20.75 + }, + "week": "1999 Regular Season - Week 2" }, { "date": "Sep 19, 1999", @@ -85217,7 +126322,12 @@ "sF": "17", "sU": "22", "spread": "11", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 18.25, + "sF": 29.25 + }, + "week": "1999 Regular Season - Week 2" }, { "date": "Sep 19, 1999", @@ -85226,8 +126336,13 @@ "und": "Baltimore Ravens", "sF": "23", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1999 Regular Season - Week 2" }, { "date": "Sep 19, 1999", @@ -85236,8 +126351,13 @@ "und": "Carolina Panthers", "sF": "22", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.0, + "pScore": { + "sU": 17.25, + "sF": 26.75 + }, + "week": "1999 Regular Season - Week 2" }, { "date": "Sep 19, 1999", @@ -85246,8 +126366,13 @@ "und": "Detroit Lions", "sF": "15", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "1999 Regular Season - Week 2" }, { "date": "Sep 19, 1999", @@ -85257,7 +126382,12 @@ "sF": "19", "sU": "16", "spread": "9", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.0, + "sF": 25.0 + }, + "week": "1999 Regular Season - Week 2" }, { "date": "Sep 19, 1999", @@ -85266,8 +126396,13 @@ "und": "Indianapolis Colts", "sF": "31", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.0, + "pScore": { + "sU": 20.25, + "sF": 24.75 + }, + "week": "1999 Regular Season - Week 2" }, { "date": "Sep 19, 1999", @@ -85276,8 +126411,13 @@ "und": "Chicago Bears", "sF": "14", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1999 Regular Season - Week 2" }, { "date": "Sep 19, 1999", @@ -85286,8 +126426,13 @@ "und": "Washington Redskins", "sF": "21", "sU": "50", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1999 Regular Season - Week 2" }, { "date": "Sep 19, 1999", @@ -85296,8 +126441,13 @@ "und": "Philadelphia Eagles", "sF": "19", "sU": "5", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.5, + "pScore": { + "sU": 15.0, + "sF": 21.5 + }, + "week": "1999 Regular Season - Week 2" }, { "date": "Sep 19, 1999", @@ -85307,7 +126457,12 @@ "sF": "28", "sU": "21", "spread": "11", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 15.75, + "sF": 26.75 + }, + "week": "1999 Regular Season - Week 2" }, { "date": "Sep 19, 1999", @@ -85317,7 +126472,12 @@ "sF": "26", "sU": "9", "spread": "16", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 12.0, + "sF": 28.0 + }, + "week": "1999 Regular Season - Week 2" }, { "date": "Sep 19, 1999", @@ -85326,8 +126486,13 @@ "und": "Kansas City Chiefs", "sF": "10", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "1999 Regular Season - Week 2" }, { "date": "Sep 19, 1999", @@ -85337,7 +126502,12 @@ "sF": "17", "sU": "3", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "1999 Regular Season - Week 2" }, { "date": "Sep 20, 1999", @@ -85346,8 +126516,13 @@ "und": "Atlanta Falcons", "sF": "24", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "1999 Regular Season - Week 2" }, { "date": "Sep 26, 1999", @@ -85357,7 +126532,12 @@ "sF": "27", "sU": "3", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "1999 Regular Season - Week 3" }, { "date": "Sep 26, 1999", @@ -85366,8 +126546,13 @@ "und": "St Louis Rams", "sF": "7", "sU": "35", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.5, + "pScore": { + "sU": 19.5, + "sF": 21.0 + }, + "week": "1999 Regular Season - Week 3" }, { "date": "Sep 26, 1999", @@ -85377,7 +126562,12 @@ "sF": "17", "sU": "10", "spread": "12", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 12.25, + "sF": 24.25 + }, + "week": "1999 Regular Season - Week 3" }, { "date": "Sep 26, 1999", @@ -85386,8 +126576,13 @@ "und": "Philadelphia Eagles", "sF": "26", "sU": "0", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 38.0, + "pScore": { + "sU": 13.25, + "sF": 24.75 + }, + "week": "1999 Regular Season - Week 3" }, { "date": "Sep 26, 1999", @@ -85396,8 +126591,13 @@ "und": "Detroit Lions", "sF": "31", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "1999 Regular Season - Week 3" }, { "date": "Sep 26, 1999", @@ -85407,7 +126607,12 @@ "sF": "10", "sU": "29", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1999 Regular Season - Week 3" }, { "date": "Sep 26, 1999", @@ -85416,8 +126621,13 @@ "und": "Denver Broncos", "sF": "13", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1999 Regular Season - Week 3" }, { "date": "Sep 26, 1999", @@ -85427,7 +126637,12 @@ "sF": "27", "sU": "20", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "1999 Regular Season - Week 3" }, { "date": "Sep 26, 1999", @@ -85436,8 +126651,13 @@ "und": "Tennessee Titans", "sF": "19", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 45.0, + "pScore": { + "sU": 17.75, + "sF": 27.25 + }, + "week": "1999 Regular Season - Week 3" }, { "date": "Sep 26, 1999", @@ -85447,7 +126667,12 @@ "sF": "27", "sU": "19", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "1999 Regular Season - Week 3" }, { "date": "Sep 26, 1999", @@ -85457,7 +126682,12 @@ "sF": "24", "sU": "17", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1999 Regular Season - Week 3" }, { "date": "Sep 26, 1999", @@ -85467,7 +126697,12 @@ "sF": "16", "sU": "14", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "1999 Regular Season - Week 3" }, { "date": "Sep 27, 1999", @@ -85476,8 +126711,13 @@ "und": "Arizona Cardinals", "sF": "24", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "1999 Regular Season - Week 3" }, { "date": "Oct 3, 1999", @@ -85486,8 +126726,13 @@ "und": "Cincinnati Bengals", "sF": "38", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "1999 Regular Season - Week 4" }, { "date": "Oct 3, 1999", @@ -85497,7 +126742,12 @@ "sF": "21", "sU": "14", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "1999 Regular Season - Week 4" }, { "date": "Oct 3, 1999", @@ -85506,8 +126756,13 @@ "und": "Carolina Panthers", "sF": "38", "sU": "36", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 45.5, + "pScore": { + "sU": 18.5, + "sF": 27.0 + }, + "week": "1999 Regular Season - Week 4" }, { "date": "Oct 3, 1999", @@ -85517,7 +126772,12 @@ "sF": "17", "sU": "3", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "1999 Regular Season - Week 4" }, { "date": "Oct 3, 1999", @@ -85526,8 +126786,13 @@ "und": "Baltimore Ravens", "sF": "13", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "1999 Regular Season - Week 4" }, { "date": "Oct 3, 1999", @@ -85537,7 +126802,12 @@ "sF": "10", "sU": "14", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "1999 Regular Season - Week 4" }, { "date": "Oct 3, 1999", @@ -85547,7 +126817,12 @@ "sF": "19", "sU": "7", "spread": "12", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 13.0, + "sF": 25.0 + }, + "week": "1999 Regular Season - Week 4" }, { "date": "Oct 3, 1999", @@ -85556,8 +126831,13 @@ "und": "Philadelphia Eagles", "sF": "16", "sU": "15", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 35.5, + "pScore": { + "sU": 13.0, + "sF": 22.5 + }, + "week": "1999 Regular Season - Week 4" }, { "date": "Oct 3, 1999", @@ -85567,7 +126847,12 @@ "sF": "35", "sU": "7", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "1999 Regular Season - Week 4" }, { "date": "Oct 3, 1999", @@ -85576,8 +126861,13 @@ "und": "New York Jets", "sF": "13", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "1999 Regular Season - Week 4" }, { "date": "Oct 3, 1999", @@ -85587,7 +126877,12 @@ "sF": "21", "sU": "14", "spread": "1", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.75, + "sF": 19.75 + }, + "week": "1999 Regular Season - Week 4" }, { "date": "Oct 3, 1999", @@ -85596,8 +126891,13 @@ "und": "Tennessee Titans", "sF": "24", "sU": "22", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.5, + "pScore": { + "sU": 19.5, + "sF": 21.0 + }, + "week": "1999 Regular Season - Week 4" }, { "date": "Oct 3, 1999", @@ -85606,8 +126906,13 @@ "und": "Oakland Raiders", "sF": "22", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "1999 Regular Season - Week 4" }, { "date": "Oct 4, 1999", @@ -85616,8 +126921,13 @@ "und": "Buffalo Bills", "sF": "18", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "1999 Regular Season - Week 4" }, { "date": "Oct 10, 1999", @@ -85627,7 +126937,12 @@ "sF": "22", "sU": "24", "spread": "13", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 15.25, + "sF": 28.25 + }, + "week": "1999 Regular Season - Week 5" }, { "date": "Oct 10, 1999", @@ -85636,8 +126951,13 @@ "und": "Pittsburgh Steelers", "sF": "24", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "1999 Regular Season - Week 5" }, { "date": "Oct 10, 1999", @@ -85646,8 +126966,13 @@ "und": "San Diego Chargers", "sF": "10", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1999 Regular Season - Week 5" }, { "date": "Oct 10, 1999", @@ -85656,8 +126981,13 @@ "und": "New England Patriots", "sF": "16", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "1999 Regular Season - Week 5" }, { "date": "Oct 10, 1999", @@ -85667,7 +126997,12 @@ "sF": "18", "sU": "17", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "1999 Regular Season - Week 5" }, { "date": "Oct 10, 1999", @@ -85677,11 +127012,12 @@ "sF": "42", "sU": "20", "spread": "3", - "ou": "49", + "ou": 45.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 21.25, + "sF": 24.25 + }, + "week": "1999 Regular Season - Week 5" }, { "date": "Oct 10, 1999", @@ -85691,7 +127027,12 @@ "sF": "17", "sU": "20", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "1999 Regular Season - Week 5" }, { "date": "Oct 10, 1999", @@ -85700,8 +127041,13 @@ "und": "Philadelphia Eagles", "sF": "10", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 37.0, + "pScore": { + "sU": 13.75, + "sF": 23.25 + }, + "week": "1999 Regular Season - Week 5" }, { "date": "Oct 10, 1999", @@ -85711,7 +127057,12 @@ "sF": "14", "sU": "3", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "1999 Regular Season - Week 5" }, { "date": "Oct 10, 1999", @@ -85720,8 +127071,13 @@ "und": "Indianapolis Colts", "sF": "34", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.5, + "pScore": { + "sU": 21.5, + "sF": 23.0 + }, + "week": "1999 Regular Season - Week 5" }, { "date": "Oct 10, 1999", @@ -85731,7 +127087,12 @@ "sF": "14", "sU": "11", "spread": "7", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.75, + "sF": 22.75 + }, + "week": "1999 Regular Season - Week 5" }, { "date": "Oct 10, 1999", @@ -85741,7 +127102,12 @@ "sF": "13", "sU": "16", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "1999 Regular Season - Week 5" }, { "date": "Oct 10, 1999", @@ -85751,7 +127117,12 @@ "sF": "26", "sU": "23", "spread": "6", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.25, + "sF": 23.25 + }, + "week": "1999 Regular Season - Week 5" }, { "date": "Oct 11, 1999", @@ -85761,7 +127132,12 @@ "sF": "16", "sU": "6", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1999 Regular Season - Week 5" }, { "date": "Oct 17, 1999", @@ -85771,7 +127147,12 @@ "sF": "17", "sU": "3", "spread": "5", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.25, + "sF": 21.25 + }, + "week": "1999 Regular Season - Week 6" }, { "date": "Oct 17, 1999", @@ -85780,8 +127161,13 @@ "und": "Oakland Raiders", "sF": "14", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "1999 Regular Season - Week 6" }, { "date": "Oct 17, 1999", @@ -85790,8 +127176,13 @@ "und": "Detroit Lions", "sF": "23", "sU": "25", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "1999 Regular Season - Week 6" }, { "date": "Oct 17, 1999", @@ -85801,7 +127192,12 @@ "sF": "41", "sU": "13", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "1999 Regular Season - Week 6" }, { "date": "Oct 17, 1999", @@ -85810,8 +127206,13 @@ "und": "Philadelphia Eagles", "sF": "16", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "1999 Regular Season - Week 6" }, { "date": "Oct 17, 1999", @@ -85820,8 +127221,13 @@ "und": "Miami Dolphins", "sF": "30", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "1999 Regular Season - Week 6" }, { "date": "Oct 17, 1999", @@ -85831,7 +127237,12 @@ "sF": "24", "sU": "21", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "1999 Regular Season - Week 6" }, { "date": "Oct 17, 1999", @@ -85840,8 +127251,13 @@ "und": "New York Jets", "sF": "16", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "1999 Regular Season - Week 6" }, { "date": "Oct 17, 1999", @@ -85850,8 +127266,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "7", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": 37.5, + "pScore": { + "sU": 10.0, + "sF": 27.5 + }, + "week": "1999 Regular Season - Week 6" }, { "date": "Oct 17, 1999", @@ -85860,8 +127281,13 @@ "und": "San Diego Chargers", "sF": "10", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.5, + "pScore": { + "sU": 18.0, + "sF": 19.5 + }, + "week": "1999 Regular Season - Week 6" }, { "date": "Oct 17, 1999", @@ -85870,8 +127296,13 @@ "und": "Denver Broncos", "sF": "10", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "1999 Regular Season - Week 6" }, { "date": "Oct 17, 1999", @@ -85881,7 +127312,12 @@ "sF": "29", "sU": "31", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "1999 Regular Season - Week 6" }, { "date": "Oct 17, 1999", @@ -85890,8 +127326,13 @@ "und": "Arizona Cardinals", "sF": "24", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "1999 Regular Season - Week 6" }, { "date": "Oct 18, 1999", @@ -85901,7 +127342,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1999 Regular Season - Week 6" }, { "date": "Oct 21, 1999", @@ -85911,7 +127357,12 @@ "sF": "35", "sU": "8", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "1999 Regular Season - Week 7" }, { "date": "Oct 24, 1999", @@ -85921,7 +127372,12 @@ "sF": "31", "sU": "10", "spread": "11", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 16.5, + "sF": 27.5 + }, + "week": "1999 Regular Season - Week 7" }, { "date": "Oct 24, 1999", @@ -85931,11 +127387,12 @@ "sF": "40", "sU": "16", "spread": "7", - "ou": "49", + "ou": 48.5, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 20.75, + "sF": 27.75 + }, + "week": "1999 Regular Season - Week 7" }, { "date": "Oct 24, 1999", @@ -85945,7 +127402,12 @@ "sF": "6", "sU": "3", "spread": "8", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 14.25, + "sF": 22.25 + }, + "week": "1999 Regular Season - Week 7" }, { "date": "Oct 24, 1999", @@ -85955,7 +127417,12 @@ "sF": "16", "sU": "13", "spread": "9", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 12.5, + "sF": 21.5 + }, + "week": "1999 Regular Season - Week 7" }, { "date": "Oct 24, 1999", @@ -85964,8 +127431,13 @@ "und": "Detroit Lions", "sF": "9", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.5, + "pScore": { + "sU": 19.5, + "sF": 24.0 + }, + "week": "1999 Regular Season - Week 7" }, { "date": "Oct 24, 1999", @@ -85974,8 +127446,13 @@ "und": "Denver Broncos", "sF": "24", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "1999 Regular Season - Week 7" }, { "date": "Oct 24, 1999", @@ -85984,8 +127461,13 @@ "und": "Cleveland Browns", "sF": "34", "sU": "3", - "spread": "18", - "ou": -1 + "spread": "18.5", + "ou": 43.5, + "pScore": { + "sU": 12.5, + "sF": 31.0 + }, + "week": "1999 Regular Season - Week 7" }, { "date": "Oct 24, 1999", @@ -85995,7 +127477,12 @@ "sF": "31", "sU": "3", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "1999 Regular Season - Week 7" }, { "date": "Oct 24, 1999", @@ -86005,7 +127492,12 @@ "sF": "38", "sU": "20", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "1999 Regular Season - Week 7" }, { "date": "Oct 24, 1999", @@ -86015,7 +127507,12 @@ "sF": "31", "sU": "3", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "1999 Regular Season - Week 7" }, { "date": "Oct 24, 1999", @@ -86024,8 +127521,13 @@ "und": "New York Jets", "sF": "24", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "1999 Regular Season - Week 7" }, { "date": "Oct 24, 1999", @@ -86034,8 +127536,13 @@ "und": "Buffalo Bills", "sF": "26", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "1999 Regular Season - Week 7" }, { "date": "Oct 25, 1999", @@ -86044,8 +127551,13 @@ "und": "Atlanta Falcons", "sF": "13", "sU": "9", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.0, + "pScore": { + "sU": 15.75, + "sF": 21.25 + }, + "week": "1999 Regular Season - Week 7" }, { "date": "Oct 31, 1999", @@ -86054,8 +127566,13 @@ "und": "Cincinnati Bengals", "sF": "41", "sU": "10", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 38.0, + "pScore": { + "sU": 12.75, + "sF": 25.25 + }, + "week": "1999 Regular Season - Week 8" }, { "date": "Oct 31, 1999", @@ -86064,8 +127581,13 @@ "und": "Baltimore Ravens", "sF": "13", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "1999 Regular Season - Week 8" }, { "date": "Oct 31, 1999", @@ -86075,7 +127597,12 @@ "sF": "34", "sU": "0", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "1999 Regular Season - Week 8" }, { "date": "Oct 31, 1999", @@ -86084,8 +127611,13 @@ "und": "Chicago Bears", "sF": "48", "sU": "22", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 44.0, + "pScore": { + "sU": 17.75, + "sF": 26.25 + }, + "week": "1999 Regular Season - Week 8" }, { "date": "Oct 31, 1999", @@ -86094,8 +127626,13 @@ "und": "Cleveland Browns", "sF": "16", "sU": "21", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 33.5, + "pScore": { + "sU": 12.0, + "sF": 21.5 + }, + "week": "1999 Regular Season - Week 8" }, { "date": "Oct 31, 1999", @@ -86104,8 +127641,13 @@ "und": "Philadelphia Eagles", "sF": "23", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 33.5, + "pScore": { + "sU": 15.5, + "sF": 18.0 + }, + "week": "1999 Regular Season - Week 8" }, { "date": "Oct 31, 1999", @@ -86115,7 +127657,12 @@ "sF": "27", "sU": "20", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "1999 Regular Season - Week 8" }, { "date": "Oct 31, 1999", @@ -86125,7 +127672,12 @@ "sF": "21", "sU": "24", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "1999 Regular Season - Week 8" }, { "date": "Oct 31, 1999", @@ -86135,7 +127687,12 @@ "sF": "9", "sU": "16", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1999 Regular Season - Week 8" }, { "date": "Oct 31, 1999", @@ -86145,7 +127702,12 @@ "sF": "27", "sU": "3", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "1999 Regular Season - Week 8" }, { "date": "Oct 31, 1999", @@ -86154,8 +127716,13 @@ "und": "Denver Broncos", "sF": "23", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "1999 Regular Season - Week 8" }, { "date": "Oct 31, 1999", @@ -86165,7 +127732,12 @@ "sF": "34", "sU": "24", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "1999 Regular Season - Week 8" }, { "date": "Oct 31, 1999", @@ -86174,8 +127746,13 @@ "und": "Detroit Lions", "sF": "3", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.0, + "pScore": { + "sU": 16.25, + "sF": 18.75 + }, + "week": "1999 Regular Season - Week 8" }, { "date": "Nov 1, 1999", @@ -86184,8 +127761,13 @@ "und": "Seattle Seahawks", "sF": "7", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.5, + "pScore": { + "sU": 18.5, + "sF": 24.0 + }, + "week": "1999 Regular Season - Week 8" }, { "date": "Nov 7, 1999", @@ -86195,7 +127777,12 @@ "sF": "27", "sU": "31", "spread": "4", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.5, + "sF": 24.5 + }, + "week": "1999 Regular Season - Week 9" }, { "date": "Nov 7, 1999", @@ -86205,7 +127792,12 @@ "sF": "30", "sU": "7", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "1999 Regular Season - Week 9" }, { "date": "Nov 7, 1999", @@ -86215,7 +127807,12 @@ "sF": "33", "sU": "7", "spread": "5", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.5, + "sF": 20.5 + }, + "week": "1999 Regular Season - Week 9" }, { "date": "Nov 7, 1999", @@ -86225,7 +127822,12 @@ "sF": "13", "sU": "14", "spread": "9", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.75, + "sF": 24.75 + }, + "week": "1999 Regular Season - Week 9" }, { "date": "Nov 7, 1999", @@ -86234,8 +127836,13 @@ "und": "Cleveland Browns", "sF": "41", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 32.5, + "pScore": { + "sU": 14.5, + "sF": 18.0 + }, + "week": "1999 Regular Season - Week 9" }, { "date": "Nov 7, 1999", @@ -86245,7 +127852,12 @@ "sF": "12", "sU": "7", "spread": "7", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.0, + "sF": 21.0 + }, + "week": "1999 Regular Season - Week 9" }, { "date": "Nov 7, 1999", @@ -86255,7 +127867,12 @@ "sF": "25", "sU": "17", "spread": "4", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.5, + "sF": 24.5 + }, + "week": "1999 Regular Season - Week 9" }, { "date": "Nov 7, 1999", @@ -86265,7 +127882,12 @@ "sF": "17", "sU": "34", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "1999 Regular Season - Week 9" }, { "date": "Nov 7, 1999", @@ -86274,8 +127896,13 @@ "und": "New Orleans Saints", "sF": "31", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 33.5, + "pScore": { + "sU": 15.0, + "sF": 18.5 + }, + "week": "1999 Regular Season - Week 9" }, { "date": "Nov 7, 1999", @@ -86284,8 +127911,13 @@ "und": "Pittsburgh Steelers", "sF": "6", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "1999 Regular Season - Week 9" }, { "date": "Nov 7, 1999", @@ -86295,7 +127927,12 @@ "sF": "37", "sU": "20", "spread": "14", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 13.0, + "sF": 27.0 + }, + "week": "1999 Regular Season - Week 9" }, { "date": "Nov 7, 1999", @@ -86305,7 +127942,12 @@ "sF": "17", "sU": "0", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1999 Regular Season - Week 9" }, { "date": "Nov 8, 1999", @@ -86314,8 +127956,13 @@ "und": "Dallas Cowboys", "sF": "27", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.5, + "pScore": { + "sU": 20.5, + "sF": 27.0 + }, + "week": "1999 Regular Season - Week 9" }, { "date": "Nov 14, 1999", @@ -86325,7 +127972,12 @@ "sF": "35", "sU": "10", "spread": "10", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 19.0, + "sF": 29.0 + }, + "week": "1999 Regular Season - Week 10" }, { "date": "Nov 14, 1999", @@ -86334,8 +127986,13 @@ "und": "Chicago Bears", "sF": "27", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "1999 Regular Season - Week 10" }, { "date": "Nov 14, 1999", @@ -86345,7 +128002,12 @@ "sF": "23", "sU": "3", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1999 Regular Season - Week 10" }, { "date": "Nov 14, 1999", @@ -86354,8 +128016,13 @@ "und": "Cleveland Browns", "sF": "15", "sU": "16", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 34.5, + "pScore": { + "sU": 10.0, + "sF": 24.5 + }, + "week": "1999 Regular Season - Week 10" }, { "date": "Nov 14, 1999", @@ -86365,7 +128032,12 @@ "sF": "17", "sU": "10", "spread": "3", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 15.75, + "sF": 18.75 + }, + "week": "1999 Regular Season - Week 10" }, { "date": "Nov 14, 1999", @@ -86375,7 +128047,12 @@ "sF": "24", "sU": "14", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "1999 Regular Season - Week 10" }, { "date": "Nov 14, 1999", @@ -86385,7 +128062,12 @@ "sF": "6", "sU": "24", "spread": "1", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.75, + "sF": 19.75 + }, + "week": "1999 Regular Season - Week 10" }, { "date": "Nov 14, 1999", @@ -86395,7 +128077,12 @@ "sF": "28", "sU": "35", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "1999 Regular Season - Week 10" }, { "date": "Nov 14, 1999", @@ -86405,7 +128092,12 @@ "sF": "27", "sU": "19", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "1999 Regular Season - Week 10" }, { "date": "Nov 14, 1999", @@ -86415,7 +128107,12 @@ "sF": "28", "sU": "9", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "1999 Regular Season - Week 10" }, { "date": "Nov 14, 1999", @@ -86425,7 +128122,12 @@ "sF": "6", "sU": "3", "spread": "13", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 12.0, + "sF": 25.0 + }, + "week": "1999 Regular Season - Week 10" }, { "date": "Nov 14, 1999", @@ -86434,8 +128136,13 @@ "und": "Arizona Cardinals", "sF": "19", "sU": "23", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 35.5, + "pScore": { + "sU": 15.0, + "sF": 20.5 + }, + "week": "1999 Regular Season - Week 10" }, { "date": "Nov 14, 1999", @@ -86445,7 +128152,12 @@ "sF": "13", "sU": "27", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1999 Regular Season - Week 10" }, { "date": "Nov 14, 1999", @@ -86454,8 +128166,13 @@ "und": "Denver Broncos", "sF": "20", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.0, + "pScore": { + "sU": 17.75, + "sF": 23.25 + }, + "week": "1999 Regular Season - Week 10" }, { "date": "Nov 15, 1999", @@ -86465,7 +128182,12 @@ "sF": "17", "sU": "24", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1999 Regular Season - Week 10" }, { "date": "Nov 21, 1999", @@ -86475,7 +128197,12 @@ "sF": "19", "sU": "31", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "1999 Regular Season - Week 11" }, { "date": "Nov 21, 1999", @@ -86484,8 +128211,13 @@ "und": "New England Patriots", "sF": "27", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.5, + "pScore": { + "sU": 17.0, + "sF": 20.5 + }, + "week": "1999 Regular Season - Week 11" }, { "date": "Nov 21, 1999", @@ -86494,8 +128226,13 @@ "und": "New York Jets", "sF": "7", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "1999 Regular Season - Week 11" }, { "date": "Nov 21, 1999", @@ -86505,7 +128242,12 @@ "sF": "19", "sU": "10", "spread": "7", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 13.75, + "sF": 20.75 + }, + "week": "1999 Regular Season - Week 11" }, { "date": "Nov 21, 1999", @@ -86514,8 +128256,13 @@ "und": "Cleveland Browns", "sF": "31", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 35.5, + "pScore": { + "sU": 15.0, + "sF": 20.5 + }, + "week": "1999 Regular Season - Week 11" }, { "date": "Nov 21, 1999", @@ -86525,7 +128272,12 @@ "sF": "26", "sU": "17", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "1999 Regular Season - Week 11" }, { "date": "Nov 21, 1999", @@ -86535,7 +128287,12 @@ "sF": "44", "sU": "17", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1999 Regular Season - Week 11" }, { "date": "Nov 21, 1999", @@ -86544,8 +128301,13 @@ "und": "Pittsburgh Steelers", "sF": "16", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 36.5, + "pScore": { + "sU": 15.5, + "sF": 21.0 + }, + "week": "1999 Regular Season - Week 11" }, { "date": "Nov 21, 1999", @@ -86554,12 +128316,13 @@ "und": "San Francisco 49ers", "sF": "23", "sU": "7", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": 47.5, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 20.0, + "sF": 27.5 + }, + "week": "1999 Regular Season - Week 11" }, { "date": "Nov 21, 1999", @@ -86568,8 +128331,13 @@ "und": "New York Giants", "sF": "23", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.5, + "pScore": { + "sU": 19.5, + "sF": 25.0 + }, + "week": "1999 Regular Season - Week 11" }, { "date": "Nov 21, 1999", @@ -86578,8 +128346,13 @@ "und": "Arizona Cardinals", "sF": "9", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 35.0, + "pScore": { + "sU": 16.75, + "sF": 18.25 + }, + "week": "1999 Regular Season - Week 11" }, { "date": "Nov 21, 1999", @@ -86589,7 +128362,12 @@ "sF": "34", "sU": "31", "spread": "5", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 14.75, + "sF": 19.75 + }, + "week": "1999 Regular Season - Week 11" }, { "date": "Nov 21, 1999", @@ -86598,8 +128376,13 @@ "und": "New Orleans Saints", "sF": "41", "sU": "23", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 35.0, + "pScore": { + "sU": 11.25, + "sF": 23.75 + }, + "week": "1999 Regular Season - Week 11" }, { "date": "Nov 22, 1999", @@ -86608,8 +128391,13 @@ "und": "Oakland Raiders", "sF": "27", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.0, + "pScore": { + "sU": 17.75, + "sF": 19.25 + }, + "week": "1999 Regular Season - Week 11" }, { "date": "Nov 25, 1999", @@ -86619,7 +128407,12 @@ "sF": "21", "sU": "17", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "1999 Regular Season - Week 12" }, { "date": "Nov 25, 1999", @@ -86628,8 +128421,13 @@ "und": "Miami Dolphins", "sF": "20", "sU": "0", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "1999 Regular Season - Week 12" }, { "date": "Nov 28, 1999", @@ -86638,8 +128436,13 @@ "und": "Atlanta Falcons", "sF": "34", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "1999 Regular Season - Week 12" }, { "date": "Nov 28, 1999", @@ -86649,7 +128452,12 @@ "sF": "20", "sU": "17", "spread": "10", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 16.25, + "sF": 26.25 + }, + "week": "1999 Regular Season - Week 12" }, { "date": "Nov 28, 1999", @@ -86659,7 +128467,12 @@ "sF": "30", "sU": "23", "spread": "7", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 14.75, + "sF": 21.75 + }, + "week": "1999 Regular Season - Week 12" }, { "date": "Nov 28, 1999", @@ -86669,7 +128482,12 @@ "sF": "20", "sU": "27", "spread": "11", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 12.5, + "sF": 23.5 + }, + "week": "1999 Regular Season - Week 12" }, { "date": "Nov 28, 1999", @@ -86679,7 +128497,12 @@ "sF": "17", "sU": "7", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1999 Regular Season - Week 12" }, { "date": "Nov 28, 1999", @@ -86688,8 +128511,13 @@ "und": "Cleveland Browns", "sF": "33", "sU": "21", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 35.5, + "pScore": { + "sU": 12.5, + "sF": 23.0 + }, + "week": "1999 Regular Season - Week 12" }, { "date": "Nov 28, 1999", @@ -86699,7 +128527,12 @@ "sF": "43", "sU": "12", "spread": "14", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 16.5, + "sF": 30.5 + }, + "week": "1999 Regular Season - Week 12" }, { "date": "Nov 28, 1999", @@ -86708,8 +128541,13 @@ "und": "Arizona Cardinals", "sF": "24", "sU": "34", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 34.5, + "pScore": { + "sU": 15.0, + "sF": 19.5 + }, + "week": "1999 Regular Season - Week 12" }, { "date": "Nov 28, 1999", @@ -86718,8 +128556,13 @@ "und": "San Diego Chargers", "sF": "35", "sU": "27", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 43.5, + "pScore": { + "sU": 15.0, + "sF": 28.5 + }, + "week": "1999 Regular Season - Week 12" }, { "date": "Nov 28, 1999", @@ -86729,7 +128572,12 @@ "sF": "3", "sU": "16", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "1999 Regular Season - Week 12" }, { "date": "Nov 28, 1999", @@ -86738,8 +128586,13 @@ "und": "Kansas City Chiefs", "sF": "34", "sU": "37", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1999 Regular Season - Week 12" }, { "date": "Nov 28, 1999", @@ -86749,7 +128602,12 @@ "sF": "13", "sU": "6", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "1999 Regular Season - Week 12" }, { "date": "Nov 29, 1999", @@ -86759,11 +128617,12 @@ "sF": "20", "sU": "3", "spread": "6", - "ou": "49", + "ou": 40.5, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 17.25, + "sF": 23.25 + }, + "week": "1999 Regular Season - Week 12" }, { "date": "Dec 2, 1999", @@ -86772,8 +128631,13 @@ "und": "Pittsburgh Steelers", "sF": "20", "sU": "6", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 37.0, + "pScore": { + "sU": 13.25, + "sF": 23.75 + }, + "week": "1999 Regular Season - Week 13" }, { "date": "Dec 5, 1999", @@ -86783,11 +128647,12 @@ "sF": "44", "sU": "30", "spread": "3", - "ou": "49", + "ou": 39.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 18.0, + "sF": 21.0 + }, + "week": "1999 Regular Season - Week 13" }, { "date": "Dec 5, 1999", @@ -86796,8 +128661,13 @@ "und": "Washington Redskins", "sF": "33", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "1999 Regular Season - Week 13" }, { "date": "Dec 5, 1999", @@ -86807,7 +128677,12 @@ "sF": "34", "sU": "37", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "1999 Regular Season - Week 13" }, { "date": "Dec 5, 1999", @@ -86816,8 +128691,13 @@ "und": "Baltimore Ravens", "sF": "14", "sU": "41", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "1999 Regular Season - Week 13" }, { "date": "Dec 5, 1999", @@ -86827,7 +128707,12 @@ "sF": "34", "sU": "21", "spread": "7", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.0, + "sF": 28.0 + }, + "week": "1999 Regular Season - Week 13" }, { "date": "Dec 5, 1999", @@ -86836,8 +128721,13 @@ "und": "Chicago Bears", "sF": "35", "sU": "19", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1999 Regular Season - Week 13" }, { "date": "Dec 5, 1999", @@ -86847,7 +128737,12 @@ "sF": "35", "sU": "12", "spread": "4", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 17.75, + "sF": 21.75 + }, + "week": "1999 Regular Season - Week 13" }, { "date": "Dec 5, 1999", @@ -86856,8 +128751,13 @@ "und": "New York Giants", "sF": "28", "sU": "41", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 34.0, + "pScore": { + "sU": 15.75, + "sF": 18.25 + }, + "week": "1999 Regular Season - Week 13" }, { "date": "Dec 5, 1999", @@ -86867,7 +128767,12 @@ "sF": "30", "sU": "21", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "1999 Regular Season - Week 13" }, { "date": "Dec 5, 1999", @@ -86876,8 +128781,13 @@ "und": "Cleveland Browns", "sF": "23", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.0, + "pScore": { + "sU": 14.25, + "sF": 21.75 + }, + "week": "1999 Regular Season - Week 13" }, { "date": "Dec 5, 1999", @@ -86887,7 +128797,12 @@ "sF": "21", "sU": "17", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "1999 Regular Season - Week 13" }, { "date": "Dec 5, 1999", @@ -86896,8 +128811,13 @@ "und": "Kansas City Chiefs", "sF": "10", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "1999 Regular Season - Week 13" }, { "date": "Dec 5, 1999", @@ -86907,7 +128827,12 @@ "sF": "13", "sU": "6", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1999 Regular Season - Week 13" }, { "date": "Dec 6, 1999", @@ -86916,8 +128841,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "1999 Regular Season - Week 13" }, { "date": "Dec 9, 1999", @@ -86927,7 +128857,12 @@ "sF": "21", "sU": "14", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "1999 Regular Season - Week 14" }, { "date": "Dec 12, 1999", @@ -86937,7 +128872,12 @@ "sF": "44", "sU": "28", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "1999 Regular Season - Week 14" }, { "date": "Dec 12, 1999", @@ -86947,7 +128887,12 @@ "sF": "20", "sU": "10", "spread": "9", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 13.75, + "sF": 22.75 + }, + "week": "1999 Regular Season - Week 14" }, { "date": "Dec 12, 1999", @@ -86956,8 +128901,13 @@ "und": "New Orleans Saints", "sF": "30", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 49.0, + "pScore": { + "sU": 19.25, + "sF": 29.75 + }, + "week": "1999 Regular Season - Week 14" }, { "date": "Dec 12, 1999", @@ -86966,8 +128916,13 @@ "und": "Baltimore Ravens", "sF": "24", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 36.0, + "pScore": { + "sU": 17.25, + "sF": 18.75 + }, + "week": "1999 Regular Season - Week 14" }, { "date": "Dec 12, 1999", @@ -86976,8 +128931,13 @@ "und": "Arizona Cardinals", "sF": "28", "sU": "3", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.5, + "pScore": { + "sU": 20.5, + "sF": 26.0 + }, + "week": "1999 Regular Season - Week 14" }, { "date": "Dec 12, 1999", @@ -86987,7 +128947,12 @@ "sF": "17", "sU": "19", "spread": "8", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 14.25, + "sF": 22.25 + }, + "week": "1999 Regular Season - Week 14" }, { "date": "Dec 12, 1999", @@ -86997,7 +128962,12 @@ "sF": "31", "sU": "33", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "1999 Regular Season - Week 14" }, { "date": "Dec 12, 1999", @@ -87007,7 +128977,12 @@ "sF": "20", "sU": "15", "spread": "7", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.75, + "sF": 26.75 + }, + "week": "1999 Regular Season - Week 14" }, { "date": "Dec 12, 1999", @@ -87017,7 +128992,12 @@ "sF": "20", "sU": "28", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1999 Regular Season - Week 14" }, { "date": "Dec 12, 1999", @@ -87026,8 +129006,13 @@ "und": "San Diego Chargers", "sF": "16", "sU": "19", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.5, + "pScore": { + "sU": 16.5, + "sF": 26.0 + }, + "week": "1999 Regular Season - Week 14" }, { "date": "Dec 12, 1999", @@ -87037,11 +129022,12 @@ "sF": "7", "sU": "26", "spread": "3", - "ou": "49", + "ou": 41.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 19.0, + "sF": 22.0 + }, + "week": "1999 Regular Season - Week 14" }, { "date": "Dec 12, 1999", @@ -87051,7 +129037,12 @@ "sF": "23", "sU": "16", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "1999 Regular Season - Week 14" }, { "date": "Dec 12, 1999", @@ -87061,7 +129052,12 @@ "sF": "31", "sU": "28", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "1999 Regular Season - Week 14" }, { "date": "Dec 13, 1999", @@ -87071,7 +129067,12 @@ "sF": "27", "sU": "24", "spread": "9", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 14.25, + "sF": 23.25 + }, + "week": "1999 Regular Season - Week 14" }, { "date": "Dec 18, 1999", @@ -87080,8 +129081,13 @@ "und": "Pittsburgh Steelers", "sF": "35", "sU": "19", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 37.0, + "pScore": { + "sU": 14.25, + "sF": 22.75 + }, + "week": "1999 Regular Season - Week 15" }, { "date": "Dec 18, 1999", @@ -87090,12 +129096,13 @@ "und": "San Francisco 49ers", "sF": "41", "sU": "24", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": 46.0, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 19.25, + "sF": 26.75 + }, + "week": "1999 Regular Season - Week 15" }, { "date": "Dec 19, 1999", @@ -87105,7 +129112,12 @@ "sF": "30", "sU": "17", "spread": "10", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.5, + "sF": 23.5 + }, + "week": "1999 Regular Season - Week 15" }, { "date": "Dec 19, 1999", @@ -87114,8 +129126,13 @@ "und": "Washington Redskins", "sF": "24", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 51.0, + "pScore": { + "sU": 22.25, + "sF": 28.75 + }, + "week": "1999 Regular Season - Week 15" }, { "date": "Dec 19, 1999", @@ -87124,8 +129141,13 @@ "und": "New York Giants", "sF": "31", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 46.5, + "pScore": { + "sU": 18.0, + "sF": 28.5 + }, + "week": "1999 Regular Season - Week 15" }, { "date": "Dec 19, 1999", @@ -87134,8 +129156,13 @@ "und": "San Diego Chargers", "sF": "12", "sU": "9", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.0, + "pScore": { + "sU": 14.75, + "sF": 22.25 + }, + "week": "1999 Regular Season - Week 15" }, { "date": "Dec 19, 1999", @@ -87144,8 +129171,13 @@ "und": "New Orleans Saints", "sF": "31", "sU": "8", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 41.5, + "pScore": { + "sU": 16.5, + "sF": 25.0 + }, + "week": "1999 Regular Season - Week 15" }, { "date": "Dec 19, 1999", @@ -87155,7 +129187,12 @@ "sF": "10", "sU": "28", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "1999 Regular Season - Week 15" }, { "date": "Dec 19, 1999", @@ -87164,8 +129201,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "14", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 39.0, + "pScore": { + "sU": 12.25, + "sF": 26.75 + }, + "week": "1999 Regular Season - Week 15" }, { "date": "Dec 19, 1999", @@ -87174,8 +129216,13 @@ "und": "Philadelphia Eagles", "sF": "9", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1999 Regular Season - Week 15" }, { "date": "Dec 19, 1999", @@ -87185,7 +129232,12 @@ "sF": "0", "sU": "45", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "1999 Regular Season - Week 15" }, { "date": "Dec 19, 1999", @@ -87194,8 +129246,13 @@ "und": "Seattle Seahawks", "sF": "36", "sU": "30", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.0, + "pScore": { + "sU": 18.75, + "sF": 20.25 + }, + "week": "1999 Regular Season - Week 15" }, { "date": "Dec 19, 1999", @@ -87205,7 +129262,12 @@ "sF": "21", "sU": "22", "spread": "6", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 14.75, + "sF": 20.75 + }, + "week": "1999 Regular Season - Week 15" }, { "date": "Dec 19, 1999", @@ -87215,7 +129277,12 @@ "sF": "31", "sU": "21", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "1999 Regular Season - Week 15" }, { "date": "Dec 20, 1999", @@ -87224,8 +129291,13 @@ "und": "Green Bay Packers", "sF": "24", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 49.0, + "pScore": { + "sU": 22.25, + "sF": 26.75 + }, + "week": "1999 Regular Season - Week 15" }, { "date": "Dec 24, 1999", @@ -87234,8 +129306,13 @@ "und": "New Orleans Saints", "sF": "24", "sU": "31", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.5, + "pScore": { + "sU": 15.0, + "sF": 23.5 + }, + "week": "1999 Regular Season - Week 16" }, { "date": "Dec 25, 1999", @@ -87244,8 +129321,13 @@ "und": "Denver Broncos", "sF": "7", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.5, + "pScore": { + "sU": 19.5, + "sF": 24.0 + }, + "week": "1999 Regular Season - Week 16" }, { "date": "Dec 26, 1999", @@ -87255,7 +129337,12 @@ "sF": "14", "sU": "41", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "1999 Regular Season - Week 16" }, { "date": "Dec 26, 1999", @@ -87264,8 +129351,13 @@ "und": "Pittsburgh Steelers", "sF": "20", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "1999 Regular Season - Week 16" }, { "date": "Dec 26, 1999", @@ -87275,7 +129367,12 @@ "sF": "22", "sU": "0", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "1999 Regular Season - Week 16" }, { "date": "Dec 26, 1999", @@ -87284,8 +129381,13 @@ "und": "Cleveland Browns", "sF": "29", "sU": "28", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 41.5, + "pScore": { + "sU": 14.0, + "sF": 27.5 + }, + "week": "1999 Regular Season - Week 16" }, { "date": "Dec 26, 1999", @@ -87294,8 +129396,13 @@ "und": "New York Giants", "sF": "34", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "1999 Regular Season - Week 16" }, { "date": "Dec 26, 1999", @@ -87305,7 +129412,12 @@ "sF": "34", "sU": "12", "spread": "10", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 18.25, + "sF": 28.25 + }, + "week": "1999 Regular Season - Week 16" }, { "date": "Dec 26, 1999", @@ -87315,7 +129427,12 @@ "sF": "37", "sU": "14", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "1999 Regular Season - Week 16" }, { "date": "Dec 26, 1999", @@ -87325,7 +129442,12 @@ "sF": "13", "sU": "10", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "1999 Regular Season - Week 16" }, { "date": "Dec 26, 1999", @@ -87335,7 +129457,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "1999 Regular Season - Week 16" }, { "date": "Dec 26, 1999", @@ -87345,7 +129472,12 @@ "sF": "23", "sU": "14", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "1999 Regular Season - Week 16" }, { "date": "Dec 26, 1999", @@ -87354,8 +129486,13 @@ "und": "Green Bay Packers", "sF": "29", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1999 Regular Season - Week 16" }, { "date": "Dec 26, 1999", @@ -87365,11 +129502,12 @@ "sF": "26", "sU": "20", "spread": "7", - "ou": "49", + "ou": 47.5, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 20.25, + "sF": 27.25 + }, + "week": "1999 Regular Season - Week 16" }, { "date": "Dec 27, 1999", @@ -87378,8 +129516,13 @@ "und": "New York Jets", "sF": "31", "sU": "38", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "1999 Regular Season - Week 16" }, { "date": "Jan 2, 2000", @@ -87389,7 +129532,12 @@ "sF": "24", "sU": "7", "spread": "9", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 15.25, + "sF": 24.25 + }, + "week": "1999 Regular Season - Week 17" }, { "date": "Jan 2, 2000", @@ -87399,7 +129547,12 @@ "sF": "38", "sU": "41", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "1999 Regular Season - Week 17" }, { "date": "Jan 2, 2000", @@ -87408,8 +129561,13 @@ "und": "Buffalo Bills", "sF": "6", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "1999 Regular Season - Week 17" }, { "date": "Jan 2, 2000", @@ -87418,8 +129576,13 @@ "und": "New Orleans Saints", "sF": "45", "sU": "13", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 46.5, + "pScore": { + "sU": 19.0, + "sF": 27.5 + }, + "week": "1999 Regular Season - Week 17" }, { "date": "Jan 2, 2000", @@ -87428,8 +129591,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 34.0, + "pScore": { + "sU": 15.25, + "sF": 18.75 + }, + "week": "1999 Regular Season - Week 17" }, { "date": "Jan 2, 2000", @@ -87438,8 +129606,13 @@ "und": "Arizona Cardinals", "sF": "49", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.0, + "pScore": { + "sU": 15.25, + "sF": 22.75 + }, + "week": "1999 Regular Season - Week 17" }, { "date": "Jan 2, 2000", @@ -87449,7 +129622,12 @@ "sF": "3", "sU": "20", "spread": "1", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 18.25, + "sF": 19.25 + }, + "week": "1999 Regular Season - Week 17" }, { "date": "Jan 2, 2000", @@ -87459,7 +129637,12 @@ "sF": "19", "sU": "9", "spread": "1", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.5, + "sF": 19.5 + }, + "week": "1999 Regular Season - Week 17" }, { "date": "Jan 2, 2000", @@ -87469,7 +129652,12 @@ "sF": "31", "sU": "38", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "1999 Regular Season - Week 17" }, { "date": "Jan 2, 2000", @@ -87479,7 +129667,12 @@ "sF": "24", "sU": "17", "spread": "7", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 20.75, + "sF": 27.75 + }, + "week": "1999 Regular Season - Week 17" }, { "date": "Jan 2, 2000", @@ -87488,8 +129681,13 @@ "und": "New York Giants", "sF": "26", "sU": "18", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.5, + "pScore": { + "sU": 15.5, + "sF": 22.0 + }, + "week": "1999 Regular Season - Week 17" }, { "date": "Jan 2, 2000", @@ -87499,7 +129697,12 @@ "sF": "6", "sU": "12", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "1999 Regular Season - Week 17" }, { "date": "Jan 2, 2000", @@ -87509,7 +129712,12 @@ "sF": "47", "sU": "36", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "1999 Regular Season - Week 17" }, { "date": "Jan 2, 2000", @@ -87519,7 +129727,12 @@ "sF": "21", "sU": "10", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "1999 Regular Season - Week 17" }, { "date": "Jan 3, 2000", @@ -87528,12 +129741,13 @@ "und": "San Francisco 49ers", "sF": "34", "sU": "29", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": 46.5, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 20.0, + "sF": 26.5 + }, + "week": "1999 Regular Season - Week 17" }, { "date": "Jan 8, 2000", @@ -87542,8 +129756,13 @@ "und": "Buffalo Bills (5)", "sF": "22", "sU": "16", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "1999 Playoffs" }, { "date": "Jan 8, 2000", @@ -87552,8 +129771,13 @@ "und": "Detroit Lions (6)", "sF": "27", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.0, + "pScore": { + "sU": 19.75, + "sF": 26.25 + }, + "week": "1999 Playoffs" }, { "date": "Jan 9, 2000", @@ -87563,7 +129787,12 @@ "sF": "27", "sU": "10", "spread": "7", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.75, + "sF": 26.75 + }, + "week": "1999 Playoffs" }, { "date": "Jan 9, 2000", @@ -87572,8 +129801,13 @@ "und": "Miami Dolphins (6)", "sF": "17", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "1999 Playoffs" }, { "date": "Jan 15, 2000", @@ -87583,7 +129817,12 @@ "sF": "62", "sU": "7", "spread": "8", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 14.75, + "sF": 22.75 + }, + "week": "1999 Playoffs" }, { "date": "Jan 15, 2000", @@ -87593,7 +129832,12 @@ "sF": "14", "sU": "13", "spread": "5", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.5, + "sF": 21.5 + }, + "week": "1999 Playoffs" }, { "date": "Jan 16, 2000", @@ -87603,7 +129847,12 @@ "sF": "49", "sU": "37", "spread": "7", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 22.5, + "sF": 29.5 + }, + "week": "1999 Playoffs" }, { "date": "Jan 16, 2000", @@ -87612,8 +129861,13 @@ "und": "Tennessee Titans (4)", "sF": "16", "sU": "19", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.5, + "pScore": { + "sU": 20.5, + "sF": 26.0 + }, + "week": "1999 Playoffs" }, { "date": "Jan 23, 2000", @@ -87623,7 +129877,12 @@ "sF": "14", "sU": "33", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "1999 Playoffs" }, { "date": "Jan 23, 2000", @@ -87633,7 +129892,12 @@ "sF": "11", "sU": "6", "spread": "14", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 16.0, + "sF": 30.0 + }, + "week": "1999 Playoffs" }, { "date": "Jan 30, 2000", @@ -87643,7 +129907,12 @@ "sF": "23", "sU": "16", "spread": "7", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.5, + "sF": 27.5 + }, + "week": "1999 Playoffs" }, { "date": "Sep 3, 2000", @@ -87652,8 +129921,13 @@ "und": "Kansas City Chiefs", "sF": "27", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2000 Regular Season - Week 1" }, { "date": "Sep 3, 2000", @@ -87662,8 +129936,13 @@ "und": "Chicago Bears", "sF": "30", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.5, + "pScore": { + "sU": 21.0, + "sF": 25.5 + }, + "week": "2000 Regular Season - Week 1" }, { "date": "Sep 3, 2000", @@ -87672,8 +129951,13 @@ "und": "Carolina Panthers", "sF": "20", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 47.5, + "pScore": { + "sU": 18.5, + "sF": 29.0 + }, + "week": "2000 Regular Season - Week 1" }, { "date": "Sep 3, 2000", @@ -87682,12 +129966,13 @@ "und": "San Francisco 49ers", "sF": "36", "sU": "28", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": 46.5, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 20.0, + "sF": 26.5 + }, + "week": "2000 Regular Season - Week 1" }, { "date": "Sep 3, 2000", @@ -87696,8 +129981,13 @@ "und": "Cleveland Browns", "sF": "27", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 38.5, + "pScore": { + "sU": 14.0, + "sF": 24.5 + }, + "week": "2000 Regular Season - Week 1" }, { "date": "Sep 3, 2000", @@ -87707,7 +129997,12 @@ "sF": "21", "sU": "16", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2000 Regular Season - Week 1" }, { "date": "Sep 3, 2000", @@ -87716,8 +130011,13 @@ "und": "Pittsburgh Steelers", "sF": "16", "sU": "0", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2000 Regular Season - Week 1" }, { "date": "Sep 3, 2000", @@ -87726,8 +130026,13 @@ "und": "Arizona Cardinals", "sF": "21", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "2000 Regular Season - Week 1" }, { "date": "Sep 3, 2000", @@ -87737,7 +130042,12 @@ "sF": "14", "sU": "41", "spread": "6", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.75, + "sF": 22.75 + }, + "week": "2000 Regular Season - Week 1" }, { "date": "Sep 3, 2000", @@ -87746,8 +130056,13 @@ "und": "San Diego Chargers", "sF": "9", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "2000 Regular Season - Week 1" }, { "date": "Sep 3, 2000", @@ -87757,7 +130072,12 @@ "sF": "23", "sU": "0", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "2000 Regular Season - Week 1" }, { "date": "Sep 3, 2000", @@ -87766,8 +130086,13 @@ "und": "New York Jets", "sF": "16", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2000 Regular Season - Week 1" }, { "date": "Sep 3, 2000", @@ -87777,7 +130102,12 @@ "sF": "16", "sU": "13", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "2000 Regular Season - Week 1" }, { "date": "Sep 4, 2000", @@ -87786,8 +130116,13 @@ "und": "Denver Broncos", "sF": "41", "sU": "36", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.5, + "pScore": { + "sU": 21.0, + "sF": 27.5 + }, + "week": "2000 Regular Season - Week 1" }, { "date": "Sep 10, 2000", @@ -87797,7 +130132,12 @@ "sF": "13", "sU": "7", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2000 Regular Season - Week 2" }, { "date": "Sep 10, 2000", @@ -87807,7 +130147,12 @@ "sF": "7", "sU": "24", "spread": "6", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.25, + "sF": 23.25 + }, + "week": "2000 Regular Season - Week 2" }, { "date": "Sep 10, 2000", @@ -87816,8 +130161,13 @@ "und": "Oakland Raiders", "sF": "31", "sU": "38", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2000 Regular Season - Week 2" }, { "date": "Sep 10, 2000", @@ -87827,7 +130177,12 @@ "sF": "27", "sU": "18", "spread": "6", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 16.25, + "sF": 22.25 + }, + "week": "2000 Regular Season - Week 2" }, { "date": "Sep 10, 2000", @@ -87837,7 +130192,12 @@ "sF": "41", "sU": "0", "spread": "7", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 14.75, + "sF": 21.75 + }, + "week": "2000 Regular Season - Week 2" }, { "date": "Sep 10, 2000", @@ -87847,7 +130207,12 @@ "sF": "39", "sU": "36", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2000 Regular Season - Week 2" }, { "date": "Sep 10, 2000", @@ -87857,7 +130222,12 @@ "sF": "18", "sU": "33", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2000 Regular Season - Week 2" }, { "date": "Sep 10, 2000", @@ -87866,8 +130236,13 @@ "und": "Kansas City Chiefs", "sF": "17", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.5, + "pScore": { + "sU": 15.0, + "sF": 23.5 + }, + "week": "2000 Regular Season - Week 2" }, { "date": "Sep 10, 2000", @@ -87876,8 +130251,13 @@ "und": "New Orleans Saints", "sF": "27", "sU": "28", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 35.5, + "pScore": { + "sU": 15.0, + "sF": 20.5 + }, + "week": "2000 Regular Season - Week 2" }, { "date": "Sep 10, 2000", @@ -87887,11 +130267,12 @@ "sF": "38", "sU": "22", "spread": "3", - "ou": "49", + "ou": 48.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 22.5, + "sF": 25.5 + }, + "week": "2000 Regular Season - Week 2" }, { "date": "Sep 10, 2000", @@ -87900,8 +130281,13 @@ "und": "Seattle Seahawks", "sF": "37", "sU": "34", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.0, + "pScore": { + "sU": 19.25, + "sF": 26.75 + }, + "week": "2000 Regular Season - Week 2" }, { "date": "Sep 10, 2000", @@ -87910,8 +130296,13 @@ "und": "Atlanta Falcons", "sF": "42", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.0, + "pScore": { + "sU": 21.25, + "sF": 25.75 + }, + "week": "2000 Regular Season - Week 2" }, { "date": "Sep 10, 2000", @@ -87920,8 +130311,13 @@ "und": "Detroit Lions", "sF": "10", "sU": "15", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "2000 Regular Season - Week 2" }, { "date": "Sep 10, 2000", @@ -87931,7 +130327,12 @@ "sF": "32", "sU": "31", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "2000 Regular Season - Week 2" }, { "date": "Sep 11, 2000", @@ -87940,8 +130341,13 @@ "und": "New England Patriots", "sF": "20", "sU": "19", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "2000 Regular Season - Week 2" }, { "date": "Sep 17, 2000", @@ -87951,7 +130357,12 @@ "sF": "10", "sU": "15", "spread": "6", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 21.25, + "sF": 27.25 + }, + "week": "2000 Regular Season - Week 3" }, { "date": "Sep 17, 2000", @@ -87960,8 +130371,13 @@ "und": "Cleveland Browns", "sF": "20", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.5, + "pScore": { + "sU": 16.5, + "sF": 19.0 + }, + "week": "2000 Regular Season - Week 3" }, { "date": "Sep 17, 2000", @@ -87971,7 +130387,12 @@ "sF": "6", "sU": "3", "spread": "4", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.25, + "sF": 23.25 + }, + "week": "2000 Regular Season - Week 3" }, { "date": "Sep 17, 2000", @@ -87981,7 +130402,12 @@ "sF": "13", "sU": "0", "spread": "13", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 14.0, + "sF": 27.0 + }, + "week": "2000 Regular Season - Week 3" }, { "date": "Sep 17, 2000", @@ -87991,11 +130417,12 @@ "sF": "41", "sU": "24", "spread": "17", - "ou": "49", + "ou": 55.5, "pScore": { - "sU": 16, - "sF": 33 - } + "sU": 19.25, + "sF": 36.25 + }, + "week": "2000 Regular Season - Week 3" }, { "date": "Sep 17, 2000", @@ -88005,7 +130432,12 @@ "sF": "27", "sU": "14", "spread": "1", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.75, + "sF": 19.75 + }, + "week": "2000 Regular Season - Week 3" }, { "date": "Sep 17, 2000", @@ -88015,7 +130447,12 @@ "sF": "31", "sU": "10", "spread": "3", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 15.75, + "sF": 18.75 + }, + "week": "2000 Regular Season - Week 3" }, { "date": "Sep 17, 2000", @@ -88025,7 +130462,12 @@ "sF": "7", "sU": "14", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "2000 Regular Season - Week 3" }, { "date": "Sep 17, 2000", @@ -88034,8 +130476,13 @@ "und": "San Diego Chargers", "sF": "42", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 35.5, + "pScore": { + "sU": 15.5, + "sF": 20.0 + }, + "week": "2000 Regular Season - Week 3" }, { "date": "Sep 17, 2000", @@ -88045,7 +130492,12 @@ "sF": "24", "sU": "33", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2000 Regular Season - Week 3" }, { "date": "Sep 17, 2000", @@ -88054,8 +130506,13 @@ "und": "Minnesota Vikings", "sF": "13", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.5, + "pScore": { + "sU": 20.5, + "sF": 22.0 + }, + "week": "2000 Regular Season - Week 3" }, { "date": "Sep 17, 2000", @@ -88065,7 +130522,12 @@ "sF": "20", "sU": "10", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "2000 Regular Season - Week 3" }, { "date": "Sep 17, 2000", @@ -88074,8 +130536,13 @@ "und": "Miami Dolphins", "sF": "6", "sU": "19", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 34.5, + "pScore": { + "sU": 16.5, + "sF": 18.0 + }, + "week": "2000 Regular Season - Week 3" }, { "date": "Sep 18, 2000", @@ -88084,8 +130551,13 @@ "und": "Dallas Cowboys", "sF": "21", "sU": "27", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 44.0, + "pScore": { + "sU": 16.75, + "sF": 27.25 + }, + "week": "2000 Regular Season - Week 3" }, { "date": "Sep 24, 2000", @@ -88095,7 +130567,12 @@ "sF": "23", "sU": "20", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "2000 Regular Season - Week 4" }, { "date": "Sep 24, 2000", @@ -88104,8 +130581,13 @@ "und": "Atlanta Falcons", "sF": "41", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 55.0, + "pScore": { + "sU": 24.25, + "sF": 30.75 + }, + "week": "2000 Regular Season - Week 4" }, { "date": "Sep 24, 2000", @@ -88114,8 +130596,13 @@ "und": "Cincinnati Bengals", "sF": "37", "sU": "0", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 38.0, + "pScore": { + "sU": 13.25, + "sF": 24.75 + }, + "week": "2000 Regular Season - Week 4" }, { "date": "Sep 24, 2000", @@ -88125,7 +130612,12 @@ "sF": "14", "sU": "21", "spread": "1", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 18.25, + "sF": 19.25 + }, + "week": "2000 Regular Season - Week 4" }, { "date": "Sep 24, 2000", @@ -88134,8 +130626,13 @@ "und": "Philadelphia Eagles", "sF": "7", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "2000 Regular Season - Week 4" }, { "date": "Sep 24, 2000", @@ -88144,8 +130641,13 @@ "und": "New England Patriots", "sF": "10", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 34.5, + "pScore": { + "sU": 15.0, + "sF": 19.5 + }, + "week": "2000 Regular Season - Week 4" }, { "date": "Sep 24, 2000", @@ -88154,12 +130656,13 @@ "und": "San Francisco 49ers", "sF": "24", "sU": "41", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": 47.0, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 20.25, + "sF": 26.75 + }, + "week": "2000 Regular Season - Week 4" }, { "date": "Sep 24, 2000", @@ -88169,7 +130672,12 @@ "sF": "3", "sU": "29", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "2000 Regular Season - Week 4" }, { "date": "Sep 24, 2000", @@ -88178,8 +130686,13 @@ "und": "San Diego Chargers", "sF": "20", "sU": "12", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "2000 Regular Season - Week 4" }, { "date": "Sep 24, 2000", @@ -88189,7 +130702,12 @@ "sF": "17", "sU": "21", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "2000 Regular Season - Week 4" }, { "date": "Sep 24, 2000", @@ -88199,7 +130717,12 @@ "sF": "22", "sU": "23", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2000 Regular Season - Week 4" }, { "date": "Sep 24, 2000", @@ -88208,8 +130731,13 @@ "und": "Cleveland Browns", "sF": "36", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 40.5, + "pScore": { + "sU": 15.0, + "sF": 25.5 + }, + "week": "2000 Regular Season - Week 4" }, { "date": "Sep 24, 2000", @@ -88219,7 +130747,12 @@ "sF": "6", "sU": "16", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "2000 Regular Season - Week 4" }, { "date": "Sep 25, 2000", @@ -88228,8 +130761,13 @@ "und": "Jacksonville Jaguars", "sF": "43", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2000 Regular Season - Week 4" }, { "date": "Oct 1, 2000", @@ -88238,8 +130776,13 @@ "und": "Indianapolis Colts", "sF": "16", "sU": "18", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.0, + "pScore": { + "sU": 21.25, + "sF": 22.75 + }, + "week": "2000 Regular Season - Week 5" }, { "date": "Oct 1, 2000", @@ -88249,7 +130792,12 @@ "sF": "24", "sU": "31", "spread": "1", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.75, + "sF": 21.75 + }, + "week": "2000 Regular Season - Week 5" }, { "date": "Oct 1, 2000", @@ -88258,8 +130806,13 @@ "und": "Dallas Cowboys", "sF": "13", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.5, + "pScore": { + "sU": 20.5, + "sF": 27.0 + }, + "week": "2000 Regular Season - Week 5" }, { "date": "Oct 1, 2000", @@ -88269,7 +130822,12 @@ "sF": "57", "sU": "31", "spread": "17", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 18.25, + "sF": 35.25 + }, + "week": "2000 Regular Season - Week 5" }, { "date": "Oct 1, 2000", @@ -88278,8 +130836,13 @@ "und": "Cleveland Browns", "sF": "12", "sU": "0", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 37.0, + "pScore": { + "sU": 14.25, + "sF": 22.75 + }, + "week": "2000 Regular Season - Week 5" }, { "date": "Oct 1, 2000", @@ -88289,7 +130852,12 @@ "sF": "13", "sU": "24", "spread": "11", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 13.75, + "sF": 24.75 + }, + "week": "2000 Regular Season - Week 5" }, { "date": "Oct 1, 2000", @@ -88299,7 +130867,12 @@ "sF": "28", "sU": "14", "spread": "5", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.5, + "sF": 21.5 + }, + "week": "2000 Regular Season - Week 5" }, { "date": "Oct 1, 2000", @@ -88309,7 +130882,12 @@ "sF": "31", "sU": "16", "spread": "7", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 13.0, + "sF": 20.0 + }, + "week": "2000 Regular Season - Week 5" }, { "date": "Oct 1, 2000", @@ -88318,8 +130896,13 @@ "und": "New England Patriots", "sF": "19", "sU": "28", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 41.0, + "pScore": { + "sU": 16.25, + "sF": 24.75 + }, + "week": "2000 Regular Season - Week 5" }, { "date": "Oct 1, 2000", @@ -88328,8 +130911,13 @@ "und": "Chicago Bears", "sF": "24", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.0, + "pScore": { + "sU": 17.75, + "sF": 23.25 + }, + "week": "2000 Regular Season - Week 5" }, { "date": "Oct 1, 2000", @@ -88338,8 +130926,13 @@ "und": "Arizona Cardinals", "sF": "27", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2000 Regular Season - Week 5" }, { "date": "Oct 1, 2000", @@ -88348,8 +130941,13 @@ "und": "Tampa Bay Buccaneers", "sF": "20", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 36.0, + "pScore": { + "sU": 17.25, + "sF": 18.75 + }, + "week": "2000 Regular Season - Week 5" }, { "date": "Oct 1, 2000", @@ -88359,7 +130957,12 @@ "sF": "38", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2000 Regular Season - Week 5" }, { "date": "Oct 2, 2000", @@ -88369,7 +130972,12 @@ "sF": "24", "sU": "17", "spread": "4", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.25, + "sF": 21.25 + }, + "week": "2000 Regular Season - Week 5" }, { "date": "Oct 8, 2000", @@ -88379,7 +130987,12 @@ "sF": "23", "sU": "14", "spread": "10", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.0, + "sF": 24.0 + }, + "week": "2000 Regular Season - Week 6" }, { "date": "Oct 8, 2000", @@ -88389,7 +131002,12 @@ "sF": "31", "sU": "24", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2000 Regular Season - Week 6" }, { "date": "Oct 8, 2000", @@ -88399,7 +131017,12 @@ "sF": "3", "sU": "20", "spread": "8", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 14.75, + "sF": 22.75 + }, + "week": "2000 Regular Season - Week 6" }, { "date": "Oct 8, 2000", @@ -88409,7 +131032,12 @@ "sF": "22", "sU": "13", "spread": "2", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 16.25, + "sF": 18.25 + }, + "week": "2000 Regular Season - Week 6" }, { "date": "Oct 8, 2000", @@ -88418,8 +131046,13 @@ "und": "New England Patriots", "sF": "16", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2000 Regular Season - Week 6" }, { "date": "Oct 8, 2000", @@ -88428,8 +131061,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.5, + "pScore": { + "sU": 17.0, + "sF": 20.5 + }, + "week": "2000 Regular Season - Week 6" }, { "date": "Oct 8, 2000", @@ -88438,8 +131076,13 @@ "und": "New Orleans Saints", "sF": "10", "sU": "31", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "2000 Regular Season - Week 6" }, { "date": "Oct 8, 2000", @@ -88448,12 +131091,13 @@ "und": "San Francisco 49ers", "sF": "34", "sU": "28", - "spread": "4", - "ou": "49", + "spread": "4.5", + "ou": 48.5, "pScore": { - "sU": 22.5, + "sU": 22.0, "sF": 26.5 - } + }, + "week": "2000 Regular Season - Week 6" }, { "date": "Oct 8, 2000", @@ -88463,7 +131107,12 @@ "sF": "6", "sU": "13", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "2000 Regular Season - Week 6" }, { "date": "Oct 8, 2000", @@ -88472,8 +131121,13 @@ "und": "Cleveland Browns", "sF": "29", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "2000 Regular Season - Week 6" }, { "date": "Oct 8, 2000", @@ -88482,8 +131136,13 @@ "und": "Seattle Seahawks", "sF": "26", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2000 Regular Season - Week 6" }, { "date": "Oct 8, 2000", @@ -88492,8 +131151,13 @@ "und": "San Diego Chargers", "sF": "21", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "2000 Regular Season - Week 6" }, { "date": "Oct 8, 2000", @@ -88502,8 +131166,13 @@ "und": "Baltimore Ravens", "sF": "10", "sU": "15", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2000 Regular Season - Week 6" }, { "date": "Oct 9, 2000", @@ -88513,7 +131182,12 @@ "sF": "30", "sU": "23", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "2000 Regular Season - Week 6" }, { "date": "Oct 15, 2000", @@ -88523,7 +131197,12 @@ "sF": "17", "sU": "20", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2000 Regular Season - Week 7" }, { "date": "Oct 15, 2000", @@ -88533,7 +131212,12 @@ "sF": "27", "sU": "24", "spread": "10", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 13.25, + "sF": 23.25 + }, + "week": "2000 Regular Season - Week 7" }, { "date": "Oct 15, 2000", @@ -88542,8 +131226,13 @@ "und": "Cincinnati Bengals", "sF": "15", "sU": "0", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 37.0, + "pScore": { + "sU": 14.25, + "sF": 22.75 + }, + "week": "2000 Regular Season - Week 7" }, { "date": "Oct 15, 2000", @@ -88552,8 +131241,13 @@ "und": "Baltimore Ravens", "sF": "10", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 34.5, + "pScore": { + "sU": 15.5, + "sF": 19.0 + }, + "week": "2000 Regular Season - Week 7" }, { "date": "Oct 15, 2000", @@ -88563,7 +131257,12 @@ "sF": "45", "sU": "29", "spread": "18", - "ou": -1 + "ou": 58.5, + "pScore": { + "sU": 20.25, + "sF": 38.25 + }, + "week": "2000 Regular Season - Week 7" }, { "date": "Oct 15, 2000", @@ -88573,7 +131272,12 @@ "sF": "19", "sU": "14", "spread": "4", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.25, + "sF": 22.25 + }, + "week": "2000 Regular Season - Week 7" }, { "date": "Oct 15, 2000", @@ -88583,7 +131287,12 @@ "sF": "17", "sU": "34", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2000 Regular Season - Week 7" }, { "date": "Oct 15, 2000", @@ -88592,8 +131301,13 @@ "und": "Seattle Seahawks", "sF": "37", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "2000 Regular Season - Week 7" }, { "date": "Oct 15, 2000", @@ -88602,8 +131316,13 @@ "und": "Cleveland Browns", "sF": "44", "sU": "10", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 44.0, + "pScore": { + "sU": 15.75, + "sF": 28.25 + }, + "week": "2000 Regular Season - Week 7" }, { "date": "Oct 15, 2000", @@ -88612,8 +131331,13 @@ "und": "Arizona Cardinals", "sF": "33", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "2000 Regular Season - Week 7" }, { "date": "Oct 15, 2000", @@ -88622,12 +131346,13 @@ "und": "San Francisco 49ers", "sF": "31", "sU": "28", - "spread": "4", - "ou": "49", + "spread": "4.5", + "ou": 49.5, "pScore": { "sU": 22.5, - "sF": 26.5 - } + "sF": 27.0 + }, + "week": "2000 Regular Season - Week 7" }, { "date": "Oct 15, 2000", @@ -88637,7 +131362,12 @@ "sF": "28", "sU": "16", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2000 Regular Season - Week 7" }, { "date": "Oct 16, 2000", @@ -88647,7 +131377,12 @@ "sF": "27", "sU": "13", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "2000 Regular Season - Week 7" }, { "date": "Oct 19, 2000", @@ -88657,7 +131392,12 @@ "sF": "14", "sU": "28", "spread": "8", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 14.75, + "sF": 22.75 + }, + "week": "2000 Regular Season - Week 8" }, { "date": "Oct 22, 2000", @@ -88667,7 +131407,12 @@ "sF": "21", "sU": "31", "spread": "10", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.5, + "sF": 26.5 + }, + "week": "2000 Regular Season - Week 8" }, { "date": "Oct 22, 2000", @@ -88677,7 +131422,12 @@ "sF": "48", "sU": "7", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2000 Regular Season - Week 8" }, { "date": "Oct 22, 2000", @@ -88686,8 +131436,13 @@ "und": "New England Patriots", "sF": "30", "sU": "23", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 47.0, + "pScore": { + "sU": 19.25, + "sF": 27.75 + }, + "week": "2000 Regular Season - Week 8" }, { "date": "Oct 22, 2000", @@ -88697,7 +131452,12 @@ "sF": "34", "sU": "54", "spread": "7", - "ou": -1 + "ou": 56.0, + "pScore": { + "sU": 24.5, + "sF": 31.5 + }, + "week": "2000 Regular Season - Week 8" }, { "date": "Oct 22, 2000", @@ -88707,7 +131467,12 @@ "sF": "6", "sU": "14", "spread": "1", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 17.0, + "sF": 18.0 + }, + "week": "2000 Regular Season - Week 8" }, { "date": "Oct 22, 2000", @@ -88717,11 +131482,12 @@ "sF": "34", "sU": "16", "spread": "3", - "ou": "49", + "ou": 50.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 23.5, + "sF": 26.5 + }, + "week": "2000 Regular Season - Week 8" }, { "date": "Oct 22, 2000", @@ -88730,8 +131496,13 @@ "und": "Buffalo Bills", "sF": "31", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "2000 Regular Season - Week 8" }, { "date": "Oct 22, 2000", @@ -88740,8 +131511,13 @@ "und": "Chicago Bears", "sF": "13", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "2000 Regular Season - Week 8" }, { "date": "Oct 22, 2000", @@ -88750,8 +131526,13 @@ "und": "Atlanta Falcons", "sF": "21", "sU": "19", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.0, + "pScore": { + "sU": 19.25, + "sF": 20.75 + }, + "week": "2000 Regular Season - Week 8" }, { "date": "Oct 22, 2000", @@ -88760,8 +131541,13 @@ "und": "Seattle Seahawks", "sF": "31", "sU": "3", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "2000 Regular Season - Week 8" }, { "date": "Oct 22, 2000", @@ -88771,7 +131557,12 @@ "sF": "22", "sU": "0", "spread": "9", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 14.25, + "sF": 23.25 + }, + "week": "2000 Regular Season - Week 8" }, { "date": "Oct 22, 2000", @@ -88781,7 +131572,12 @@ "sF": "35", "sU": "16", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "2000 Regular Season - Week 8" }, { "date": "Oct 23, 2000", @@ -88791,7 +131587,12 @@ "sF": "40", "sU": "37", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "2000 Regular Season - Week 8" }, { "date": "Oct 29, 2000", @@ -88800,8 +131601,13 @@ "und": "New York Jets", "sF": "23", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2000 Regular Season - Week 9" }, { "date": "Oct 29, 2000", @@ -88811,7 +131617,12 @@ "sF": "41", "sU": "13", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2000 Regular Season - Week 9" }, { "date": "Oct 29, 2000", @@ -88821,7 +131632,12 @@ "sF": "12", "sU": "13", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2000 Regular Season - Week 9" }, { "date": "Oct 29, 2000", @@ -88830,8 +131646,13 @@ "und": "Pittsburgh Steelers", "sF": "6", "sU": "9", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 33.0, + "pScore": { + "sU": 14.25, + "sF": 18.75 + }, + "week": "2000 Regular Season - Week 9" }, { "date": "Oct 29, 2000", @@ -88840,8 +131661,13 @@ "und": "Green Bay Packers", "sF": "28", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.5, + "pScore": { + "sU": 17.0, + "sF": 21.5 + }, + "week": "2000 Regular Season - Week 9" }, { "date": "Oct 29, 2000", @@ -88851,7 +131677,12 @@ "sF": "12", "sU": "3", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "2000 Regular Season - Week 9" }, { "date": "Oct 29, 2000", @@ -88861,7 +131692,12 @@ "sF": "30", "sU": "18", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2000 Regular Season - Week 9" }, { "date": "Oct 29, 2000", @@ -88871,7 +131707,12 @@ "sF": "21", "sU": "10", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2000 Regular Season - Week 9" }, { "date": "Oct 29, 2000", @@ -88881,11 +131722,12 @@ "sF": "34", "sU": "24", "spread": "7", - "ou": "49", + "ou": 63.0, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 28.0, + "sF": 35.0 + }, + "week": "2000 Regular Season - Week 9" }, { "date": "Oct 29, 2000", @@ -88894,8 +131736,13 @@ "und": "Philadelphia Eagles", "sF": "24", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2000 Regular Season - Week 9" }, { "date": "Oct 29, 2000", @@ -88905,7 +131752,12 @@ "sF": "17", "sU": "23", "spread": "4", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.25, + "sF": 24.25 + }, + "week": "2000 Regular Season - Week 9" }, { "date": "Oct 29, 2000", @@ -88915,7 +131767,12 @@ "sF": "24", "sU": "19", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "2000 Regular Season - Week 9" }, { "date": "Oct 29, 2000", @@ -88924,8 +131781,13 @@ "und": "San Diego Chargers", "sF": "15", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.5, + "pScore": { + "sU": 18.0, + "sF": 24.5 + }, + "week": "2000 Regular Season - Week 9" }, { "date": "Oct 30, 2000", @@ -88935,7 +131797,12 @@ "sF": "21", "sU": "27", "spread": "4", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.75, + "sF": 20.75 + }, + "week": "2000 Regular Season - Week 9" }, { "date": "Nov 5, 2000", @@ -88944,8 +131811,13 @@ "und": "Miami Dolphins", "sF": "8", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "2000 Regular Season - Week 10" }, { "date": "Nov 5, 2000", @@ -88955,7 +131827,12 @@ "sF": "27", "sU": "14", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "2000 Regular Season - Week 10" }, { "date": "Nov 5, 2000", @@ -88965,7 +131842,12 @@ "sF": "24", "sU": "27", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "2000 Regular Season - Week 10" }, { "date": "Nov 5, 2000", @@ -88975,7 +131857,12 @@ "sF": "13", "sU": "16", "spread": "2", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.5, + "sF": 20.5 + }, + "week": "2000 Regular Season - Week 10" }, { "date": "Nov 5, 2000", @@ -88984,12 +131871,13 @@ "und": "San Francisco 49ers", "sF": "31", "sU": "15", - "spread": "5", - "ou": "49", + "spread": "5.5", + "ou": 48.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 21.25, + "sF": 26.75 + }, + "week": "2000 Regular Season - Week 10" }, { "date": "Nov 5, 2000", @@ -88999,7 +131887,12 @@ "sF": "27", "sU": "7", "spread": "6", - "ou": -1 + "ou": 32.5, + "pScore": { + "sU": 13.25, + "sF": 19.25 + }, + "week": "2000 Regular Season - Week 10" }, { "date": "Nov 5, 2000", @@ -89009,7 +131902,12 @@ "sF": "24", "sU": "3", "spread": "10", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 11.75, + "sF": 21.75 + }, + "week": "2000 Regular Season - Week 10" }, { "date": "Nov 5, 2000", @@ -89019,7 +131917,12 @@ "sF": "16", "sU": "13", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2000 Regular Season - Week 10" }, { "date": "Nov 5, 2000", @@ -89029,7 +131932,12 @@ "sF": "9", "sU": "7", "spread": "8", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 14.25, + "sF": 22.25 + }, + "week": "2000 Regular Season - Week 10" }, { "date": "Nov 5, 2000", @@ -89038,8 +131946,13 @@ "und": "Kansas City Chiefs", "sF": "49", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2000 Regular Season - Week 10" }, { "date": "Nov 5, 2000", @@ -89049,7 +131962,12 @@ "sF": "15", "sU": "16", "spread": "10", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 15.0, + "sF": 25.0 + }, + "week": "2000 Regular Season - Week 10" }, { "date": "Nov 5, 2000", @@ -89059,7 +131977,12 @@ "sF": "23", "sU": "30", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2000 Regular Season - Week 10" }, { "date": "Nov 5, 2000", @@ -89068,8 +131991,13 @@ "und": "San Diego Chargers", "sF": "17", "sU": "15", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.5, + "pScore": { + "sU": 17.5, + "sF": 22.0 + }, + "week": "2000 Regular Season - Week 10" }, { "date": "Nov 5, 2000", @@ -89078,8 +132006,13 @@ "und": "Carolina Panthers", "sF": "24", "sU": "27", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 59.5, + "pScore": { + "sU": 23.0, + "sF": 36.5 + }, + "week": "2000 Regular Season - Week 10" }, { "date": "Nov 6, 2000", @@ -89088,8 +132021,13 @@ "und": "Green Bay Packers", "sF": "20", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2000 Regular Season - Week 10" }, { "date": "Nov 12, 2000", @@ -89098,8 +132036,13 @@ "und": "Cincinnati Bengals", "sF": "23", "sU": "6", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 39.0, + "pScore": { + "sU": 15.25, + "sF": 23.75 + }, + "week": "2000 Regular Season - Week 11" }, { "date": "Nov 12, 2000", @@ -89108,8 +132051,13 @@ "und": "Arizona Cardinals", "sF": "31", "sU": "14", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 46.0, + "pScore": { + "sU": 16.75, + "sF": 29.25 + }, + "week": "2000 Regular Season - Week 11" }, { "date": "Nov 12, 2000", @@ -89118,8 +132066,13 @@ "und": "Atlanta Falcons", "sF": "13", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 40.0, + "pScore": { + "sU": 15.75, + "sF": 24.25 + }, + "week": "2000 Regular Season - Week 11" }, { "date": "Nov 12, 2000", @@ -89128,8 +132081,13 @@ "und": "Philadelphia Eagles", "sF": "23", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 33.0, + "pScore": { + "sU": 14.75, + "sF": 18.25 + }, + "week": "2000 Regular Season - Week 11" }, { "date": "Nov 12, 2000", @@ -89139,7 +132097,12 @@ "sF": "20", "sU": "3", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "2000 Regular Season - Week 11" }, { "date": "Nov 12, 2000", @@ -89149,7 +132112,12 @@ "sF": "20", "sU": "10", "spread": "2", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.75, + "sF": 19.75 + }, + "week": "2000 Regular Season - Week 11" }, { "date": "Nov 12, 2000", @@ -89158,8 +132126,13 @@ "und": "Seattle Seahawks", "sF": "21", "sU": "28", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.5, + "pScore": { + "sU": 16.5, + "sF": 24.0 + }, + "week": "2000 Regular Season - Week 11" }, { "date": "Nov 12, 2000", @@ -89169,7 +132142,12 @@ "sF": "11", "sU": "19", "spread": "7", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 12.5, + "sF": 19.5 + }, + "week": "2000 Regular Season - Week 11" }, { "date": "Nov 12, 2000", @@ -89179,7 +132157,12 @@ "sF": "23", "sU": "24", "spread": "4", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 14.5, + "sF": 18.5 + }, + "week": "2000 Regular Season - Week 11" }, { "date": "Nov 12, 2000", @@ -89188,12 +132171,13 @@ "und": "San Francisco 49ers", "sF": "7", "sU": "21", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": 52.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 24.25, + "sF": 27.75 + }, + "week": "2000 Regular Season - Week 11" }, { "date": "Nov 12, 2000", @@ -89203,7 +132187,12 @@ "sF": "17", "sU": "7", "spread": "5", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 14.25, + "sF": 19.25 + }, + "week": "2000 Regular Season - Week 11" }, { "date": "Nov 12, 2000", @@ -89213,7 +132202,12 @@ "sF": "38", "sU": "24", "spread": "2", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.25, + "sF": 25.25 + }, + "week": "2000 Regular Season - Week 11" }, { "date": "Nov 12, 2000", @@ -89223,7 +132217,12 @@ "sF": "20", "sU": "15", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "2000 Regular Season - Week 11" }, { "date": "Nov 12, 2000", @@ -89233,7 +132232,12 @@ "sF": "23", "sU": "15", "spread": "6", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 23.25, + "sF": 29.25 + }, + "week": "2000 Regular Season - Week 11" }, { "date": "Nov 13, 2000", @@ -89243,7 +132247,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "2000 Regular Season - Week 11" }, { "date": "Nov 19, 2000", @@ -89253,7 +132262,12 @@ "sF": "17", "sU": "21", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2000 Regular Season - Week 12" }, { "date": "Nov 19, 2000", @@ -89262,8 +132276,13 @@ "und": "Carolina Panthers", "sF": "31", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 46.5, + "pScore": { + "sU": 18.5, + "sF": 28.0 + }, + "week": "2000 Regular Season - Week 12" }, { "date": "Nov 19, 2000", @@ -89273,7 +132292,12 @@ "sF": "24", "sU": "26", "spread": "6", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.0, + "sF": 26.0 + }, + "week": "2000 Regular Season - Week 12" }, { "date": "Nov 19, 2000", @@ -89283,7 +132307,12 @@ "sF": "16", "sU": "13", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "2000 Regular Season - Week 12" }, { "date": "Nov 19, 2000", @@ -89293,7 +132322,12 @@ "sF": "31", "sU": "22", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2000 Regular Season - Week 12" }, { "date": "Nov 19, 2000", @@ -89303,7 +132337,12 @@ "sF": "34", "sU": "9", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "2000 Regular Season - Week 12" }, { "date": "Nov 19, 2000", @@ -89313,7 +132352,12 @@ "sF": "21", "sU": "31", "spread": "5", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 15.75, + "sF": 20.75 + }, + "week": "2000 Regular Season - Week 12" }, { "date": "Nov 19, 2000", @@ -89323,7 +132367,12 @@ "sF": "24", "sU": "10", "spread": "16", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 9.75, + "sF": 25.75 + }, + "week": "2000 Regular Season - Week 12" }, { "date": "Nov 19, 2000", @@ -89333,7 +132382,12 @@ "sF": "10", "sU": "13", "spread": "8", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.0, + "sF": 22.0 + }, + "week": "2000 Regular Season - Week 12" }, { "date": "Nov 19, 2000", @@ -89342,8 +132396,13 @@ "und": "San Diego Chargers", "sF": "38", "sU": "37", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.5, + "pScore": { + "sU": 16.5, + "sF": 26.0 + }, + "week": "2000 Regular Season - Week 12" }, { "date": "Nov 19, 2000", @@ -89352,8 +132411,13 @@ "und": "New York Jets", "sF": "3", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "2000 Regular Season - Week 12" }, { "date": "Nov 19, 2000", @@ -89363,7 +132427,12 @@ "sF": "27", "sU": "0", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "2000 Regular Season - Week 12" }, { "date": "Nov 19, 2000", @@ -89372,8 +132441,13 @@ "und": "Atlanta Falcons", "sF": "16", "sU": "6", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.5, + "pScore": { + "sU": 21.0, + "sF": 26.5 + }, + "week": "2000 Regular Season - Week 12" }, { "date": "Nov 19, 2000", @@ -89383,7 +132457,12 @@ "sF": "24", "sU": "34", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2000 Regular Season - Week 12" }, { "date": "Nov 20, 2000", @@ -89392,8 +132471,13 @@ "und": "Washington Redskins", "sF": "20", "sU": "33", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 56.0, + "pScore": { + "sU": 25.25, + "sF": 30.75 + }, + "week": "2000 Regular Season - Week 12" }, { "date": "Nov 23, 2000", @@ -89402,8 +132486,13 @@ "und": "New England Patriots", "sF": "34", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "2000 Regular Season - Week 13" }, { "date": "Nov 23, 2000", @@ -89413,7 +132502,12 @@ "sF": "27", "sU": "15", "spread": "7", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.5, + "sF": 27.5 + }, + "week": "2000 Regular Season - Week 13" }, { "date": "Nov 26, 2000", @@ -89423,7 +132517,12 @@ "sF": "31", "sU": "17", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "2000 Regular Season - Week 13" }, { "date": "Nov 26, 2000", @@ -89433,7 +132532,12 @@ "sF": "44", "sU": "7", "spread": "15", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 9.5, + "sF": 24.5 + }, + "week": "2000 Regular Season - Week 13" }, { "date": "Nov 26, 2000", @@ -89443,7 +132547,12 @@ "sF": "20", "sU": "23", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "2000 Regular Season - Week 13" }, { "date": "Nov 26, 2000", @@ -89453,7 +132562,12 @@ "sF": "48", "sU": "28", "spread": "4", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.0, + "sF": 19.0 + }, + "week": "2000 Regular Season - Week 13" }, { "date": "Nov 26, 2000", @@ -89463,7 +132577,12 @@ "sF": "17", "sU": "10", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "2000 Regular Season - Week 13" }, { "date": "Nov 26, 2000", @@ -89472,8 +132591,13 @@ "und": "New Orleans Saints", "sF": "24", "sU": "31", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 53.5, + "pScore": { + "sU": 20.0, + "sF": 33.5 + }, + "week": "2000 Regular Season - Week 13" }, { "date": "Nov 26, 2000", @@ -89483,7 +132607,12 @@ "sF": "41", "sU": "14", "spread": "11", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 16.5, + "sF": 27.5 + }, + "week": "2000 Regular Season - Week 13" }, { "date": "Nov 26, 2000", @@ -89492,8 +132621,13 @@ "und": "Miami Dolphins", "sF": "14", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.5, + "pScore": { + "sU": 19.5, + "sF": 25.0 + }, + "week": "2000 Regular Season - Week 13" }, { "date": "Nov 26, 2000", @@ -89503,7 +132637,12 @@ "sF": "13", "sU": "16", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2000 Regular Season - Week 13" }, { "date": "Nov 26, 2000", @@ -89513,7 +132652,12 @@ "sF": "16", "sU": "17", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2000 Regular Season - Week 13" }, { "date": "Nov 26, 2000", @@ -89523,7 +132667,12 @@ "sF": "38", "sU": "31", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2000 Regular Season - Week 13" }, { "date": "Nov 26, 2000", @@ -89533,7 +132682,12 @@ "sF": "31", "sU": "7", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "2000 Regular Season - Week 13" }, { "date": "Nov 30, 2000", @@ -89543,7 +132697,12 @@ "sF": "24", "sU": "17", "spread": "9", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 19.75, + "sF": 28.75 + }, + "week": "2000 Regular Season - Week 14" }, { "date": "Dec 3, 2000", @@ -89553,7 +132712,12 @@ "sF": "20", "sU": "21", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2000 Regular Season - Week 14" }, { "date": "Dec 3, 2000", @@ -89563,7 +132727,12 @@ "sF": "27", "sU": "7", "spread": "10", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.5, + "sF": 23.5 + }, + "week": "2000 Regular Season - Week 14" }, { "date": "Dec 3, 2000", @@ -89573,7 +132742,12 @@ "sF": "7", "sU": "9", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "2000 Regular Season - Week 14" }, { "date": "Dec 3, 2000", @@ -89582,8 +132756,13 @@ "und": "Miami Dolphins", "sF": "6", "sU": "33", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "2000 Regular Season - Week 14" }, { "date": "Dec 3, 2000", @@ -89593,7 +132772,12 @@ "sF": "24", "sU": "13", "spread": "4", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.25, + "sF": 21.25 + }, + "week": "2000 Regular Season - Week 14" }, { "date": "Dec 3, 2000", @@ -89603,7 +132787,12 @@ "sF": "15", "sU": "13", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2000 Regular Season - Week 14" }, { "date": "Dec 3, 2000", @@ -89613,7 +132802,12 @@ "sF": "3", "sU": "16", "spread": "8", - "ou": -1 + "ou": 58.0, + "pScore": { + "sU": 25.0, + "sF": 33.0 + }, + "week": "2000 Regular Season - Week 14" }, { "date": "Dec 3, 2000", @@ -89622,8 +132816,13 @@ "und": "San Diego Chargers", "sF": "45", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2000 Regular Season - Week 14" }, { "date": "Dec 3, 2000", @@ -89632,8 +132831,13 @@ "und": "Indianapolis Colts", "sF": "27", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2000 Regular Season - Week 14" }, { "date": "Dec 3, 2000", @@ -89642,8 +132846,13 @@ "und": "Cleveland Browns", "sF": "48", "sU": "0", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 39.0, + "pScore": { + "sU": 12.25, + "sF": 26.75 + }, + "week": "2000 Regular Season - Week 14" }, { "date": "Dec 3, 2000", @@ -89652,8 +132861,13 @@ "und": "Chicago Bears", "sF": "28", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "2000 Regular Season - Week 14" }, { "date": "Dec 4, 2000", @@ -89663,7 +132877,12 @@ "sF": "30", "sU": "24", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "2000 Regular Season - Week 14" }, { "date": "Dec 10, 2000", @@ -89672,8 +132891,13 @@ "und": "Carolina Panthers", "sF": "15", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "2000 Regular Season - Week 15" }, { "date": "Dec 10, 2000", @@ -89682,8 +132906,13 @@ "und": "San Diego Chargers", "sF": "24", "sU": "3", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 36.5, + "pScore": { + "sU": 11.5, + "sF": 25.0 + }, + "week": "2000 Regular Season - Week 15" }, { "date": "Dec 10, 2000", @@ -89693,7 +132922,12 @@ "sF": "24", "sU": "17", "spread": "2", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.25, + "sF": 19.25 + }, + "week": "2000 Regular Season - Week 15" }, { "date": "Dec 10, 2000", @@ -89702,8 +132936,13 @@ "und": "Detroit Lions", "sF": "26", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2000 Regular Season - Week 15" }, { "date": "Dec 10, 2000", @@ -89713,7 +132952,12 @@ "sF": "44", "sU": "10", "spread": "15", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 13.5, + "sF": 28.5 + }, + "week": "2000 Regular Season - Week 15" }, { "date": "Dec 10, 2000", @@ -89722,8 +132966,13 @@ "und": "Tampa Bay Buccaneers", "sF": "13", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 34.5, + "pScore": { + "sU": 16.0, + "sF": 18.5 + }, + "week": "2000 Regular Season - Week 15" }, { "date": "Dec 10, 2000", @@ -89733,7 +132982,12 @@ "sF": "35", "sU": "24", "spread": "14", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 10.75, + "sF": 24.75 + }, + "week": "2000 Regular Season - Week 15" }, { "date": "Dec 10, 2000", @@ -89742,8 +132996,13 @@ "und": "Pittsburgh Steelers", "sF": "30", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.5, + "pScore": { + "sU": 16.0, + "sF": 19.5 + }, + "week": "2000 Regular Season - Week 15" }, { "date": "Dec 10, 2000", @@ -89753,7 +133012,12 @@ "sF": "35", "sU": "3", "spread": "13", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 11.5, + "sF": 24.5 + }, + "week": "2000 Regular Season - Week 15" }, { "date": "Dec 10, 2000", @@ -89763,7 +133027,12 @@ "sF": "31", "sU": "24", "spread": "10", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 19.0, + "sF": 29.0 + }, + "week": "2000 Regular Season - Week 15" }, { "date": "Dec 10, 2000", @@ -89773,7 +133042,12 @@ "sF": "13", "sU": "32", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "2000 Regular Season - Week 15" }, { "date": "Dec 10, 2000", @@ -89783,7 +133057,12 @@ "sF": "27", "sU": "31", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2000 Regular Season - Week 15" }, { "date": "Dec 10, 2000", @@ -89792,8 +133071,13 @@ "und": "Minnesota Vikings", "sF": "40", "sU": "29", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 56.5, + "pScore": { + "sU": 26.5, + "sF": 30.0 + }, + "week": "2000 Regular Season - Week 15" }, { "date": "Dec 10, 2000", @@ -89802,8 +133086,13 @@ "und": "New York Jets", "sF": "31", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2000 Regular Season - Week 15" }, { "date": "Dec 11, 2000", @@ -89813,7 +133102,12 @@ "sF": "44", "sU": "20", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "2000 Regular Season - Week 15" }, { "date": "Dec 16, 2000", @@ -89823,7 +133117,12 @@ "sF": "3", "sU": "24", "spread": "1", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 18.25, + "sF": 19.25 + }, + "week": "2000 Regular Season - Week 16" }, { "date": "Dec 16, 2000", @@ -89833,7 +133132,12 @@ "sF": "24", "sU": "27", "spread": "6", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.75, + "sF": 26.75 + }, + "week": "2000 Regular Season - Week 16" }, { "date": "Dec 17, 2000", @@ -89843,7 +133147,12 @@ "sF": "7", "sU": "20", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2000 Regular Season - Week 16" }, { "date": "Dec 17, 2000", @@ -89852,8 +133161,13 @@ "und": "Green Bay Packers", "sF": "28", "sU": "33", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 49.0, + "pScore": { + "sU": 20.75, + "sF": 28.25 + }, + "week": "2000 Regular Season - Week 16" }, { "date": "Dec 17, 2000", @@ -89862,8 +133176,13 @@ "und": "New England Patriots", "sF": "10", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "2000 Regular Season - Week 16" }, { "date": "Dec 17, 2000", @@ -89872,8 +133191,13 @@ "und": "Cincinnati Bengals", "sF": "14", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 42.5, + "pScore": { + "sU": 16.0, + "sF": 26.5 + }, + "week": "2000 Regular Season - Week 16" }, { "date": "Dec 17, 2000", @@ -89882,8 +133206,13 @@ "und": "Detroit Lions", "sF": "7", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "2000 Regular Season - Week 16" }, { "date": "Dec 17, 2000", @@ -89893,7 +133222,12 @@ "sF": "24", "sU": "0", "spread": "16", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 10.5, + "sF": 26.5 + }, + "week": "2000 Regular Season - Week 16" }, { "date": "Dec 17, 2000", @@ -89903,7 +133237,12 @@ "sF": "23", "sU": "7", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "2000 Regular Season - Week 16" }, { "date": "Dec 17, 2000", @@ -89912,8 +133251,13 @@ "und": "San Diego Chargers", "sF": "30", "sU": "22", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.5, + "pScore": { + "sU": 15.0, + "sF": 23.5 + }, + "week": "2000 Regular Season - Week 16" }, { "date": "Dec 17, 2000", @@ -89923,7 +133267,12 @@ "sF": "17", "sU": "0", "spread": "6", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.75, + "sF": 25.75 + }, + "week": "2000 Regular Season - Week 16" }, { "date": "Dec 17, 2000", @@ -89933,7 +133282,12 @@ "sF": "13", "sU": "7", "spread": "15", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 11.25, + "sF": 26.25 + }, + "week": "2000 Regular Season - Week 16" }, { "date": "Dec 17, 2000", @@ -89943,7 +133297,12 @@ "sF": "13", "sU": "20", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2000 Regular Season - Week 16" }, { "date": "Dec 17, 2000", @@ -89952,8 +133311,13 @@ "und": "Dallas Cowboys", "sF": "17", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.0, + "pScore": { + "sU": 14.75, + "sF": 21.25 + }, + "week": "2000 Regular Season - Week 16" }, { "date": "Dec 18, 2000", @@ -89963,7 +133327,12 @@ "sF": "35", "sU": "38", "spread": "1", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 24.0, + "sF": 25.0 + }, + "week": "2000 Regular Season - Week 16" }, { "date": "Dec 23, 2000", @@ -89973,7 +133342,12 @@ "sF": "28", "sU": "25", "spread": "4", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.75, + "sF": 20.75 + }, + "week": "2000 Regular Season - Week 17" }, { "date": "Dec 23, 2000", @@ -89983,11 +133357,12 @@ "sF": "38", "sU": "9", "spread": "7", - "ou": "49", + "ou": 48.5, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 20.75, + "sF": 27.75 + }, + "week": "2000 Regular Season - Week 17" }, { "date": "Dec 23, 2000", @@ -89997,7 +133372,12 @@ "sF": "23", "sU": "42", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2000 Regular Season - Week 17" }, { "date": "Dec 24, 2000", @@ -90007,7 +133387,12 @@ "sF": "20", "sU": "3", "spread": "7", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.75, + "sF": 22.75 + }, + "week": "2000 Regular Season - Week 17" }, { "date": "Dec 24, 2000", @@ -90017,7 +133402,12 @@ "sF": "34", "sU": "20", "spread": "6", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 14.75, + "sF": 20.75 + }, + "week": "2000 Regular Season - Week 17" }, { "date": "Dec 24, 2000", @@ -90027,7 +133417,12 @@ "sF": "20", "sU": "23", "spread": "10", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.5, + "sF": 23.5 + }, + "week": "2000 Regular Season - Week 17" }, { "date": "Dec 24, 2000", @@ -90036,8 +133431,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "2000 Regular Season - Week 17" }, { "date": "Dec 24, 2000", @@ -90047,7 +133447,12 @@ "sF": "27", "sU": "24", "spread": "4", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.5, + "sF": 19.5 + }, + "week": "2000 Regular Season - Week 17" }, { "date": "Dec 24, 2000", @@ -90056,8 +133461,13 @@ "und": "New Orleans Saints", "sF": "26", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 56.0, + "pScore": { + "sU": 26.25, + "sF": 29.75 + }, + "week": "2000 Regular Season - Week 17" }, { "date": "Dec 24, 2000", @@ -90066,8 +133476,13 @@ "und": "Cincinnati Bengals", "sF": "16", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 35.0, + "pScore": { + "sU": 12.25, + "sF": 22.75 + }, + "week": "2000 Regular Season - Week 17" }, { "date": "Dec 24, 2000", @@ -90076,8 +133491,13 @@ "und": "Atlanta Falcons", "sF": "13", "sU": "29", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "2000 Regular Season - Week 17" }, { "date": "Dec 24, 2000", @@ -90087,7 +133507,12 @@ "sF": "34", "sU": "21", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2000 Regular Season - Week 17" }, { "date": "Dec 24, 2000", @@ -90097,7 +133522,12 @@ "sF": "31", "sU": "10", "spread": "3", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 25.25, + "sF": 28.25 + }, + "week": "2000 Regular Season - Week 17" }, { "date": "Dec 24, 2000", @@ -90107,7 +133537,12 @@ "sF": "52", "sU": "9", "spread": "9", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 18.25, + "sF": 27.25 + }, + "week": "2000 Regular Season - Week 17" }, { "date": "Dec 25, 2000", @@ -90116,8 +133551,13 @@ "und": "Dallas Cowboys", "sF": "31", "sU": "0", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 37.5, + "pScore": { + "sU": 12.0, + "sF": 25.5 + }, + "week": "2000 Regular Season - Week 17" }, { "date": "Dec 30, 2000", @@ -90126,8 +133566,13 @@ "und": "Miami Dolphins (3)", "sF": "17", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "2000 Playoffs" }, { "date": "Dec 30, 2000", @@ -90136,8 +133581,13 @@ "und": "New Orleans Saints (3)", "sF": "28", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 55.0, + "pScore": { + "sU": 24.25, + "sF": 30.75 + }, + "week": "2000 Playoffs" }, { "date": "Dec 31, 2000", @@ -90146,8 +133596,13 @@ "und": "Denver Broncos (5)", "sF": "21", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2000 Playoffs" }, { "date": "Dec 31, 2000", @@ -90157,7 +133612,12 @@ "sF": "3", "sU": "21", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "2000 Playoffs" }, { "date": "Jan 6, 2001", @@ -90167,7 +133627,12 @@ "sF": "34", "sU": "16", "spread": "8", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 21.0, + "sF": 29.0 + }, + "week": "2000 Playoffs" }, { "date": "Jan 6, 2001", @@ -90177,7 +133642,12 @@ "sF": "27", "sU": "0", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "2000 Playoffs" }, { "date": "Jan 7, 2001", @@ -90187,7 +133657,12 @@ "sF": "10", "sU": "24", "spread": "6", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 13.75, + "sF": 19.75 + }, + "week": "2000 Playoffs" }, { "date": "Jan 7, 2001", @@ -90196,8 +133671,13 @@ "und": "Philadelphia Eagles (4)", "sF": "20", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 33.5, + "pScore": { + "sU": 14.5, + "sF": 19.0 + }, + "week": "2000 Playoffs" }, { "date": "Jan 14, 2001", @@ -90206,8 +133686,13 @@ "und": "New York Giants (1)", "sF": "0", "sU": "41", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2000 Playoffs" }, { "date": "Jan 14, 2001", @@ -90217,7 +133702,12 @@ "sF": "3", "sU": "16", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "2000 Playoffs" }, { "date": "Jan 28, 2001", @@ -90227,7 +133717,12 @@ "sF": "34", "sU": "7", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "2000 Playoffs" }, { "date": "Sep 9, 2001", @@ -90237,7 +133732,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2001 Regular Season - Week 1" }, { "date": "Sep 9, 2001", @@ -90246,8 +133746,13 @@ "und": "Detroit Lions", "sF": "28", "sU": "6", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.5, + "pScore": { + "sU": 18.0, + "sF": 23.5 + }, + "week": "2001 Regular Season - Week 1" }, { "date": "Sep 9, 2001", @@ -90257,7 +133762,12 @@ "sF": "10", "sU": "6", "spread": "9", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 12.5, + "sF": 21.5 + }, + "week": "2001 Regular Season - Week 1" }, { "date": "Sep 9, 2001", @@ -90267,7 +133777,12 @@ "sF": "13", "sU": "24", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "2001 Regular Season - Week 1" }, { "date": "Sep 9, 2001", @@ -90276,8 +133791,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "6", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 33.5, + "pScore": { + "sU": 11.5, + "sF": 22.0 + }, + "week": "2001 Regular Season - Week 1" }, { "date": "Sep 9, 2001", @@ -90287,7 +133807,12 @@ "sF": "9", "sU": "6", "spread": "4", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.25, + "sF": 21.25 + }, + "week": "2001 Regular Season - Week 1" }, { "date": "Sep 9, 2001", @@ -90296,8 +133821,13 @@ "und": "New York Jets", "sF": "45", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.5, + "pScore": { + "sU": 21.5, + "sF": 23.0 + }, + "week": "2001 Regular Season - Week 1" }, { "date": "Sep 9, 2001", @@ -90306,8 +133836,13 @@ "und": "Buffalo Bills", "sF": "24", "sU": "6", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.5, + "pScore": { + "sU": 18.0, + "sF": 19.5 + }, + "week": "2001 Regular Season - Week 1" }, { "date": "Sep 9, 2001", @@ -90317,7 +133852,12 @@ "sF": "21", "sU": "3", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2001 Regular Season - Week 1" }, { "date": "Sep 9, 2001", @@ -90326,8 +133866,13 @@ "und": "Atlanta Falcons", "sF": "16", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2001 Regular Season - Week 1" }, { "date": "Sep 9, 2001", @@ -90336,8 +133881,13 @@ "und": "Washington Redskins", "sF": "30", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "2001 Regular Season - Week 1" }, { "date": "Sep 9, 2001", @@ -90347,7 +133897,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2001 Regular Season - Week 1" }, { "date": "Sep 9, 2001", @@ -90356,8 +133911,13 @@ "und": "Miami Dolphins", "sF": "23", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 34.0, + "pScore": { + "sU": 13.75, + "sF": 20.25 + }, + "week": "2001 Regular Season - Week 1" }, { "date": "Sep 10, 2001", @@ -90367,7 +133927,12 @@ "sF": "31", "sU": "20", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2001 Regular Season - Week 1" }, { "date": "Sep 23, 2001", @@ -90376,8 +133941,13 @@ "und": "New York Giants", "sF": "3", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.0, + "pScore": { + "sU": 18.75, + "sF": 20.25 + }, + "week": "2001 Regular Season - Week 2" }, { "date": "Sep 23, 2001", @@ -90387,7 +133957,12 @@ "sF": "10", "sU": "17", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2001 Regular Season - Week 2" }, { "date": "Sep 23, 2001", @@ -90397,7 +133972,12 @@ "sF": "42", "sU": "26", "spread": "10", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.25, + "sF": 27.25 + }, + "week": "2001 Regular Season - Week 2" }, { "date": "Sep 23, 2001", @@ -90407,7 +133987,12 @@ "sF": "13", "sU": "6", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "2001 Regular Season - Week 2" }, { "date": "Sep 23, 2001", @@ -90416,8 +134001,13 @@ "und": "Oakland Raiders", "sF": "18", "sU": "15", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.0, + "pScore": { + "sU": 19.25, + "sF": 20.75 + }, + "week": "2001 Regular Season - Week 2" }, { "date": "Sep 23, 2001", @@ -90427,7 +134017,12 @@ "sF": "10", "sU": "21", "spread": "7", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 13.25, + "sF": 20.25 + }, + "week": "2001 Regular Season - Week 2" }, { "date": "Sep 23, 2001", @@ -90436,8 +134031,13 @@ "und": "Carolina Panthers", "sF": "24", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2001 Regular Season - Week 2" }, { "date": "Sep 23, 2001", @@ -90446,8 +134046,13 @@ "und": "Dallas Cowboys", "sF": "32", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 34.0, + "pScore": { + "sU": 15.25, + "sF": 18.75 + }, + "week": "2001 Regular Season - Week 2" }, { "date": "Sep 23, 2001", @@ -90456,8 +134061,13 @@ "und": "Cleveland Browns", "sF": "14", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 33.0, + "pScore": { + "sU": 15.75, + "sF": 17.25 + }, + "week": "2001 Regular Season - Week 2" }, { "date": "Sep 23, 2001", @@ -90466,8 +134076,13 @@ "und": "New England Patriots", "sF": "10", "sU": "3", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.5, + "pScore": { + "sU": 18.5, + "sF": 20.0 + }, + "week": "2001 Regular Season - Week 2" }, { "date": "Sep 23, 2001", @@ -90476,8 +134091,13 @@ "und": "Seattle Seahawks", "sF": "27", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2001 Regular Season - Week 2" }, { "date": "Sep 23, 2001", @@ -90487,11 +134107,12 @@ "sF": "30", "sU": "26", "spread": "6", - "ou": "49", + "ou": 50.0, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 22.0, + "sF": 28.0 + }, + "week": "2001 Regular Season - Week 2" }, { "date": "Sep 23, 2001", @@ -90500,8 +134121,13 @@ "und": "Arizona Cardinals", "sF": "38", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 45.0, + "pScore": { + "sU": 18.25, + "sF": 26.75 + }, + "week": "2001 Regular Season - Week 2" }, { "date": "Sep 24, 2001", @@ -90510,8 +134136,13 @@ "und": "Washington Redskins", "sF": "37", "sU": "0", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 41.0, + "pScore": { + "sU": 16.25, + "sF": 24.75 + }, + "week": "2001 Regular Season - Week 2" }, { "date": "Sep 30, 2001", @@ -90521,7 +134152,12 @@ "sF": "42", "sU": "10", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2001 Regular Season - Week 3" }, { "date": "Sep 30, 2001", @@ -90530,8 +134166,13 @@ "und": "Minnesota Vikings", "sF": "16", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "2001 Regular Season - Week 3" }, { "date": "Sep 30, 2001", @@ -90541,7 +134182,12 @@ "sF": "45", "sU": "13", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "2001 Regular Season - Week 3" }, { "date": "Sep 30, 2001", @@ -90551,7 +134197,12 @@ "sF": "20", "sU": "3", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2001 Regular Season - Week 3" }, { "date": "Sep 30, 2001", @@ -90560,8 +134211,13 @@ "und": "Carolina Panthers", "sF": "28", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2001 Regular Season - Week 3" }, { "date": "Sep 30, 2001", @@ -90570,8 +134226,13 @@ "und": "New England Patriots", "sF": "13", "sU": "44", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 45.0, + "pScore": { + "sU": 16.75, + "sF": 28.25 + }, + "week": "2001 Regular Season - Week 3" }, { "date": "Sep 30, 2001", @@ -90581,7 +134242,12 @@ "sF": "21", "sU": "13", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2001 Regular Season - Week 3" }, { "date": "Sep 30, 2001", @@ -90591,7 +134257,12 @@ "sF": "34", "sU": "14", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2001 Regular Season - Week 3" }, { "date": "Sep 30, 2001", @@ -90600,8 +134271,13 @@ "und": "Seattle Seahawks", "sF": "38", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 39.0, + "pScore": { + "sU": 14.25, + "sF": 24.75 + }, + "week": "2001 Regular Season - Week 3" }, { "date": "Sep 30, 2001", @@ -90610,8 +134286,13 @@ "und": "Baltimore Ravens", "sF": "13", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "2001 Regular Season - Week 3" }, { "date": "Sep 30, 2001", @@ -90620,8 +134301,13 @@ "und": "Cleveland Browns", "sF": "14", "sU": "23", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 35.5, + "pScore": { + "sU": 13.5, + "sF": 22.0 + }, + "week": "2001 Regular Season - Week 3" }, { "date": "Sep 30, 2001", @@ -90630,8 +134316,13 @@ "und": "Cincinnati Bengals", "sF": "28", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "2001 Regular Season - Week 3" }, { "date": "Sep 30, 2001", @@ -90640,8 +134331,13 @@ "und": "Dallas Cowboys", "sF": "40", "sU": "18", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 34.5, + "pScore": { + "sU": 10.5, + "sF": 24.0 + }, + "week": "2001 Regular Season - Week 3" }, { "date": "Oct 1, 2001", @@ -90651,11 +134347,12 @@ "sF": "17", "sU": "19", "spread": "3", - "ou": "49", + "ou": 44.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 20.75, + "sF": 23.75 + }, + "week": "2001 Regular Season - Week 3" }, { "date": "Oct 7, 2001", @@ -90664,8 +134361,13 @@ "und": "Minnesota Vikings", "sF": "28", "sU": "15", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2001 Regular Season - Week 4" }, { "date": "Oct 7, 2001", @@ -90674,8 +134376,13 @@ "und": "Tennessee Titans", "sF": "26", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 33.5, + "pScore": { + "sU": 15.0, + "sF": 18.5 + }, + "week": "2001 Regular Season - Week 4" }, { "date": "Oct 7, 2001", @@ -90685,7 +134392,12 @@ "sF": "16", "sU": "20", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "2001 Regular Season - Week 4" }, { "date": "Oct 7, 2001", @@ -90695,7 +134407,12 @@ "sF": "16", "sU": "7", "spread": "5", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 15.25, + "sF": 20.25 + }, + "week": "2001 Regular Season - Week 4" }, { "date": "Oct 7, 2001", @@ -90704,8 +134421,13 @@ "und": "New England Patriots", "sF": "30", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 35.0, + "pScore": { + "sU": 12.75, + "sF": 22.25 + }, + "week": "2001 Regular Season - Week 4" }, { "date": "Oct 7, 2001", @@ -90715,7 +134437,12 @@ "sF": "23", "sU": "9", "spread": "14", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 11.0, + "sF": 25.0 + }, + "week": "2001 Regular Season - Week 4" }, { "date": "Oct 7, 2001", @@ -90724,8 +134451,13 @@ "und": "Chicago Bears", "sF": "3", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "2001 Regular Season - Week 4" }, { "date": "Oct 7, 2001", @@ -90734,8 +134466,13 @@ "und": "Arizona Cardinals", "sF": "20", "sU": "21", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 41.0, + "pScore": { + "sU": 13.25, + "sF": 27.75 + }, + "week": "2001 Regular Season - Week 4" }, { "date": "Oct 7, 2001", @@ -90745,7 +134482,12 @@ "sF": "28", "sU": "21", "spread": "18", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 11.75, + "sF": 29.75 + }, + "week": "2001 Regular Season - Week 4" }, { "date": "Oct 7, 2001", @@ -90755,7 +134497,12 @@ "sF": "20", "sU": "6", "spread": "10", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 19.0, + "sF": 29.0 + }, + "week": "2001 Regular Season - Week 4" }, { "date": "Oct 7, 2001", @@ -90764,8 +134511,13 @@ "und": "Buffalo Bills", "sF": "42", "sU": "36", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 36.0, + "pScore": { + "sU": 15.75, + "sF": 20.25 + }, + "week": "2001 Regular Season - Week 4" }, { "date": "Oct 7, 2001", @@ -90774,8 +134526,13 @@ "und": "Seattle Seahawks", "sF": "15", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "2001 Regular Season - Week 4" }, { "date": "Oct 7, 2001", @@ -90785,7 +134542,12 @@ "sF": "14", "sU": "10", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2001 Regular Season - Week 4" }, { "date": "Oct 7, 2001", @@ -90794,8 +134556,13 @@ "und": "Carolina Panthers", "sF": "24", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "2001 Regular Season - Week 4" }, { "date": "Oct 8, 2001", @@ -90804,8 +134571,13 @@ "und": "Detroit Lions", "sF": "35", "sU": "0", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 48.5, + "pScore": { + "sU": 18.0, + "sF": 30.5 + }, + "week": "2001 Regular Season - Week 4" }, { "date": "Oct 14, 2001", @@ -90814,8 +134586,13 @@ "und": "Pittsburgh Steelers", "sF": "17", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "2001 Regular Season - Week 5" }, { "date": "Oct 14, 2001", @@ -90824,8 +134601,13 @@ "und": "New York Giants", "sF": "15", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 45.0, + "pScore": { + "sU": 17.25, + "sF": 27.75 + }, + "week": "2001 Regular Season - Week 5" }, { "date": "Oct 14, 2001", @@ -90835,7 +134617,12 @@ "sF": "20", "sU": "13", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "2001 Regular Season - Week 5" }, { "date": "Oct 14, 2001", @@ -90845,7 +134632,12 @@ "sF": "31", "sU": "26", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "2001 Regular Season - Week 5" }, { "date": "Oct 14, 2001", @@ -90855,7 +134647,12 @@ "sF": "27", "sU": "25", "spread": "5", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 17.25, + "sF": 22.25 + }, + "week": "2001 Regular Season - Week 5" }, { "date": "Oct 14, 2001", @@ -90864,8 +134661,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 35.0, + "pScore": { + "sU": 16.75, + "sF": 18.25 + }, + "week": "2001 Regular Season - Week 5" }, { "date": "Oct 14, 2001", @@ -90875,7 +134677,12 @@ "sF": "26", "sU": "29", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2001 Regular Season - Week 5" }, { "date": "Oct 14, 2001", @@ -90885,7 +134692,12 @@ "sF": "37", "sU": "31", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2001 Regular Season - Week 5" }, { "date": "Oct 14, 2001", @@ -90895,7 +134707,12 @@ "sF": "31", "sU": "28", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "2001 Regular Season - Week 5" }, { "date": "Oct 14, 2001", @@ -90905,7 +134722,12 @@ "sF": "17", "sU": "21", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2001 Regular Season - Week 5" }, { "date": "Oct 14, 2001", @@ -90915,7 +134737,12 @@ "sF": "21", "sU": "34", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2001 Regular Season - Week 5" }, { "date": "Oct 14, 2001", @@ -90924,8 +134751,13 @@ "und": "Oakland Raiders", "sF": "18", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 52.0, + "pScore": { + "sU": 24.25, + "sF": 27.75 + }, + "week": "2001 Regular Season - Week 5" }, { "date": "Oct 15, 2001", @@ -90935,7 +134767,12 @@ "sF": "9", "sU": "7", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2001 Regular Season - Week 5" }, { "date": "Oct 18, 2001", @@ -90945,7 +134782,12 @@ "sF": "10", "sU": "13", "spread": "9", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 14.75, + "sF": 23.75 + }, + "week": "2001 Regular Season - Week 6" }, { "date": "Oct 21, 2001", @@ -90955,7 +134797,12 @@ "sF": "13", "sU": "20", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "2001 Regular Season - Week 6" }, { "date": "Oct 21, 2001", @@ -90964,8 +134811,13 @@ "und": "Detroit Lions", "sF": "27", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.5, + "pScore": { + "sU": 16.5, + "sF": 22.0 + }, + "week": "2001 Regular Season - Week 6" }, { "date": "Oct 21, 2001", @@ -90974,8 +134826,13 @@ "und": "New England Patriots", "sF": "17", "sU": "38", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 48.0, + "pScore": { + "sU": 18.75, + "sF": 29.25 + }, + "week": "2001 Regular Season - Week 6" }, { "date": "Oct 21, 2001", @@ -90985,7 +134842,12 @@ "sF": "10", "sU": "17", "spread": "5", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 14.25, + "sF": 19.25 + }, + "week": "2001 Regular Season - Week 6" }, { "date": "Oct 21, 2001", @@ -90994,8 +134856,13 @@ "und": "Washington Redskins", "sF": "14", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "2001 Regular Season - Week 6" }, { "date": "Oct 21, 2001", @@ -91005,7 +134872,12 @@ "sF": "0", "sU": "24", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "2001 Regular Season - Week 6" }, { "date": "Oct 21, 2001", @@ -91014,8 +134886,13 @@ "und": "Cleveland Browns", "sF": "14", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 33.0, + "pScore": { + "sU": 12.75, + "sF": 20.25 + }, + "week": "2001 Regular Season - Week 6" }, { "date": "Oct 21, 2001", @@ -91025,7 +134902,12 @@ "sF": "34", "sU": "14", "spread": "7", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.75, + "sF": 26.75 + }, + "week": "2001 Regular Season - Week 6" }, { "date": "Oct 21, 2001", @@ -91034,8 +134916,13 @@ "und": "San Diego Chargers", "sF": "10", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2001 Regular Season - Week 6" }, { "date": "Oct 21, 2001", @@ -91045,7 +134932,12 @@ "sF": "13", "sU": "35", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2001 Regular Season - Week 6" }, { "date": "Oct 21, 2001", @@ -91055,7 +134947,12 @@ "sF": "16", "sU": "24", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "2001 Regular Season - Week 6" }, { "date": "Oct 22, 2001", @@ -91065,7 +134962,12 @@ "sF": "9", "sU": "10", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "2001 Regular Season - Week 6" }, { "date": "Oct 25, 2001", @@ -91075,7 +134977,12 @@ "sF": "35", "sU": "28", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2001 Regular Season - Week 7" }, { "date": "Oct 28, 2001", @@ -91085,7 +134992,12 @@ "sF": "27", "sU": "31", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2001 Regular Season - Week 7" }, { "date": "Oct 28, 2001", @@ -91094,8 +135006,13 @@ "und": "Jacksonville Jaguars", "sF": "18", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 33.0, + "pScore": { + "sU": 12.75, + "sF": 20.25 + }, + "week": "2001 Regular Season - Week 7" }, { "date": "Oct 28, 2001", @@ -91105,7 +135022,12 @@ "sF": "41", "sU": "14", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "2001 Regular Season - Week 7" }, { "date": "Oct 28, 2001", @@ -91114,8 +135036,13 @@ "und": "Carolina Panthers", "sF": "13", "sU": "12", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "2001 Regular Season - Week 7" }, { "date": "Oct 28, 2001", @@ -91125,7 +135052,12 @@ "sF": "31", "sU": "34", "spread": "12", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 18.25, + "sF": 30.25 + }, + "week": "2001 Regular Season - Week 7" }, { "date": "Oct 28, 2001", @@ -91135,11 +135067,12 @@ "sF": "37", "sU": "31", "spread": "2", - "ou": "49", + "ou": 39.0, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 18.5, + "sF": 20.5 + }, + "week": "2001 Regular Season - Week 7" }, { "date": "Oct 28, 2001", @@ -91148,8 +135081,13 @@ "und": "Buffalo Bills", "sF": "27", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.0, + "pScore": { + "sU": 15.75, + "sF": 23.25 + }, + "week": "2001 Regular Season - Week 7" }, { "date": "Oct 28, 2001", @@ -91159,7 +135097,12 @@ "sF": "31", "sU": "20", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2001 Regular Season - Week 7" }, { "date": "Oct 28, 2001", @@ -91169,7 +135112,12 @@ "sF": "3", "sU": "17", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2001 Regular Season - Week 7" }, { "date": "Oct 28, 2001", @@ -91178,8 +135126,13 @@ "und": "Washington Redskins", "sF": "21", "sU": "35", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 33.5, + "pScore": { + "sU": 13.0, + "sF": 20.5 + }, + "week": "2001 Regular Season - Week 7" }, { "date": "Oct 28, 2001", @@ -91189,7 +135142,12 @@ "sF": "10", "sU": "20", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "2001 Regular Season - Week 7" }, { "date": "Oct 28, 2001", @@ -91198,8 +135156,13 @@ "und": "Seattle Seahawks", "sF": "24", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "2001 Regular Season - Week 7" }, { "date": "Oct 29, 2001", @@ -91209,7 +135172,12 @@ "sF": "34", "sU": "7", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2001 Regular Season - Week 7" }, { "date": "Nov 4, 2001", @@ -91219,7 +135187,12 @@ "sF": "10", "sU": "24", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2001 Regular Season - Week 8" }, { "date": "Nov 4, 2001", @@ -91229,7 +135202,12 @@ "sF": "30", "sU": "14", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2001 Regular Season - Week 8" }, { "date": "Nov 4, 2001", @@ -91239,7 +135217,12 @@ "sF": "23", "sU": "6", "spread": "10", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 12.25, + "sF": 22.25 + }, + "week": "2001 Regular Season - Week 8" }, { "date": "Nov 4, 2001", @@ -91249,7 +135232,12 @@ "sF": "10", "sU": "13", "spread": "2", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.5, + "sF": 17.5 + }, + "week": "2001 Regular Season - Week 8" }, { "date": "Nov 4, 2001", @@ -91259,7 +135247,12 @@ "sF": "21", "sU": "20", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "2001 Regular Season - Week 8" }, { "date": "Nov 4, 2001", @@ -91269,7 +135262,12 @@ "sF": "28", "sU": "24", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2001 Regular Season - Week 8" }, { "date": "Nov 4, 2001", @@ -91278,8 +135276,13 @@ "und": "Dallas Cowboys", "sF": "27", "sU": "24", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 35.5, + "pScore": { + "sU": 12.5, + "sF": 23.0 + }, + "week": "2001 Regular Season - Week 8" }, { "date": "Nov 4, 2001", @@ -91289,7 +135292,12 @@ "sF": "21", "sU": "7", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "2001 Regular Season - Week 8" }, { "date": "Nov 4, 2001", @@ -91298,8 +135306,13 @@ "und": "Detroit Lions", "sF": "21", "sU": "13", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 47.0, + "pScore": { + "sU": 19.25, + "sF": 27.75 + }, + "week": "2001 Regular Season - Week 8" }, { "date": "Nov 4, 2001", @@ -91308,8 +135321,13 @@ "und": "Cleveland Browns", "sF": "27", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 34.0, + "pScore": { + "sU": 14.75, + "sF": 19.25 + }, + "week": "2001 Regular Season - Week 8" }, { "date": "Nov 4, 2001", @@ -91318,8 +135336,13 @@ "und": "Kansas City Chiefs", "sF": "20", "sU": "25", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.0, + "pScore": { + "sU": 17.75, + "sF": 23.25 + }, + "week": "2001 Regular Season - Week 8" }, { "date": "Nov 4, 2001", @@ -91328,8 +135351,13 @@ "und": "Washington Redskins", "sF": "14", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2001 Regular Season - Week 8" }, { "date": "Nov 4, 2001", @@ -91338,8 +135366,13 @@ "und": "New York Jets", "sF": "9", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.5, + "pScore": { + "sU": 18.0, + "sF": 24.5 + }, + "week": "2001 Regular Season - Week 8" }, { "date": "Nov 5, 2001", @@ -91348,8 +135381,13 @@ "und": "Denver Broncos", "sF": "38", "sU": "28", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.5, + "pScore": { + "sU": 20.0, + "sF": 25.5 + }, + "week": "2001 Regular Season - Week 8" }, { "date": "Nov 11, 2001", @@ -91359,7 +135397,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2001 Regular Season - Week 9" }, { "date": "Nov 11, 2001", @@ -91368,8 +135411,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "12", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2001 Regular Season - Week 9" }, { "date": "Nov 11, 2001", @@ -91379,7 +135427,12 @@ "sF": "21", "sU": "11", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "2001 Regular Season - Week 9" }, { "date": "Nov 11, 2001", @@ -91388,8 +135441,13 @@ "und": "Kansas City Chiefs", "sF": "27", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "2001 Regular Season - Week 9" }, { "date": "Nov 11, 2001", @@ -91399,7 +135457,12 @@ "sF": "48", "sU": "14", "spread": "18", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 14.5, + "sF": 32.5 + }, + "week": "2001 Regular Season - Week 9" }, { "date": "Nov 11, 2001", @@ -91409,7 +135472,12 @@ "sF": "15", "sU": "12", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "2001 Regular Season - Week 9" }, { "date": "Nov 11, 2001", @@ -91419,7 +135487,12 @@ "sF": "20", "sU": "17", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "2001 Regular Season - Week 9" }, { "date": "Nov 11, 2001", @@ -91429,7 +135502,12 @@ "sF": "30", "sU": "13", "spread": "4", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 17.75, + "sF": 21.75 + }, + "week": "2001 Regular Season - Week 9" }, { "date": "Nov 11, 2001", @@ -91439,7 +135517,12 @@ "sF": "20", "sU": "13", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "2001 Regular Season - Week 9" }, { "date": "Nov 11, 2001", @@ -91448,8 +135531,13 @@ "und": "San Diego Chargers", "sF": "26", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.0, + "pScore": { + "sU": 19.75, + "sF": 25.25 + }, + "week": "2001 Regular Season - Week 9" }, { "date": "Nov 11, 2001", @@ -91458,8 +135546,13 @@ "und": "Minnesota Vikings", "sF": "48", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "2001 Regular Season - Week 9" }, { "date": "Nov 11, 2001", @@ -91469,7 +135562,12 @@ "sF": "28", "sU": "27", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2001 Regular Season - Week 9" }, { "date": "Nov 11, 2001", @@ -91478,8 +135576,13 @@ "und": "Arizona Cardinals", "sF": "17", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.5, + "pScore": { + "sU": 16.0, + "sF": 21.5 + }, + "week": "2001 Regular Season - Week 9" }, { "date": "Nov 11, 2001", @@ -91489,7 +135592,12 @@ "sF": "27", "sU": "34", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "2001 Regular Season - Week 9" }, { "date": "Nov 12, 2001", @@ -91498,8 +135606,13 @@ "und": "Tennessee Titans", "sF": "16", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 35.0, + "pScore": { + "sU": 16.75, + "sF": 18.25 + }, + "week": "2001 Regular Season - Week 9" }, { "date": "Nov 18, 2001", @@ -91509,7 +135622,12 @@ "sF": "17", "sU": "27", "spread": "8", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 12.5, + "sF": 20.5 + }, + "week": "2001 Regular Season - Week 10" }, { "date": "Nov 18, 2001", @@ -91518,8 +135636,13 @@ "und": "Buffalo Bills", "sF": "23", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "2001 Regular Season - Week 10" }, { "date": "Nov 18, 2001", @@ -91529,7 +135652,12 @@ "sF": "25", "sU": "22", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2001 Regular Season - Week 10" }, { "date": "Nov 18, 2001", @@ -91538,8 +135666,13 @@ "und": "Tennessee Titans", "sF": "7", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.5, + "pScore": { + "sU": 19.0, + "sF": 20.5 + }, + "week": "2001 Regular Season - Week 10" }, { "date": "Nov 18, 2001", @@ -91549,7 +135682,12 @@ "sF": "20", "sU": "23", "spread": "10", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 14.75, + "sF": 24.75 + }, + "week": "2001 Regular Season - Week 10" }, { "date": "Nov 18, 2001", @@ -91558,8 +135696,13 @@ "und": "New York Jets", "sF": "0", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.5, + "pScore": { + "sU": 16.0, + "sF": 21.5 + }, + "week": "2001 Regular Season - Week 10" }, { "date": "Nov 18, 2001", @@ -91568,8 +135711,13 @@ "und": "Indianapolis Colts", "sF": "34", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.5, + "pScore": { + "sU": 21.0, + "sF": 26.5 + }, + "week": "2001 Regular Season - Week 10" }, { "date": "Nov 18, 2001", @@ -91579,7 +135727,12 @@ "sF": "36", "sU": "3", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "2001 Regular Season - Week 10" }, { "date": "Nov 18, 2001", @@ -91589,7 +135742,12 @@ "sF": "34", "sU": "24", "spread": "9", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 18.0, + "sF": 27.0 + }, + "week": "2001 Regular Season - Week 10" }, { "date": "Nov 18, 2001", @@ -91598,8 +135756,13 @@ "und": "Jacksonville Jaguars", "sF": "20", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 36.0, + "pScore": { + "sU": 15.25, + "sF": 20.75 + }, + "week": "2001 Regular Season - Week 10" }, { "date": "Nov 18, 2001", @@ -91609,7 +135772,12 @@ "sF": "45", "sU": "38", "spread": "2", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.75, + "sF": 20.75 + }, + "week": "2001 Regular Season - Week 10" }, { "date": "Nov 18, 2001", @@ -91618,8 +135786,13 @@ "und": "Washington Redskins", "sF": "10", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.0, + "pScore": { + "sU": 17.25, + "sF": 25.75 + }, + "week": "2001 Regular Season - Week 10" }, { "date": "Nov 18, 2001", @@ -91629,7 +135802,12 @@ "sF": "24", "sU": "27", "spread": "5", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.0, + "sF": 20.0 + }, + "week": "2001 Regular Season - Week 10" }, { "date": "Nov 18, 2001", @@ -91638,8 +135816,13 @@ "und": "New England Patriots", "sF": "24", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 46.5, + "pScore": { + "sU": 19.0, + "sF": 27.5 + }, + "week": "2001 Regular Season - Week 10" }, { "date": "Nov 19, 2001", @@ -91649,7 +135832,12 @@ "sF": "28", "sU": "16", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "2001 Regular Season - Week 10" }, { "date": "Nov 22, 2001", @@ -91659,7 +135847,12 @@ "sF": "29", "sU": "27", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2001 Regular Season - Week 11" }, { "date": "Nov 22, 2001", @@ -91669,7 +135862,12 @@ "sF": "26", "sU": "24", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "2001 Regular Season - Week 11" }, { "date": "Nov 25, 2001", @@ -91678,12 +135876,13 @@ "und": "San Francisco 49ers", "sF": "21", "sU": "40", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": 52.5, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 25.0, + "sF": 27.5 + }, + "week": "2001 Regular Season - Week 11" }, { "date": "Nov 25, 2001", @@ -91692,8 +135891,13 @@ "und": "Seattle Seahawks", "sF": "19", "sU": "7", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.0, + "pScore": { + "sU": 19.75, + "sF": 21.25 + }, + "week": "2001 Regular Season - Week 11" }, { "date": "Nov 25, 2001", @@ -91703,7 +135907,12 @@ "sF": "34", "sU": "27", "spread": "5", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.5, + "sF": 20.5 + }, + "week": "2001 Regular Season - Week 11" }, { "date": "Nov 25, 2001", @@ -91713,7 +135922,12 @@ "sF": "10", "sU": "7", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2001 Regular Season - Week 11" }, { "date": "Nov 25, 2001", @@ -91723,7 +135937,12 @@ "sF": "18", "sU": "0", "spread": "6", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 14.75, + "sF": 20.75 + }, + "week": "2001 Regular Season - Week 11" }, { "date": "Nov 25, 2001", @@ -91733,7 +135952,12 @@ "sF": "3", "sU": "13", "spread": "8", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 14.75, + "sF": 22.75 + }, + "week": "2001 Regular Season - Week 11" }, { "date": "Nov 25, 2001", @@ -91743,7 +135967,12 @@ "sF": "24", "sU": "34", "spread": "2", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 16.25, + "sF": 18.25 + }, + "week": "2001 Regular Season - Week 11" }, { "date": "Nov 25, 2001", @@ -91753,7 +135982,12 @@ "sF": "17", "sU": "20", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2001 Regular Season - Week 11" }, { "date": "Nov 25, 2001", @@ -91763,7 +135997,12 @@ "sF": "24", "sU": "21", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "2001 Regular Season - Week 11" }, { "date": "Nov 25, 2001", @@ -91772,8 +136011,13 @@ "und": "New York Giants", "sF": "28", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "2001 Regular Season - Week 11" }, { "date": "Nov 25, 2001", @@ -91783,7 +136027,12 @@ "sF": "6", "sU": "13", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2001 Regular Season - Week 11" }, { "date": "Nov 26, 2001", @@ -91792,8 +136041,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "24", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 46.0, + "pScore": { + "sU": 18.25, + "sF": 27.75 + }, + "week": "2001 Regular Season - Week 11" }, { "date": "Nov 29, 2001", @@ -91803,7 +136057,12 @@ "sF": "23", "sU": "10", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2001 Regular Season - Week 12" }, { "date": "Dec 2, 2001", @@ -91813,7 +136072,12 @@ "sF": "21", "sU": "16", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "2001 Regular Season - Week 12" }, { "date": "Dec 2, 2001", @@ -91823,7 +136087,12 @@ "sF": "39", "sU": "27", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2001 Regular Season - Week 12" }, { "date": "Dec 2, 2001", @@ -91833,7 +136102,12 @@ "sF": "16", "sU": "13", "spread": "5", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.0, + "sF": 20.0 + }, + "week": "2001 Regular Season - Week 12" }, { "date": "Dec 2, 2001", @@ -91842,8 +136116,13 @@ "und": "Tennessee Titans", "sF": "15", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 35.5, + "pScore": { + "sU": 17.0, + "sF": 18.5 + }, + "week": "2001 Regular Season - Week 12" }, { "date": "Dec 2, 2001", @@ -91853,7 +136132,12 @@ "sF": "21", "sU": "10", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2001 Regular Season - Week 12" }, { "date": "Dec 2, 2001", @@ -91863,7 +136147,12 @@ "sF": "16", "sU": "17", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2001 Regular Season - Week 12" }, { "date": "Dec 2, 2001", @@ -91873,7 +136162,12 @@ "sF": "13", "sU": "10", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "2001 Regular Season - Week 12" }, { "date": "Dec 2, 2001", @@ -91883,7 +136177,12 @@ "sF": "27", "sU": "23", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "2001 Regular Season - Week 12" }, { "date": "Dec 2, 2001", @@ -91893,7 +136192,12 @@ "sF": "13", "sU": "10", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2001 Regular Season - Week 12" }, { "date": "Dec 2, 2001", @@ -91903,7 +136207,12 @@ "sF": "35", "sU": "6", "spread": "8", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.5, + "sF": 27.5 + }, + "week": "2001 Regular Season - Week 12" }, { "date": "Dec 2, 2001", @@ -91913,7 +136222,12 @@ "sF": "31", "sU": "34", "spread": "13", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 15.5, + "sF": 28.5 + }, + "week": "2001 Regular Season - Week 12" }, { "date": "Dec 2, 2001", @@ -91922,8 +136236,13 @@ "und": "Dallas Cowboys", "sF": "14", "sU": "20", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 35.5, + "pScore": { + "sU": 13.5, + "sF": 22.0 + }, + "week": "2001 Regular Season - Week 12" }, { "date": "Dec 2, 2001", @@ -91932,8 +136251,13 @@ "und": "Buffalo Bills", "sF": "35", "sU": "0", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 44.5, + "pScore": { + "sU": 18.0, + "sF": 26.5 + }, + "week": "2001 Regular Season - Week 12" }, { "date": "Dec 3, 2001", @@ -91943,7 +136267,12 @@ "sF": "28", "sU": "21", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2001 Regular Season - Week 12" }, { "date": "Dec 9, 2001", @@ -91952,8 +136281,13 @@ "und": "Minnesota Vikings", "sF": "24", "sU": "42", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2001 Regular Season - Week 13" }, { "date": "Dec 9, 2001", @@ -91963,7 +136297,12 @@ "sF": "15", "sU": "12", "spread": "8", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 14.25, + "sF": 22.25 + }, + "week": "2001 Regular Season - Week 13" }, { "date": "Dec 9, 2001", @@ -91972,8 +136311,13 @@ "und": "Carolina Panthers", "sF": "25", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "2001 Regular Season - Week 13" }, { "date": "Dec 9, 2001", @@ -91983,7 +136327,12 @@ "sF": "10", "sU": "14", "spread": "1", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.75, + "sF": 18.75 + }, + "week": "2001 Regular Season - Week 13" }, { "date": "Dec 9, 2001", @@ -91992,8 +136341,13 @@ "und": "Dallas Cowboys", "sF": "13", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.5, + "pScore": { + "sU": 16.0, + "sF": 19.5 + }, + "week": "2001 Regular Season - Week 13" }, { "date": "Dec 9, 2001", @@ -92002,8 +136356,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.5, + "pScore": { + "sU": 16.0, + "sF": 21.5 + }, + "week": "2001 Regular Season - Week 13" }, { "date": "Dec 9, 2001", @@ -92013,7 +136372,12 @@ "sF": "27", "sU": "16", "spread": "5", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 15.75, + "sF": 20.75 + }, + "week": "2001 Regular Season - Week 13" }, { "date": "Dec 9, 2001", @@ -92023,11 +136387,12 @@ "sF": "27", "sU": "14", "spread": "7", - "ou": "49", + "ou": 55.0, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 24.0, + "sF": 31.0 + }, + "week": "2001 Regular Season - Week 13" }, { "date": "Dec 9, 2001", @@ -92037,7 +136402,12 @@ "sF": "24", "sU": "14", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "2001 Regular Season - Week 13" }, { "date": "Dec 9, 2001", @@ -92047,7 +136417,12 @@ "sF": "28", "sU": "10", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2001 Regular Season - Week 13" }, { "date": "Dec 9, 2001", @@ -92057,7 +136432,12 @@ "sF": "10", "sU": "20", "spread": "2", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.25, + "sF": 20.25 + }, + "week": "2001 Regular Season - Week 13" }, { "date": "Dec 9, 2001", @@ -92067,7 +136447,12 @@ "sF": "28", "sU": "26", "spread": "9", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.75, + "sF": 26.75 + }, + "week": "2001 Regular Season - Week 13" }, { "date": "Dec 9, 2001", @@ -92076,8 +136461,13 @@ "und": "New York Jets", "sF": "18", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 34.5, + "pScore": { + "sU": 15.5, + "sF": 19.0 + }, + "week": "2001 Regular Season - Week 13" }, { "date": "Dec 9, 2001", @@ -92087,7 +136477,12 @@ "sF": "20", "sU": "7", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2001 Regular Season - Week 13" }, { "date": "Dec 10, 2001", @@ -92097,7 +136492,12 @@ "sF": "41", "sU": "6", "spread": "5", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.0, + "sF": 25.0 + }, + "week": "2001 Regular Season - Week 13" }, { "date": "Dec 15, 2001", @@ -92107,7 +136507,12 @@ "sF": "17", "sU": "13", "spread": "5", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.25, + "sF": 21.25 + }, + "week": "2001 Regular Season - Week 14" }, { "date": "Dec 15, 2001", @@ -92117,7 +136522,12 @@ "sF": "13", "sU": "6", "spread": "4", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.25, + "sF": 25.25 + }, + "week": "2001 Regular Season - Week 14" }, { "date": "Dec 16, 2001", @@ -92127,7 +136537,12 @@ "sF": "41", "sU": "27", "spread": "4", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.25, + "sF": 25.25 + }, + "week": "2001 Regular Season - Week 14" }, { "date": "Dec 16, 2001", @@ -92136,8 +136551,13 @@ "und": "Kansas City Chiefs", "sF": "23", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2001 Regular Season - Week 14" }, { "date": "Dec 16, 2001", @@ -92147,7 +136567,12 @@ "sF": "12", "sU": "9", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "2001 Regular Season - Week 14" }, { "date": "Dec 16, 2001", @@ -92156,8 +136581,13 @@ "und": "Tampa Bay Buccaneers", "sF": "27", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 33.0, + "pScore": { + "sU": 15.25, + "sF": 17.75 + }, + "week": "2001 Regular Season - Week 14" }, { "date": "Dec 16, 2001", @@ -92167,7 +136597,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2001 Regular Season - Week 14" }, { "date": "Dec 16, 2001", @@ -92176,8 +136611,13 @@ "und": "Cincinnati Bengals", "sF": "15", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 35.0, + "pScore": { + "sU": 13.25, + "sF": 21.75 + }, + "week": "2001 Regular Season - Week 14" }, { "date": "Dec 16, 2001", @@ -92187,7 +136627,12 @@ "sF": "10", "sU": "15", "spread": "2", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.25, + "sF": 19.25 + }, + "week": "2001 Regular Season - Week 14" }, { "date": "Dec 16, 2001", @@ -92196,8 +136641,13 @@ "und": "Miami Dolphins", "sF": "21", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2001 Regular Season - Week 14" }, { "date": "Dec 16, 2001", @@ -92206,8 +136656,13 @@ "und": "Tennessee Titans", "sF": "20", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2001 Regular Season - Week 14" }, { "date": "Dec 16, 2001", @@ -92216,8 +136671,13 @@ "und": "Washington Redskins", "sF": "20", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 34.5, + "pScore": { + "sU": 16.0, + "sF": 18.5 + }, + "week": "2001 Regular Season - Week 14" }, { "date": "Dec 16, 2001", @@ -92226,8 +136686,13 @@ "und": "Dallas Cowboys", "sF": "29", "sU": "3", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 36.5, + "pScore": { + "sU": 15.5, + "sF": 21.0 + }, + "week": "2001 Regular Season - Week 14" }, { "date": "Dec 16, 2001", @@ -92237,7 +136702,12 @@ "sF": "21", "sU": "26", "spread": "3", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 15.25, + "sF": 18.25 + }, + "week": "2001 Regular Season - Week 14" }, { "date": "Dec 17, 2001", @@ -92247,7 +136717,12 @@ "sF": "34", "sU": "21", "spread": "6", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 22.5, + "sF": 28.5 + }, + "week": "2001 Regular Season - Week 14" }, { "date": "Dec 22, 2001", @@ -92257,7 +136732,12 @@ "sF": "20", "sU": "13", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2001 Regular Season - Week 15" }, { "date": "Dec 22, 2001", @@ -92267,7 +136747,12 @@ "sF": "13", "sU": "3", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2001 Regular Season - Week 15" }, { "date": "Dec 22, 2001", @@ -92277,7 +136762,12 @@ "sF": "10", "sU": "13", "spread": "6", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.75, + "sF": 25.75 + }, + "week": "2001 Regular Season - Week 15" }, { "date": "Dec 23, 2001", @@ -92286,8 +136776,13 @@ "und": "San Diego Chargers", "sF": "20", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2001 Regular Season - Week 15" }, { "date": "Dec 23, 2001", @@ -92296,8 +136791,13 @@ "und": "Jacksonville Jaguars", "sF": "3", "sU": "33", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2001 Regular Season - Week 15" }, { "date": "Dec 23, 2001", @@ -92307,7 +136807,12 @@ "sF": "47", "sU": "14", "spread": "10", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 13.0, + "sF": 23.0 + }, + "week": "2001 Regular Season - Week 15" }, { "date": "Dec 23, 2001", @@ -92316,8 +136821,13 @@ "und": "New Orleans Saints", "sF": "48", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "2001 Regular Season - Week 15" }, { "date": "Dec 23, 2001", @@ -92327,7 +136837,12 @@ "sF": "15", "sU": "20", "spread": "1", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 16.0, + "sF": 17.0 + }, + "week": "2001 Regular Season - Week 15" }, { "date": "Dec 23, 2001", @@ -92336,8 +136851,13 @@ "und": "Cincinnati Bengals", "sF": "16", "sU": "0", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 33.5, + "pScore": { + "sU": 11.5, + "sF": 22.0 + }, + "week": "2001 Regular Season - Week 15" }, { "date": "Dec 23, 2001", @@ -92346,8 +136866,13 @@ "und": "Carolina Panthers", "sF": "38", "sU": "32", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 46.5, + "pScore": { + "sU": 17.0, + "sF": 29.5 + }, + "week": "2001 Regular Season - Week 15" }, { "date": "Dec 23, 2001", @@ -92357,7 +136882,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "2001 Regular Season - Week 15" }, { "date": "Dec 23, 2001", @@ -92367,7 +136897,12 @@ "sF": "33", "sU": "30", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "2001 Regular Season - Week 15" }, { "date": "Dec 23, 2001", @@ -92376,8 +136911,13 @@ "und": "Dallas Cowboys", "sF": "17", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2001 Regular Season - Week 15" }, { "date": "Dec 23, 2001", @@ -92386,8 +136926,13 @@ "und": "Cleveland Browns", "sF": "30", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.0, + "pScore": { + "sU": 14.75, + "sF": 22.25 + }, + "week": "2001 Regular Season - Week 15" }, { "date": "Dec 23, 2001", @@ -92397,7 +136942,12 @@ "sF": "28", "sU": "29", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "2001 Regular Season - Week 15" }, { "date": "Dec 29, 2001", @@ -92406,8 +136956,13 @@ "und": "Baltimore Ravens", "sF": "22", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 34.0, + "pScore": { + "sU": 16.25, + "sF": 17.75 + }, + "week": "2001 Regular Season - Week 16" }, { "date": "Dec 30, 2001", @@ -92417,7 +136972,12 @@ "sF": "7", "sU": "30", "spread": "1", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 19.25, + "sF": 20.25 + }, + "week": "2001 Regular Season - Week 16" }, { "date": "Dec 30, 2001", @@ -92427,7 +136987,12 @@ "sF": "23", "sU": "26", "spread": "8", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 12.75, + "sF": 20.75 + }, + "week": "2001 Regular Season - Week 16" }, { "date": "Dec 30, 2001", @@ -92437,7 +137002,12 @@ "sF": "24", "sU": "13", "spread": "12", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 14.0, + "sF": 26.0 + }, + "week": "2001 Regular Season - Week 16" }, { "date": "Dec 30, 2001", @@ -92447,7 +137017,12 @@ "sF": "21", "sU": "14", "spread": "7", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.75, + "sF": 22.75 + }, + "week": "2001 Regular Season - Week 16" }, { "date": "Dec 30, 2001", @@ -92457,7 +137032,12 @@ "sF": "42", "sU": "17", "spread": "13", - "ou": -1 + "ou": 58.5, + "pScore": { + "sU": 22.75, + "sF": 35.75 + }, + "week": "2001 Regular Season - Week 16" }, { "date": "Dec 30, 2001", @@ -92466,8 +137046,13 @@ "und": "Dallas Cowboys", "sF": "21", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "2001 Regular Season - Week 16" }, { "date": "Dec 30, 2001", @@ -92476,8 +137061,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "0", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.5, + "pScore": { + "sU": 16.5, + "sF": 22.0 + }, + "week": "2001 Regular Season - Week 16" }, { "date": "Dec 30, 2001", @@ -92487,7 +137077,12 @@ "sF": "9", "sU": "14", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "2001 Regular Season - Week 16" }, { "date": "Dec 30, 2001", @@ -92497,7 +137092,12 @@ "sF": "38", "sU": "41", "spread": "5", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.25, + "sF": 21.25 + }, + "week": "2001 Regular Season - Week 16" }, { "date": "Dec 30, 2001", @@ -92506,8 +137106,13 @@ "und": "Kansas City Chiefs", "sF": "26", "sU": "30", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "2001 Regular Season - Week 16" }, { "date": "Dec 30, 2001", @@ -92517,7 +137122,12 @@ "sF": "24", "sU": "21", "spread": "5", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 14.75, + "sF": 19.75 + }, + "week": "2001 Regular Season - Week 16" }, { "date": "Dec 30, 2001", @@ -92527,7 +137137,12 @@ "sF": "23", "sU": "17", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "2001 Regular Season - Week 16" }, { "date": "Dec 30, 2001", @@ -92536,8 +137151,13 @@ "und": "Seattle Seahawks", "sF": "22", "sU": "25", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.0, + "pScore": { + "sU": 18.75, + "sF": 20.25 + }, + "week": "2001 Regular Season - Week 16" }, { "date": "Dec 30, 2001", @@ -92547,7 +137167,12 @@ "sF": "10", "sU": "40", "spread": "5", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 17.25, + "sF": 22.25 + }, + "week": "2001 Regular Season - Week 16" }, { "date": "Jan 6, 2002", @@ -92556,8 +137181,13 @@ "und": "New Orleans Saints", "sF": "38", "sU": "0", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "2001 Regular Season - Week 17" }, { "date": "Jan 6, 2002", @@ -92567,7 +137197,12 @@ "sF": "29", "sU": "10", "spread": "2", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.5, + "sF": 26.5 + }, + "week": "2001 Regular Season - Week 17" }, { "date": "Jan 6, 2002", @@ -92577,7 +137212,12 @@ "sF": "28", "sU": "7", "spread": "7", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 13.75, + "sF": 20.75 + }, + "week": "2001 Regular Season - Week 17" }, { "date": "Jan 6, 2002", @@ -92586,8 +137226,13 @@ "und": "Arizona Cardinals", "sF": "20", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "2001 Regular Season - Week 17" }, { "date": "Jan 6, 2002", @@ -92596,8 +137241,13 @@ "und": "Carolina Panthers", "sF": "38", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.0, + "pScore": { + "sU": 14.75, + "sF": 21.25 + }, + "week": "2001 Regular Season - Week 17" }, { "date": "Jan 6, 2002", @@ -92607,7 +137257,12 @@ "sF": "33", "sU": "13", "spread": "6", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 13.75, + "sF": 19.75 + }, + "week": "2001 Regular Season - Week 17" }, { "date": "Jan 6, 2002", @@ -92617,7 +137272,12 @@ "sF": "10", "sU": "15", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2001 Regular Season - Week 17" }, { "date": "Jan 6, 2002", @@ -92626,8 +137286,13 @@ "und": "Cincinnati Bengals", "sF": "21", "sU": "23", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.5, + "pScore": { + "sU": 16.0, + "sF": 21.5 + }, + "week": "2001 Regular Season - Week 17" }, { "date": "Jan 6, 2002", @@ -92637,7 +137302,12 @@ "sF": "34", "sU": "25", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2001 Regular Season - Week 17" }, { "date": "Jan 6, 2002", @@ -92646,8 +137316,13 @@ "und": "Atlanta Falcons", "sF": "31", "sU": "13", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 48.0, + "pScore": { + "sU": 16.75, + "sF": 31.25 + }, + "week": "2001 Regular Season - Week 17" }, { "date": "Jan 6, 2002", @@ -92656,8 +137331,13 @@ "und": "New York Jets", "sF": "22", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.5, + "pScore": { + "sU": 18.5, + "sF": 23.0 + }, + "week": "2001 Regular Season - Week 17" }, { "date": "Jan 6, 2002", @@ -92666,8 +137346,13 @@ "und": "Kansas City Chiefs", "sF": "21", "sU": "18", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2001 Regular Season - Week 17" }, { "date": "Jan 6, 2002", @@ -92676,8 +137361,13 @@ "und": "Buffalo Bills", "sF": "34", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.5, + "pScore": { + "sU": 15.0, + "sF": 21.5 + }, + "week": "2001 Regular Season - Week 17" }, { "date": "Jan 6, 2002", @@ -92687,7 +137377,12 @@ "sF": "13", "sU": "17", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "2001 Regular Season - Week 17" }, { "date": "Jan 7, 2002", @@ -92697,7 +137392,12 @@ "sF": "19", "sU": "3", "spread": "10", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 13.75, + "sF": 23.75 + }, + "week": "2001 Regular Season - Week 17" }, { "date": "Jan 12, 2002", @@ -92706,8 +137406,13 @@ "und": "Tampa Bay Buccaneers (6)", "sF": "31", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 33.0, + "pScore": { + "sU": 14.75, + "sF": 18.25 + }, + "week": "2001 Playoffs" }, { "date": "Jan 12, 2002", @@ -92716,8 +137421,13 @@ "und": "New York Jets (6)", "sF": "38", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.0, + "pScore": { + "sU": 18.75, + "sF": 23.25 + }, + "week": "2001 Playoffs" }, { "date": "Jan 13, 2002", @@ -92726,12 +137436,13 @@ "und": "San Francisco 49ers (5)", "sF": "25", "sU": "15", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": 42.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 19.25, + "sF": 22.75 + }, + "week": "2001 Playoffs" }, { "date": "Jan 13, 2002", @@ -92740,8 +137451,13 @@ "und": "Baltimore Ravens (5)", "sF": "3", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 33.0, + "pScore": { + "sU": 15.25, + "sF": 17.75 + }, + "week": "2001 Playoffs" }, { "date": "Jan 19, 2002", @@ -92751,7 +137467,12 @@ "sF": "19", "sU": "33", "spread": "3", - "ou": -1 + "ou": 32.5, + "pScore": { + "sU": 14.75, + "sF": 17.75 + }, + "week": "2001 Playoffs" }, { "date": "Jan 19, 2002", @@ -92761,7 +137482,12 @@ "sF": "16", "sU": "13", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2001 Playoffs" }, { "date": "Jan 20, 2002", @@ -92770,8 +137496,13 @@ "und": "Baltimore Ravens (5)", "sF": "27", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 32.0, + "pScore": { + "sU": 13.25, + "sF": 18.75 + }, + "week": "2001 Playoffs" }, { "date": "Jan 20, 2002", @@ -92781,7 +137512,12 @@ "sF": "45", "sU": "17", "spread": "11", - "ou": -1 + "ou": 54.5, + "pScore": { + "sU": 21.75, + "sF": 32.75 + }, + "week": "2001 Playoffs" }, { "date": "Jan 27, 2002", @@ -92791,7 +137527,12 @@ "sF": "17", "sU": "24", "spread": "10", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 12.75, + "sF": 22.75 + }, + "week": "2001 Playoffs" }, { "date": "Jan 27, 2002", @@ -92801,7 +137542,12 @@ "sF": "29", "sU": "24", "spread": "11", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 19.0, + "sF": 30.0 + }, + "week": "2001 Playoffs" }, { "date": "Feb 3, 2002", @@ -92811,7 +137557,12 @@ "sF": "17", "sU": "20", "spread": "14", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 19.5, + "sF": 33.5 + }, + "week": "2001 Playoffs" }, { "date": "Sep 5, 2002", @@ -92821,7 +137572,12 @@ "sF": "16", "sU": "13", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "2002 Regular Season - Week 1" }, { "date": "Sep 8, 2002", @@ -92831,7 +137587,12 @@ "sF": "37", "sU": "31", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2002 Regular Season - Week 1" }, { "date": "Sep 8, 2002", @@ -92840,8 +137601,13 @@ "und": "Minnesota Vikings", "sF": "27", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "2002 Regular Season - Week 1" }, { "date": "Sep 8, 2002", @@ -92851,7 +137617,12 @@ "sF": "6", "sU": "34", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2002 Regular Season - Week 1" }, { "date": "Sep 8, 2002", @@ -92861,7 +137632,12 @@ "sF": "39", "sU": "40", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "2002 Regular Season - Week 1" }, { "date": "Sep 8, 2002", @@ -92871,7 +137647,12 @@ "sF": "37", "sU": "34", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "2002 Regular Season - Week 1" }, { "date": "Sep 8, 2002", @@ -92880,8 +137661,13 @@ "und": "Jacksonville Jaguars", "sF": "28", "sU": "25", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2002 Regular Season - Week 1" }, { "date": "Sep 8, 2002", @@ -92890,8 +137676,13 @@ "und": "Detroit Lions", "sF": "49", "sU": "21", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 35.5, + "pScore": { + "sU": 13.0, + "sF": 22.5 + }, + "week": "2002 Regular Season - Week 1" }, { "date": "Sep 8, 2002", @@ -92901,7 +137692,12 @@ "sF": "31", "sU": "23", "spread": "6", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.25, + "sF": 25.25 + }, + "week": "2002 Regular Season - Week 1" }, { "date": "Sep 8, 2002", @@ -92911,7 +137707,12 @@ "sF": "27", "sU": "24", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "2002 Regular Season - Week 1" }, { "date": "Sep 8, 2002", @@ -92921,7 +137722,12 @@ "sF": "20", "sU": "26", "spread": "6", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.75, + "sF": 21.75 + }, + "week": "2002 Regular Season - Week 1" }, { "date": "Sep 8, 2002", @@ -92931,7 +137737,12 @@ "sF": "16", "sU": "23", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2002 Regular Season - Week 1" }, { "date": "Sep 8, 2002", @@ -92940,8 +137751,13 @@ "und": "Seattle Seahawks", "sF": "31", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.0, + "pScore": { + "sU": 16.25, + "sF": 23.75 + }, + "week": "2002 Regular Season - Week 1" }, { "date": "Sep 8, 2002", @@ -92950,8 +137766,13 @@ "und": "Houston Texans", "sF": "10", "sU": "19", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 33.5, + "pScore": { + "sU": 12.5, + "sF": 21.0 + }, + "week": "2002 Regular Season - Week 1" }, { "date": "Sep 9, 2002", @@ -92960,8 +137781,13 @@ "und": "New England Patriots", "sF": "14", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2002 Regular Season - Week 1" }, { "date": "Sep 15, 2002", @@ -92970,8 +137796,13 @@ "und": "Jacksonville Jaguars", "sF": "16", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2002 Regular Season - Week 2" }, { "date": "Sep 15, 2002", @@ -92980,8 +137811,13 @@ "und": "Baltimore Ravens", "sF": "25", "sU": "0", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 32.0, + "pScore": { + "sU": 13.75, + "sF": 18.25 + }, + "week": "2002 Regular Season - Week 2" }, { "date": "Sep 15, 2002", @@ -92990,8 +137826,13 @@ "und": "Dallas Cowboys", "sF": "13", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.5, + "pScore": { + "sU": 17.0, + "sF": 20.5 + }, + "week": "2002 Regular Season - Week 2" }, { "date": "Sep 15, 2002", @@ -93000,8 +137841,13 @@ "und": "Cincinnati Bengals", "sF": "20", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "2002 Regular Season - Week 2" }, { "date": "Sep 15, 2002", @@ -93011,7 +137857,12 @@ "sF": "7", "sU": "44", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "2002 Regular Season - Week 2" }, { "date": "Sep 15, 2002", @@ -93020,8 +137871,13 @@ "und": "Chicago Bears", "sF": "13", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "2002 Regular Season - Week 2" }, { "date": "Sep 15, 2002", @@ -93031,7 +137887,12 @@ "sF": "31", "sU": "7", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "2002 Regular Season - Week 2" }, { "date": "Sep 15, 2002", @@ -93040,8 +137901,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "35", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2002 Regular Season - Week 2" }, { "date": "Sep 15, 2002", @@ -93051,7 +137917,12 @@ "sF": "21", "sU": "26", "spread": "12", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 17.0, + "sF": 29.0 + }, + "week": "2002 Regular Season - Week 2" }, { "date": "Sep 15, 2002", @@ -93060,8 +137931,13 @@ "und": "Denver Broncos", "sF": "14", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2002 Regular Season - Week 2" }, { "date": "Sep 15, 2002", @@ -93071,7 +137947,12 @@ "sF": "13", "sU": "24", "spread": "4", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.25, + "sF": 22.25 + }, + "week": "2002 Regular Season - Week 2" }, { "date": "Sep 15, 2002", @@ -93080,8 +137961,13 @@ "und": "Buffalo Bills", "sF": "39", "sU": "45", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.0, + "pScore": { + "sU": 22.75, + "sF": 26.25 + }, + "week": "2002 Regular Season - Week 2" }, { "date": "Sep 15, 2002", @@ -93090,8 +137976,13 @@ "und": "Houston Texans", "sF": "24", "sU": "3", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 34.0, + "pScore": { + "sU": 10.25, + "sF": 23.75 + }, + "week": "2002 Regular Season - Week 2" }, { "date": "Sep 15, 2002", @@ -93101,7 +137992,12 @@ "sF": "17", "sU": "30", "spread": "4", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 17.75, + "sF": 21.75 + }, + "week": "2002 Regular Season - Week 2" }, { "date": "Sep 16, 2002", @@ -93111,7 +138007,12 @@ "sF": "37", "sU": "7", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2002 Regular Season - Week 2" }, { "date": "Sep 22, 2002", @@ -93120,8 +138021,13 @@ "und": "Carolina Panthers", "sF": "14", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "2002 Regular Season - Week 3" }, { "date": "Sep 22, 2002", @@ -93130,8 +138036,13 @@ "und": "Houston Texans", "sF": "23", "sU": "3", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 38.0, + "pScore": { + "sU": 13.75, + "sF": 24.25 + }, + "week": "2002 Regular Season - Week 3" }, { "date": "Sep 22, 2002", @@ -93141,7 +138052,12 @@ "sF": "30", "sU": "3", "spread": "6", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.25, + "sF": 23.25 + }, + "week": "2002 Regular Season - Week 3" }, { "date": "Sep 22, 2002", @@ -93150,8 +138066,13 @@ "und": "Kansas City Chiefs", "sF": "41", "sU": "38", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.5, + "pScore": { + "sU": 17.5, + "sF": 26.0 + }, + "week": "2002 Regular Season - Week 3" }, { "date": "Sep 22, 2002", @@ -93161,7 +138082,12 @@ "sF": "44", "sU": "13", "spread": "10", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 13.25, + "sF": 23.25 + }, + "week": "2002 Regular Season - Week 3" }, { "date": "Sep 22, 2002", @@ -93170,8 +138096,13 @@ "und": "Cleveland Browns", "sF": "28", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "2002 Regular Season - Week 3" }, { "date": "Sep 22, 2002", @@ -93181,7 +138112,12 @@ "sF": "29", "sU": "23", "spread": "2", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.25, + "sF": 21.25 + }, + "week": "2002 Regular Season - Week 3" }, { "date": "Sep 22, 2002", @@ -93190,8 +138126,13 @@ "und": "Arizona Cardinals", "sF": "23", "sU": "15", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "2002 Regular Season - Week 3" }, { "date": "Sep 22, 2002", @@ -93200,8 +138141,13 @@ "und": "Buffalo Bills", "sF": "28", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.0, + "pScore": { + "sU": 19.75, + "sF": 27.25 + }, + "week": "2002 Regular Season - Week 3" }, { "date": "Sep 22, 2002", @@ -93210,8 +138156,13 @@ "und": "Seattle Seahawks", "sF": "9", "sU": "6", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.0, + "pScore": { + "sU": 16.75, + "sF": 22.25 + }, + "week": "2002 Regular Season - Week 3" }, { "date": "Sep 22, 2002", @@ -93221,7 +138172,12 @@ "sF": "20", "sU": "10", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "2002 Regular Season - Week 3" }, { "date": "Sep 22, 2002", @@ -93230,8 +138186,13 @@ "und": "Detroit Lions", "sF": "37", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "2002 Regular Season - Week 3" }, { "date": "Sep 22, 2002", @@ -93241,7 +138202,12 @@ "sF": "30", "sU": "3", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "2002 Regular Season - Week 3" }, { "date": "Sep 23, 2002", @@ -93250,8 +138216,13 @@ "und": "Tampa Bay Buccaneers", "sF": "14", "sU": "26", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.0, + "pScore": { + "sU": 21.25, + "sF": 22.75 + }, + "week": "2002 Regular Season - Week 3" }, { "date": "Sep 29, 2002", @@ -93261,7 +138232,12 @@ "sF": "30", "sU": "48", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2002 Regular Season - Week 4" }, { "date": "Sep 29, 2002", @@ -93271,7 +138247,12 @@ "sF": "16", "sU": "13", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2002 Regular Season - Week 4" }, { "date": "Sep 29, 2002", @@ -93280,8 +138261,13 @@ "und": "Carolina Panthers", "sF": "17", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "2002 Regular Season - Week 4" }, { "date": "Sep 29, 2002", @@ -93290,8 +138276,13 @@ "und": "New York Jets", "sF": "28", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2002 Regular Season - Week 4" }, { "date": "Sep 29, 2002", @@ -93301,7 +138292,12 @@ "sF": "35", "sU": "17", "spread": "19", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 8.5, + "sF": 27.5 + }, + "week": "2002 Regular Season - Week 4" }, { "date": "Sep 29, 2002", @@ -93311,7 +138307,12 @@ "sF": "10", "sU": "13", "spread": "12", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 16.0, + "sF": 28.0 + }, + "week": "2002 Regular Season - Week 4" }, { "date": "Sep 29, 2002", @@ -93321,7 +138322,12 @@ "sF": "21", "sU": "26", "spread": "9", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 18.0, + "sF": 27.0 + }, + "week": "2002 Regular Season - Week 4" }, { "date": "Sep 29, 2002", @@ -93331,7 +138337,12 @@ "sF": "33", "sU": "27", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2002 Regular Season - Week 4" }, { "date": "Sep 29, 2002", @@ -93341,7 +138352,12 @@ "sF": "7", "sU": "21", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "2002 Regular Season - Week 4" }, { "date": "Sep 29, 2002", @@ -93350,8 +138366,13 @@ "und": "Cincinnati Bengals", "sF": "35", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 33.5, + "pScore": { + "sU": 13.5, + "sF": 20.0 + }, + "week": "2002 Regular Season - Week 4" }, { "date": "Sep 29, 2002", @@ -93360,8 +138381,13 @@ "und": "Tennessee Titans", "sF": "52", "sU": "25", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "2002 Regular Season - Week 4" }, { "date": "Sep 29, 2002", @@ -93371,7 +138397,12 @@ "sF": "14", "sU": "21", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2002 Regular Season - Week 4" }, { "date": "Sep 29, 2002", @@ -93381,7 +138412,12 @@ "sF": "48", "sU": "23", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2002 Regular Season - Week 4" }, { "date": "Sep 30, 2002", @@ -93391,7 +138427,12 @@ "sF": "23", "sU": "34", "spread": "9", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 13.0, + "sF": 22.0 + }, + "week": "2002 Regular Season - Week 4" }, { "date": "Oct 6, 2002", @@ -93400,8 +138441,13 @@ "und": "Cincinnati Bengals", "sF": "28", "sU": "21", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 43.0, + "pScore": { + "sU": 14.75, + "sF": 28.25 + }, + "week": "2002 Regular Season - Week 5" }, { "date": "Oct 6, 2002", @@ -93411,7 +138457,12 @@ "sF": "49", "sU": "31", "spread": "3", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 25.25, + "sF": 28.25 + }, + "week": "2002 Regular Season - Week 5" }, { "date": "Oct 6, 2002", @@ -93421,7 +138472,12 @@ "sF": "13", "sU": "16", "spread": "5", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.0, + "sF": 20.0 + }, + "week": "2002 Regular Season - Week 5" }, { "date": "Oct 6, 2002", @@ -93431,7 +138487,12 @@ "sF": "26", "sU": "13", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2002 Regular Season - Week 5" }, { "date": "Oct 6, 2002", @@ -93441,7 +138502,12 @@ "sF": "32", "sU": "29", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2002 Regular Season - Week 5" }, { "date": "Oct 6, 2002", @@ -93450,8 +138516,13 @@ "und": "Tampa Bay Buccaneers", "sF": "6", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.5, + "pScore": { + "sU": 18.0, + "sF": 20.5 + }, + "week": "2002 Regular Season - Week 5" }, { "date": "Oct 6, 2002", @@ -93460,8 +138531,13 @@ "und": "Dallas Cowboys", "sF": "21", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 34.5, + "pScore": { + "sU": 16.5, + "sF": 18.0 + }, + "week": "2002 Regular Season - Week 5" }, { "date": "Oct 6, 2002", @@ -93470,8 +138546,13 @@ "und": "Washington Redskins", "sF": "14", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2002 Regular Season - Week 5" }, { "date": "Oct 6, 2002", @@ -93480,8 +138561,13 @@ "und": "San Diego Chargers", "sF": "26", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "2002 Regular Season - Week 5" }, { "date": "Oct 6, 2002", @@ -93491,7 +138577,12 @@ "sF": "29", "sU": "25", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2002 Regular Season - Week 5" }, { "date": "Oct 6, 2002", @@ -93501,7 +138592,12 @@ "sF": "25", "sU": "28", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2002 Regular Season - Week 5" }, { "date": "Oct 6, 2002", @@ -93511,7 +138607,12 @@ "sF": "37", "sU": "13", "spread": "6", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.75, + "sF": 23.75 + }, + "week": "2002 Regular Season - Week 5" }, { "date": "Oct 6, 2002", @@ -93521,7 +138622,12 @@ "sF": "21", "sU": "26", "spread": "6", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 15.25, + "sF": 21.25 + }, + "week": "2002 Regular Season - Week 5" }, { "date": "Oct 7, 2002", @@ -93531,7 +138637,12 @@ "sF": "21", "sU": "34", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2002 Regular Season - Week 5" }, { "date": "Oct 13, 2002", @@ -93540,8 +138651,13 @@ "und": "Baltimore Ravens", "sF": "22", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "2002 Regular Season - Week 6" }, { "date": "Oct 13, 2002", @@ -93550,8 +138666,13 @@ "und": "Detroit Lions", "sF": "31", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 49.0, + "pScore": { + "sU": 22.25, + "sF": 26.75 + }, + "week": "2002 Regular Season - Week 6" }, { "date": "Oct 13, 2002", @@ -93560,8 +138681,13 @@ "und": "Cleveland Browns", "sF": "17", "sU": "3", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.5, + "pScore": { + "sU": 14.5, + "sF": 22.0 + }, + "week": "2002 Regular Season - Week 6" }, { "date": "Oct 13, 2002", @@ -93570,8 +138696,13 @@ "und": "Washington Redskins", "sF": "43", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.5, + "pScore": { + "sU": 22.0, + "sF": 23.5 + }, + "week": "2002 Regular Season - Week 6" }, { "date": "Oct 13, 2002", @@ -93580,8 +138711,13 @@ "und": "Cincinnati Bengals", "sF": "34", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.5, + "pScore": { + "sU": 17.0, + "sF": 23.5 + }, + "week": "2002 Regular Season - Week 6" }, { "date": "Oct 13, 2002", @@ -93591,7 +138727,12 @@ "sF": "31", "sU": "24", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2002 Regular Season - Week 6" }, { "date": "Oct 13, 2002", @@ -93600,8 +138741,13 @@ "und": "Green Bay Packers", "sF": "10", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.0, + "pScore": { + "sU": 21.25, + "sF": 25.75 + }, + "week": "2002 Regular Season - Week 6" }, { "date": "Oct 13, 2002", @@ -93611,7 +138757,12 @@ "sF": "14", "sU": "13", "spread": "2", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.5, + "sF": 18.5 + }, + "week": "2002 Regular Season - Week 6" }, { "date": "Oct 13, 2002", @@ -93621,7 +138772,12 @@ "sF": "10", "sU": "17", "spread": "6", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 14.75, + "sF": 20.75 + }, + "week": "2002 Regular Season - Week 6" }, { "date": "Oct 13, 2002", @@ -93630,8 +138786,13 @@ "und": "Tennessee Titans", "sF": "14", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.0, + "pScore": { + "sU": 21.25, + "sF": 22.75 + }, + "week": "2002 Regular Season - Week 6" }, { "date": "Oct 13, 2002", @@ -93641,7 +138802,12 @@ "sF": "35", "sU": "34", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2002 Regular Season - Week 6" }, { "date": "Oct 13, 2002", @@ -93651,7 +138817,12 @@ "sF": "13", "sU": "28", "spread": "7", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.0, + "sF": 28.0 + }, + "week": "2002 Regular Season - Week 6" }, { "date": "Oct 13, 2002", @@ -93660,8 +138831,13 @@ "und": "Miami Dolphins", "sF": "22", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2002 Regular Season - Week 6" }, { "date": "Oct 14, 2002", @@ -93671,7 +138847,12 @@ "sF": "28", "sU": "21", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2002 Regular Season - Week 6" }, { "date": "Oct 20, 2002", @@ -93681,7 +138862,12 @@ "sF": "37", "sU": "34", "spread": "3", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 23.75, + "sF": 26.75 + }, + "week": "2002 Regular Season - Week 7" }, { "date": "Oct 20, 2002", @@ -93690,8 +138876,13 @@ "und": "Baltimore Ravens", "sF": "10", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "2002 Regular Season - Week 7" }, { "date": "Oct 20, 2002", @@ -93701,7 +138892,12 @@ "sF": "20", "sU": "7", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2002 Regular Season - Week 7" }, { "date": "Oct 20, 2002", @@ -93710,8 +138906,13 @@ "und": "Seattle Seahawks", "sF": "37", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "2002 Regular Season - Week 7" }, { "date": "Oct 20, 2002", @@ -93721,7 +138922,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2002 Regular Season - Week 7" }, { "date": "Oct 20, 2002", @@ -93731,7 +138937,12 @@ "sF": "10", "sU": "23", "spread": "6", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.75, + "sF": 25.75 + }, + "week": "2002 Regular Season - Week 7" }, { "date": "Oct 20, 2002", @@ -93740,12 +138951,13 @@ "und": "San Francisco 49ers", "sF": "35", "sU": "27", - "spread": "1", - "ou": "49", + "spread": "1.5", + "ou": 48.5, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 23.5, + "sF": 25.0 + }, + "week": "2002 Regular Season - Week 7" }, { "date": "Oct 20, 2002", @@ -93755,7 +138967,12 @@ "sF": "30", "sU": "0", "spread": "4", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 15.75, + "sF": 19.75 + }, + "week": "2002 Regular Season - Week 7" }, { "date": "Oct 20, 2002", @@ -93764,8 +138981,13 @@ "und": "Houston Texans", "sF": "34", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 36.5, + "pScore": { + "sU": 14.0, + "sF": 22.5 + }, + "week": "2002 Regular Season - Week 7" }, { "date": "Oct 20, 2002", @@ -93775,7 +138997,12 @@ "sF": "21", "sU": "27", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2002 Regular Season - Week 7" }, { "date": "Oct 20, 2002", @@ -93784,8 +139011,13 @@ "und": "Dallas Cowboys", "sF": "9", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "2002 Regular Season - Week 7" }, { "date": "Oct 20, 2002", @@ -93795,7 +139027,12 @@ "sF": "30", "sU": "9", "spread": "7", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.5, + "sF": 27.5 + }, + "week": "2002 Regular Season - Week 7" }, { "date": "Oct 20, 2002", @@ -93805,7 +139042,12 @@ "sF": "20", "sU": "10", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2002 Regular Season - Week 7" }, { "date": "Oct 21, 2002", @@ -93814,8 +139056,13 @@ "und": "Indianapolis Colts", "sF": "28", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.0, + "pScore": { + "sU": 20.75, + "sF": 25.25 + }, + "week": "2002 Regular Season - Week 7" }, { "date": "Oct 27, 2002", @@ -93824,8 +139071,13 @@ "und": "Kansas City Chiefs", "sF": "10", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 55.5, + "pScore": { + "sU": 26.5, + "sF": 29.0 + }, + "week": "2002 Regular Season - Week 8" }, { "date": "Oct 27, 2002", @@ -93835,7 +139087,12 @@ "sF": "25", "sU": "7", "spread": "2", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.0, + "sF": 24.0 + }, + "week": "2002 Regular Season - Week 8" }, { "date": "Oct 27, 2002", @@ -93845,7 +139102,12 @@ "sF": "31", "sU": "18", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2002 Regular Season - Week 8" }, { "date": "Oct 27, 2002", @@ -93854,8 +139116,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 50.0, + "pScore": { + "sU": 21.25, + "sF": 28.75 + }, + "week": "2002 Regular Season - Week 8" }, { "date": "Oct 27, 2002", @@ -93865,7 +139132,12 @@ "sF": "12", "sU": "9", "spread": "8", - "ou": -1 + "ou": 31.5, + "pScore": { + "sU": 11.75, + "sF": 19.75 + }, + "week": "2002 Regular Season - Week 8" }, { "date": "Oct 27, 2002", @@ -93874,8 +139146,13 @@ "und": "Cincinnati Bengals", "sF": "30", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.0, + "pScore": { + "sU": 18.75, + "sF": 23.25 + }, + "week": "2002 Regular Season - Week 8" }, { "date": "Oct 27, 2002", @@ -93885,7 +139162,12 @@ "sF": "21", "sU": "24", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2002 Regular Season - Week 8" }, { "date": "Oct 27, 2002", @@ -93894,8 +139176,13 @@ "und": "Atlanta Falcons", "sF": "35", "sU": "37", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2002 Regular Season - Week 8" }, { "date": "Oct 27, 2002", @@ -93905,7 +139192,12 @@ "sF": "14", "sU": "17", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "2002 Regular Season - Week 8" }, { "date": "Oct 27, 2002", @@ -93914,8 +139206,13 @@ "und": "Arizona Cardinals", "sF": "38", "sU": "28", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 40.5, + "pScore": { + "sU": 16.0, + "sF": 24.5 + }, + "week": "2002 Regular Season - Week 8" }, { "date": "Oct 27, 2002", @@ -93925,7 +139222,12 @@ "sF": "19", "sU": "21", "spread": "11", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 13.5, + "sF": 24.5 + }, + "week": "2002 Regular Season - Week 8" }, { "date": "Oct 27, 2002", @@ -93935,7 +139237,12 @@ "sF": "16", "sU": "24", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2002 Regular Season - Week 8" }, { "date": "Oct 27, 2002", @@ -93945,7 +139252,12 @@ "sF": "26", "sU": "21", "spread": "1", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.5, + "sF": 23.5 + }, + "week": "2002 Regular Season - Week 8" }, { "date": "Oct 28, 2002", @@ -93955,7 +139267,12 @@ "sF": "17", "sU": "3", "spread": "7", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.75, + "sF": 22.75 + }, + "week": "2002 Regular Season - Week 8" }, { "date": "Nov 3, 2002", @@ -93965,7 +139282,12 @@ "sF": "15", "sU": "23", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2002 Regular Season - Week 9" }, { "date": "Nov 3, 2002", @@ -93974,8 +139296,13 @@ "und": "Cincinnati Bengals", "sF": "3", "sU": "38", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "2002 Regular Season - Week 9" }, { "date": "Nov 3, 2002", @@ -93984,8 +139311,13 @@ "und": "Minnesota Vikings", "sF": "38", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.0, + "pScore": { + "sU": 14.75, + "sF": 22.25 + }, + "week": "2002 Regular Season - Week 9" }, { "date": "Nov 3, 2002", @@ -93995,7 +139327,12 @@ "sF": "7", "sU": "38", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2002 Regular Season - Week 9" }, { "date": "Nov 3, 2002", @@ -94004,8 +139341,13 @@ "und": "Cleveland Browns", "sF": "23", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2002 Regular Season - Week 9" }, { "date": "Nov 3, 2002", @@ -94015,7 +139357,12 @@ "sF": "9", "sU": "7", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2002 Regular Season - Week 9" }, { "date": "Nov 3, 2002", @@ -94025,7 +139372,12 @@ "sF": "20", "sU": "17", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "2002 Regular Season - Week 9" }, { "date": "Nov 3, 2002", @@ -94035,7 +139387,12 @@ "sF": "19", "sU": "13", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "2002 Regular Season - Week 9" }, { "date": "Nov 3, 2002", @@ -94044,8 +139401,13 @@ "und": "New York Jets", "sF": "13", "sU": "44", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 41.0, + "pScore": { + "sU": 16.25, + "sF": 24.75 + }, + "week": "2002 Regular Season - Week 9" }, { "date": "Nov 3, 2002", @@ -94055,7 +139417,12 @@ "sF": "27", "sU": "14", "spread": "5", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.25, + "sF": 24.25 + }, + "week": "2002 Regular Season - Week 9" }, { "date": "Nov 3, 2002", @@ -94065,11 +139432,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": "49", + "ou": 49.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 23.25, + "sF": 26.25 + }, + "week": "2002 Regular Season - Week 9" }, { "date": "Nov 3, 2002", @@ -94079,7 +139447,12 @@ "sF": "3", "sU": "14", "spread": "2", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.75, + "sF": 21.75 + }, + "week": "2002 Regular Season - Week 9" }, { "date": "Nov 3, 2002", @@ -94089,7 +139462,12 @@ "sF": "24", "sU": "17", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "2002 Regular Season - Week 9" }, { "date": "Nov 4, 2002", @@ -94098,8 +139476,13 @@ "und": "Miami Dolphins", "sF": "24", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.5, + "pScore": { + "sU": 18.5, + "sF": 23.0 + }, + "week": "2002 Regular Season - Week 9" }, { "date": "Nov 10, 2002", @@ -94108,8 +139491,13 @@ "und": "Minnesota Vikings", "sF": "27", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.0, + "pScore": { + "sU": 21.75, + "sF": 23.25 + }, + "week": "2002 Regular Season - Week 10" }, { "date": "Nov 10, 2002", @@ -94118,8 +139506,13 @@ "und": "Atlanta Falcons", "sF": "34", "sU": "34", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.5, + "pScore": { + "sU": 18.5, + "sF": 24.0 + }, + "week": "2002 Regular Season - Week 10" }, { "date": "Nov 10, 2002", @@ -94129,7 +139522,12 @@ "sF": "38", "sU": "27", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "2002 Regular Season - Week 10" }, { "date": "Nov 10, 2002", @@ -94139,7 +139537,12 @@ "sF": "34", "sU": "24", "spread": "4", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 17.75, + "sF": 21.75 + }, + "week": "2002 Regular Season - Week 10" }, { "date": "Nov 10, 2002", @@ -94148,8 +139551,13 @@ "und": "Detroit Lions", "sF": "40", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 42.0, + "pScore": { + "sU": 15.75, + "sF": 26.25 + }, + "week": "2002 Regular Season - Week 10" }, { "date": "Nov 10, 2002", @@ -94159,7 +139567,12 @@ "sF": "28", "sU": "24", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2002 Regular Season - Week 10" }, { "date": "Nov 10, 2002", @@ -94168,8 +139581,13 @@ "und": "Indianapolis Colts", "sF": "13", "sU": "35", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 41.5, + "pScore": { + "sU": 16.0, + "sF": 25.5 + }, + "week": "2002 Regular Season - Week 10" }, { "date": "Nov 10, 2002", @@ -94179,7 +139597,12 @@ "sF": "17", "sU": "10", "spread": "9", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 15.25, + "sF": 24.25 + }, + "week": "2002 Regular Season - Week 10" }, { "date": "Nov 10, 2002", @@ -94188,8 +139611,13 @@ "und": "Washington Redskins", "sF": "26", "sU": "7", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.5, + "pScore": { + "sU": 19.0, + "sF": 20.5 + }, + "week": "2002 Regular Season - Week 10" }, { "date": "Nov 10, 2002", @@ -94199,7 +139627,12 @@ "sF": "6", "sU": "27", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2002 Regular Season - Week 10" }, { "date": "Nov 10, 2002", @@ -94209,7 +139642,12 @@ "sF": "33", "sU": "30", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "2002 Regular Season - Week 10" }, { "date": "Nov 10, 2002", @@ -94219,7 +139657,12 @@ "sF": "17", "sU": "13", "spread": "5", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 22.0, + "sF": 27.0 + }, + "week": "2002 Regular Season - Week 10" }, { "date": "Nov 10, 2002", @@ -94228,8 +139671,13 @@ "und": "Miami Dolphins", "sF": "13", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "2002 Regular Season - Week 10" }, { "date": "Nov 11, 2002", @@ -94239,7 +139687,12 @@ "sF": "10", "sU": "34", "spread": "6", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.75, + "sF": 25.75 + }, + "week": "2002 Regular Season - Week 10" }, { "date": "Nov 17, 2002", @@ -94248,8 +139701,13 @@ "und": "Minnesota Vikings", "sF": "21", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 50.5, + "pScore": { + "sU": 22.0, + "sF": 28.5 + }, + "week": "2002 Regular Season - Week 11" }, { "date": "Nov 17, 2002", @@ -94258,8 +139716,13 @@ "und": "Dallas Cowboys", "sF": "20", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "2002 Regular Season - Week 11" }, { "date": "Nov 17, 2002", @@ -94268,8 +139731,13 @@ "und": "Buffalo Bills", "sF": "17", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 52.5, + "pScore": { + "sU": 24.5, + "sF": 28.0 + }, + "week": "2002 Regular Season - Week 11" }, { "date": "Nov 17, 2002", @@ -94279,7 +139747,12 @@ "sF": "27", "sU": "20", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2002 Regular Season - Week 11" }, { "date": "Nov 17, 2002", @@ -94288,8 +139761,13 @@ "und": "Houston Texans", "sF": "24", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.5, + "pScore": { + "sU": 15.0, + "sF": 21.5 + }, + "week": "2002 Regular Season - Week 11" }, { "date": "Nov 17, 2002", @@ -94299,7 +139777,12 @@ "sF": "38", "sU": "14", "spread": "12", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 12.75, + "sF": 24.75 + }, + "week": "2002 Regular Season - Week 11" }, { "date": "Nov 17, 2002", @@ -94309,7 +139792,12 @@ "sF": "23", "sU": "31", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2002 Regular Season - Week 11" }, { "date": "Nov 17, 2002", @@ -94318,8 +139806,13 @@ "und": "Washington Redskins", "sF": "19", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 34.5, + "pScore": { + "sU": 15.5, + "sF": 19.0 + }, + "week": "2002 Regular Season - Week 11" }, { "date": "Nov 17, 2002", @@ -94328,8 +139821,13 @@ "und": "New Orleans Saints", "sF": "24", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 51.0, + "pScore": { + "sU": 24.75, + "sF": 26.25 + }, + "week": "2002 Regular Season - Week 11" }, { "date": "Nov 17, 2002", @@ -94338,8 +139836,13 @@ "und": "San Diego Chargers", "sF": "17", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2002 Regular Season - Week 11" }, { "date": "Nov 17, 2002", @@ -94349,7 +139852,12 @@ "sF": "23", "sU": "10", "spread": "8", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 13.25, + "sF": 21.25 + }, + "week": "2002 Regular Season - Week 11" }, { "date": "Nov 17, 2002", @@ -94359,7 +139867,12 @@ "sF": "31", "sU": "14", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2002 Regular Season - Week 11" }, { "date": "Nov 17, 2002", @@ -94369,7 +139882,12 @@ "sF": "26", "sU": "7", "spread": "5", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 14.75, + "sF": 19.75 + }, + "week": "2002 Regular Season - Week 11" }, { "date": "Nov 17, 2002", @@ -94378,8 +139896,13 @@ "und": "Seattle Seahawks", "sF": "31", "sU": "9", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.5, + "pScore": { + "sU": 18.5, + "sF": 24.0 + }, + "week": "2002 Regular Season - Week 11" }, { "date": "Nov 17, 2002", @@ -94388,8 +139911,13 @@ "und": "New England Patriots", "sF": "27", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.0, + "pScore": { + "sU": 21.75, + "sF": 26.25 + }, + "week": "2002 Regular Season - Week 11" }, { "date": "Nov 18, 2002", @@ -94398,8 +139926,13 @@ "und": "Chicago Bears", "sF": "21", "sU": "16", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.5, + "pScore": { + "sU": 16.5, + "sF": 27.0 + }, + "week": "2002 Regular Season - Week 11" }, { "date": "Nov 24, 2002", @@ -94408,8 +139941,13 @@ "und": "Cincinnati Bengals", "sF": "29", "sU": "21", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 44.0, + "pScore": { + "sU": 16.75, + "sF": 27.25 + }, + "week": "2002 Regular Season - Week 12" }, { "date": "Nov 24, 2002", @@ -94418,8 +139956,13 @@ "und": "Washington Redskins", "sF": "17", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2002 Regular Season - Week 12" }, { "date": "Nov 24, 2002", @@ -94428,8 +139971,13 @@ "und": "Baltimore Ravens", "sF": "12", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.5, + "pScore": { + "sU": 18.0, + "sF": 20.5 + }, + "week": "2002 Regular Season - Week 12" }, { "date": "Nov 24, 2002", @@ -94438,8 +139986,13 @@ "und": "Carolina Panthers", "sF": "41", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2002 Regular Season - Week 12" }, { "date": "Nov 24, 2002", @@ -94449,7 +140002,12 @@ "sF": "30", "sU": "3", "spread": "4", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.25, + "sF": 20.25 + }, + "week": "2002 Regular Season - Week 12" }, { "date": "Nov 24, 2002", @@ -94459,7 +140017,12 @@ "sF": "24", "sU": "17", "spread": "8", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.5, + "sF": 27.5 + }, + "week": "2002 Regular Season - Week 12" }, { "date": "Nov 24, 2002", @@ -94468,8 +140031,13 @@ "und": "Cleveland Browns", "sF": "15", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 48.5, + "pScore": { + "sU": 21.5, + "sF": 27.0 + }, + "week": "2002 Regular Season - Week 12" }, { "date": "Nov 24, 2002", @@ -94479,7 +140047,12 @@ "sF": "31", "sU": "13", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2002 Regular Season - Week 12" }, { "date": "Nov 24, 2002", @@ -94489,7 +140062,12 @@ "sF": "20", "sU": "17", "spread": "5", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.25, + "sF": 21.25 + }, + "week": "2002 Regular Season - Week 12" }, { "date": "Nov 24, 2002", @@ -94498,8 +140076,13 @@ "und": "Dallas Cowboys", "sF": "19", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 34.0, + "pScore": { + "sU": 15.75, + "sF": 18.25 + }, + "week": "2002 Regular Season - Week 12" }, { "date": "Nov 24, 2002", @@ -94508,8 +140091,13 @@ "und": "Arizona Cardinals", "sF": "41", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.0, + "pScore": { + "sU": 17.25, + "sF": 26.75 + }, + "week": "2002 Regular Season - Week 12" }, { "date": "Nov 24, 2002", @@ -94518,8 +140106,13 @@ "und": "Seattle Seahawks", "sF": "32", "sU": "39", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2002 Regular Season - Week 12" }, { "date": "Nov 24, 2002", @@ -94528,8 +140121,13 @@ "und": "Houston Texans", "sF": "14", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 34.0, + "pScore": { + "sU": 14.25, + "sF": 19.75 + }, + "week": "2002 Regular Season - Week 12" }, { "date": "Nov 24, 2002", @@ -94539,7 +140137,12 @@ "sF": "21", "sU": "7", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "2002 Regular Season - Week 12" }, { "date": "Nov 24, 2002", @@ -94549,7 +140152,12 @@ "sF": "20", "sU": "23", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "2002 Regular Season - Week 12" }, { "date": "Nov 25, 2002", @@ -94559,7 +140167,12 @@ "sF": "17", "sU": "38", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "2002 Regular Season - Week 12" }, { "date": "Nov 28, 2002", @@ -94569,7 +140182,12 @@ "sF": "20", "sU": "12", "spread": "6", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.0, + "sF": 26.0 + }, + "week": "2002 Regular Season - Week 13" }, { "date": "Nov 28, 2002", @@ -94579,7 +140197,12 @@ "sF": "20", "sU": "27", "spread": "1", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.75, + "sF": 18.75 + }, + "week": "2002 Regular Season - Week 13" }, { "date": "Dec 1, 2002", @@ -94588,8 +140211,13 @@ "und": "Minnesota Vikings", "sF": "30", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2002 Regular Season - Week 13" }, { "date": "Dec 1, 2002", @@ -94599,7 +140227,12 @@ "sF": "49", "sU": "0", "spread": "9", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.0, + "sF": 28.0 + }, + "week": "2002 Regular Season - Week 13" }, { "date": "Dec 1, 2002", @@ -94609,7 +140242,12 @@ "sF": "21", "sU": "38", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "2002 Regular Season - Week 13" }, { "date": "Dec 1, 2002", @@ -94618,8 +140256,13 @@ "und": "Cincinnati Bengals", "sF": "27", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2002 Regular Season - Week 13" }, { "date": "Dec 1, 2002", @@ -94628,8 +140271,13 @@ "und": "Chicago Bears", "sF": "30", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 37.5, + "pScore": { + "sU": 14.0, + "sF": 23.5 + }, + "week": "2002 Regular Season - Week 13" }, { "date": "Dec 1, 2002", @@ -94639,7 +140287,12 @@ "sF": "29", "sU": "32", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "2002 Regular Season - Week 13" }, { "date": "Dec 1, 2002", @@ -94648,8 +140301,13 @@ "und": "Carolina Panthers", "sF": "6", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 34.5, + "pScore": { + "sU": 13.5, + "sF": 21.0 + }, + "week": "2002 Regular Season - Week 13" }, { "date": "Dec 1, 2002", @@ -94659,7 +140317,12 @@ "sF": "25", "sU": "23", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2002 Regular Season - Week 13" }, { "date": "Dec 1, 2002", @@ -94668,8 +140331,13 @@ "und": "Houston Texans", "sF": "19", "sU": "3", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 39.5, + "pScore": { + "sU": 14.0, + "sF": 25.5 + }, + "week": "2002 Regular Season - Week 13" }, { "date": "Dec 1, 2002", @@ -94679,7 +140347,12 @@ "sF": "27", "sU": "30", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2002 Regular Season - Week 13" }, { "date": "Dec 1, 2002", @@ -94689,7 +140362,12 @@ "sF": "3", "sU": "10", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "2002 Regular Season - Week 13" }, { "date": "Dec 1, 2002", @@ -94698,8 +140376,13 @@ "und": "Seattle Seahawks", "sF": "31", "sU": "24", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.5, + "pScore": { + "sU": 17.5, + "sF": 26.0 + }, + "week": "2002 Regular Season - Week 13" }, { "date": "Dec 1, 2002", @@ -94708,8 +140391,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.0, + "pScore": { + "sU": 19.25, + "sF": 20.75 + }, + "week": "2002 Regular Season - Week 13" }, { "date": "Dec 2, 2002", @@ -94719,7 +140407,12 @@ "sF": "26", "sU": "20", "spread": "6", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.75, + "sF": 26.75 + }, + "week": "2002 Regular Season - Week 13" }, { "date": "Dec 8, 2002", @@ -94728,8 +140421,13 @@ "und": "St Louis Rams", "sF": "49", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.5, + "pScore": { + "sU": 20.5, + "sF": 25.0 + }, + "week": "2002 Regular Season - Week 14" }, { "date": "Dec 8, 2002", @@ -94739,7 +140437,12 @@ "sF": "6", "sU": "24", "spread": "14", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 11.75, + "sF": 25.75 + }, + "week": "2002 Regular Season - Week 14" }, { "date": "Dec 8, 2002", @@ -94748,8 +140451,13 @@ "und": "Atlanta Falcons", "sF": "34", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2002 Regular Season - Week 14" }, { "date": "Dec 8, 2002", @@ -94759,7 +140467,12 @@ "sF": "52", "sU": "31", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2002 Regular Season - Week 14" }, { "date": "Dec 8, 2002", @@ -94768,8 +140481,13 @@ "und": "Dallas Cowboys", "sF": "31", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "2002 Regular Season - Week 14" }, { "date": "Dec 8, 2002", @@ -94778,8 +140496,13 @@ "und": "Buffalo Bills", "sF": "27", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2002 Regular Season - Week 14" }, { "date": "Dec 8, 2002", @@ -94789,7 +140512,12 @@ "sF": "21", "sU": "27", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2002 Regular Season - Week 14" }, { "date": "Dec 8, 2002", @@ -94798,8 +140526,13 @@ "und": "Cleveland Browns", "sF": "20", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2002 Regular Season - Week 14" }, { "date": "Dec 8, 2002", @@ -94809,7 +140542,12 @@ "sF": "17", "sU": "27", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "2002 Regular Season - Week 14" }, { "date": "Dec 8, 2002", @@ -94819,7 +140557,12 @@ "sF": "37", "sU": "25", "spread": "2", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.25, + "sF": 22.25 + }, + "week": "2002 Regular Season - Week 14" }, { "date": "Dec 8, 2002", @@ -94829,7 +140572,12 @@ "sF": "27", "sU": "20", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2002 Regular Season - Week 14" }, { "date": "Dec 8, 2002", @@ -94839,7 +140587,12 @@ "sF": "20", "sU": "23", "spread": "1", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 19.25, + "sF": 20.25 + }, + "week": "2002 Regular Season - Week 14" }, { "date": "Dec 8, 2002", @@ -94848,8 +140601,13 @@ "und": "San Diego Chargers", "sF": "27", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "2002 Regular Season - Week 14" }, { "date": "Dec 8, 2002", @@ -94858,8 +140616,13 @@ "und": "New York Jets", "sF": "13", "sU": "19", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.0, + "pScore": { + "sU": 20.75, + "sF": 22.25 + }, + "week": "2002 Regular Season - Week 14" }, { "date": "Dec 8, 2002", @@ -94868,8 +140631,13 @@ "und": "Minnesota Vikings", "sF": "26", "sU": "22", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.5, + "pScore": { + "sU": 17.0, + "sF": 26.5 + }, + "week": "2002 Regular Season - Week 14" }, { "date": "Dec 9, 2002", @@ -94878,8 +140646,13 @@ "und": "Chicago Bears", "sF": "27", "sU": "9", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 37.0, + "pScore": { + "sU": 13.25, + "sF": 23.75 + }, + "week": "2002 Regular Season - Week 14" }, { "date": "Dec 15, 2002", @@ -94889,7 +140662,12 @@ "sF": "30", "sU": "14", "spread": "9", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.0, + "sF": 24.0 + }, + "week": "2002 Regular Season - Week 15" }, { "date": "Dec 15, 2002", @@ -94899,7 +140677,12 @@ "sF": "20", "sU": "13", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2002 Regular Season - Week 15" }, { "date": "Dec 15, 2002", @@ -94909,7 +140692,12 @@ "sF": "29", "sU": "15", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2002 Regular Season - Week 15" }, { "date": "Dec 15, 2002", @@ -94919,7 +140707,12 @@ "sF": "28", "sU": "23", "spread": "2", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.75, + "sF": 21.75 + }, + "week": "2002 Regular Season - Week 15" }, { "date": "Dec 15, 2002", @@ -94929,7 +140722,12 @@ "sF": "23", "sU": "19", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "2002 Regular Season - Week 15" }, { "date": "Dec 15, 2002", @@ -94938,8 +140736,13 @@ "und": "Oakland Raiders", "sF": "23", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.5, + "pScore": { + "sU": 21.0, + "sF": 22.5 + }, + "week": "2002 Regular Season - Week 15" }, { "date": "Dec 15, 2002", @@ -94948,8 +140751,13 @@ "und": "Washington Redskins", "sF": "34", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.0, + "pScore": { + "sU": 15.25, + "sF": 22.75 + }, + "week": "2002 Regular Season - Week 15" }, { "date": "Dec 15, 2002", @@ -94958,8 +140766,13 @@ "und": "Seattle Seahawks", "sF": "24", "sU": "30", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 46.0, + "pScore": { + "sU": 18.25, + "sF": 27.75 + }, + "week": "2002 Regular Season - Week 15" }, { "date": "Dec 15, 2002", @@ -94968,8 +140781,13 @@ "und": "Detroit Lions", "sF": "23", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 37.0, + "pScore": { + "sU": 13.75, + "sF": 23.25 + }, + "week": "2002 Regular Season - Week 15" }, { "date": "Dec 15, 2002", @@ -94979,7 +140797,12 @@ "sF": "31", "sU": "32", "spread": "7", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 22.0, + "sF": 29.0 + }, + "week": "2002 Regular Season - Week 15" }, { "date": "Dec 15, 2002", @@ -94988,8 +140811,13 @@ "und": "Chicago Bears", "sF": "13", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "2002 Regular Season - Week 15" }, { "date": "Dec 15, 2002", @@ -94998,8 +140826,13 @@ "und": "Kansas City Chiefs", "sF": "31", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2002 Regular Season - Week 15" }, { "date": "Dec 15, 2002", @@ -95009,7 +140842,12 @@ "sF": "14", "sU": "20", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2002 Regular Season - Week 15" }, { "date": "Dec 15, 2002", @@ -95019,7 +140857,12 @@ "sF": "37", "sU": "7", "spread": "5", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.0, + "sF": 20.0 + }, + "week": "2002 Regular Season - Week 15" }, { "date": "Dec 15, 2002", @@ -95029,7 +140872,12 @@ "sF": "30", "sU": "28", "spread": "11", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.0, + "sF": 27.0 + }, + "week": "2002 Regular Season - Week 15" }, { "date": "Dec 16, 2002", @@ -95038,8 +140886,13 @@ "und": "New England Patriots", "sF": "24", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2002 Regular Season - Week 15" }, { "date": "Dec 21, 2002", @@ -95049,7 +140902,12 @@ "sF": "17", "sU": "20", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2002 Regular Season - Week 16" }, { "date": "Dec 21, 2002", @@ -95058,8 +140916,13 @@ "und": "Arizona Cardinals", "sF": "17", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2002 Regular Season - Week 16" }, { "date": "Dec 21, 2002", @@ -95069,7 +140932,12 @@ "sF": "27", "sU": "3", "spread": "7", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 14.75, + "sF": 21.75 + }, + "week": "2002 Regular Season - Week 16" }, { "date": "Dec 22, 2002", @@ -95078,8 +140946,13 @@ "und": "New York Giants", "sF": "27", "sU": "44", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "2002 Regular Season - Week 16" }, { "date": "Dec 22, 2002", @@ -95088,8 +140961,13 @@ "und": "San Diego Chargers", "sF": "24", "sU": "22", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.0, + "pScore": { + "sU": 21.25, + "sF": 22.75 + }, + "week": "2002 Regular Season - Week 16" }, { "date": "Dec 22, 2002", @@ -95099,7 +140977,12 @@ "sF": "24", "sU": "14", "spread": "4", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.25, + "sF": 20.25 + }, + "week": "2002 Regular Season - Week 16" }, { "date": "Dec 22, 2002", @@ -95109,7 +140992,12 @@ "sF": "13", "sU": "20", "spread": "7", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.0, + "sF": 28.0 + }, + "week": "2002 Regular Season - Week 16" }, { "date": "Dec 22, 2002", @@ -95118,8 +141006,13 @@ "und": "Buffalo Bills", "sF": "10", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2002 Regular Season - Week 16" }, { "date": "Dec 22, 2002", @@ -95128,8 +141021,13 @@ "und": "Houston Texans", "sF": "26", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.5, + "pScore": { + "sU": 15.0, + "sF": 21.5 + }, + "week": "2002 Regular Season - Week 16" }, { "date": "Dec 22, 2002", @@ -95138,8 +141036,13 @@ "und": "Detroit Lions", "sF": "36", "sU": "15", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 44.0, + "pScore": { + "sU": 16.75, + "sF": 27.25 + }, + "week": "2002 Regular Season - Week 16" }, { "date": "Dec 22, 2002", @@ -95149,7 +141052,12 @@ "sF": "28", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2002 Regular Season - Week 16" }, { "date": "Dec 22, 2002", @@ -95158,8 +141066,13 @@ "und": "St Louis Rams", "sF": "30", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.0, + "pScore": { + "sU": 22.75, + "sF": 25.25 + }, + "week": "2002 Regular Season - Week 16" }, { "date": "Dec 22, 2002", @@ -95168,8 +141081,13 @@ "und": "Cleveland Browns", "sF": "13", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "2002 Regular Season - Week 16" }, { "date": "Dec 22, 2002", @@ -95178,8 +141096,13 @@ "und": "Denver Broncos", "sF": "28", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "2002 Regular Season - Week 16" }, { "date": "Dec 22, 2002", @@ -95188,8 +141111,13 @@ "und": "New York Jets", "sF": "17", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2002 Regular Season - Week 16" }, { "date": "Dec 23, 2002", @@ -95198,8 +141126,13 @@ "und": "Pittsburgh Steelers", "sF": "7", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.0, + "pScore": { + "sU": 16.75, + "sF": 21.25 + }, + "week": "2002 Regular Season - Week 16" }, { "date": "Dec 28, 2002", @@ -95209,7 +141142,12 @@ "sF": "10", "sU": "7", "spread": "1", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 18.25, + "sF": 19.25 + }, + "week": "2002 Regular Season - Week 17" }, { "date": "Dec 28, 2002", @@ -95218,8 +141156,13 @@ "und": "Kansas City Chiefs", "sF": "24", "sU": "0", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 44.5, + "pScore": { + "sU": 18.0, + "sF": 26.5 + }, + "week": "2002 Regular Season - Week 17" }, { "date": "Dec 29, 2002", @@ -95228,8 +141171,13 @@ "und": "Cincinnati Bengals", "sF": "27", "sU": "9", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.0, + "pScore": { + "sU": 18.75, + "sF": 26.25 + }, + "week": "2002 Regular Season - Week 17" }, { "date": "Dec 29, 2002", @@ -95238,8 +141186,13 @@ "und": "Cleveland Browns", "sF": "16", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "2002 Regular Season - Week 17" }, { "date": "Dec 29, 2002", @@ -95248,8 +141201,13 @@ "und": "Detroit Lions", "sF": "38", "sU": "36", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2002 Regular Season - Week 17" }, { "date": "Dec 29, 2002", @@ -95259,7 +141217,12 @@ "sF": "24", "sU": "27", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "2002 Regular Season - Week 17" }, { "date": "Dec 29, 2002", @@ -95269,7 +141232,12 @@ "sF": "6", "sU": "10", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "2002 Regular Season - Week 17" }, { "date": "Dec 29, 2002", @@ -95279,7 +141247,12 @@ "sF": "34", "sU": "31", "spread": "8", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.5, + "sF": 23.5 + }, + "week": "2002 Regular Season - Week 17" }, { "date": "Dec 29, 2002", @@ -95288,8 +141261,13 @@ "und": "Dallas Cowboys", "sF": "20", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.5, + "pScore": { + "sU": 14.5, + "sF": 22.0 + }, + "week": "2002 Regular Season - Week 17" }, { "date": "Dec 29, 2002", @@ -95298,8 +141276,13 @@ "und": "Houston Texans", "sF": "13", "sU": "3", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 35.5, + "pScore": { + "sU": 13.0, + "sF": 22.5 + }, + "week": "2002 Regular Season - Week 17" }, { "date": "Dec 29, 2002", @@ -95308,8 +141291,13 @@ "und": "Jacksonville Jaguars", "sF": "20", "sU": "13", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 40.5, + "pScore": { + "sU": 16.0, + "sF": 24.5 + }, + "week": "2002 Regular Season - Week 17" }, { "date": "Dec 29, 2002", @@ -95319,7 +141307,12 @@ "sF": "28", "sU": "31", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2002 Regular Season - Week 17" }, { "date": "Dec 29, 2002", @@ -95328,8 +141321,13 @@ "und": "Arizona Cardinals", "sF": "37", "sU": "7", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 42.0, + "pScore": { + "sU": 14.25, + "sF": 27.75 + }, + "week": "2002 Regular Season - Week 17" }, { "date": "Dec 29, 2002", @@ -95338,8 +141336,13 @@ "und": "New York Jets", "sF": "17", "sU": "42", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.5, + "pScore": { + "sU": 19.0, + "sF": 20.5 + }, + "week": "2002 Regular Season - Week 17" }, { "date": "Dec 29, 2002", @@ -95349,7 +141352,12 @@ "sF": "15", "sU": "0", "spread": "7", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 12.5, + "sF": 19.5 + }, + "week": "2002 Regular Season - Week 17" }, { "date": "Dec 30, 2002", @@ -95359,11 +141367,12 @@ "sF": "31", "sU": "20", "spread": "2", - "ou": "49", + "ou": 39.5, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 18.75, + "sF": 20.75 + }, + "week": "2002 Regular Season - Week 17" }, { "date": "Jan 4, 2003", @@ -95373,7 +141382,12 @@ "sF": "41", "sU": "0", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "2002 Playoffs" }, { "date": "Jan 4, 2003", @@ -95382,8 +141396,13 @@ "und": "Atlanta Falcons (6)", "sF": "7", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.5, + "pScore": { + "sU": 17.0, + "sF": 23.5 + }, + "week": "2002 Playoffs" }, { "date": "Jan 5, 2003", @@ -95393,7 +141412,12 @@ "sF": "36", "sU": "33", "spread": "8", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.5, + "sF": 24.5 + }, + "week": "2002 Playoffs" }, { "date": "Jan 5, 2003", @@ -95403,7 +141427,12 @@ "sF": "39", "sU": "38", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2002 Playoffs" }, { "date": "Jan 11, 2003", @@ -95412,8 +141441,13 @@ "und": "Pittsburgh Steelers (3)", "sF": "34", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.0, + "pScore": { + "sU": 19.75, + "sF": 24.25 + }, + "week": "2002 Playoffs" }, { "date": "Jan 11, 2003", @@ -95422,8 +141456,13 @@ "und": "Atlanta Falcons (6)", "sF": "20", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.5, + "pScore": { + "sU": 15.5, + "sF": 23.0 + }, + "week": "2002 Playoffs" }, { "date": "Jan 12, 2003", @@ -95433,11 +141472,12 @@ "sF": "31", "sU": "6", "spread": "6", - "ou": "49", + "ou": 39.5, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 16.75, + "sF": 22.75 + }, + "week": "2002 Playoffs" }, { "date": "Jan 12, 2003", @@ -95446,8 +141486,13 @@ "und": "New York Jets (4)", "sF": "30", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.0, + "pScore": { + "sU": 20.75, + "sF": 26.25 + }, + "week": "2002 Playoffs" }, { "date": "Jan 19, 2003", @@ -95457,7 +141502,12 @@ "sF": "10", "sU": "27", "spread": "4", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 14.75, + "sF": 18.75 + }, + "week": "2002 Playoffs" }, { "date": "Jan 19, 2003", @@ -95467,7 +141517,12 @@ "sF": "41", "sU": "24", "spread": "9", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.5, + "sF": 27.5 + }, + "week": "2002 Playoffs" }, { "date": "Jan 26, 2003", @@ -95476,8 +141531,13 @@ "und": "Tampa Bay Buccaneers (2)", "sF": "21", "sU": "48", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2002 Playoffs" }, { "date": "Sep 4, 2003", @@ -95487,7 +141547,12 @@ "sF": "16", "sU": "13", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2003 Regular Season - Week 1" }, { "date": "Sep 7, 2003", @@ -95496,8 +141561,13 @@ "und": "San Diego Chargers", "sF": "27", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.0, + "pScore": { + "sU": 21.25, + "sF": 25.75 + }, + "week": "2003 Regular Season - Week 1" }, { "date": "Sep 7, 2003", @@ -95507,7 +141577,12 @@ "sF": "31", "sU": "0", "spread": "1", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.75, + "sF": 22.75 + }, + "week": "2003 Regular Season - Week 1" }, { "date": "Sep 7, 2003", @@ -95517,7 +141592,12 @@ "sF": "24", "sU": "23", "spread": "4", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 15.25, + "sF": 19.25 + }, + "week": "2003 Regular Season - Week 1" }, { "date": "Sep 7, 2003", @@ -95527,7 +141607,12 @@ "sF": "25", "sU": "30", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "2003 Regular Season - Week 1" }, { "date": "Sep 7, 2003", @@ -95537,7 +141622,12 @@ "sF": "34", "sU": "15", "spread": "4", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.25, + "sF": 21.25 + }, + "week": "2003 Regular Season - Week 1" }, { "date": "Sep 7, 2003", @@ -95547,7 +141637,12 @@ "sF": "13", "sU": "23", "spread": "1", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.75, + "sF": 23.75 + }, + "week": "2003 Regular Season - Week 1" }, { "date": "Sep 7, 2003", @@ -95557,7 +141652,12 @@ "sF": "30", "sU": "10", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "2003 Regular Season - Week 1" }, { "date": "Sep 7, 2003", @@ -95567,7 +141667,12 @@ "sF": "9", "sU": "6", "spread": "2", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.0, + "sF": 25.0 + }, + "week": "2003 Regular Season - Week 1" }, { "date": "Sep 7, 2003", @@ -95576,8 +141681,13 @@ "und": "Arizona Cardinals", "sF": "42", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "2003 Regular Season - Week 1" }, { "date": "Sep 7, 2003", @@ -95587,7 +141697,12 @@ "sF": "20", "sU": "21", "spread": "14", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 10.25, + "sF": 24.25 + }, + "week": "2003 Regular Season - Week 1" }, { "date": "Sep 7, 2003", @@ -95597,7 +141712,12 @@ "sF": "27", "sU": "10", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2003 Regular Season - Week 1" }, { "date": "Sep 7, 2003", @@ -95607,7 +141727,12 @@ "sF": "13", "sU": "27", "spread": "2", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.25, + "sF": 19.25 + }, + "week": "2003 Regular Season - Week 1" }, { "date": "Sep 7, 2003", @@ -95616,8 +141741,13 @@ "und": "Chicago Bears", "sF": "49", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.5, + "pScore": { + "sU": 17.0, + "sF": 23.5 + }, + "week": "2003 Regular Season - Week 1" }, { "date": "Sep 7, 2003", @@ -95626,8 +141756,13 @@ "und": "Oakland Raiders", "sF": "25", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2003 Regular Season - Week 1" }, { "date": "Sep 8, 2003", @@ -95637,7 +141772,12 @@ "sF": "0", "sU": "17", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2003 Regular Season - Week 1" }, { "date": "Sep 14, 2003", @@ -95646,8 +141786,13 @@ "und": "Tennessee Titans", "sF": "33", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2003 Regular Season - Week 2" }, { "date": "Sep 14, 2003", @@ -95656,8 +141801,13 @@ "und": "Pittsburgh Steelers", "sF": "41", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "2003 Regular Season - Week 2" }, { "date": "Sep 14, 2003", @@ -95666,8 +141816,13 @@ "und": "Cleveland Browns", "sF": "33", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "2003 Regular Season - Week 2" }, { "date": "Sep 14, 2003", @@ -95677,7 +141832,12 @@ "sF": "31", "sU": "6", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "2003 Regular Season - Week 2" }, { "date": "Sep 14, 2003", @@ -95687,7 +141847,12 @@ "sF": "31", "sU": "10", "spread": "8", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.25, + "sF": 24.25 + }, + "week": "2003 Regular Season - Week 2" }, { "date": "Sep 14, 2003", @@ -95697,7 +141862,12 @@ "sF": "21", "sU": "10", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2003 Regular Season - Week 2" }, { "date": "Sep 14, 2003", @@ -95707,11 +141877,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": "49", + "ou": 47.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 22.25, + "sF": 25.25 + }, + "week": "2003 Regular Season - Week 2" }, { "date": "Sep 14, 2003", @@ -95721,7 +141892,12 @@ "sF": "31", "sU": "33", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2003 Regular Season - Week 2" }, { "date": "Sep 14, 2003", @@ -95731,7 +141907,12 @@ "sF": "38", "sU": "17", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2003 Regular Season - Week 2" }, { "date": "Sep 14, 2003", @@ -95741,7 +141922,12 @@ "sF": "9", "sU": "12", "spread": "9", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 12.75, + "sF": 21.75 + }, + "week": "2003 Regular Season - Week 2" }, { "date": "Sep 14, 2003", @@ -95751,7 +141937,12 @@ "sF": "38", "sU": "0", "spread": "5", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.75, + "sF": 24.75 + }, + "week": "2003 Regular Season - Week 2" }, { "date": "Sep 14, 2003", @@ -95761,7 +141952,12 @@ "sF": "23", "sU": "20", "spread": "12", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 16.5, + "sF": 28.5 + }, + "week": "2003 Regular Season - Week 2" }, { "date": "Sep 14, 2003", @@ -95771,7 +141967,12 @@ "sF": "10", "sU": "31", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "2003 Regular Season - Week 2" }, { "date": "Sep 14, 2003", @@ -95781,7 +141982,12 @@ "sF": "37", "sU": "13", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2003 Regular Season - Week 2" }, { "date": "Sep 14, 2003", @@ -95791,7 +141997,12 @@ "sF": "24", "sU": "13", "spread": "9", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.75, + "sF": 26.75 + }, + "week": "2003 Regular Season - Week 2" }, { "date": "Sep 15, 2003", @@ -95800,8 +142011,13 @@ "und": "Dallas Cowboys", "sF": "32", "sU": "35", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.5, + "pScore": { + "sU": 14.5, + "sF": 22.0 + }, + "week": "2003 Regular Season - Week 2" }, { "date": "Sep 21, 2003", @@ -95810,8 +142026,13 @@ "und": "Jacksonville Jaguars", "sF": "23", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "2003 Regular Season - Week 3" }, { "date": "Sep 21, 2003", @@ -95820,8 +142041,13 @@ "und": "Cincinnati Bengals", "sF": "17", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.5, + "pScore": { + "sU": 20.0, + "sF": 24.5 + }, + "week": "2003 Regular Season - Week 3" }, { "date": "Sep 21, 2003", @@ -95830,8 +142056,13 @@ "und": "Houston Texans", "sF": "42", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "2003 Regular Season - Week 3" }, { "date": "Sep 21, 2003", @@ -95841,7 +142072,12 @@ "sF": "23", "sU": "16", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "2003 Regular Season - Week 3" }, { "date": "Sep 21, 2003", @@ -95850,8 +142086,13 @@ "und": "Atlanta Falcons", "sF": "31", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.5, + "pScore": { + "sU": 14.5, + "sF": 21.0 + }, + "week": "2003 Regular Season - Week 3" }, { "date": "Sep 21, 2003", @@ -95861,7 +142102,12 @@ "sF": "23", "sU": "13", "spread": "4", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 21.75, + "sF": 25.75 + }, + "week": "2003 Regular Season - Week 3" }, { "date": "Sep 21, 2003", @@ -95870,8 +142116,13 @@ "und": "New Orleans Saints", "sF": "27", "sU": "12", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.5, + "pScore": { + "sU": 19.5, + "sF": 24.0 + }, + "week": "2003 Regular Season - Week 3" }, { "date": "Sep 21, 2003", @@ -95880,8 +142131,13 @@ "und": "New York Giants", "sF": "21", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.5, + "pScore": { + "sU": 21.0, + "sF": 22.5 + }, + "week": "2003 Regular Season - Week 3" }, { "date": "Sep 21, 2003", @@ -95890,8 +142146,13 @@ "und": "Arizona Cardinals", "sF": "13", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.5, + "pScore": { + "sU": 17.5, + "sF": 25.0 + }, + "week": "2003 Regular Season - Week 3" }, { "date": "Sep 21, 2003", @@ -95901,7 +142162,12 @@ "sF": "24", "sU": "23", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2003 Regular Season - Week 3" }, { "date": "Sep 21, 2003", @@ -95910,8 +142176,13 @@ "und": "Baltimore Ravens", "sF": "10", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.5, + "pScore": { + "sU": 18.5, + "sF": 20.0 + }, + "week": "2003 Regular Season - Week 3" }, { "date": "Sep 21, 2003", @@ -95921,7 +142192,12 @@ "sF": "12", "sU": "13", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "2003 Regular Season - Week 3" }, { "date": "Sep 21, 2003", @@ -95931,7 +142207,12 @@ "sF": "17", "sU": "7", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2003 Regular Season - Week 3" }, { "date": "Sep 22, 2003", @@ -95940,8 +142221,13 @@ "und": "Oakland Raiders", "sF": "31", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.0, + "pScore": { + "sU": 19.75, + "sF": 25.25 + }, + "week": "2003 Regular Season - Week 3" }, { "date": "Sep 28, 2003", @@ -95950,8 +142236,13 @@ "und": "Tennessee Titans", "sF": "13", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2003 Regular Season - Week 4" }, { "date": "Sep 28, 2003", @@ -95961,7 +142252,12 @@ "sF": "13", "sU": "23", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2003 Regular Season - Week 4" }, { "date": "Sep 28, 2003", @@ -95970,8 +142266,13 @@ "und": "Arizona Cardinals", "sF": "37", "sU": "13", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 45.5, + "pScore": { + "sU": 17.0, + "sF": 28.5 + }, + "week": "2003 Regular Season - Week 4" }, { "date": "Sep 28, 2003", @@ -95980,8 +142281,13 @@ "und": "Cincinnati Bengals", "sF": "14", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "2003 Regular Season - Week 4" }, { "date": "Sep 28, 2003", @@ -95990,8 +142296,13 @@ "und": "New England Patriots", "sF": "20", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2003 Regular Season - Week 4" }, { "date": "Sep 28, 2003", @@ -96000,8 +142311,13 @@ "und": "Houston Texans", "sF": "20", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2003 Regular Season - Week 4" }, { "date": "Sep 28, 2003", @@ -96011,7 +142327,12 @@ "sF": "17", "sU": "10", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2003 Regular Season - Week 4" }, { "date": "Sep 28, 2003", @@ -96021,7 +142342,12 @@ "sF": "34", "sU": "31", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2003 Regular Season - Week 4" }, { "date": "Sep 28, 2003", @@ -96031,7 +142357,12 @@ "sF": "23", "sU": "3", "spread": "6", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 14.75, + "sF": 20.75 + }, + "week": "2003 Regular Season - Week 4" }, { "date": "Sep 28, 2003", @@ -96041,7 +142372,12 @@ "sF": "20", "sU": "16", "spread": "12", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 16.0, + "sF": 28.0 + }, + "week": "2003 Regular Season - Week 4" }, { "date": "Sep 28, 2003", @@ -96051,7 +142387,12 @@ "sF": "6", "sU": "17", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2003 Regular Season - Week 4" }, { "date": "Sep 28, 2003", @@ -96060,8 +142401,13 @@ "und": "New Orleans Saints", "sF": "55", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "2003 Regular Season - Week 4" }, { "date": "Sep 29, 2003", @@ -96071,7 +142417,12 @@ "sF": "38", "sU": "23", "spread": "4", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.75, + "sF": 22.75 + }, + "week": "2003 Regular Season - Week 4" }, { "date": "Oct 5, 2003", @@ -96080,8 +142431,13 @@ "und": "Denver Broncos", "sF": "24", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "2003 Regular Season - Week 5" }, { "date": "Oct 5, 2003", @@ -96091,7 +142447,12 @@ "sF": "22", "sU": "16", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "2003 Regular Season - Week 5" }, { "date": "Oct 5, 2003", @@ -96101,7 +142462,12 @@ "sF": "19", "sU": "13", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "2003 Regular Season - Week 5" }, { "date": "Oct 5, 2003", @@ -96110,8 +142476,13 @@ "und": "Chicago Bears", "sF": "21", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2003 Regular Season - Week 5" }, { "date": "Oct 5, 2003", @@ -96120,8 +142491,13 @@ "und": "Arizona Cardinals", "sF": "24", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.5, + "pScore": { + "sU": 16.0, + "sF": 23.5 + }, + "week": "2003 Regular Season - Week 5" }, { "date": "Oct 5, 2003", @@ -96131,7 +142507,12 @@ "sF": "35", "sU": "13", "spread": "1", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 22.0, + "sF": 23.0 + }, + "week": "2003 Regular Season - Week 5" }, { "date": "Oct 5, 2003", @@ -96141,7 +142522,12 @@ "sF": "38", "sU": "30", "spread": "1", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.75, + "sF": 20.75 + }, + "week": "2003 Regular Season - Week 5" }, { "date": "Oct 5, 2003", @@ -96150,8 +142536,13 @@ "und": "Miami Dolphins", "sF": "10", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "2003 Regular Season - Week 5" }, { "date": "Oct 5, 2003", @@ -96160,8 +142551,13 @@ "und": "Atlanta Falcons", "sF": "39", "sU": "26", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.5, + "pScore": { + "sU": 19.5, + "sF": 24.0 + }, + "week": "2003 Regular Season - Week 5" }, { "date": "Oct 5, 2003", @@ -96171,7 +142567,12 @@ "sF": "27", "sU": "21", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2003 Regular Season - Week 5" }, { "date": "Oct 5, 2003", @@ -96180,8 +142581,13 @@ "und": "Washington Redskins", "sF": "27", "sU": "25", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "2003 Regular Season - Week 5" }, { "date": "Oct 5, 2003", @@ -96190,8 +142596,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.5, + "pScore": { + "sU": 17.5, + "sF": 25.0 + }, + "week": "2003 Regular Season - Week 5" }, { "date": "Oct 5, 2003", @@ -96201,7 +142612,12 @@ "sF": "13", "sU": "33", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "2003 Regular Season - Week 5" }, { "date": "Oct 6, 2003", @@ -96210,8 +142626,13 @@ "und": "Indianapolis Colts", "sF": "35", "sU": "38", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.5, + "pScore": { + "sU": 16.5, + "sF": 21.0 + }, + "week": "2003 Regular Season - Week 5" }, { "date": "Oct 12, 2003", @@ -96221,7 +142642,12 @@ "sF": "20", "sU": "23", "spread": "4", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.75, + "sF": 20.75 + }, + "week": "2003 Regular Season - Week 6" }, { "date": "Oct 12, 2003", @@ -96230,8 +142656,13 @@ "und": "Jacksonville Jaguars", "sF": "24", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "2003 Regular Season - Week 6" }, { "date": "Oct 12, 2003", @@ -96240,8 +142671,13 @@ "und": "Kansas City Chiefs", "sF": "34", "sU": "40", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.5, + "pScore": { + "sU": 22.5, + "sF": 25.0 + }, + "week": "2003 Regular Season - Week 6" }, { "date": "Oct 12, 2003", @@ -96250,8 +142686,13 @@ "und": "New York Giants", "sF": "17", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2003 Regular Season - Week 6" }, { "date": "Oct 12, 2003", @@ -96260,8 +142701,13 @@ "und": "Oakland Raiders", "sF": "13", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2003 Regular Season - Week 6" }, { "date": "Oct 12, 2003", @@ -96271,7 +142717,12 @@ "sF": "23", "sU": "21", "spread": "1", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 18.25, + "sF": 19.25 + }, + "week": "2003 Regular Season - Week 6" }, { "date": "Oct 12, 2003", @@ -96280,8 +142731,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "2003 Regular Season - Week 6" }, { "date": "Oct 12, 2003", @@ -96290,8 +142746,13 @@ "und": "Houston Texans", "sF": "38", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 39.5, + "pScore": { + "sU": 15.5, + "sF": 24.0 + }, + "week": "2003 Regular Season - Week 6" }, { "date": "Oct 12, 2003", @@ -96300,8 +142761,13 @@ "und": "Washington Redskins", "sF": "35", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2003 Regular Season - Week 6" }, { "date": "Oct 12, 2003", @@ -96310,8 +142776,13 @@ "und": "Pittsburgh Steelers", "sF": "17", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "2003 Regular Season - Week 6" }, { "date": "Oct 12, 2003", @@ -96321,7 +142792,12 @@ "sF": "3", "sU": "30", "spread": "1", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.75, + "sF": 18.75 + }, + "week": "2003 Regular Season - Week 6" }, { "date": "Oct 12, 2003", @@ -96330,8 +142806,13 @@ "und": "Arizona Cardinals", "sF": "26", "sU": "18", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "2003 Regular Season - Week 6" }, { "date": "Oct 12, 2003", @@ -96340,12 +142821,13 @@ "und": "San Francisco 49ers", "sF": "20", "sU": "19", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": 44.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 20.5, + "sF": 24.0 + }, + "week": "2003 Regular Season - Week 6" }, { "date": "Oct 13, 2003", @@ -96355,7 +142837,12 @@ "sF": "36", "sU": "0", "spread": "10", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.0, + "sF": 28.0 + }, + "week": "2003 Regular Season - Week 6" }, { "date": "Oct 19, 2003", @@ -96365,7 +142852,12 @@ "sF": "28", "sU": "20", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2003 Regular Season - Week 7" }, { "date": "Oct 19, 2003", @@ -96375,7 +142867,12 @@ "sF": "26", "sU": "34", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "2003 Regular Season - Week 7" }, { "date": "Oct 19, 2003", @@ -96384,8 +142881,13 @@ "und": "San Diego Chargers", "sF": "20", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2003 Regular Season - Week 7" }, { "date": "Oct 19, 2003", @@ -96395,7 +142897,12 @@ "sF": "34", "sU": "24", "spread": "4", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.25, + "sF": 26.25 + }, + "week": "2003 Regular Season - Week 7" }, { "date": "Oct 19, 2003", @@ -96405,7 +142912,12 @@ "sF": "45", "sU": "17", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2003 Regular Season - Week 7" }, { "date": "Oct 19, 2003", @@ -96415,7 +142927,12 @@ "sF": "38", "sU": "7", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2003 Regular Season - Week 7" }, { "date": "Oct 19, 2003", @@ -96424,8 +142941,13 @@ "und": "New England Patriots", "sF": "13", "sU": "19", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "2003 Regular Season - Week 7" }, { "date": "Oct 19, 2003", @@ -96435,7 +142957,12 @@ "sF": "10", "sU": "14", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2003 Regular Season - Week 7" }, { "date": "Oct 19, 2003", @@ -96444,8 +142971,13 @@ "und": "Houston Texans", "sF": "19", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "2003 Regular Season - Week 7" }, { "date": "Oct 19, 2003", @@ -96455,7 +142987,12 @@ "sF": "24", "sU": "7", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2003 Regular Season - Week 7" }, { "date": "Oct 19, 2003", @@ -96465,11 +143002,12 @@ "sF": "7", "sU": "24", "spread": "5", - "ou": "49", + "ou": 39.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 17.0, + "sF": 22.0 + }, + "week": "2003 Regular Season - Week 7" }, { "date": "Oct 19, 2003", @@ -96479,7 +143017,12 @@ "sF": "24", "sU": "17", "spread": "11", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 15.25, + "sF": 26.25 + }, + "week": "2003 Regular Season - Week 7" }, { "date": "Oct 20, 2003", @@ -96488,8 +143031,13 @@ "und": "Oakland Raiders", "sF": "17", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.5, + "pScore": { + "sU": 21.5, + "sF": 26.0 + }, + "week": "2003 Regular Season - Week 7" }, { "date": "Oct 26, 2003", @@ -96498,8 +143046,13 @@ "und": "New York Giants", "sF": "17", "sU": "29", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.5, + "pScore": { + "sU": 19.5, + "sF": 25.0 + }, + "week": "2003 Regular Season - Week 8" }, { "date": "Oct 26, 2003", @@ -96508,8 +143061,13 @@ "und": "Jacksonville Jaguars", "sF": "30", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.5, + "pScore": { + "sU": 19.5, + "sF": 24.0 + }, + "week": "2003 Regular Season - Week 8" }, { "date": "Oct 26, 2003", @@ -96519,7 +143077,12 @@ "sF": "16", "sU": "0", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "2003 Regular Season - Week 8" }, { "date": "Oct 26, 2003", @@ -96528,8 +143091,13 @@ "und": "Denver Broncos", "sF": "26", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "2003 Regular Season - Week 8" }, { "date": "Oct 26, 2003", @@ -96539,7 +143107,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2003 Regular Season - Week 8" }, { "date": "Oct 26, 2003", @@ -96548,8 +143121,13 @@ "und": "Cleveland Browns", "sF": "9", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.5, + "pScore": { + "sU": 16.5, + "sF": 21.0 + }, + "week": "2003 Regular Season - Week 8" }, { "date": "Oct 26, 2003", @@ -96559,7 +143137,12 @@ "sF": "21", "sU": "33", "spread": "1", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 22.25, + "sF": 23.25 + }, + "week": "2003 Regular Season - Week 8" }, { "date": "Oct 26, 2003", @@ -96569,7 +143152,12 @@ "sF": "24", "sU": "16", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2003 Regular Season - Week 8" }, { "date": "Oct 26, 2003", @@ -96579,7 +143167,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2003 Regular Season - Week 8" }, { "date": "Oct 26, 2003", @@ -96589,7 +143182,12 @@ "sF": "13", "sU": "16", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "2003 Regular Season - Week 8" }, { "date": "Oct 26, 2003", @@ -96599,7 +143197,12 @@ "sF": "24", "sU": "17", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2003 Regular Season - Week 8" }, { "date": "Oct 26, 2003", @@ -96609,7 +143212,12 @@ "sF": "30", "sU": "21", "spread": "13", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 15.5, + "sF": 28.5 + }, + "week": "2003 Regular Season - Week 8" }, { "date": "Oct 26, 2003", @@ -96618,8 +143226,13 @@ "und": "Buffalo Bills", "sF": "38", "sU": "5", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.5, + "pScore": { + "sU": 19.0, + "sF": 24.5 + }, + "week": "2003 Regular Season - Week 8" }, { "date": "Oct 27, 2003", @@ -96628,8 +143241,13 @@ "und": "San Diego Chargers", "sF": "26", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.5, + "pScore": { + "sU": 16.0, + "sF": 22.5 + }, + "week": "2003 Regular Season - Week 8" }, { "date": "Nov 2, 2003", @@ -96639,7 +143257,12 @@ "sF": "24", "sU": "17", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "2003 Regular Season - Week 9" }, { "date": "Nov 2, 2003", @@ -96649,7 +143272,12 @@ "sF": "10", "sU": "14", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "2003 Regular Season - Week 9" }, { "date": "Nov 2, 2003", @@ -96658,8 +143286,13 @@ "und": "Detroit Lions", "sF": "13", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "2003 Regular Season - Week 9" }, { "date": "Nov 2, 2003", @@ -96668,8 +143301,13 @@ "und": "New York Jets", "sF": "31", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2003 Regular Season - Week 9" }, { "date": "Nov 2, 2003", @@ -96679,7 +143317,12 @@ "sF": "17", "sU": "23", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2003 Regular Season - Week 9" }, { "date": "Nov 2, 2003", @@ -96689,7 +143332,12 @@ "sF": "20", "sU": "7", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "2003 Regular Season - Week 9" }, { "date": "Nov 2, 2003", @@ -96699,7 +143347,12 @@ "sF": "14", "sU": "17", "spread": "8", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.5, + "sF": 23.5 + }, + "week": "2003 Regular Season - Week 9" }, { "date": "Nov 2, 2003", @@ -96709,7 +143362,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2003 Regular Season - Week 9" }, { "date": "Nov 2, 2003", @@ -96719,7 +143377,12 @@ "sF": "23", "sU": "16", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "2003 Regular Season - Week 9" }, { "date": "Nov 2, 2003", @@ -96729,7 +143392,12 @@ "sF": "23", "sU": "16", "spread": "6", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.75, + "sF": 22.75 + }, + "week": "2003 Regular Season - Week 9" }, { "date": "Nov 2, 2003", @@ -96739,7 +143407,12 @@ "sF": "21", "sU": "14", "spread": "6", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 16.25, + "sF": 22.25 + }, + "week": "2003 Regular Season - Week 9" }, { "date": "Nov 2, 2003", @@ -96749,11 +143422,12 @@ "sF": "10", "sU": "30", "spread": "5", - "ou": "49", + "ou": 44.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 19.5, + "sF": 24.5 + }, + "week": "2003 Regular Season - Week 9" }, { "date": "Nov 2, 2003", @@ -96762,8 +143436,13 @@ "und": "Green Bay Packers", "sF": "27", "sU": "30", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 49.0, + "pScore": { + "sU": 21.75, + "sF": 27.25 + }, + "week": "2003 Regular Season - Week 9" }, { "date": "Nov 3, 2003", @@ -96773,7 +143452,12 @@ "sF": "26", "sU": "30", "spread": "2", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.0, + "sF": 19.0 + }, + "week": "2003 Regular Season - Week 9" }, { "date": "Nov 9, 2003", @@ -96783,7 +143467,12 @@ "sF": "41", "sU": "20", "spread": "9", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 17.25, + "sF": 26.25 + }, + "week": "2003 Regular Season - Week 10" }, { "date": "Nov 9, 2003", @@ -96792,8 +143481,13 @@ "und": "Carolina Panthers", "sF": "24", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 34.5, + "pScore": { + "sU": 15.5, + "sF": 19.0 + }, + "week": "2003 Regular Season - Week 10" }, { "date": "Nov 9, 2003", @@ -96803,7 +143497,12 @@ "sF": "23", "sU": "28", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2003 Regular Season - Week 10" }, { "date": "Nov 9, 2003", @@ -96813,7 +143512,12 @@ "sF": "28", "sU": "15", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "2003 Regular Season - Week 10" }, { "date": "Nov 9, 2003", @@ -96822,8 +143526,13 @@ "und": "Miami Dolphins", "sF": "31", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.5, + "pScore": { + "sU": 17.0, + "sF": 22.5 + }, + "week": "2003 Regular Season - Week 10" }, { "date": "Nov 9, 2003", @@ -96833,7 +143542,12 @@ "sF": "20", "sU": "27", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2003 Regular Season - Week 10" }, { "date": "Nov 9, 2003", @@ -96843,7 +143557,12 @@ "sF": "34", "sU": "27", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "2003 Regular Season - Week 10" }, { "date": "Nov 9, 2003", @@ -96852,8 +143571,13 @@ "und": "Atlanta Falcons", "sF": "7", "sU": "27", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 41.0, + "pScore": { + "sU": 14.75, + "sF": 26.25 + }, + "week": "2003 Regular Season - Week 10" }, { "date": "Nov 9, 2003", @@ -96862,8 +143586,13 @@ "und": "San Diego Chargers", "sF": "28", "sU": "42", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.0, + "pScore": { + "sU": 19.75, + "sF": 25.25 + }, + "week": "2003 Regular Season - Week 10" }, { "date": "Nov 9, 2003", @@ -96873,7 +143602,12 @@ "sF": "10", "sU": "6", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "2003 Regular Season - Week 10" }, { "date": "Nov 9, 2003", @@ -96883,7 +143617,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2003 Regular Season - Week 10" }, { "date": "Nov 9, 2003", @@ -96892,8 +143631,13 @@ "und": "Baltimore Ravens", "sF": "33", "sU": "22", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "2003 Regular Season - Week 10" }, { "date": "Nov 10, 2003", @@ -96902,8 +143646,13 @@ "und": "Philadelphia Eagles", "sF": "14", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "2003 Regular Season - Week 10" }, { "date": "Nov 16, 2003", @@ -96913,7 +143662,12 @@ "sF": "10", "sU": "12", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "2003 Regular Season - Week 11" }, { "date": "Nov 16, 2003", @@ -96923,7 +143677,12 @@ "sF": "28", "sU": "10", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2003 Regular Season - Week 11" }, { "date": "Nov 16, 2003", @@ -96933,7 +143692,12 @@ "sF": "10", "sU": "3", "spread": "9", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.75, + "sF": 26.75 + }, + "week": "2003 Regular Season - Week 11" }, { "date": "Nov 16, 2003", @@ -96943,7 +143707,12 @@ "sF": "20", "sU": "17", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "2003 Regular Season - Week 11" }, { "date": "Nov 16, 2003", @@ -96953,7 +143722,12 @@ "sF": "23", "sU": "21", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2003 Regular Season - Week 11" }, { "date": "Nov 16, 2003", @@ -96963,7 +143737,12 @@ "sF": "19", "sU": "24", "spread": "6", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 21.0, + "sF": 27.0 + }, + "week": "2003 Regular Season - Week 11" }, { "date": "Nov 16, 2003", @@ -96973,7 +143752,12 @@ "sF": "44", "sU": "6", "spread": "5", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.25, + "sF": 21.25 + }, + "week": "2003 Regular Season - Week 11" }, { "date": "Nov 16, 2003", @@ -96983,7 +143767,12 @@ "sF": "9", "sU": "6", "spread": "5", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 14.0, + "sF": 19.0 + }, + "week": "2003 Regular Season - Week 11" }, { "date": "Nov 16, 2003", @@ -96993,7 +143782,12 @@ "sF": "23", "sU": "20", "spread": "9", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.5, + "sF": 26.5 + }, + "week": "2003 Regular Season - Week 11" }, { "date": "Nov 16, 2003", @@ -97002,8 +143796,13 @@ "und": "San Diego Chargers", "sF": "37", "sU": "8", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 44.0, + "pScore": { + "sU": 17.75, + "sF": 26.25 + }, + "week": "2003 Regular Season - Week 11" }, { "date": "Nov 16, 2003", @@ -97013,7 +143812,12 @@ "sF": "38", "sU": "31", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "2003 Regular Season - Week 11" }, { "date": "Nov 16, 2003", @@ -97022,8 +143826,13 @@ "und": "Oakland Raiders", "sF": "18", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.0, + "pScore": { + "sU": 20.75, + "sF": 25.25 + }, + "week": "2003 Regular Season - Week 11" }, { "date": "Nov 16, 2003", @@ -97032,8 +143841,13 @@ "und": "Green Bay Packers", "sF": "13", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2003 Regular Season - Week 11" }, { "date": "Nov 16, 2003", @@ -97043,7 +143857,12 @@ "sF": "35", "sU": "14", "spread": "11", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 14.25, + "sF": 25.25 + }, + "week": "2003 Regular Season - Week 11" }, { "date": "Nov 16, 2003", @@ -97053,7 +143872,12 @@ "sF": "12", "sU": "0", "spread": "4", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.5, + "sF": 19.5 + }, + "week": "2003 Regular Season - Week 11" }, { "date": "Nov 17, 2003", @@ -97063,7 +143887,12 @@ "sF": "30", "sU": "14", "spread": "4", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.75, + "sF": 22.75 + }, + "week": "2003 Regular Season - Week 11" }, { "date": "Nov 23, 2003", @@ -97072,8 +143901,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 47.5, + "pScore": { + "sU": 18.5, + "sF": 29.0 + }, + "week": "2003 Regular Season - Week 12" }, { "date": "Nov 23, 2003", @@ -97083,7 +143917,12 @@ "sF": "44", "sU": "41", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2003 Regular Season - Week 12" }, { "date": "Nov 23, 2003", @@ -97093,7 +143932,12 @@ "sF": "17", "sU": "14", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "2003 Regular Season - Week 12" }, { "date": "Nov 23, 2003", @@ -97103,7 +143947,12 @@ "sF": "6", "sU": "13", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2003 Regular Season - Week 12" }, { "date": "Nov 23, 2003", @@ -97113,7 +143962,12 @@ "sF": "24", "sU": "20", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "2003 Regular Season - Week 12" }, { "date": "Nov 23, 2003", @@ -97122,12 +143976,13 @@ "und": "San Francisco 49ers", "sF": "20", "sU": "10", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": 40.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 18.25, + "sF": 21.75 + }, + "week": "2003 Regular Season - Week 12" }, { "date": "Nov 23, 2003", @@ -97137,7 +143992,12 @@ "sF": "23", "sU": "20", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "2003 Regular Season - Week 12" }, { "date": "Nov 23, 2003", @@ -97146,8 +144006,13 @@ "und": "New Orleans Saints", "sF": "33", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.5, + "pScore": { + "sU": 17.0, + "sF": 22.5 + }, + "week": "2003 Regular Season - Week 12" }, { "date": "Nov 23, 2003", @@ -97157,7 +144022,12 @@ "sF": "13", "sU": "10", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "2003 Regular Season - Week 12" }, { "date": "Nov 23, 2003", @@ -97166,8 +144036,13 @@ "und": "Chicago Bears", "sF": "10", "sU": "19", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 38.5, + "pScore": { + "sU": 14.0, + "sF": 24.5 + }, + "week": "2003 Regular Season - Week 12" }, { "date": "Nov 23, 2003", @@ -97177,7 +144052,12 @@ "sF": "30", "sU": "27", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2003 Regular Season - Week 12" }, { "date": "Nov 23, 2003", @@ -97186,8 +144066,13 @@ "und": "Atlanta Falcons", "sF": "38", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2003 Regular Season - Week 12" }, { "date": "Nov 23, 2003", @@ -97197,7 +144082,12 @@ "sF": "27", "sU": "24", "spread": "11", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 16.75, + "sF": 27.75 + }, + "week": "2003 Regular Season - Week 12" }, { "date": "Nov 23, 2003", @@ -97207,7 +144097,12 @@ "sF": "34", "sU": "27", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2003 Regular Season - Week 12" }, { "date": "Nov 23, 2003", @@ -97217,7 +144112,12 @@ "sF": "24", "sU": "23", "spread": "7", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.0, + "sF": 21.0 + }, + "week": "2003 Regular Season - Week 12" }, { "date": "Nov 24, 2003", @@ -97227,7 +144127,12 @@ "sF": "19", "sU": "13", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "2003 Regular Season - Week 12" }, { "date": "Nov 27, 2003", @@ -97236,8 +144141,13 @@ "und": "Detroit Lions", "sF": "14", "sU": "22", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2003 Regular Season - Week 13" }, { "date": "Nov 27, 2003", @@ -97247,7 +144157,12 @@ "sF": "21", "sU": "40", "spread": "3", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 15.75, + "sF": 18.75 + }, + "week": "2003 Regular Season - Week 13" }, { "date": "Nov 30, 2003", @@ -97256,8 +144171,13 @@ "und": "New England Patriots", "sF": "34", "sU": "38", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2003 Regular Season - Week 13" }, { "date": "Nov 30, 2003", @@ -97267,7 +144187,12 @@ "sF": "20", "sU": "24", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2003 Regular Season - Week 13" }, { "date": "Nov 30, 2003", @@ -97277,11 +144202,12 @@ "sF": "44", "sU": "6", "spread": "3", - "ou": "49", + "ou": 37.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 17.0, + "sF": 20.0 + }, + "week": "2003 Regular Season - Week 13" }, { "date": "Nov 30, 2003", @@ -97290,8 +144216,13 @@ "und": "Philadelphia Eagles", "sF": "16", "sU": "25", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.0, + "pScore": { + "sU": 17.75, + "sF": 19.25 + }, + "week": "2003 Regular Season - Week 13" }, { "date": "Nov 30, 2003", @@ -97301,7 +144232,12 @@ "sF": "7", "sU": "24", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "2003 Regular Season - Week 13" }, { "date": "Nov 30, 2003", @@ -97311,7 +144247,12 @@ "sF": "48", "sU": "17", "spread": "6", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 22.5, + "sF": 28.5 + }, + "week": "2003 Regular Season - Week 13" }, { "date": "Nov 30, 2003", @@ -97320,8 +144261,13 @@ "und": "Arizona Cardinals", "sF": "28", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 36.0, + "pScore": { + "sU": 15.75, + "sF": 20.25 + }, + "week": "2003 Regular Season - Week 13" }, { "date": "Nov 30, 2003", @@ -97331,7 +144277,12 @@ "sF": "17", "sU": "13", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2003 Regular Season - Week 13" }, { "date": "Nov 30, 2003", @@ -97341,7 +144292,12 @@ "sF": "24", "sU": "20", "spread": "1", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.75, + "sF": 21.75 + }, + "week": "2003 Regular Season - Week 13" }, { "date": "Nov 30, 2003", @@ -97351,7 +144307,12 @@ "sF": "22", "sU": "8", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2003 Regular Season - Week 13" }, { "date": "Nov 30, 2003", @@ -97360,8 +144321,13 @@ "und": "San Diego Chargers", "sF": "28", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.5, + "pScore": { + "sU": 20.5, + "sF": 28.0 + }, + "week": "2003 Regular Season - Week 13" }, { "date": "Nov 30, 2003", @@ -97370,8 +144336,13 @@ "und": "Cleveland Browns", "sF": "34", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "2003 Regular Season - Week 13" }, { "date": "Nov 30, 2003", @@ -97381,7 +144352,12 @@ "sF": "10", "sU": "17", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2003 Regular Season - Week 13" }, { "date": "Dec 1, 2003", @@ -97391,7 +144367,12 @@ "sF": "17", "sU": "24", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2003 Regular Season - Week 13" }, { "date": "Dec 7, 2003", @@ -97401,7 +144382,12 @@ "sF": "7", "sU": "34", "spread": "1", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 25.75, + "sF": 26.75 + }, + "week": "2003 Regular Season - Week 14" }, { "date": "Dec 7, 2003", @@ -97410,8 +144396,13 @@ "und": "Oakland Raiders", "sF": "27", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.5, + "pScore": { + "sU": 17.5, + "sF": 23.0 + }, + "week": "2003 Regular Season - Week 14" }, { "date": "Dec 7, 2003", @@ -97421,7 +144412,12 @@ "sF": "31", "sU": "13", "spread": "5", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 16.75, + "sF": 21.75 + }, + "week": "2003 Regular Season - Week 14" }, { "date": "Dec 7, 2003", @@ -97430,8 +144426,13 @@ "und": "Chicago Bears", "sF": "34", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.0, + "pScore": { + "sU": 15.75, + "sF": 23.25 + }, + "week": "2003 Regular Season - Week 14" }, { "date": "Dec 7, 2003", @@ -97440,8 +144441,13 @@ "und": "Houston Texans", "sF": "27", "sU": "0", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 37.5, + "pScore": { + "sU": 14.0, + "sF": 23.5 + }, + "week": "2003 Regular Season - Week 14" }, { "date": "Dec 7, 2003", @@ -97451,7 +144457,12 @@ "sF": "7", "sU": "20", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2003 Regular Season - Week 14" }, { "date": "Dec 7, 2003", @@ -97461,7 +144472,12 @@ "sF": "7", "sU": "14", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2003 Regular Season - Week 14" }, { "date": "Dec 7, 2003", @@ -97471,7 +144487,12 @@ "sF": "7", "sU": "14", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2003 Regular Season - Week 14" }, { "date": "Dec 7, 2003", @@ -97480,8 +144501,13 @@ "und": "Dallas Cowboys", "sF": "36", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 35.5, + "pScore": { + "sU": 15.0, + "sF": 20.5 + }, + "week": "2003 Regular Season - Week 14" }, { "date": "Dec 7, 2003", @@ -97490,8 +144516,13 @@ "und": "Indianapolis Colts", "sF": "27", "sU": "29", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "2003 Regular Season - Week 14" }, { "date": "Dec 7, 2003", @@ -97500,8 +144531,13 @@ "und": "Arizona Cardinals", "sF": "50", "sU": "14", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 40.5, + "pScore": { + "sU": 15.0, + "sF": 25.5 + }, + "week": "2003 Regular Season - Week 14" }, { "date": "Dec 7, 2003", @@ -97511,7 +144547,12 @@ "sF": "17", "sU": "6", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2003 Regular Season - Week 14" }, { "date": "Dec 7, 2003", @@ -97521,7 +144562,12 @@ "sF": "45", "sU": "27", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2003 Regular Season - Week 14" }, { "date": "Dec 7, 2003", @@ -97531,7 +144577,12 @@ "sF": "12", "sU": "0", "spread": "3", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 15.25, + "sF": 18.25 + }, + "week": "2003 Regular Season - Week 14" }, { "date": "Dec 7, 2003", @@ -97541,7 +144592,12 @@ "sF": "14", "sU": "20", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "2003 Regular Season - Week 14" }, { "date": "Dec 8, 2003", @@ -97550,8 +144606,13 @@ "und": "Cleveland Browns", "sF": "26", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.5, + "pScore": { + "sU": 19.0, + "sF": 24.5 + }, + "week": "2003 Regular Season - Week 14" }, { "date": "Dec 14, 2003", @@ -97560,8 +144621,13 @@ "und": "Atlanta Falcons", "sF": "38", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2003 Regular Season - Week 15" }, { "date": "Dec 14, 2003", @@ -97570,8 +144636,13 @@ "und": "Detroit Lions", "sF": "45", "sU": "17", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 45.0, + "pScore": { + "sU": 15.25, + "sF": 29.75 + }, + "week": "2003 Regular Season - Week 15" }, { "date": "Dec 14, 2003", @@ -97580,8 +144651,13 @@ "und": "Houston Texans", "sF": "16", "sU": "3", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 36.0, + "pScore": { + "sU": 12.25, + "sF": 23.75 + }, + "week": "2003 Regular Season - Week 15" }, { "date": "Dec 14, 2003", @@ -97591,7 +144667,12 @@ "sF": "27", "sU": "13", "spread": "6", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 13.5, + "sF": 19.5 + }, + "week": "2003 Regular Season - Week 15" }, { "date": "Dec 14, 2003", @@ -97601,7 +144682,12 @@ "sF": "27", "sU": "22", "spread": "7", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 22.5, + "sF": 29.5 + }, + "week": "2003 Regular Season - Week 15" }, { "date": "Dec 14, 2003", @@ -97611,7 +144697,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2003 Regular Season - Week 15" }, { "date": "Dec 14, 2003", @@ -97621,11 +144712,12 @@ "sF": "41", "sU": "38", "spread": "3", - "ou": "49", + "ou": 42.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 19.5, + "sF": 22.5 + }, + "week": "2003 Regular Season - Week 15" }, { "date": "Dec 14, 2003", @@ -97635,7 +144727,12 @@ "sF": "6", "sU": "0", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2003 Regular Season - Week 15" }, { "date": "Dec 14, 2003", @@ -97645,7 +144742,12 @@ "sF": "28", "sU": "26", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "2003 Regular Season - Week 15" }, { "date": "Dec 14, 2003", @@ -97654,8 +144756,13 @@ "und": "Cleveland Browns", "sF": "23", "sU": "20", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 42.0, + "pScore": { + "sU": 15.25, + "sF": 26.75 + }, + "week": "2003 Regular Season - Week 15" }, { "date": "Dec 14, 2003", @@ -97665,7 +144772,12 @@ "sF": "12", "sU": "20", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "2003 Regular Season - Week 15" }, { "date": "Dec 14, 2003", @@ -97675,7 +144787,12 @@ "sF": "38", "sU": "21", "spread": "5", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 20.25, + "sF": 25.25 + }, + "week": "2003 Regular Season - Week 15" }, { "date": "Dec 14, 2003", @@ -97685,7 +144802,12 @@ "sF": "20", "sU": "17", "spread": "7", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.75, + "sF": 22.75 + }, + "week": "2003 Regular Season - Week 15" }, { "date": "Dec 14, 2003", @@ -97695,7 +144817,12 @@ "sF": "27", "sU": "0", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "2003 Regular Season - Week 15" }, { "date": "Dec 14, 2003", @@ -97704,8 +144831,13 @@ "und": "New York Giants", "sF": "45", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.5, + "pScore": { + "sU": 16.5, + "sF": 24.0 + }, + "week": "2003 Regular Season - Week 15" }, { "date": "Dec 15, 2003", @@ -97715,7 +144847,12 @@ "sF": "27", "sU": "34", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2003 Regular Season - Week 15" }, { "date": "Dec 20, 2003", @@ -97724,8 +144861,13 @@ "und": "Atlanta Falcons", "sF": "28", "sU": "30", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.5, + "pScore": { + "sU": 16.0, + "sF": 22.5 + }, + "week": "2003 Regular Season - Week 16" }, { "date": "Dec 20, 2003", @@ -97735,7 +144877,12 @@ "sF": "20", "sU": "45", "spread": "3", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 25.5, + "sF": 28.5 + }, + "week": "2003 Regular Season - Week 16" }, { "date": "Dec 20, 2003", @@ -97745,7 +144892,12 @@ "sF": "21", "sU": "16", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "2003 Regular Season - Week 16" }, { "date": "Dec 21, 2003", @@ -97755,7 +144907,12 @@ "sF": "3", "sU": "20", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "2003 Regular Season - Week 16" }, { "date": "Dec 21, 2003", @@ -97764,8 +144921,13 @@ "und": "New York Giants", "sF": "19", "sU": "3", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 35.5, + "pScore": { + "sU": 11.5, + "sF": 24.0 + }, + "week": "2003 Regular Season - Week 16" }, { "date": "Dec 21, 2003", @@ -97775,7 +144937,12 @@ "sF": "20", "sU": "19", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2003 Regular Season - Week 16" }, { "date": "Dec 21, 2003", @@ -97785,7 +144952,12 @@ "sF": "27", "sU": "10", "spread": "7", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 23.5, + "sF": 30.5 + }, + "week": "2003 Regular Season - Week 16" }, { "date": "Dec 21, 2003", @@ -97794,8 +144966,13 @@ "und": "Detroit Lions", "sF": "20", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.0, + "pScore": { + "sU": 14.75, + "sF": 22.25 + }, + "week": "2003 Regular Season - Week 16" }, { "date": "Dec 21, 2003", @@ -97805,7 +144982,12 @@ "sF": "27", "sU": "24", "spread": "4", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.5, + "sF": 19.5 + }, + "week": "2003 Regular Season - Week 16" }, { "date": "Dec 21, 2003", @@ -97815,7 +144997,12 @@ "sF": "35", "sU": "0", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "2003 Regular Season - Week 16" }, { "date": "Dec 21, 2003", @@ -97824,8 +145011,13 @@ "und": "Houston Texans", "sF": "27", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.0, + "pScore": { + "sU": 16.75, + "sF": 22.25 + }, + "week": "2003 Regular Season - Week 16" }, { "date": "Dec 21, 2003", @@ -97834,8 +145026,13 @@ "und": "San Diego Chargers", "sF": "40", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "2003 Regular Season - Week 16" }, { "date": "Dec 21, 2003", @@ -97845,11 +145042,12 @@ "sF": "28", "sU": "31", "spread": "7", - "ou": "49", + "ou": 44.0, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 18.5, + "sF": 25.5 + }, + "week": "2003 Regular Season - Week 16" }, { "date": "Dec 21, 2003", @@ -97858,8 +145056,13 @@ "und": "Arizona Cardinals", "sF": "28", "sU": "10", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 44.5, + "pScore": { + "sU": 14.5, + "sF": 30.0 + }, + "week": "2003 Regular Season - Week 16" }, { "date": "Dec 21, 2003", @@ -97868,8 +145071,13 @@ "und": "Denver Broncos", "sF": "17", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.5, + "pScore": { + "sU": 21.0, + "sF": 27.5 + }, + "week": "2003 Regular Season - Week 16" }, { "date": "Dec 22, 2003", @@ -97878,8 +145086,13 @@ "und": "Oakland Raiders", "sF": "41", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "2003 Regular Season - Week 16" }, { "date": "Dec 27, 2003", @@ -97888,8 +145101,13 @@ "und": "Buffalo Bills", "sF": "31", "sU": "0", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 34.5, + "pScore": { + "sU": 12.5, + "sF": 22.0 + }, + "week": "2003 Regular Season - Week 17" }, { "date": "Dec 27, 2003", @@ -97898,8 +145116,13 @@ "und": "Seattle Seahawks", "sF": "17", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "2003 Regular Season - Week 17" }, { "date": "Dec 27, 2003", @@ -97909,7 +145132,12 @@ "sF": "31", "sU": "7", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "2003 Regular Season - Week 17" }, { "date": "Dec 28, 2003", @@ -97918,8 +145146,13 @@ "und": "Chicago Bears", "sF": "31", "sU": "3", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.5, + "pScore": { + "sU": 18.0, + "sF": 25.5 + }, + "week": "2003 Regular Season - Week 17" }, { "date": "Dec 28, 2003", @@ -97928,8 +145161,13 @@ "und": "Cleveland Browns", "sF": "14", "sU": "22", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 42.0, + "pScore": { + "sU": 16.75, + "sF": 25.25 + }, + "week": "2003 Regular Season - Week 17" }, { "date": "Dec 28, 2003", @@ -97938,8 +145176,13 @@ "und": "Jacksonville Jaguars", "sF": "21", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2003 Regular Season - Week 17" }, { "date": "Dec 28, 2003", @@ -97949,7 +145192,12 @@ "sF": "20", "sU": "30", "spread": "12", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 16.5, + "sF": 28.5 + }, + "week": "2003 Regular Season - Week 17" }, { "date": "Dec 28, 2003", @@ -97959,7 +145207,12 @@ "sF": "20", "sU": "17", "spread": "9", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 18.75, + "sF": 27.75 + }, + "week": "2003 Regular Season - Week 17" }, { "date": "Dec 28, 2003", @@ -97968,8 +145221,13 @@ "und": "New York Jets", "sF": "23", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.5, + "pScore": { + "sU": 17.0, + "sF": 20.5 + }, + "week": "2003 Regular Season - Week 17" }, { "date": "Dec 28, 2003", @@ -97979,7 +145237,12 @@ "sF": "7", "sU": "13", "spread": "1", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.5, + "sF": 19.5 + }, + "week": "2003 Regular Season - Week 17" }, { "date": "Dec 28, 2003", @@ -97989,7 +145252,12 @@ "sF": "33", "sU": "13", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "2003 Regular Season - Week 17" }, { "date": "Dec 28, 2003", @@ -97998,8 +145266,13 @@ "und": "Arizona Cardinals", "sF": "17", "sU": "18", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.5, + "pScore": { + "sU": 19.0, + "sF": 26.5 + }, + "week": "2003 Regular Season - Week 17" }, { "date": "Dec 28, 2003", @@ -98008,8 +145281,13 @@ "und": "New York Giants", "sF": "37", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 34.5, + "pScore": { + "sU": 15.0, + "sF": 19.5 + }, + "week": "2003 Regular Season - Week 17" }, { "date": "Dec 28, 2003", @@ -98019,7 +145297,12 @@ "sF": "31", "sU": "3", "spread": "10", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 15.75, + "sF": 25.75 + }, + "week": "2003 Regular Season - Week 17" }, { "date": "Dec 28, 2003", @@ -98029,7 +145312,12 @@ "sF": "21", "sU": "14", "spread": "6", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.0, + "sF": 26.0 + }, + "week": "2003 Regular Season - Week 17" }, { "date": "Dec 28, 2003", @@ -98039,7 +145327,12 @@ "sF": "13", "sU": "10", "spread": "6", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.75, + "sF": 21.75 + }, + "week": "2003 Regular Season - Week 17" }, { "date": "Jan 3, 2004", @@ -98049,7 +145342,12 @@ "sF": "20", "sU": "17", "spread": "1", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.5, + "sF": 19.5 + }, + "week": "2003 Playoffs" }, { "date": "Jan 3, 2004", @@ -98059,7 +145357,12 @@ "sF": "29", "sU": "10", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "2003 Playoffs" }, { "date": "Jan 4, 2004", @@ -98068,8 +145371,13 @@ "und": "Seattle Seahawks (5)", "sF": "33", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.5, + "pScore": { + "sU": 18.0, + "sF": 25.5 + }, + "week": "2003 Playoffs" }, { "date": "Jan 4, 2004", @@ -98079,7 +145387,12 @@ "sF": "41", "sU": "10", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2003 Playoffs" }, { "date": "Jan 10, 2004", @@ -98089,7 +145402,12 @@ "sF": "23", "sU": "29", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "2003 Playoffs" }, { "date": "Jan 10, 2004", @@ -98099,7 +145417,12 @@ "sF": "17", "sU": "14", "spread": "6", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 14.0, + "sF": 20.0 + }, + "week": "2003 Playoffs" }, { "date": "Jan 11, 2004", @@ -98109,7 +145432,12 @@ "sF": "31", "sU": "38", "spread": "3", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 25.0, + "sF": 28.0 + }, + "week": "2003 Playoffs" }, { "date": "Jan 11, 2004", @@ -98119,7 +145447,12 @@ "sF": "20", "sU": "17", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "2003 Playoffs" }, { "date": "Jan 18, 2004", @@ -98128,8 +145461,13 @@ "und": "Indianapolis Colts (3)", "sF": "24", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "2003 Playoffs" }, { "date": "Jan 18, 2004", @@ -98139,7 +145477,12 @@ "sF": "3", "sU": "14", "spread": "4", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.25, + "sF": 20.25 + }, + "week": "2003 Playoffs" }, { "date": "Feb 1, 2004", @@ -98149,7 +145492,12 @@ "sF": "32", "sU": "29", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "2003 Playoffs" }, { "date": "Sep 9, 2004", @@ -98159,7 +145507,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2004 Regular Season - Week 1" }, { "date": "Sep 11, 2004", @@ -98169,7 +145522,12 @@ "sF": "17", "sU": "7", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2004 Regular Season - Week 1" }, { "date": "Sep 12, 2004", @@ -98179,7 +145537,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "2004 Regular Season - Week 1" }, { "date": "Sep 12, 2004", @@ -98188,8 +145551,13 @@ "und": "Oakland Raiders", "sF": "24", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2004 Regular Season - Week 1" }, { "date": "Sep 12, 2004", @@ -98199,7 +145567,12 @@ "sF": "17", "sU": "10", "spread": "11", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 17.5, + "sF": 28.5 + }, + "week": "2004 Regular Season - Week 1" }, { "date": "Sep 12, 2004", @@ -98208,8 +145581,13 @@ "und": "Detroit Lions", "sF": "16", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.5, + "pScore": { + "sU": 18.5, + "sF": 20.0 + }, + "week": "2004 Regular Season - Week 1" }, { "date": "Sep 12, 2004", @@ -98218,8 +145596,13 @@ "und": "San Diego Chargers", "sF": "20", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.0, + "pScore": { + "sU": 19.75, + "sF": 24.25 + }, + "week": "2004 Regular Season - Week 1" }, { "date": "Sep 12, 2004", @@ -98228,8 +145611,13 @@ "und": "New Orleans Saints", "sF": "21", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "2004 Regular Season - Week 1" }, { "date": "Sep 12, 2004", @@ -98238,8 +145626,13 @@ "und": "Tampa Bay Buccaneers", "sF": "16", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.5, + "pScore": { + "sU": 18.0, + "sF": 20.5 + }, + "week": "2004 Regular Season - Week 1" }, { "date": "Sep 12, 2004", @@ -98248,8 +145641,13 @@ "und": "Cincinnati Bengals", "sF": "31", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.0, + "pScore": { + "sU": 18.25, + "sF": 23.75 + }, + "week": "2004 Regular Season - Week 1" }, { "date": "Sep 12, 2004", @@ -98258,8 +145656,13 @@ "und": "Cleveland Browns", "sF": "3", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2004 Regular Season - Week 1" }, { "date": "Sep 12, 2004", @@ -98268,8 +145671,13 @@ "und": "Dallas Cowboys", "sF": "35", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2004 Regular Season - Week 1" }, { "date": "Sep 12, 2004", @@ -98279,11 +145687,12 @@ "sF": "21", "sU": "19", "spread": "3", - "ou": "49", + "ou": 44.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 20.75, + "sF": 23.75 + }, + "week": "2004 Regular Season - Week 1" }, { "date": "Sep 12, 2004", @@ -98292,8 +145701,13 @@ "und": "New York Giants", "sF": "31", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 41.5, + "pScore": { + "sU": 16.0, + "sF": 25.5 + }, + "week": "2004 Regular Season - Week 1" }, { "date": "Sep 12, 2004", @@ -98303,7 +145717,12 @@ "sF": "34", "sU": "24", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2004 Regular Season - Week 1" }, { "date": "Sep 13, 2004", @@ -98313,7 +145732,12 @@ "sF": "14", "sU": "24", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2004 Regular Season - Week 1" }, { "date": "Sep 19, 2004", @@ -98323,7 +145747,12 @@ "sF": "17", "sU": "28", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "2004 Regular Season - Week 2" }, { "date": "Sep 19, 2004", @@ -98333,7 +145762,12 @@ "sF": "30", "sU": "13", "spread": "4", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 15.75, + "sF": 19.75 + }, + "week": "2004 Regular Season - Week 2" }, { "date": "Sep 19, 2004", @@ -98343,7 +145777,12 @@ "sF": "10", "sU": "21", "spread": "9", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.0, + "sF": 25.0 + }, + "week": "2004 Regular Season - Week 2" }, { "date": "Sep 19, 2004", @@ -98353,7 +145792,12 @@ "sF": "6", "sU": "7", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2004 Regular Season - Week 2" }, { "date": "Sep 19, 2004", @@ -98362,8 +145806,13 @@ "und": "Tennessee Titans", "sF": "31", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.0, + "pScore": { + "sU": 22.75, + "sF": 24.25 + }, + "week": "2004 Regular Season - Week 2" }, { "date": "Sep 19, 2004", @@ -98373,7 +145822,12 @@ "sF": "34", "sU": "17", "spread": "2", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.0, + "sF": 24.0 + }, + "week": "2004 Regular Season - Week 2" }, { "date": "Sep 19, 2004", @@ -98382,12 +145836,13 @@ "und": "San Francisco 49ers", "sF": "30", "sU": "27", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": 42.0, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 17.25, + "sF": 24.75 + }, + "week": "2004 Regular Season - Week 2" }, { "date": "Sep 19, 2004", @@ -98397,7 +145852,12 @@ "sF": "28", "sU": "16", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2004 Regular Season - Week 2" }, { "date": "Sep 19, 2004", @@ -98407,7 +145867,12 @@ "sF": "14", "sU": "20", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2004 Regular Season - Week 2" }, { "date": "Sep 19, 2004", @@ -98417,7 +145882,12 @@ "sF": "10", "sU": "6", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2004 Regular Season - Week 2" }, { "date": "Sep 19, 2004", @@ -98426,8 +145896,13 @@ "und": "Cleveland Browns", "sF": "19", "sU": "12", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.0, + "pScore": { + "sU": 16.75, + "sF": 21.25 + }, + "week": "2004 Regular Season - Week 2" }, { "date": "Sep 19, 2004", @@ -98436,8 +145911,13 @@ "und": "Buffalo Bills", "sF": "13", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.5, + "pScore": { + "sU": 17.0, + "sF": 20.5 + }, + "week": "2004 Regular Season - Week 2" }, { "date": "Sep 19, 2004", @@ -98447,7 +145927,12 @@ "sF": "34", "sU": "28", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2004 Regular Season - Week 2" }, { "date": "Sep 19, 2004", @@ -98457,7 +145942,12 @@ "sF": "23", "sU": "12", "spread": "8", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 16.75, + "sF": 24.75 + }, + "week": "2004 Regular Season - Week 2" }, { "date": "Sep 19, 2004", @@ -98466,8 +145956,13 @@ "und": "Miami Dolphins", "sF": "16", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "2004 Regular Season - Week 2" }, { "date": "Sep 20, 2004", @@ -98477,7 +145972,12 @@ "sF": "27", "sU": "16", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2004 Regular Season - Week 2" }, { "date": "Sep 26, 2004", @@ -98486,8 +145986,13 @@ "und": "Houston Texans", "sF": "21", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2004 Regular Season - Week 3" }, { "date": "Sep 26, 2004", @@ -98497,7 +146002,12 @@ "sF": "27", "sU": "22", "spread": "12", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 16.5, + "sF": 28.5 + }, + "week": "2004 Regular Season - Week 3" }, { "date": "Sep 26, 2004", @@ -98506,8 +146016,13 @@ "und": "Cincinnati Bengals", "sF": "23", "sU": "9", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 35.0, + "pScore": { + "sU": 16.75, + "sF": 18.25 + }, + "week": "2004 Regular Season - Week 3" }, { "date": "Sep 26, 2004", @@ -98517,7 +146032,12 @@ "sF": "27", "sU": "10", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2004 Regular Season - Week 3" }, { "date": "Sep 26, 2004", @@ -98527,7 +146047,12 @@ "sF": "25", "sU": "28", "spread": "6", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.5, + "sF": 27.5 + }, + "week": "2004 Regular Season - Week 3" }, { "date": "Sep 26, 2004", @@ -98537,7 +146062,12 @@ "sF": "12", "sU": "15", "spread": "6", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 14.25, + "sF": 20.25 + }, + "week": "2004 Regular Season - Week 3" }, { "date": "Sep 26, 2004", @@ -98546,8 +146076,13 @@ "und": "Detroit Lions", "sF": "30", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.0, + "pScore": { + "sU": 19.75, + "sF": 24.25 + }, + "week": "2004 Regular Season - Week 3" }, { "date": "Sep 26, 2004", @@ -98557,7 +146092,12 @@ "sF": "6", "sU": "3", "spread": "11", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 16.5, + "sF": 27.5 + }, + "week": "2004 Regular Season - Week 3" }, { "date": "Sep 26, 2004", @@ -98566,8 +146106,13 @@ "und": "San Diego Chargers", "sF": "23", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 46.0, + "pScore": { + "sU": 18.25, + "sF": 27.75 + }, + "week": "2004 Regular Season - Week 3" }, { "date": "Sep 26, 2004", @@ -98577,7 +146122,12 @@ "sF": "45", "sU": "31", "spread": "6", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 22.0, + "sF": 28.0 + }, + "week": "2004 Regular Season - Week 3" }, { "date": "Sep 26, 2004", @@ -98587,11 +146137,12 @@ "sF": "34", "sU": "0", "spread": "10", - "ou": "49", + "ou": 41.5, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sU": 15.75, + "sF": 25.75 + }, + "week": "2004 Regular Season - Week 3" }, { "date": "Sep 26, 2004", @@ -98601,7 +146152,12 @@ "sF": "30", "sU": "20", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "2004 Regular Season - Week 3" }, { "date": "Sep 26, 2004", @@ -98610,8 +146166,13 @@ "und": "Pittsburgh Steelers", "sF": "3", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 31.0, + "pScore": { + "sU": 14.25, + "sF": 16.75 + }, + "week": "2004 Regular Season - Week 3" }, { "date": "Sep 27, 2004", @@ -98620,8 +146181,13 @@ "und": "Dallas Cowboys", "sF": "18", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 35.5, + "pScore": { + "sU": 17.0, + "sF": 18.5 + }, + "week": "2004 Regular Season - Week 3" }, { "date": "Oct 3, 2004", @@ -98631,7 +146197,12 @@ "sF": "28", "sU": "17", "spread": "4", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 17.75, + "sF": 21.75 + }, + "week": "2004 Regular Season - Week 4" }, { "date": "Oct 3, 2004", @@ -98640,8 +146211,13 @@ "und": "Buffalo Bills", "sF": "31", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 35.0, + "pScore": { + "sU": 14.75, + "sF": 20.25 + }, + "week": "2004 Regular Season - Week 4" }, { "date": "Oct 3, 2004", @@ -98650,8 +146226,13 @@ "und": "Cleveland Browns", "sF": "13", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "2004 Regular Season - Week 4" }, { "date": "Oct 3, 2004", @@ -98661,7 +146242,12 @@ "sF": "7", "sU": "14", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2004 Regular Season - Week 4" }, { "date": "Oct 3, 2004", @@ -98671,7 +146257,12 @@ "sF": "17", "sU": "30", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "2004 Regular Season - Week 4" }, { "date": "Oct 3, 2004", @@ -98681,7 +146272,12 @@ "sF": "24", "sU": "17", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "2004 Regular Season - Week 4" }, { "date": "Oct 3, 2004", @@ -98690,8 +146286,13 @@ "und": "Chicago Bears", "sF": "19", "sU": "9", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 40.5, + "pScore": { + "sU": 16.0, + "sF": 24.5 + }, + "week": "2004 Regular Season - Week 4" }, { "date": "Oct 3, 2004", @@ -98700,8 +146301,13 @@ "und": "Arizona Cardinals", "sF": "10", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2004 Regular Season - Week 4" }, { "date": "Oct 3, 2004", @@ -98710,8 +146316,13 @@ "und": "Atlanta Falcons", "sF": "10", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "2004 Regular Season - Week 4" }, { "date": "Oct 3, 2004", @@ -98720,8 +146331,13 @@ "und": "Miami Dolphins", "sF": "17", "sU": "9", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 36.0, + "pScore": { + "sU": 15.25, + "sF": 20.75 + }, + "week": "2004 Regular Season - Week 4" }, { "date": "Oct 3, 2004", @@ -98731,7 +146347,12 @@ "sF": "17", "sU": "38", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2004 Regular Season - Week 4" }, { "date": "Oct 3, 2004", @@ -98741,7 +146362,12 @@ "sF": "16", "sU": "13", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "2004 Regular Season - Week 4" }, { "date": "Oct 3, 2004", @@ -98751,11 +146377,12 @@ "sF": "24", "sU": "14", "spread": "4", - "ou": "49", + "ou": 44.0, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sU": 20.0, + "sF": 24.0 + }, + "week": "2004 Regular Season - Week 4" }, { "date": "Oct 4, 2004", @@ -98765,7 +146392,12 @@ "sF": "24", "sU": "27", "spread": "6", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.75, + "sF": 23.75 + }, + "week": "2004 Regular Season - Week 4" }, { "date": "Oct 10, 2004", @@ -98774,8 +146406,13 @@ "und": "Oakland Raiders", "sF": "35", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 52.0, + "pScore": { + "sU": 21.75, + "sF": 30.25 + }, + "week": "2004 Regular Season - Week 5" }, { "date": "Oct 10, 2004", @@ -98784,8 +146421,13 @@ "und": "Houston Texans", "sF": "34", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 50.0, + "pScore": { + "sU": 23.25, + "sF": 26.75 + }, + "week": "2004 Regular Season - Week 5" }, { "date": "Oct 10, 2004", @@ -98795,7 +146437,12 @@ "sF": "24", "sU": "10", "spread": "11", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 11.5, + "sF": 22.5 + }, + "week": "2004 Regular Season - Week 5" }, { "date": "Oct 10, 2004", @@ -98804,8 +146451,13 @@ "und": "Cleveland Browns", "sF": "34", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 36.0, + "pScore": { + "sU": 15.75, + "sF": 20.25 + }, + "week": "2004 Regular Season - Week 5" }, { "date": "Oct 10, 2004", @@ -98814,8 +146466,13 @@ "und": "New York Giants", "sF": "10", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "2004 Regular Season - Week 5" }, { "date": "Oct 10, 2004", @@ -98825,7 +146482,12 @@ "sF": "17", "sU": "20", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "2004 Regular Season - Week 5" }, { "date": "Oct 10, 2004", @@ -98834,8 +146496,13 @@ "und": "Detroit Lions", "sF": "10", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "2004 Regular Season - Week 5" }, { "date": "Oct 10, 2004", @@ -98844,8 +146511,13 @@ "und": "San Diego Chargers", "sF": "21", "sU": "34", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2004 Regular Season - Week 5" }, { "date": "Oct 10, 2004", @@ -98854,8 +146526,13 @@ "und": "Buffalo Bills", "sF": "16", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "2004 Regular Season - Week 5" }, { "date": "Oct 10, 2004", @@ -98865,7 +146542,12 @@ "sF": "20", "sU": "17", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "2004 Regular Season - Week 5" }, { "date": "Oct 10, 2004", @@ -98875,7 +146557,12 @@ "sF": "31", "sU": "28", "spread": "1", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.75, + "sF": 18.75 + }, + "week": "2004 Regular Season - Week 5" }, { "date": "Oct 10, 2004", @@ -98885,7 +146572,12 @@ "sF": "27", "sU": "33", "spread": "8", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.0, + "sF": 26.0 + }, + "week": "2004 Regular Season - Week 5" }, { "date": "Oct 11, 2004", @@ -98895,7 +146587,12 @@ "sF": "27", "sU": "48", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2004 Regular Season - Week 5" }, { "date": "Oct 17, 2004", @@ -98904,8 +146601,13 @@ "und": "Miami Dolphins", "sF": "20", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 30.0, + "pScore": { + "sU": 12.75, + "sF": 17.25 + }, + "week": "2004 Regular Season - Week 6" }, { "date": "Oct 17, 2004", @@ -98914,8 +146616,13 @@ "und": "San Diego Chargers", "sF": "21", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "2004 Regular Season - Week 6" }, { "date": "Oct 17, 2004", @@ -98924,8 +146631,13 @@ "und": "Jacksonville Jaguars", "sF": "16", "sU": "22", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2004 Regular Season - Week 6" }, { "date": "Oct 17, 2004", @@ -98934,8 +146646,13 @@ "und": "Seattle Seahawks", "sF": "30", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "2004 Regular Season - Week 6" }, { "date": "Oct 17, 2004", @@ -98944,8 +146661,13 @@ "und": "Houston Texans", "sF": "10", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.0, + "pScore": { + "sU": 20.25, + "sF": 25.75 + }, + "week": "2004 Regular Season - Week 6" }, { "date": "Oct 17, 2004", @@ -98954,8 +146676,13 @@ "und": "Washington Redskins", "sF": "10", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 33.5, + "pScore": { + "sU": 16.0, + "sF": 17.5 + }, + "week": "2004 Regular Season - Week 6" }, { "date": "Oct 17, 2004", @@ -98965,7 +146692,12 @@ "sF": "34", "sU": "17", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2004 Regular Season - Week 6" }, { "date": "Oct 17, 2004", @@ -98975,7 +146707,12 @@ "sF": "10", "sU": "38", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2004 Regular Season - Week 6" }, { "date": "Oct 17, 2004", @@ -98984,12 +146721,13 @@ "und": "San Francisco 49ers", "sF": "22", "sU": "14", - "spread": "9", - "ou": "49", + "spread": "9.5", + "ou": 43.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 16.75, + "sF": 26.25 + }, + "week": "2004 Regular Season - Week 6" }, { "date": "Oct 17, 2004", @@ -98999,7 +146737,12 @@ "sF": "30", "sU": "8", "spread": "10", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.0, + "sF": 26.0 + }, + "week": "2004 Regular Season - Week 6" }, { "date": "Oct 17, 2004", @@ -99009,7 +146752,12 @@ "sF": "20", "sU": "24", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2004 Regular Season - Week 6" }, { "date": "Oct 17, 2004", @@ -99018,8 +146766,13 @@ "und": "Oakland Raiders", "sF": "31", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "2004 Regular Season - Week 6" }, { "date": "Oct 17, 2004", @@ -99028,8 +146781,13 @@ "und": "New Orleans Saints", "sF": "38", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 53.0, + "pScore": { + "sU": 24.75, + "sF": 28.25 + }, + "week": "2004 Regular Season - Week 6" }, { "date": "Oct 18, 2004", @@ -99038,8 +146796,13 @@ "und": "Tampa Bay Buccaneers", "sF": "28", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.5, + "pScore": { + "sU": 18.0, + "sF": 24.5 + }, + "week": "2004 Regular Season - Week 6" }, { "date": "Oct 24, 2004", @@ -99049,7 +146812,12 @@ "sF": "24", "sU": "27", "spread": "9", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.0, + "sF": 28.0 + }, + "week": "2004 Regular Season - Week 7" }, { "date": "Oct 24, 2004", @@ -99058,8 +146826,13 @@ "und": "Atlanta Falcons", "sF": "56", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "2004 Regular Season - Week 7" }, { "date": "Oct 24, 2004", @@ -99069,7 +146842,12 @@ "sF": "20", "sU": "3", "spread": "6", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 23.5, + "sF": 29.5 + }, + "week": "2004 Regular Season - Week 7" }, { "date": "Oct 24, 2004", @@ -99078,8 +146856,13 @@ "und": "Buffalo Bills", "sF": "20", "sU": "6", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 31.0, + "pScore": { + "sU": 13.25, + "sF": 17.75 + }, + "week": "2004 Regular Season - Week 7" }, { "date": "Oct 24, 2004", @@ -99089,7 +146872,12 @@ "sF": "6", "sU": "17", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2004 Regular Season - Week 7" }, { "date": "Oct 24, 2004", @@ -99099,7 +146887,12 @@ "sF": "14", "sU": "31", "spread": "5", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.25, + "sF": 21.25 + }, + "week": "2004 Regular Season - Week 7" }, { "date": "Oct 24, 2004", @@ -99109,7 +146902,12 @@ "sF": "19", "sU": "7", "spread": "7", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 12.5, + "sF": 19.5 + }, + "week": "2004 Regular Season - Week 7" }, { "date": "Oct 24, 2004", @@ -99119,7 +146917,12 @@ "sF": "34", "sU": "31", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2004 Regular Season - Week 7" }, { "date": "Oct 24, 2004", @@ -99129,7 +146932,12 @@ "sF": "13", "sU": "28", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "2004 Regular Season - Week 7" }, { "date": "Oct 24, 2004", @@ -99139,7 +146947,12 @@ "sF": "13", "sU": "7", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "2004 Regular Season - Week 7" }, { "date": "Oct 24, 2004", @@ -99149,7 +146962,12 @@ "sF": "41", "sU": "20", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2004 Regular Season - Week 7" }, { "date": "Oct 24, 2004", @@ -99159,7 +146977,12 @@ "sF": "26", "sU": "31", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2004 Regular Season - Week 7" }, { "date": "Oct 24, 2004", @@ -99168,8 +146991,13 @@ "und": "Arizona Cardinals", "sF": "17", "sU": "25", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "2004 Regular Season - Week 7" }, { "date": "Oct 25, 2004", @@ -99179,7 +147007,12 @@ "sF": "10", "sU": "23", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "2004 Regular Season - Week 7" }, { "date": "Oct 31, 2004", @@ -99189,7 +147022,12 @@ "sF": "35", "sU": "45", "spread": "1", - "ou": -1 + "ou": 56.5, + "pScore": { + "sU": 27.75, + "sF": 28.75 + }, + "week": "2004 Regular Season - Week 8" }, { "date": "Oct 31, 2004", @@ -99198,8 +147036,13 @@ "und": "New York Giants", "sF": "13", "sU": "34", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.5, + "pScore": { + "sU": 21.0, + "sF": 27.5 + }, + "week": "2004 Regular Season - Week 8" }, { "date": "Oct 31, 2004", @@ -99208,8 +147051,13 @@ "und": "Arizona Cardinals", "sF": "38", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 33.5, + "pScore": { + "sU": 14.5, + "sF": 19.0 + }, + "week": "2004 Regular Season - Week 8" }, { "date": "Oct 31, 2004", @@ -99219,7 +147067,12 @@ "sF": "20", "sU": "6", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "2004 Regular Season - Week 8" }, { "date": "Oct 31, 2004", @@ -99229,7 +147082,12 @@ "sF": "31", "sU": "21", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2004 Regular Season - Week 8" }, { "date": "Oct 31, 2004", @@ -99238,8 +147096,13 @@ "und": "Baltimore Ravens", "sF": "15", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.0, + "pScore": { + "sU": 14.75, + "sF": 22.25 + }, + "week": "2004 Regular Season - Week 8" }, { "date": "Oct 31, 2004", @@ -99249,7 +147112,12 @@ "sF": "27", "sU": "20", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2004 Regular Season - Week 8" }, { "date": "Oct 31, 2004", @@ -99259,7 +147127,12 @@ "sF": "28", "sU": "14", "spread": "1", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.75, + "sF": 20.75 + }, + "week": "2004 Regular Season - Week 8" }, { "date": "Oct 31, 2004", @@ -99269,7 +147142,12 @@ "sF": "28", "sU": "41", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "2004 Regular Season - Week 8" }, { "date": "Oct 31, 2004", @@ -99279,7 +147157,12 @@ "sF": "23", "sU": "17", "spread": "8", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.5, + "sF": 23.5 + }, + "week": "2004 Regular Season - Week 8" }, { "date": "Oct 31, 2004", @@ -99289,7 +147172,12 @@ "sF": "20", "sU": "34", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2004 Regular Season - Week 8" }, { "date": "Oct 31, 2004", @@ -99299,7 +147187,12 @@ "sF": "42", "sU": "14", "spread": "6", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.0, + "sF": 26.0 + }, + "week": "2004 Regular Season - Week 8" }, { "date": "Oct 31, 2004", @@ -99309,11 +147202,12 @@ "sF": "23", "sU": "13", "spread": "2", - "ou": "49", + "ou": 35.5, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 16.75, + "sF": 18.75 + }, + "week": "2004 Regular Season - Week 8" }, { "date": "Nov 1, 2004", @@ -99323,7 +147217,12 @@ "sF": "41", "sU": "14", "spread": "7", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 14.25, + "sF": 21.25 + }, + "week": "2004 Regular Season - Week 8" }, { "date": "Nov 7, 2004", @@ -99333,7 +147232,12 @@ "sF": "31", "sU": "34", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2004 Regular Season - Week 9" }, { "date": "Nov 7, 2004", @@ -99343,7 +147247,12 @@ "sF": "17", "sU": "22", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "2004 Regular Season - Week 9" }, { "date": "Nov 7, 2004", @@ -99353,7 +147262,12 @@ "sF": "24", "sU": "27", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2004 Regular Season - Week 9" }, { "date": "Nov 7, 2004", @@ -99363,7 +147277,12 @@ "sF": "23", "sU": "24", "spread": "3", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 15.75, + "sF": 18.75 + }, + "week": "2004 Regular Season - Week 9" }, { "date": "Nov 7, 2004", @@ -99372,8 +147291,13 @@ "und": "Pittsburgh Steelers", "sF": "3", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.5, + "pScore": { + "sU": 21.5, + "sF": 23.0 + }, + "week": "2004 Regular Season - Week 9" }, { "date": "Nov 7, 2004", @@ -99382,8 +147306,13 @@ "und": "Washington Redskins", "sF": "10", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2004 Regular Season - Week 9" }, { "date": "Nov 7, 2004", @@ -99392,8 +147321,13 @@ "und": "New Orleans Saints", "sF": "43", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.5, + "pScore": { + "sU": 21.5, + "sF": 28.0 + }, + "week": "2004 Regular Season - Week 9" }, { "date": "Nov 7, 2004", @@ -99403,11 +147337,12 @@ "sF": "42", "sU": "27", "spread": "7", - "ou": "49", + "ou": 40.5, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 16.75, + "sF": 23.75 + }, + "week": "2004 Regular Season - Week 9" }, { "date": "Nov 7, 2004", @@ -99417,7 +147352,12 @@ "sF": "21", "sU": "28", "spread": "9", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 12.75, + "sF": 21.75 + }, + "week": "2004 Regular Season - Week 9" }, { "date": "Nov 7, 2004", @@ -99427,7 +147367,12 @@ "sF": "31", "sU": "13", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2004 Regular Season - Week 9" }, { "date": "Nov 7, 2004", @@ -99436,8 +147381,13 @@ "und": "New England Patriots", "sF": "22", "sU": "40", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.5, + "pScore": { + "sU": 23.5, + "sF": 26.0 + }, + "week": "2004 Regular Season - Week 9" }, { "date": "Nov 7, 2004", @@ -99447,7 +147397,12 @@ "sF": "27", "sU": "13", "spread": "6", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.5, + "sF": 20.5 + }, + "week": "2004 Regular Season - Week 9" }, { "date": "Nov 8, 2004", @@ -99457,7 +147412,12 @@ "sF": "31", "sU": "28", "spread": "7", - "ou": -1 + "ou": 58.0, + "pScore": { + "sU": 25.5, + "sF": 32.5 + }, + "week": "2004 Regular Season - Week 9" }, { "date": "Nov 14, 2004", @@ -99466,8 +147426,13 @@ "und": "Houston Texans", "sF": "49", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 54.5, + "pScore": { + "sU": 23.0, + "sF": 31.5 + }, + "week": "2004 Regular Season - Week 10" }, { "date": "Nov 14, 2004", @@ -99476,8 +147441,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 56.5, + "pScore": { + "sU": 26.5, + "sF": 30.0 + }, + "week": "2004 Regular Season - Week 10" }, { "date": "Nov 14, 2004", @@ -99487,7 +147457,12 @@ "sF": "20", "sU": "17", "spread": "1", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 15.5, + "sF": 16.5 + }, + "week": "2004 Regular Season - Week 10" }, { "date": "Nov 14, 2004", @@ -99496,8 +147471,13 @@ "und": "St Louis Rams", "sF": "12", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 50.5, + "pScore": { + "sU": 24.0, + "sF": 26.5 + }, + "week": "2004 Regular Season - Week 10" }, { "date": "Nov 14, 2004", @@ -99506,8 +147486,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2004 Regular Season - Week 10" }, { "date": "Nov 14, 2004", @@ -99516,8 +147501,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "19", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 34.0, + "pScore": { + "sU": 14.25, + "sF": 19.75 + }, + "week": "2004 Regular Season - Week 10" }, { "date": "Nov 14, 2004", @@ -99526,8 +147516,13 @@ "und": "Detroit Lions", "sF": "23", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 34.5, + "pScore": { + "sU": 15.5, + "sF": 19.0 + }, + "week": "2004 Regular Season - Week 10" }, { "date": "Nov 14, 2004", @@ -99536,8 +147531,13 @@ "und": "Tampa Bay Buccaneers", "sF": "24", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2004 Regular Season - Week 10" }, { "date": "Nov 14, 2004", @@ -99547,7 +147547,12 @@ "sF": "10", "sU": "17", "spread": "4", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.25, + "sF": 20.25 + }, + "week": "2004 Regular Season - Week 10" }, { "date": "Nov 14, 2004", @@ -99557,7 +147562,12 @@ "sF": "17", "sU": "14", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "2004 Regular Season - Week 10" }, { "date": "Nov 14, 2004", @@ -99566,8 +147576,13 @@ "und": "Minnesota Vikings", "sF": "34", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 50.0, + "pScore": { + "sU": 22.75, + "sF": 27.25 + }, + "week": "2004 Regular Season - Week 10" }, { "date": "Nov 14, 2004", @@ -99576,8 +147591,13 @@ "und": "Carolina Panthers", "sF": "27", "sU": "37", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.5, + "pScore": { + "sU": 20.0, + "sF": 21.5 + }, + "week": "2004 Regular Season - Week 10" }, { "date": "Nov 14, 2004", @@ -99587,7 +147607,12 @@ "sF": "29", "sU": "6", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "2004 Regular Season - Week 10" }, { "date": "Nov 15, 2004", @@ -99597,7 +147622,12 @@ "sF": "49", "sU": "21", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2004 Regular Season - Week 10" }, { "date": "Nov 21, 2004", @@ -99607,7 +147637,12 @@ "sF": "22", "sU": "19", "spread": "8", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.0, + "sF": 28.0 + }, + "week": "2004 Regular Season - Week 11" }, { "date": "Nov 21, 2004", @@ -99617,11 +147652,12 @@ "sF": "35", "sU": "3", "spread": "8", - "ou": "49", + "ou": 42.0, "pScore": { - "sU": 20.5, - "sF": 28.5 - } + "sU": 17.0, + "sF": 25.0 + }, + "week": "2004 Regular Season - Week 11" }, { "date": "Nov 21, 2004", @@ -99630,8 +147666,13 @@ "und": "Dallas Cowboys", "sF": "30", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.0, + "pScore": { + "sU": 14.25, + "sF": 21.75 + }, + "week": "2004 Regular Season - Week 11" }, { "date": "Nov 21, 2004", @@ -99641,7 +147682,12 @@ "sF": "37", "sU": "17", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "2004 Regular Season - Week 11" }, { "date": "Nov 21, 2004", @@ -99651,7 +147697,12 @@ "sF": "41", "sU": "10", "spread": "8", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.25, + "sF": 26.25 + }, + "week": "2004 Regular Season - Week 11" }, { "date": "Nov 21, 2004", @@ -99660,8 +147711,13 @@ "und": "Cleveland Browns", "sF": "10", "sU": "7", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "2004 Regular Season - Week 11" }, { "date": "Nov 21, 2004", @@ -99671,7 +147727,12 @@ "sF": "15", "sU": "18", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2004 Regular Season - Week 11" }, { "date": "Nov 21, 2004", @@ -99681,7 +147742,12 @@ "sF": "19", "sU": "14", "spread": "4", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.25, + "sF": 22.25 + }, + "week": "2004 Regular Season - Week 11" }, { "date": "Nov 21, 2004", @@ -99691,7 +147757,12 @@ "sF": "34", "sU": "13", "spread": "6", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 21.25, + "sF": 27.25 + }, + "week": "2004 Regular Season - Week 11" }, { "date": "Nov 21, 2004", @@ -99701,7 +147772,12 @@ "sF": "35", "sU": "10", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2004 Regular Season - Week 11" }, { "date": "Nov 21, 2004", @@ -99710,8 +147786,13 @@ "und": "Oakland Raiders", "sF": "23", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.5, + "pScore": { + "sU": 21.5, + "sF": 26.0 + }, + "week": "2004 Regular Season - Week 11" }, { "date": "Nov 21, 2004", @@ -99720,8 +147801,13 @@ "und": "Miami Dolphins", "sF": "24", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 37.0, + "pScore": { + "sU": 13.75, + "sF": 23.25 + }, + "week": "2004 Regular Season - Week 11" }, { "date": "Nov 21, 2004", @@ -99731,7 +147817,12 @@ "sF": "14", "sU": "10", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2004 Regular Season - Week 11" }, { "date": "Nov 21, 2004", @@ -99741,7 +147832,12 @@ "sF": "28", "sU": "6", "spread": "10", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 14.25, + "sF": 24.25 + }, + "week": "2004 Regular Season - Week 11" }, { "date": "Nov 21, 2004", @@ -99751,7 +147847,12 @@ "sF": "16", "sU": "13", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2004 Regular Season - Week 11" }, { "date": "Nov 22, 2004", @@ -99761,7 +147862,12 @@ "sF": "27", "sU": "19", "spread": "3", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 24.5, + "sF": 27.5 + }, + "week": "2004 Regular Season - Week 11" }, { "date": "Nov 25, 2004", @@ -99770,8 +147876,13 @@ "und": "Detroit Lions", "sF": "41", "sU": "9", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 54.0, + "pScore": { + "sU": 22.75, + "sF": 31.25 + }, + "week": "2004 Regular Season - Week 12" }, { "date": "Nov 25, 2004", @@ -99780,8 +147891,13 @@ "und": "Chicago Bears", "sF": "21", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "2004 Regular Season - Week 12" }, { "date": "Nov 28, 2004", @@ -99791,7 +147907,12 @@ "sF": "31", "sU": "34", "spread": "3", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 25.5, + "sF": 28.5 + }, + "week": "2004 Regular Season - Week 12" }, { "date": "Nov 28, 2004", @@ -99801,7 +147922,12 @@ "sF": "27", "sU": "16", "spread": "6", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.75, + "sF": 25.75 + }, + "week": "2004 Regular Season - Week 12" }, { "date": "Nov 28, 2004", @@ -99811,7 +147937,12 @@ "sF": "58", "sU": "48", "spread": "6", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.75, + "sF": 21.75 + }, + "week": "2004 Regular Season - Week 12" }, { "date": "Nov 28, 2004", @@ -99821,7 +147952,12 @@ "sF": "16", "sU": "7", "spread": "10", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 12.25, + "sF": 22.25 + }, + "week": "2004 Regular Season - Week 12" }, { "date": "Nov 28, 2004", @@ -99831,7 +147967,12 @@ "sF": "27", "sU": "6", "spread": "7", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 14.25, + "sF": 21.25 + }, + "week": "2004 Regular Season - Week 12" }, { "date": "Nov 28, 2004", @@ -99841,7 +147982,12 @@ "sF": "14", "sU": "21", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2004 Regular Season - Week 12" }, { "date": "Nov 28, 2004", @@ -99851,7 +147997,12 @@ "sF": "31", "sU": "21", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "2004 Regular Season - Week 12" }, { "date": "Nov 28, 2004", @@ -99861,7 +148012,12 @@ "sF": "24", "sU": "21", "spread": "9", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 19.25, + "sF": 28.25 + }, + "week": "2004 Regular Season - Week 12" }, { "date": "Nov 28, 2004", @@ -99871,7 +148027,12 @@ "sF": "13", "sU": "3", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2004 Regular Season - Week 12" }, { "date": "Nov 28, 2004", @@ -99881,7 +148042,12 @@ "sF": "24", "sU": "3", "spread": "7", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 13.75, + "sF": 20.75 + }, + "week": "2004 Regular Season - Week 12" }, { "date": "Nov 28, 2004", @@ -99891,7 +148057,12 @@ "sF": "9", "sU": "38", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "2004 Regular Season - Week 12" }, { "date": "Nov 28, 2004", @@ -99900,8 +148071,13 @@ "und": "Oakland Raiders", "sF": "24", "sU": "25", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 42.5, + "pScore": { + "sU": 15.5, + "sF": 27.0 + }, + "week": "2004 Regular Season - Week 12" }, { "date": "Nov 29, 2004", @@ -99911,7 +148087,12 @@ "sF": "45", "sU": "17", "spread": "7", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 22.0, + "sF": 29.0 + }, + "week": "2004 Regular Season - Week 12" }, { "date": "Dec 5, 2004", @@ -99920,8 +148101,13 @@ "und": "Cincinnati Bengals", "sF": "26", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "2004 Regular Season - Week 13" }, { "date": "Dec 5, 2004", @@ -99931,7 +148117,12 @@ "sF": "42", "sU": "15", "spread": "11", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.0, + "sF": 26.0 + }, + "week": "2004 Regular Season - Week 13" }, { "date": "Dec 5, 2004", @@ -99941,7 +148132,12 @@ "sF": "51", "sU": "24", "spread": "12", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 21.0, + "sF": 33.0 + }, + "week": "2004 Regular Season - Week 13" }, { "date": "Dec 5, 2004", @@ -99951,11 +148147,12 @@ "sF": "16", "sU": "6", "spread": "11", - "ou": "49", + "ou": 49.0, "pScore": { - "sU": 19, - "sF": 30 - } + "sU": 19.0, + "sF": 30.0 + }, + "week": "2004 Regular Season - Week 13" }, { "date": "Dec 5, 2004", @@ -99965,7 +148162,12 @@ "sF": "27", "sU": "0", "spread": "2", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.75, + "sF": 20.75 + }, + "week": "2004 Regular Season - Week 13" }, { "date": "Dec 5, 2004", @@ -99975,7 +148177,12 @@ "sF": "14", "sU": "24", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "2004 Regular Season - Week 13" }, { "date": "Dec 5, 2004", @@ -99985,7 +148192,12 @@ "sF": "26", "sU": "12", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "2004 Regular Season - Week 13" }, { "date": "Dec 5, 2004", @@ -99995,7 +148207,12 @@ "sF": "42", "sU": "32", "spread": "5", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 14.5, + "sF": 19.5 + }, + "week": "2004 Regular Season - Week 13" }, { "date": "Dec 5, 2004", @@ -100005,7 +148222,12 @@ "sF": "32", "sU": "21", "spread": "2", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.25, + "sF": 24.25 + }, + "week": "2004 Regular Season - Week 13" }, { "date": "Dec 5, 2004", @@ -100015,7 +148237,12 @@ "sF": "29", "sU": "7", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "2004 Regular Season - Week 13" }, { "date": "Dec 5, 2004", @@ -100025,7 +148252,12 @@ "sF": "34", "sU": "27", "spread": "1", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 25.5, + "sF": 26.5 + }, + "week": "2004 Regular Season - Week 13" }, { "date": "Dec 5, 2004", @@ -100035,7 +148267,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2004 Regular Season - Week 13" }, { "date": "Dec 5, 2004", @@ -100044,8 +148281,13 @@ "und": "Green Bay Packers", "sF": "47", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 48.5, + "pScore": { + "sU": 21.5, + "sF": 27.0 + }, + "week": "2004 Regular Season - Week 13" }, { "date": "Dec 5, 2004", @@ -100055,7 +148297,12 @@ "sF": "31", "sU": "7", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "2004 Regular Season - Week 13" }, { "date": "Dec 5, 2004", @@ -100065,7 +148312,12 @@ "sF": "17", "sU": "16", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "2004 Regular Season - Week 13" }, { "date": "Dec 6, 2004", @@ -100075,7 +148327,12 @@ "sF": "39", "sU": "43", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "2004 Regular Season - Week 13" }, { "date": "Dec 12, 2004", @@ -100084,8 +148341,13 @@ "und": "Seattle Seahawks", "sF": "23", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 54.0, + "pScore": { + "sU": 23.75, + "sF": 30.25 + }, + "week": "2004 Regular Season - Week 14" }, { "date": "Dec 12, 2004", @@ -100095,7 +148357,12 @@ "sF": "37", "sU": "14", "spread": "10", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 12.0, + "sF": 22.0 + }, + "week": "2004 Regular Season - Week 14" }, { "date": "Dec 12, 2004", @@ -100105,7 +148372,12 @@ "sF": "37", "sU": "7", "spread": "11", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 13.75, + "sF": 24.75 + }, + "week": "2004 Regular Season - Week 14" }, { "date": "Dec 12, 2004", @@ -100115,7 +148387,12 @@ "sF": "23", "sU": "14", "spread": "10", - "ou": -1 + "ou": 57.0, + "pScore": { + "sU": 23.5, + "sF": 33.5 + }, + "week": "2004 Regular Season - Week 14" }, { "date": "Dec 12, 2004", @@ -100124,8 +148401,13 @@ "und": "Cincinnati Bengals", "sF": "35", "sU": "28", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 47.0, + "pScore": { + "sU": 18.25, + "sF": 28.75 + }, + "week": "2004 Regular Season - Week 14" }, { "date": "Dec 12, 2004", @@ -100134,8 +148416,13 @@ "und": "Oakland Raiders", "sF": "35", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.0, + "pScore": { + "sU": 19.25, + "sF": 26.75 + }, + "week": "2004 Regular Season - Week 14" }, { "date": "Dec 12, 2004", @@ -100145,7 +148432,12 @@ "sF": "22", "sU": "3", "spread": "7", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 13.5, + "sF": 20.5 + }, + "week": "2004 Regular Season - Week 14" }, { "date": "Dec 12, 2004", @@ -100155,7 +148447,12 @@ "sF": "13", "sU": "27", "spread": "7", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.0, + "sF": 28.0 + }, + "week": "2004 Regular Season - Week 14" }, { "date": "Dec 12, 2004", @@ -100164,8 +148461,13 @@ "und": "Miami Dolphins", "sF": "20", "sU": "17", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 41.0, + "pScore": { + "sU": 14.75, + "sF": 26.25 + }, + "week": "2004 Regular Season - Week 14" }, { "date": "Dec 12, 2004", @@ -100174,8 +148476,13 @@ "und": "New York Jets", "sF": "17", "sU": "6", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 35.0, + "pScore": { + "sU": 15.25, + "sF": 19.75 + }, + "week": "2004 Regular Season - Week 14" }, { "date": "Dec 12, 2004", @@ -100185,11 +148492,12 @@ "sF": "28", "sU": "31", "spread": "7", - "ou": "49", + "ou": 36.0, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 14.5, + "sF": 21.5 + }, + "week": "2004 Regular Season - Week 14" }, { "date": "Dec 12, 2004", @@ -100199,7 +148507,12 @@ "sF": "20", "sU": "7", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "2004 Regular Season - Week 14" }, { "date": "Dec 12, 2004", @@ -100209,7 +148522,12 @@ "sF": "16", "sU": "13", "spread": "9", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.0, + "sF": 25.0 + }, + "week": "2004 Regular Season - Week 14" }, { "date": "Dec 12, 2004", @@ -100219,7 +148537,12 @@ "sF": "31", "sU": "24", "spread": "4", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.25, + "sF": 23.25 + }, + "week": "2004 Regular Season - Week 14" }, { "date": "Dec 12, 2004", @@ -100229,7 +148552,12 @@ "sF": "17", "sU": "14", "spread": "8", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.25, + "sF": 23.25 + }, + "week": "2004 Regular Season - Week 14" }, { "date": "Dec 13, 2004", @@ -100238,8 +148566,13 @@ "und": "Tennessee Titans", "sF": "49", "sU": "38", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 53.0, + "pScore": { + "sU": 25.25, + "sF": 27.75 + }, + "week": "2004 Regular Season - Week 14" }, { "date": "Dec 18, 2004", @@ -100249,7 +148582,12 @@ "sF": "33", "sU": "30", "spread": "10", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 13.25, + "sF": 23.25 + }, + "week": "2004 Regular Season - Week 15" }, { "date": "Dec 18, 2004", @@ -100258,12 +148596,13 @@ "und": "San Francisco 49ers", "sF": "26", "sU": "16", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": 36.5, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 15.0, + "sF": 21.5 + }, + "week": "2004 Regular Season - Week 15" }, { "date": "Dec 18, 2004", @@ -100272,8 +148611,13 @@ "und": "Carolina Panthers", "sF": "34", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2004 Regular Season - Week 15" }, { "date": "Dec 19, 2004", @@ -100283,7 +148627,12 @@ "sF": "17", "sU": "45", "spread": "3", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 24.75, + "sF": 27.75 + }, + "week": "2004 Regular Season - Week 15" }, { "date": "Dec 19, 2004", @@ -100293,7 +148642,12 @@ "sF": "5", "sU": "24", "spread": "1", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 16.5, + "sF": 17.5 + }, + "week": "2004 Regular Season - Week 15" }, { "date": "Dec 19, 2004", @@ -100302,8 +148656,13 @@ "und": "Seattle Seahawks", "sF": "37", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "2004 Regular Season - Week 15" }, { "date": "Dec 19, 2004", @@ -100312,8 +148671,13 @@ "und": "Dallas Cowboys", "sF": "12", "sU": "7", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 45.0, + "pScore": { + "sU": 16.75, + "sF": 28.25 + }, + "week": "2004 Regular Season - Week 15" }, { "date": "Dec 19, 2004", @@ -100323,7 +148687,12 @@ "sF": "33", "sU": "17", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2004 Regular Season - Week 15" }, { "date": "Dec 19, 2004", @@ -100333,7 +148702,12 @@ "sF": "21", "sU": "0", "spread": "8", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 13.5, + "sF": 21.5 + }, + "week": "2004 Regular Season - Week 15" }, { "date": "Dec 19, 2004", @@ -100343,7 +148717,12 @@ "sF": "28", "sU": "27", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2004 Regular Season - Week 15" }, { "date": "Dec 19, 2004", @@ -100353,7 +148732,12 @@ "sF": "7", "sU": "31", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2004 Regular Season - Week 15" }, { "date": "Dec 19, 2004", @@ -100362,8 +148746,13 @@ "und": "New Orleans Saints", "sF": "17", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.5, + "pScore": { + "sU": 18.0, + "sF": 25.5 + }, + "week": "2004 Regular Season - Week 15" }, { "date": "Dec 19, 2004", @@ -100372,8 +148761,13 @@ "und": "Jacksonville Jaguars", "sF": "25", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2004 Regular Season - Week 15" }, { "date": "Dec 19, 2004", @@ -100382,8 +148776,13 @@ "und": "Tennessee Titans", "sF": "40", "sU": "35", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "2004 Regular Season - Week 15" }, { "date": "Dec 19, 2004", @@ -100392,8 +148791,13 @@ "und": "Baltimore Ravens", "sF": "20", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.5, + "pScore": { + "sU": 20.5, + "sF": 28.0 + }, + "week": "2004 Regular Season - Week 15" }, { "date": "Dec 20, 2004", @@ -100403,7 +148807,12 @@ "sF": "28", "sU": "29", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "2004 Regular Season - Week 15" }, { "date": "Dec 24, 2004", @@ -100412,8 +148821,13 @@ "und": "Green Bay Packers", "sF": "31", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 56.0, + "pScore": { + "sU": 26.25, + "sF": 29.75 + }, + "week": "2004 Regular Season - Week 16" }, { "date": "Dec 25, 2004", @@ -100422,8 +148836,13 @@ "und": "Oakland Raiders", "sF": "31", "sU": "30", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 60.0, + "pScore": { + "sU": 25.25, + "sF": 34.75 + }, + "week": "2004 Regular Season - Week 16" }, { "date": "Dec 25, 2004", @@ -100433,7 +148852,12 @@ "sF": "37", "sU": "16", "spread": "4", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 23.25, + "sF": 27.25 + }, + "week": "2004 Regular Season - Week 16" }, { "date": "Dec 26, 2004", @@ -100443,7 +148867,12 @@ "sF": "34", "sU": "31", "spread": "7", - "ou": -1 + "ou": 56.0, + "pScore": { + "sU": 24.5, + "sF": 31.5 + }, + "week": "2004 Regular Season - Week 16" }, { "date": "Dec 26, 2004", @@ -100453,7 +148882,12 @@ "sF": "20", "sU": "7", "spread": "5", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 14.5, + "sF": 19.5 + }, + "week": "2004 Regular Season - Week 16" }, { "date": "Dec 26, 2004", @@ -100462,8 +148896,13 @@ "und": "New York Giants", "sF": "23", "sU": "22", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.5, + "pScore": { + "sU": 20.0, + "sF": 26.5 + }, + "week": "2004 Regular Season - Week 16" }, { "date": "Dec 26, 2004", @@ -100473,7 +148912,12 @@ "sF": "19", "sU": "13", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "2004 Regular Season - Week 16" }, { "date": "Dec 26, 2004", @@ -100482,8 +148926,13 @@ "und": "Houston Texans", "sF": "0", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.5, + "pScore": { + "sU": 15.0, + "sF": 21.5 + }, + "week": "2004 Regular Season - Week 16" }, { "date": "Dec 26, 2004", @@ -100492,8 +148941,13 @@ "und": "Atlanta Falcons", "sF": "26", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2004 Regular Season - Week 16" }, { "date": "Dec 26, 2004", @@ -100503,11 +148957,12 @@ "sF": "41", "sU": "7", "spread": "10", - "ou": "49", + "ou": 41.5, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sU": 15.75, + "sF": 25.75 + }, + "week": "2004 Regular Season - Week 16" }, { "date": "Dec 26, 2004", @@ -100516,8 +148971,13 @@ "und": "Dallas Cowboys", "sF": "10", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.0, + "pScore": { + "sU": 16.25, + "sF": 18.75 + }, + "week": "2004 Regular Season - Week 16" }, { "date": "Dec 26, 2004", @@ -100526,8 +148986,13 @@ "und": "Carolina Panthers", "sF": "20", "sU": "37", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.0, + "pScore": { + "sU": 18.75, + "sF": 20.25 + }, + "week": "2004 Regular Season - Week 16" }, { "date": "Dec 26, 2004", @@ -100537,7 +149002,12 @@ "sF": "24", "sU": "21", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2004 Regular Season - Week 16" }, { "date": "Dec 26, 2004", @@ -100547,7 +149017,12 @@ "sF": "10", "sU": "7", "spread": "9", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.75, + "sF": 24.75 + }, + "week": "2004 Regular Season - Week 16" }, { "date": "Dec 27, 2004", @@ -100557,7 +149032,12 @@ "sF": "20", "sU": "7", "spread": "4", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.25, + "sF": 23.25 + }, + "week": "2004 Regular Season - Week 16" }, { "date": "Jan 2, 2005", @@ -100567,7 +149047,12 @@ "sF": "30", "sU": "23", "spread": "11", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 11.0, + "sF": 22.0 + }, + "week": "2004 Regular Season - Week 17" }, { "date": "Jan 2, 2005", @@ -100576,8 +149061,13 @@ "und": "Pittsburgh Steelers", "sF": "24", "sU": "29", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 33.0, + "pScore": { + "sU": 11.75, + "sF": 21.25 + }, + "week": "2004 Regular Season - Week 17" }, { "date": "Jan 2, 2005", @@ -100587,7 +149077,12 @@ "sF": "18", "sU": "21", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "2004 Regular Season - Week 17" }, { "date": "Jan 2, 2005", @@ -100597,7 +149092,12 @@ "sF": "14", "sU": "22", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "2004 Regular Season - Week 17" }, { "date": "Jan 2, 2005", @@ -100607,11 +149107,12 @@ "sF": "21", "sU": "7", "spread": "13", - "ou": "49", + "ou": 37.0, "pScore": { - "sU": 18, - "sF": 31 - } + "sU": 12.0, + "sF": 25.0 + }, + "week": "2004 Regular Season - Week 17" }, { "date": "Jan 2, 2005", @@ -100620,8 +149121,13 @@ "und": "St Louis Rams", "sF": "29", "sU": "32", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2004 Regular Season - Week 17" }, { "date": "Jan 2, 2005", @@ -100631,7 +149137,12 @@ "sF": "14", "sU": "31", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "2004 Regular Season - Week 17" }, { "date": "Jan 2, 2005", @@ -100640,8 +149151,13 @@ "und": "Tennessee Titans", "sF": "19", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2004 Regular Season - Week 17" }, { "date": "Jan 2, 2005", @@ -100651,7 +149167,12 @@ "sF": "18", "sU": "21", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "2004 Regular Season - Week 17" }, { "date": "Jan 2, 2005", @@ -100661,7 +149182,12 @@ "sF": "38", "sU": "10", "spread": "4", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.75, + "sF": 20.75 + }, + "week": "2004 Regular Season - Week 17" }, { "date": "Jan 2, 2005", @@ -100671,7 +149197,12 @@ "sF": "12", "sU": "7", "spread": "4", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.25, + "sF": 21.25 + }, + "week": "2004 Regular Season - Week 17" }, { "date": "Jan 2, 2005", @@ -100680,8 +149211,13 @@ "und": "Atlanta Falcons", "sF": "28", "sU": "26", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.0, + "pScore": { + "sU": 17.75, + "sF": 23.25 + }, + "week": "2004 Regular Season - Week 17" }, { "date": "Jan 2, 2005", @@ -100691,7 +149227,12 @@ "sF": "33", "sU": "14", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "2004 Regular Season - Week 17" }, { "date": "Jan 2, 2005", @@ -100700,8 +149241,13 @@ "und": "Oakland Raiders", "sF": "13", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2004 Regular Season - Week 17" }, { "date": "Jan 2, 2005", @@ -100710,8 +149256,13 @@ "und": "San Diego Chargers", "sF": "17", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 51.5, + "pScore": { + "sU": 22.5, + "sF": 29.0 + }, + "week": "2004 Regular Season - Week 17" }, { "date": "Jan 2, 2005", @@ -100721,7 +149272,12 @@ "sF": "28", "sU": "24", "spread": "1", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.75, + "sF": 19.75 + }, + "week": "2004 Regular Season - Week 17" }, { "date": "Jan 8, 2005", @@ -100731,7 +149287,12 @@ "sF": "20", "sU": "27", "spread": "4", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 23.5, + "sF": 27.5 + }, + "week": "2004 Playoffs" }, { "date": "Jan 8, 2005", @@ -100740,8 +149301,13 @@ "und": "New York Jets (6)", "sF": "17", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.5, + "pScore": { + "sU": 18.0, + "sF": 24.5 + }, + "week": "2004 Playoffs" }, { "date": "Jan 9, 2005", @@ -100751,7 +149317,12 @@ "sF": "49", "sU": "24", "spread": "10", - "ou": -1 + "ou": 56.0, + "pScore": { + "sU": 23.0, + "sF": 33.0 + }, + "week": "2004 Playoffs" }, { "date": "Jan 9, 2005", @@ -100761,7 +149332,12 @@ "sF": "17", "sU": "31", "spread": "6", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 23.25, + "sF": 29.25 + }, + "week": "2004 Playoffs" }, { "date": "Jan 15, 2005", @@ -100771,7 +149347,12 @@ "sF": "20", "sU": "17", "spread": "9", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 13.25, + "sF": 22.25 + }, + "week": "2004 Playoffs" }, { "date": "Jan 15, 2005", @@ -100780,8 +149361,13 @@ "und": "St Louis Rams (5)", "sF": "47", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.0, + "pScore": { + "sU": 21.25, + "sF": 27.75 + }, + "week": "2004 Playoffs" }, { "date": "Jan 16, 2005", @@ -100791,7 +149377,12 @@ "sF": "27", "sU": "14", "spread": "8", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.5, + "sF": 27.5 + }, + "week": "2004 Playoffs" }, { "date": "Jan 16, 2005", @@ -100801,7 +149392,12 @@ "sF": "20", "sU": "3", "spread": "1", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 25.0, + "sF": 26.0 + }, + "week": "2004 Playoffs" }, { "date": "Jan 23, 2005", @@ -100811,7 +149407,12 @@ "sF": "27", "sU": "10", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "2004 Playoffs" }, { "date": "Jan 23, 2005", @@ -100821,7 +149422,12 @@ "sF": "41", "sU": "27", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2004 Playoffs" }, { "date": "Feb 6, 2005", @@ -100831,7 +149437,12 @@ "sF": "24", "sU": "21", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2004 Playoffs" }, { "date": "Sep 8, 2005", @@ -100840,8 +149451,13 @@ "und": "Oakland Raiders", "sF": "30", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 50.0, + "pScore": { + "sU": 21.25, + "sF": 28.75 + }, + "week": "2005 Regular Season - Week 1" }, { "date": "Sep 11, 2005", @@ -100851,7 +149467,12 @@ "sF": "27", "sU": "7", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2005 Regular Season - Week 1" }, { "date": "Sep 11, 2005", @@ -100860,8 +149481,13 @@ "und": "Houston Texans", "sF": "22", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "2005 Regular Season - Week 1" }, { "date": "Sep 11, 2005", @@ -100871,7 +149497,12 @@ "sF": "13", "sU": "24", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "2005 Regular Season - Week 1" }, { "date": "Sep 11, 2005", @@ -100881,7 +149512,12 @@ "sF": "34", "sU": "7", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "2005 Regular Season - Week 1" }, { "date": "Sep 11, 2005", @@ -100890,8 +149526,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.5, + "pScore": { + "sU": 19.5, + "sF": 26.0 + }, + "week": "2005 Regular Season - Week 1" }, { "date": "Sep 11, 2005", @@ -100901,7 +149542,12 @@ "sF": "9", "sU": "7", "spread": "6", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 13.5, + "sF": 19.5 + }, + "week": "2005 Regular Season - Week 1" }, { "date": "Sep 11, 2005", @@ -100910,8 +149556,13 @@ "und": "Cleveland Browns", "sF": "27", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "2005 Regular Season - Week 1" }, { "date": "Sep 11, 2005", @@ -100921,7 +149572,12 @@ "sF": "26", "sU": "14", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2005 Regular Season - Week 1" }, { "date": "Sep 11, 2005", @@ -100930,8 +149586,13 @@ "und": "Miami Dolphins", "sF": "10", "sU": "34", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.5, + "pScore": { + "sU": 17.0, + "sF": 21.5 + }, + "week": "2005 Regular Season - Week 1" }, { "date": "Sep 11, 2005", @@ -100941,7 +149602,12 @@ "sF": "24", "sU": "28", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "2005 Regular Season - Week 1" }, { "date": "Sep 11, 2005", @@ -100950,12 +149616,13 @@ "und": "San Francisco 49ers", "sF": "25", "sU": "28", - "spread": "4", - "ou": "49", + "spread": "4.5", + "ou": 46.0, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sU": 20.75, + "sF": 25.25 + }, + "week": "2005 Regular Season - Week 1" }, { "date": "Sep 11, 2005", @@ -100964,8 +149631,13 @@ "und": "Arizona Cardinals", "sF": "42", "sU": "19", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.5, + "pScore": { + "sU": 18.0, + "sF": 19.5 + }, + "week": "2005 Regular Season - Week 1" }, { "date": "Sep 11, 2005", @@ -100975,7 +149647,12 @@ "sF": "17", "sU": "3", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2005 Regular Season - Week 1" }, { "date": "Sep 11, 2005", @@ -100985,7 +149662,12 @@ "sF": "24", "sU": "7", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2005 Regular Season - Week 1" }, { "date": "Sep 12, 2005", @@ -100995,7 +149677,12 @@ "sF": "10", "sU": "14", "spread": "2", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.75, + "sF": 21.75 + }, + "week": "2005 Regular Season - Week 1" }, { "date": "Sep 18, 2005", @@ -101005,7 +149692,12 @@ "sF": "10", "sU": "3", "spread": "9", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.5, + "sF": 27.5 + }, + "week": "2005 Regular Season - Week 2" }, { "date": "Sep 18, 2005", @@ -101015,7 +149707,12 @@ "sF": "17", "sU": "27", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2005 Regular Season - Week 2" }, { "date": "Sep 18, 2005", @@ -101024,8 +149721,13 @@ "und": "Chicago Bears", "sF": "6", "sU": "38", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 34.0, + "pScore": { + "sU": 15.75, + "sF": 18.25 + }, + "week": "2005 Regular Season - Week 2" }, { "date": "Sep 18, 2005", @@ -101034,8 +149736,13 @@ "und": "Houston Texans", "sF": "27", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.5, + "pScore": { + "sU": 17.5, + "sF": 22.0 + }, + "week": "2005 Regular Season - Week 2" }, { "date": "Sep 18, 2005", @@ -101044,8 +149751,13 @@ "und": "Buffalo Bills", "sF": "19", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.0, + "pScore": { + "sU": 16.25, + "sF": 18.75 + }, + "week": "2005 Regular Season - Week 2" }, { "date": "Sep 18, 2005", @@ -101055,7 +149767,12 @@ "sF": "37", "sU": "8", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2005 Regular Season - Week 2" }, { "date": "Sep 18, 2005", @@ -101064,12 +149781,13 @@ "und": "San Francisco 49ers", "sF": "42", "sU": "3", - "spread": "11", - "ou": "49", + "spread": "11.5", + "ou": 43.0, "pScore": { - "sU": 19, - "sF": 30 - } + "sU": 15.75, + "sF": 27.25 + }, + "week": "2005 Regular Season - Week 2" }, { "date": "Sep 18, 2005", @@ -101078,8 +149796,13 @@ "und": "Tennessee Titans", "sF": "10", "sU": "25", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "2005 Regular Season - Week 2" }, { "date": "Sep 18, 2005", @@ -101089,7 +149812,12 @@ "sF": "17", "sU": "12", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2005 Regular Season - Week 2" }, { "date": "Sep 18, 2005", @@ -101099,7 +149827,12 @@ "sF": "21", "sU": "18", "spread": "1", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 20.25, + "sF": 21.25 + }, + "week": "2005 Regular Season - Week 2" }, { "date": "Sep 18, 2005", @@ -101109,7 +149842,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2005 Regular Season - Week 2" }, { "date": "Sep 18, 2005", @@ -101119,7 +149857,12 @@ "sF": "24", "sU": "26", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2005 Regular Season - Week 2" }, { "date": "Sep 18, 2005", @@ -101129,7 +149872,12 @@ "sF": "17", "sU": "7", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "2005 Regular Season - Week 2" }, { "date": "Sep 18, 2005", @@ -101138,8 +149886,13 @@ "und": "Oakland Raiders", "sF": "23", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 53.0, + "pScore": { + "sU": 25.75, + "sF": 27.25 + }, + "week": "2005 Regular Season - Week 2" }, { "date": "Sep 19, 2005", @@ -101149,7 +149902,12 @@ "sF": "27", "sU": "10", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2005 Regular Season - Week 2" }, { "date": "Sep 19, 2005", @@ -101159,7 +149917,12 @@ "sF": "13", "sU": "14", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "2005 Regular Season - Week 2" }, { "date": "Sep 25, 2005", @@ -101168,8 +149931,13 @@ "und": "Cleveland Browns", "sF": "13", "sU": "6", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 47.0, + "pScore": { + "sU": 16.75, + "sF": 30.25 + }, + "week": "2005 Regular Season - Week 3" }, { "date": "Sep 25, 2005", @@ -101178,8 +149946,13 @@ "und": "New Orleans Saints", "sF": "33", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "2005 Regular Season - Week 3" }, { "date": "Sep 25, 2005", @@ -101189,7 +149962,12 @@ "sF": "16", "sU": "24", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2005 Regular Season - Week 3" }, { "date": "Sep 25, 2005", @@ -101199,7 +149977,12 @@ "sF": "24", "sU": "7", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2005 Regular Season - Week 3" }, { "date": "Sep 25, 2005", @@ -101209,7 +149992,12 @@ "sF": "17", "sU": "16", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2005 Regular Season - Week 3" }, { "date": "Sep 25, 2005", @@ -101218,8 +150006,13 @@ "und": "Miami Dolphins", "sF": "24", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.5, + "pScore": { + "sU": 17.0, + "sF": 20.5 + }, + "week": "2005 Regular Season - Week 3" }, { "date": "Sep 25, 2005", @@ -101228,8 +150021,13 @@ "und": "Tennessee Titans", "sF": "31", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.0, + "pScore": { + "sU": 19.75, + "sF": 26.25 + }, + "week": "2005 Regular Season - Week 3" }, { "date": "Sep 25, 2005", @@ -101238,8 +150036,13 @@ "und": "Jacksonville Jaguars", "sF": "20", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 34.5, + "pScore": { + "sU": 16.0, + "sF": 18.5 + }, + "week": "2005 Regular Season - Week 3" }, { "date": "Sep 25, 2005", @@ -101248,8 +150051,13 @@ "und": "Oakland Raiders", "sF": "23", "sU": "20", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 47.0, + "pScore": { + "sU": 19.25, + "sF": 27.75 + }, + "week": "2005 Regular Season - Week 3" }, { "date": "Sep 25, 2005", @@ -101258,12 +150066,13 @@ "und": "San Francisco 49ers", "sF": "34", "sU": "31", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": 41.0, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 17.25, + "sF": 23.75 + }, + "week": "2005 Regular Season - Week 3" }, { "date": "Sep 25, 2005", @@ -101272,8 +150081,13 @@ "und": "Arizona Cardinals", "sF": "37", "sU": "12", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "2005 Regular Season - Week 3" }, { "date": "Sep 25, 2005", @@ -101283,7 +150097,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2005 Regular Season - Week 3" }, { "date": "Sep 25, 2005", @@ -101292,8 +150111,13 @@ "und": "New York Giants", "sF": "45", "sU": "23", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.5, + "pScore": { + "sU": 18.5, + "sF": 24.0 + }, + "week": "2005 Regular Season - Week 3" }, { "date": "Sep 26, 2005", @@ -101302,8 +150126,13 @@ "und": "Kansas City Chiefs", "sF": "30", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.0, + "pScore": { + "sU": 23.25, + "sF": 25.75 + }, + "week": "2005 Regular Season - Week 3" }, { "date": "Oct 2, 2005", @@ -101312,8 +150141,13 @@ "und": "Houston Texans", "sF": "16", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 41.5, + "pScore": { + "sU": 16.0, + "sF": 25.5 + }, + "week": "2005 Regular Season - Week 4" }, { "date": "Oct 2, 2005", @@ -101323,7 +150157,12 @@ "sF": "7", "sU": "20", "spread": "4", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.75, + "sF": 20.75 + }, + "week": "2005 Regular Season - Week 4" }, { "date": "Oct 2, 2005", @@ -101332,8 +150171,13 @@ "und": "San Diego Chargers", "sF": "17", "sU": "41", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.0, + "pScore": { + "sU": 20.75, + "sF": 26.25 + }, + "week": "2005 Regular Season - Week 4" }, { "date": "Oct 2, 2005", @@ -101342,8 +150186,13 @@ "und": "Detroit Lions", "sF": "17", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "2005 Regular Season - Week 4" }, { "date": "Oct 2, 2005", @@ -101353,7 +150202,12 @@ "sF": "31", "sU": "10", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "2005 Regular Season - Week 4" }, { "date": "Oct 2, 2005", @@ -101363,7 +150217,12 @@ "sF": "7", "sU": "19", "spread": "1", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.75, + "sF": 19.75 + }, + "week": "2005 Regular Season - Week 4" }, { "date": "Oct 2, 2005", @@ -101373,7 +150232,12 @@ "sF": "44", "sU": "24", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2005 Regular Season - Week 4" }, { "date": "Oct 2, 2005", @@ -101383,7 +150247,12 @@ "sF": "20", "sU": "17", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "2005 Regular Season - Week 4" }, { "date": "Oct 2, 2005", @@ -101392,8 +150261,13 @@ "und": "New York Jets", "sF": "13", "sU": "3", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 31.5, + "pScore": { + "sU": 12.0, + "sF": 19.5 + }, + "week": "2005 Regular Season - Week 4" }, { "date": "Oct 2, 2005", @@ -101402,8 +150276,13 @@ "und": "Philadelphia Eagles", "sF": "31", "sU": "37", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "2005 Regular Season - Week 4" }, { "date": "Oct 2, 2005", @@ -101413,7 +150292,12 @@ "sF": "19", "sU": "13", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2005 Regular Season - Week 4" }, { "date": "Oct 2, 2005", @@ -101423,7 +150307,12 @@ "sF": "30", "sU": "10", "spread": "6", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.25, + "sF": 25.25 + }, + "week": "2005 Regular Season - Week 4" }, { "date": "Oct 2, 2005", @@ -101433,11 +150322,12 @@ "sF": "31", "sU": "14", "spread": "3", - "ou": "49", + "ou": 42.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 19.5, + "sF": 22.5 + }, + "week": "2005 Regular Season - Week 4" }, { "date": "Oct 3, 2005", @@ -101447,7 +150337,12 @@ "sF": "32", "sU": "29", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2005 Regular Season - Week 4" }, { "date": "Oct 9, 2005", @@ -101456,8 +150351,13 @@ "und": "Miami Dolphins", "sF": "20", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 33.0, + "pScore": { + "sU": 15.25, + "sF": 17.75 + }, + "week": "2005 Regular Season - Week 5" }, { "date": "Oct 9, 2005", @@ -101467,7 +150367,12 @@ "sF": "35", "sU": "17", "spread": "2", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.5, + "sF": 17.5 + }, + "week": "2005 Regular Season - Week 5" }, { "date": "Oct 9, 2005", @@ -101477,7 +150382,12 @@ "sF": "52", "sU": "3", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2005 Regular Season - Week 5" }, { "date": "Oct 9, 2005", @@ -101486,8 +150396,13 @@ "und": "Tennessee Titans", "sF": "20", "sU": "34", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.5, + "pScore": { + "sU": 19.5, + "sF": 21.0 + }, + "week": "2005 Regular Season - Week 5" }, { "date": "Oct 9, 2005", @@ -101497,7 +150412,12 @@ "sF": "31", "sU": "37", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2005 Regular Season - Week 5" }, { "date": "Oct 9, 2005", @@ -101507,7 +150427,12 @@ "sF": "20", "sU": "10", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "2005 Regular Season - Week 5" }, { "date": "Oct 9, 2005", @@ -101516,8 +150441,13 @@ "und": "New York Jets", "sF": "12", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 32.0, + "pScore": { + "sU": 14.25, + "sF": 17.75 + }, + "week": "2005 Regular Season - Week 5" }, { "date": "Oct 9, 2005", @@ -101526,8 +150456,13 @@ "und": "New England Patriots", "sF": "28", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2005 Regular Season - Week 5" }, { "date": "Oct 9, 2005", @@ -101537,11 +150472,12 @@ "sF": "28", "sU": "3", "spread": "14", - "ou": "49", + "ou": 47.0, "pScore": { - "sU": 17.5, - "sF": 31.5 - } + "sU": 16.5, + "sF": 30.5 + }, + "week": "2005 Regular Season - Week 5" }, { "date": "Oct 9, 2005", @@ -101551,7 +150487,12 @@ "sF": "24", "sU": "20", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2005 Regular Season - Week 5" }, { "date": "Oct 9, 2005", @@ -101560,8 +150501,13 @@ "und": "Dallas Cowboys", "sF": "10", "sU": "33", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2005 Regular Season - Week 5" }, { "date": "Oct 9, 2005", @@ -101571,7 +150517,12 @@ "sF": "21", "sU": "19", "spread": "7", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 13.75, + "sF": 20.75 + }, + "week": "2005 Regular Season - Week 5" }, { "date": "Oct 9, 2005", @@ -101581,7 +150532,12 @@ "sF": "23", "sU": "20", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2005 Regular Season - Week 5" }, { "date": "Oct 10, 2005", @@ -101591,7 +150547,12 @@ "sF": "22", "sU": "24", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2005 Regular Season - Week 5" }, { "date": "Oct 16, 2005", @@ -101600,8 +150561,13 @@ "und": "Washington Redskins", "sF": "28", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.5, + "pScore": { + "sU": 18.0, + "sF": 24.5 + }, + "week": "2005 Regular Season - Week 6" }, { "date": "Oct 16, 2005", @@ -101611,7 +150577,12 @@ "sF": "16", "sU": "3", "spread": "4", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 14.75, + "sF": 18.75 + }, + "week": "2005 Regular Season - Week 6" }, { "date": "Oct 16, 2005", @@ -101620,8 +150591,13 @@ "und": "New York Giants", "sF": "16", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "2005 Regular Season - Week 6" }, { "date": "Oct 16, 2005", @@ -101631,7 +150607,12 @@ "sF": "17", "sU": "23", "spread": "5", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.5, + "sF": 20.5 + }, + "week": "2005 Regular Season - Week 6" }, { "date": "Oct 16, 2005", @@ -101640,8 +150621,13 @@ "und": "Miami Dolphins", "sF": "27", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 33.0, + "pScore": { + "sU": 14.25, + "sF": 18.75 + }, + "week": "2005 Regular Season - Week 6" }, { "date": "Oct 16, 2005", @@ -101651,7 +150637,12 @@ "sF": "28", "sU": "3", "spread": "2", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.75, + "sF": 19.75 + }, + "week": "2005 Regular Season - Week 6" }, { "date": "Oct 16, 2005", @@ -101661,7 +150652,12 @@ "sF": "34", "sU": "31", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "2005 Regular Season - Week 6" }, { "date": "Oct 16, 2005", @@ -101671,7 +150667,12 @@ "sF": "31", "sU": "23", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2005 Regular Season - Week 6" }, { "date": "Oct 16, 2005", @@ -101681,7 +150682,12 @@ "sF": "27", "sU": "17", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "2005 Regular Season - Week 6" }, { "date": "Oct 16, 2005", @@ -101691,7 +150697,12 @@ "sF": "28", "sU": "20", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2005 Regular Season - Week 6" }, { "date": "Oct 16, 2005", @@ -101700,8 +150711,13 @@ "und": "Houston Texans", "sF": "42", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 45.5, + "pScore": { + "sU": 18.5, + "sF": 27.0 + }, + "week": "2005 Regular Season - Week 6" }, { "date": "Oct 17, 2005", @@ -101711,7 +150727,12 @@ "sF": "45", "sU": "28", "spread": "13", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 18.75, + "sF": 31.75 + }, + "week": "2005 Regular Season - Week 6" }, { "date": "Oct 21, 2005", @@ -101721,7 +150742,12 @@ "sF": "30", "sU": "20", "spread": "1", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.75, + "sF": 21.75 + }, + "week": "2005 Regular Season - Week 7" }, { "date": "Oct 23, 2005", @@ -101731,7 +150757,12 @@ "sF": "23", "sU": "20", "spread": "2", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.0, + "sF": 24.0 + }, + "week": "2005 Regular Season - Week 7" }, { "date": "Oct 23, 2005", @@ -101741,7 +150772,12 @@ "sF": "13", "sU": "27", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2005 Regular Season - Week 7" }, { "date": "Oct 23, 2005", @@ -101751,7 +150787,12 @@ "sF": "20", "sU": "17", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "2005 Regular Season - Week 7" }, { "date": "Oct 23, 2005", @@ -101761,7 +150802,12 @@ "sF": "28", "sU": "17", "spread": "5", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 22.5, + "sF": 27.5 + }, + "week": "2005 Regular Season - Week 7" }, { "date": "Oct 23, 2005", @@ -101770,8 +150816,13 @@ "und": "Houston Texans", "sF": "38", "sU": "20", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 44.5, + "pScore": { + "sU": 15.0, + "sF": 29.5 + }, + "week": "2005 Regular Season - Week 7" }, { "date": "Oct 23, 2005", @@ -101780,12 +150831,13 @@ "und": "San Francisco 49ers", "sF": "52", "sU": "17", - "spread": "11", - "ou": "49", + "spread": "11.5", + "ou": 38.0, "pScore": { - "sU": 19, - "sF": 30 - } + "sU": 13.25, + "sF": 24.75 + }, + "week": "2005 Regular Season - Week 7" }, { "date": "Oct 23, 2005", @@ -101795,7 +150847,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2005 Regular Season - Week 7" }, { "date": "Oct 23, 2005", @@ -101805,7 +150862,12 @@ "sF": "13", "sU": "10", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2005 Regular Season - Week 7" }, { "date": "Oct 23, 2005", @@ -101815,7 +150877,12 @@ "sF": "20", "sU": "10", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2005 Regular Season - Week 7" }, { "date": "Oct 23, 2005", @@ -101825,7 +150892,12 @@ "sF": "10", "sU": "6", "spread": "1", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 15.5, + "sF": 16.5 + }, + "week": "2005 Regular Season - Week 7" }, { "date": "Oct 23, 2005", @@ -101835,7 +150907,12 @@ "sF": "24", "sU": "23", "spread": "2", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.25, + "sF": 24.25 + }, + "week": "2005 Regular Season - Week 7" }, { "date": "Oct 23, 2005", @@ -101845,7 +150922,12 @@ "sF": "38", "sU": "17", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2005 Regular Season - Week 7" }, { "date": "Oct 24, 2005", @@ -101854,8 +150936,13 @@ "und": "New York Jets", "sF": "27", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.0, + "pScore": { + "sU": 16.75, + "sF": 24.25 + }, + "week": "2005 Regular Season - Week 7" }, { "date": "Oct 30, 2005", @@ -101865,7 +150952,12 @@ "sF": "38", "sU": "13", "spread": "8", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.0, + "sF": 26.0 + }, + "week": "2005 Regular Season - Week 8" }, { "date": "Oct 30, 2005", @@ -101875,7 +150967,12 @@ "sF": "21", "sU": "14", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "2005 Regular Season - Week 8" }, { "date": "Oct 30, 2005", @@ -101885,7 +150982,12 @@ "sF": "34", "sU": "13", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "2005 Regular Season - Week 8" }, { "date": "Oct 30, 2005", @@ -101895,7 +150997,12 @@ "sF": "19", "sU": "16", "spread": "2", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.75, + "sF": 19.75 + }, + "week": "2005 Regular Season - Week 8" }, { "date": "Oct 30, 2005", @@ -101905,7 +151012,12 @@ "sF": "21", "sU": "24", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2005 Regular Season - Week 8" }, { "date": "Oct 30, 2005", @@ -101915,7 +151027,12 @@ "sF": "34", "sU": "25", "spread": "2", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.0, + "sF": 24.0 + }, + "week": "2005 Regular Season - Week 8" }, { "date": "Oct 30, 2005", @@ -101925,7 +151042,12 @@ "sF": "13", "sU": "19", "spread": "3", - "ou": -1 + "ou": 32.5, + "pScore": { + "sU": 14.75, + "sF": 17.75 + }, + "week": "2005 Regular Season - Week 8" }, { "date": "Oct 30, 2005", @@ -101935,7 +151057,12 @@ "sF": "36", "sU": "0", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2005 Regular Season - Week 8" }, { "date": "Oct 30, 2005", @@ -101945,7 +151072,12 @@ "sF": "6", "sU": "21", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "2005 Regular Season - Week 8" }, { "date": "Oct 30, 2005", @@ -101955,7 +151087,12 @@ "sF": "28", "sU": "20", "spread": "5", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 23.0, + "sF": 28.0 + }, + "week": "2005 Regular Season - Week 8" }, { "date": "Oct 30, 2005", @@ -101965,7 +151102,12 @@ "sF": "49", "sU": "21", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2005 Regular Season - Week 8" }, { "date": "Oct 30, 2005", @@ -101974,12 +151116,13 @@ "und": "San Francisco 49ers", "sF": "10", "sU": "15", - "spread": "11", - "ou": "49", + "spread": "11.5", + "ou": 37.0, "pScore": { - "sU": 19, - "sF": 30 - } + "sU": 12.75, + "sF": 24.25 + }, + "week": "2005 Regular Season - Week 8" }, { "date": "Oct 30, 2005", @@ -101989,7 +151132,12 @@ "sF": "21", "sU": "16", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2005 Regular Season - Week 8" }, { "date": "Oct 31, 2005", @@ -101998,8 +151146,13 @@ "und": "Baltimore Ravens", "sF": "20", "sU": "19", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 33.0, + "pScore": { + "sU": 12.25, + "sF": 20.75 + }, + "week": "2005 Regular Season - Week 8" }, { "date": "Nov 6, 2005", @@ -102008,8 +151161,13 @@ "und": "Oakland Raiders", "sF": "27", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 51.5, + "pScore": { + "sU": 23.5, + "sF": 28.0 + }, + "week": "2005 Regular Season - Week 9" }, { "date": "Nov 6, 2005", @@ -102019,7 +151177,12 @@ "sF": "21", "sU": "14", "spread": "11", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 13.25, + "sF": 24.25 + }, + "week": "2005 Regular Season - Week 9" }, { "date": "Nov 6, 2005", @@ -102028,8 +151191,13 @@ "und": "Baltimore Ravens", "sF": "21", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "2005 Regular Season - Week 9" }, { "date": "Nov 6, 2005", @@ -102038,8 +151206,13 @@ "und": "New York Jets", "sF": "31", "sU": "26", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.5, + "pScore": { + "sU": 18.0, + "sF": 23.5 + }, + "week": "2005 Regular Season - Week 9" }, { "date": "Nov 6, 2005", @@ -102049,7 +151222,12 @@ "sF": "20", "sU": "14", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2005 Regular Season - Week 9" }, { "date": "Nov 6, 2005", @@ -102059,7 +151237,12 @@ "sF": "17", "sU": "10", "spread": "2", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.75, + "sF": 20.75 + }, + "week": "2005 Regular Season - Week 9" }, { "date": "Nov 6, 2005", @@ -102068,8 +151251,13 @@ "und": "Minnesota Vikings", "sF": "14", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.5, + "pScore": { + "sU": 18.0, + "sF": 19.5 + }, + "week": "2005 Regular Season - Week 9" }, { "date": "Nov 6, 2005", @@ -102078,8 +151266,13 @@ "und": "Arizona Cardinals", "sF": "33", "sU": "19", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.0, + "pScore": { + "sU": 19.75, + "sF": 24.25 + }, + "week": "2005 Regular Season - Week 9" }, { "date": "Nov 6, 2005", @@ -102088,8 +151281,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 34.5, + "pScore": { + "sU": 16.0, + "sF": 18.5 + }, + "week": "2005 Regular Season - Week 9" }, { "date": "Nov 6, 2005", @@ -102098,12 +151296,13 @@ "und": "San Francisco 49ers", "sF": "24", "sU": "6", - "spread": "9", - "ou": "49", + "spread": "9.5", + "ou": 42.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 16.25, + "sF": 25.75 + }, + "week": "2005 Regular Season - Week 9" }, { "date": "Nov 6, 2005", @@ -102112,8 +151311,13 @@ "und": "Green Bay Packers", "sF": "20", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "2005 Regular Season - Week 9" }, { "date": "Nov 7, 2005", @@ -102123,7 +151327,12 @@ "sF": "40", "sU": "21", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2005 Regular Season - Week 9" }, { "date": "Nov 13, 2005", @@ -102133,7 +151342,12 @@ "sF": "30", "sU": "3", "spread": "8", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 13.0, + "sF": 21.0 + }, + "week": "2005 Regular Season - Week 10" }, { "date": "Nov 13, 2005", @@ -102142,8 +151356,13 @@ "und": "Kansas City Chiefs", "sF": "14", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2005 Regular Season - Week 10" }, { "date": "Nov 13, 2005", @@ -102153,11 +151372,12 @@ "sF": "17", "sU": "9", "spread": "12", - "ou": "49", + "ou": 33.0, "pScore": { - "sU": 18.5, - "sF": 30.5 - } + "sU": 10.5, + "sF": 22.5 + }, + "week": "2005 Regular Season - Week 10" }, { "date": "Nov 13, 2005", @@ -102167,7 +151387,12 @@ "sF": "29", "sU": "21", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "2005 Regular Season - Week 10" }, { "date": "Nov 13, 2005", @@ -102177,7 +151402,12 @@ "sF": "31", "sU": "17", "spread": "17", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 14.0, + "sF": 31.0 + }, + "week": "2005 Regular Season - Week 10" }, { "date": "Nov 13, 2005", @@ -102186,8 +151416,13 @@ "und": "Miami Dolphins", "sF": "23", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2005 Regular Season - Week 10" }, { "date": "Nov 13, 2005", @@ -102197,7 +151432,12 @@ "sF": "21", "sU": "24", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "2005 Regular Season - Week 10" }, { "date": "Nov 13, 2005", @@ -102206,8 +151446,13 @@ "und": "New York Jets", "sF": "30", "sU": "3", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 40.5, + "pScore": { + "sU": 15.5, + "sF": 25.0 + }, + "week": "2005 Regular Season - Week 10" }, { "date": "Nov 13, 2005", @@ -102216,8 +151461,13 @@ "und": "Oakland Raiders", "sF": "31", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.0, + "pScore": { + "sU": 22.25, + "sF": 24.75 + }, + "week": "2005 Regular Season - Week 10" }, { "date": "Nov 13, 2005", @@ -102226,8 +151476,13 @@ "und": "Green Bay Packers", "sF": "25", "sU": "33", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.0, + "pScore": { + "sU": 16.25, + "sF": 25.75 + }, + "week": "2005 Regular Season - Week 10" }, { "date": "Nov 13, 2005", @@ -102237,7 +151492,12 @@ "sF": "35", "sU": "36", "spread": "1", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 16.5, + "sF": 17.5 + }, + "week": "2005 Regular Season - Week 10" }, { "date": "Nov 13, 2005", @@ -102247,7 +151507,12 @@ "sF": "31", "sU": "16", "spread": "7", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 20.75, + "sF": 27.75 + }, + "week": "2005 Regular Season - Week 10" }, { "date": "Nov 13, 2005", @@ -102256,8 +151521,13 @@ "und": "Cleveland Browns", "sF": "34", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 34.5, + "pScore": { + "sU": 13.5, + "sF": 21.0 + }, + "week": "2005 Regular Season - Week 10" }, { "date": "Nov 14, 2005", @@ -102267,7 +151537,12 @@ "sF": "20", "sU": "21", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2005 Regular Season - Week 10" }, { "date": "Nov 20, 2005", @@ -102277,7 +151552,12 @@ "sF": "13", "sU": "16", "spread": "4", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 15.25, + "sF": 19.25 + }, + "week": "2005 Regular Season - Week 11" }, { "date": "Nov 20, 2005", @@ -102287,7 +151567,12 @@ "sF": "3", "sU": "13", "spread": "3", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 15.75, + "sF": 18.75 + }, + "week": "2005 Regular Season - Week 11" }, { "date": "Nov 20, 2005", @@ -102297,7 +151582,12 @@ "sF": "20", "sU": "7", "spread": "8", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.5, + "sF": 23.5 + }, + "week": "2005 Regular Season - Week 11" }, { "date": "Nov 20, 2005", @@ -102307,7 +151597,12 @@ "sF": "24", "sU": "17", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "2005 Regular Season - Week 11" }, { "date": "Nov 20, 2005", @@ -102317,7 +151612,12 @@ "sF": "28", "sU": "38", "spread": "9", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 19.5, + "sF": 28.5 + }, + "week": "2005 Regular Season - Week 11" }, { "date": "Nov 20, 2005", @@ -102327,7 +151627,12 @@ "sF": "31", "sU": "28", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "2005 Regular Season - Week 11" }, { "date": "Nov 20, 2005", @@ -102337,7 +151642,12 @@ "sF": "13", "sU": "16", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "2005 Regular Season - Week 11" }, { "date": "Nov 20, 2005", @@ -102346,8 +151656,13 @@ "und": "Miami Dolphins", "sF": "22", "sU": "0", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 34.5, + "pScore": { + "sU": 16.0, + "sF": 18.5 + }, + "week": "2005 Regular Season - Week 11" }, { "date": "Nov 20, 2005", @@ -102356,8 +151671,13 @@ "und": "Philadelphia Eagles", "sF": "27", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2005 Regular Season - Week 11" }, { "date": "Nov 20, 2005", @@ -102367,7 +151687,12 @@ "sF": "27", "sU": "30", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "2005 Regular Season - Week 11" }, { "date": "Nov 20, 2005", @@ -102377,11 +151702,12 @@ "sF": "27", "sU": "25", "spread": "12", - "ou": "49", + "ou": 42.5, "pScore": { - "sU": 18.5, - "sF": 30.5 - } + "sU": 15.25, + "sF": 27.25 + }, + "week": "2005 Regular Season - Week 11" }, { "date": "Nov 20, 2005", @@ -102390,8 +151716,13 @@ "und": "Cincinnati Bengals", "sF": "45", "sU": "37", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.5, + "pScore": { + "sU": 22.0, + "sF": 26.5 + }, + "week": "2005 Regular Season - Week 11" }, { "date": "Nov 20, 2005", @@ -102401,7 +151732,12 @@ "sF": "27", "sU": "0", "spread": "13", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 14.0, + "sF": 27.0 + }, + "week": "2005 Regular Season - Week 11" }, { "date": "Nov 20, 2005", @@ -102411,7 +151747,12 @@ "sF": "48", "sU": "10", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "2005 Regular Season - Week 11" }, { "date": "Nov 20, 2005", @@ -102420,8 +151761,13 @@ "und": "Houston Texans", "sF": "45", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "2005 Regular Season - Week 11" }, { "date": "Nov 21, 2005", @@ -102430,8 +151776,13 @@ "und": "Minnesota Vikings", "sF": "17", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2005 Regular Season - Week 11" }, { "date": "Nov 24, 2005", @@ -102441,7 +151792,12 @@ "sF": "27", "sU": "7", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2005 Regular Season - Week 12" }, { "date": "Nov 24, 2005", @@ -102450,8 +151806,13 @@ "und": "Denver Broncos", "sF": "21", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.0, + "pScore": { + "sU": 19.75, + "sF": 21.25 + }, + "week": "2005 Regular Season - Week 12" }, { "date": "Nov 27, 2005", @@ -102461,7 +151822,12 @@ "sF": "26", "sU": "16", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2005 Regular Season - Week 12" }, { "date": "Nov 27, 2005", @@ -102471,7 +151837,12 @@ "sF": "13", "sU": "9", "spread": "4", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.25, + "sF": 20.25 + }, + "week": "2005 Regular Season - Week 12" }, { "date": "Nov 27, 2005", @@ -102480,8 +151851,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "12", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2005 Regular Season - Week 12" }, { "date": "Nov 27, 2005", @@ -102491,7 +151867,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "2005 Regular Season - Week 12" }, { "date": "Nov 27, 2005", @@ -102501,7 +151882,12 @@ "sF": "23", "sU": "17", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2005 Regular Season - Week 12" }, { "date": "Nov 27, 2005", @@ -102511,7 +151897,12 @@ "sF": "42", "sU": "29", "spread": "9", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 13.75, + "sF": 22.75 + }, + "week": "2005 Regular Season - Week 12" }, { "date": "Nov 27, 2005", @@ -102520,8 +151911,13 @@ "und": "Houston Texans", "sF": "33", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "2005 Regular Season - Week 12" }, { "date": "Nov 27, 2005", @@ -102531,11 +151927,12 @@ "sF": "33", "sU": "22", "spread": "7", - "ou": "49", + "ou": 42.5, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 17.75, + "sF": 24.75 + }, + "week": "2005 Regular Season - Week 12" }, { "date": "Nov 27, 2005", @@ -102545,7 +151942,12 @@ "sF": "21", "sU": "33", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "2005 Regular Season - Week 12" }, { "date": "Nov 27, 2005", @@ -102554,8 +151956,13 @@ "und": "Arizona Cardinals", "sF": "24", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2005 Regular Season - Week 12" }, { "date": "Nov 27, 2005", @@ -102564,8 +151971,13 @@ "und": "Green Bay Packers", "sF": "19", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2005 Regular Season - Week 12" }, { "date": "Nov 27, 2005", @@ -102574,8 +151986,13 @@ "und": "New York Giants", "sF": "24", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.5, + "pScore": { + "sU": 21.0, + "sF": 26.5 + }, + "week": "2005 Regular Season - Week 12" }, { "date": "Nov 27, 2005", @@ -102585,7 +152002,12 @@ "sF": "21", "sU": "19", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "2005 Regular Season - Week 12" }, { "date": "Nov 28, 2005", @@ -102595,7 +152017,12 @@ "sF": "26", "sU": "7", "spread": "8", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.5, + "sF": 27.5 + }, + "week": "2005 Regular Season - Week 12" }, { "date": "Dec 4, 2005", @@ -102605,7 +152032,12 @@ "sF": "16", "sU": "15", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "2005 Regular Season - Week 13" }, { "date": "Dec 4, 2005", @@ -102615,7 +152047,12 @@ "sF": "21", "sU": "16", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2005 Regular Season - Week 13" }, { "date": "Dec 4, 2005", @@ -102625,7 +152062,12 @@ "sF": "35", "sU": "3", "spread": "14", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 16.75, + "sF": 30.75 + }, + "week": "2005 Regular Season - Week 13" }, { "date": "Dec 4, 2005", @@ -102635,7 +152077,12 @@ "sF": "31", "sU": "38", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "2005 Regular Season - Week 13" }, { "date": "Dec 4, 2005", @@ -102645,7 +152092,12 @@ "sF": "24", "sU": "6", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2005 Regular Season - Week 13" }, { "date": "Dec 4, 2005", @@ -102655,7 +152107,12 @@ "sF": "20", "sU": "14", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2005 Regular Season - Week 13" }, { "date": "Dec 4, 2005", @@ -102665,7 +152122,12 @@ "sF": "24", "sU": "23", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "2005 Regular Season - Week 13" }, { "date": "Dec 4, 2005", @@ -102675,7 +152137,12 @@ "sF": "17", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2005 Regular Season - Week 13" }, { "date": "Dec 4, 2005", @@ -102685,7 +152152,12 @@ "sF": "19", "sU": "7", "spread": "7", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 12.5, + "sF": 19.5 + }, + "week": "2005 Regular Season - Week 13" }, { "date": "Dec 4, 2005", @@ -102694,8 +152166,13 @@ "und": "New Orleans Saints", "sF": "10", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "2005 Regular Season - Week 13" }, { "date": "Dec 4, 2005", @@ -102705,11 +152182,12 @@ "sF": "17", "sU": "10", "spread": "3", - "ou": "49", + "ou": 43.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 20.25, + "sF": 23.25 + }, + "week": "2005 Regular Season - Week 13" }, { "date": "Dec 4, 2005", @@ -102719,7 +152197,12 @@ "sF": "24", "sU": "9", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2005 Regular Season - Week 13" }, { "date": "Dec 4, 2005", @@ -102728,8 +152211,13 @@ "und": "New York Jets", "sF": "16", "sU": "3", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.5, + "pScore": { + "sU": 17.5, + "sF": 25.0 + }, + "week": "2005 Regular Season - Week 13" }, { "date": "Dec 4, 2005", @@ -102739,7 +152227,12 @@ "sF": "34", "sU": "10", "spread": "10", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 20.25, + "sF": 30.25 + }, + "week": "2005 Regular Season - Week 13" }, { "date": "Dec 5, 2005", @@ -102749,7 +152242,12 @@ "sF": "42", "sU": "0", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2005 Regular Season - Week 13" }, { "date": "Dec 11, 2005", @@ -102758,8 +152256,13 @@ "und": "Jacksonville Jaguars", "sF": "26", "sU": "18", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.0, + "pScore": { + "sU": 17.75, + "sF": 25.25 + }, + "week": "2005 Regular Season - Week 14" }, { "date": "Dec 11, 2005", @@ -102768,8 +152271,13 @@ "und": "Buffalo Bills", "sF": "35", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "2005 Regular Season - Week 14" }, { "date": "Dec 11, 2005", @@ -102779,7 +152287,12 @@ "sF": "10", "sU": "26", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2005 Regular Season - Week 14" }, { "date": "Dec 11, 2005", @@ -102789,7 +152302,12 @@ "sF": "21", "sU": "9", "spread": "4", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 14.0, + "sF": 18.0 + }, + "week": "2005 Regular Season - Week 14" }, { "date": "Dec 11, 2005", @@ -102798,8 +152316,13 @@ "und": "Tampa Bay Buccaneers", "sF": "10", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.0, + "pScore": { + "sU": 15.75, + "sF": 21.25 + }, + "week": "2005 Regular Season - Week 14" }, { "date": "Dec 11, 2005", @@ -102808,8 +152331,13 @@ "und": "Cleveland Browns", "sF": "23", "sU": "20", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 41.5, + "pScore": { + "sU": 14.5, + "sF": 27.0 + }, + "week": "2005 Regular Season - Week 14" }, { "date": "Dec 11, 2005", @@ -102818,8 +152346,13 @@ "und": "Houston Texans", "sF": "13", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2005 Regular Season - Week 14" }, { "date": "Dec 11, 2005", @@ -102829,7 +152362,12 @@ "sF": "27", "sU": "13", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "2005 Regular Season - Week 14" }, { "date": "Dec 11, 2005", @@ -102839,7 +152377,12 @@ "sF": "17", "sU": "13", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2005 Regular Season - Week 14" }, { "date": "Dec 11, 2005", @@ -102849,7 +152392,12 @@ "sF": "26", "sU": "23", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2005 Regular Season - Week 14" }, { "date": "Dec 11, 2005", @@ -102858,12 +152406,13 @@ "und": "San Francisco 49ers", "sF": "41", "sU": "3", - "spread": "15", - "ou": "49", + "spread": "15.5", + "ou": 45.0, "pScore": { - "sU": 17, - "sF": 32 - } + "sU": 14.75, + "sF": 30.25 + }, + "week": "2005 Regular Season - Week 14" }, { "date": "Dec 11, 2005", @@ -102873,7 +152422,12 @@ "sF": "31", "sU": "28", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2005 Regular Season - Week 14" }, { "date": "Dec 11, 2005", @@ -102883,7 +152437,12 @@ "sF": "12", "sU": "10", "spread": "14", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 13.25, + "sF": 27.25 + }, + "week": "2005 Regular Season - Week 14" }, { "date": "Dec 11, 2005", @@ -102892,8 +152451,13 @@ "und": "Miami Dolphins", "sF": "21", "sU": "23", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 45.0, + "pScore": { + "sU": 15.75, + "sF": 29.25 + }, + "week": "2005 Regular Season - Week 14" }, { "date": "Dec 11, 2005", @@ -102902,8 +152466,13 @@ "und": "Detroit Lions", "sF": "16", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.0, + "pScore": { + "sU": 15.75, + "sF": 21.25 + }, + "week": "2005 Regular Season - Week 14" }, { "date": "Dec 12, 2005", @@ -102913,7 +152482,12 @@ "sF": "36", "sU": "17", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "2005 Regular Season - Week 14" }, { "date": "Dec 17, 2005", @@ -102922,8 +152496,13 @@ "und": "Tampa Bay Buccaneers", "sF": "28", "sU": "0", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 36.0, + "pScore": { + "sU": 15.75, + "sF": 20.25 + }, + "week": "2005 Regular Season - Week 15" }, { "date": "Dec 17, 2005", @@ -102933,7 +152512,12 @@ "sF": "27", "sU": "17", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2005 Regular Season - Week 15" }, { "date": "Dec 17, 2005", @@ -102943,7 +152527,12 @@ "sF": "28", "sU": "17", "spread": "8", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 13.5, + "sF": 21.5 + }, + "week": "2005 Regular Season - Week 15" }, { "date": "Dec 18, 2005", @@ -102953,7 +152542,12 @@ "sF": "19", "sU": "30", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "2005 Regular Season - Week 15" }, { "date": "Dec 18, 2005", @@ -102962,8 +152556,13 @@ "und": "San Diego Chargers", "sF": "17", "sU": "26", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 51.0, + "pScore": { + "sU": 21.75, + "sF": 29.25 + }, + "week": "2005 Regular Season - Week 15" }, { "date": "Dec 18, 2005", @@ -102972,12 +152571,13 @@ "und": "San Francisco 49ers", "sF": "10", "sU": "9", - "spread": "14", - "ou": "49", + "spread": "14.5", + "ou": 39.5, "pScore": { - "sU": 17.5, - "sF": 31.5 - } + "sU": 12.5, + "sF": 27.0 + }, + "week": "2005 Regular Season - Week 15" }, { "date": "Dec 18, 2005", @@ -102987,7 +152587,12 @@ "sF": "16", "sU": "17", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2005 Regular Season - Week 15" }, { "date": "Dec 18, 2005", @@ -102996,8 +152601,13 @@ "und": "New York Jets", "sF": "24", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 35.5, + "pScore": { + "sU": 14.0, + "sF": 21.5 + }, + "week": "2005 Regular Season - Week 15" }, { "date": "Dec 18, 2005", @@ -103007,7 +152617,12 @@ "sF": "27", "sU": "10", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "2005 Regular Season - Week 15" }, { "date": "Dec 18, 2005", @@ -103016,8 +152631,13 @@ "und": "Tennessee Titans", "sF": "28", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.0, + "pScore": { + "sU": 18.75, + "sF": 26.25 + }, + "week": "2005 Regular Season - Week 15" }, { "date": "Dec 18, 2005", @@ -103027,7 +152647,12 @@ "sF": "18", "sU": "3", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2005 Regular Season - Week 15" }, { "date": "Dec 18, 2005", @@ -103036,8 +152661,13 @@ "und": "Detroit Lions", "sF": "41", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "2005 Regular Season - Week 15" }, { "date": "Dec 18, 2005", @@ -103047,7 +152677,12 @@ "sF": "7", "sU": "9", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2005 Regular Season - Week 15" }, { "date": "Dec 18, 2005", @@ -103057,7 +152692,12 @@ "sF": "35", "sU": "7", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2005 Regular Season - Week 15" }, { "date": "Dec 18, 2005", @@ -103067,7 +152707,12 @@ "sF": "16", "sU": "3", "spread": "3", - "ou": -1 + "ou": 30.5, + "pScore": { + "sU": 13.75, + "sF": 16.75 + }, + "week": "2005 Regular Season - Week 15" }, { "date": "Dec 19, 2005", @@ -103076,8 +152721,13 @@ "und": "Green Bay Packers", "sF": "48", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 33.0, + "pScore": { + "sU": 14.75, + "sF": 18.25 + }, + "week": "2005 Regular Season - Week 15" }, { "date": "Dec 24, 2005", @@ -103087,7 +152737,12 @@ "sF": "20", "sU": "7", "spread": "1", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 24.25, + "sF": 25.25 + }, + "week": "2005 Regular Season - Week 16" }, { "date": "Dec 24, 2005", @@ -103097,11 +152752,12 @@ "sF": "20", "sU": "24", "spread": "9", - "ou": "49", + "ou": 42.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 16.5, + "sF": 25.5 + }, + "week": "2005 Regular Season - Week 16" }, { "date": "Dec 24, 2005", @@ -103111,7 +152767,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2005 Regular Season - Week 16" }, { "date": "Dec 24, 2005", @@ -103120,8 +152781,13 @@ "und": "Dallas Cowboys", "sF": "20", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.5, + "pScore": { + "sU": 16.5, + "sF": 22.0 + }, + "week": "2005 Regular Season - Week 16" }, { "date": "Dec 24, 2005", @@ -103131,7 +152797,12 @@ "sF": "27", "sU": "37", "spread": "13", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 15.5, + "sF": 28.5 + }, + "week": "2005 Regular Season - Week 16" }, { "date": "Dec 24, 2005", @@ -103141,7 +152812,12 @@ "sF": "41", "sU": "0", "spread": "7", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 13.0, + "sF": 20.0 + }, + "week": "2005 Regular Season - Week 16" }, { "date": "Dec 24, 2005", @@ -103151,7 +152827,12 @@ "sF": "38", "sU": "20", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "2005 Regular Season - Week 16" }, { "date": "Dec 24, 2005", @@ -103160,8 +152841,13 @@ "und": "Tennessee Titans", "sF": "24", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "2005 Regular Season - Week 16" }, { "date": "Dec 24, 2005", @@ -103171,7 +152857,12 @@ "sF": "35", "sU": "20", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2005 Regular Season - Week 16" }, { "date": "Dec 24, 2005", @@ -103181,7 +152872,12 @@ "sF": "12", "sU": "13", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2005 Regular Season - Week 16" }, { "date": "Dec 24, 2005", @@ -103191,7 +152887,12 @@ "sF": "27", "sU": "21", "spread": "1", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 19.25, + "sF": 20.25 + }, + "week": "2005 Regular Season - Week 16" }, { "date": "Dec 24, 2005", @@ -103200,8 +152901,13 @@ "und": "Oakland Raiders", "sF": "22", "sU": "3", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 42.5, + "pScore": { + "sU": 15.0, + "sF": 27.5 + }, + "week": "2005 Regular Season - Week 16" }, { "date": "Dec 24, 2005", @@ -103211,7 +152917,12 @@ "sF": "28", "sU": "13", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2005 Regular Season - Week 16" }, { "date": "Dec 25, 2005", @@ -103221,7 +152932,12 @@ "sF": "24", "sU": "17", "spread": "7", - "ou": -1 + "ou": 31.0, + "pScore": { + "sU": 12.0, + "sF": 19.0 + }, + "week": "2005 Regular Season - Week 16" }, { "date": "Dec 25, 2005", @@ -103230,8 +152946,13 @@ "und": "Minnesota Vikings", "sF": "30", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 34.0, + "pScore": { + "sU": 15.75, + "sF": 18.25 + }, + "week": "2005 Regular Season - Week 16" }, { "date": "Dec 26, 2005", @@ -103241,7 +152962,12 @@ "sF": "31", "sU": "21", "spread": "4", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.75, + "sF": 20.75 + }, + "week": "2005 Regular Season - Week 16" }, { "date": "Dec 31, 2005", @@ -103251,7 +152977,12 @@ "sF": "7", "sU": "23", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2005 Regular Season - Week 17" }, { "date": "Dec 31, 2005", @@ -103260,8 +152991,13 @@ "und": "Oakland Raiders", "sF": "30", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "2005 Regular Season - Week 17" }, { "date": "Jan 1, 2006", @@ -103270,8 +153006,13 @@ "und": "Cincinnati Bengals", "sF": "37", "sU": "3", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.0, + "pScore": { + "sU": 19.75, + "sF": 27.25 + }, + "week": "2005 Regular Season - Week 17" }, { "date": "Jan 1, 2006", @@ -103280,8 +153021,13 @@ "und": "Buffalo Bills", "sF": "30", "sU": "26", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.5, + "pScore": { + "sU": 18.0, + "sF": 19.5 + }, + "week": "2005 Regular Season - Week 17" }, { "date": "Jan 1, 2006", @@ -103291,7 +153037,12 @@ "sF": "16", "sU": "20", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2005 Regular Season - Week 17" }, { "date": "Jan 1, 2006", @@ -103301,7 +153052,12 @@ "sF": "23", "sU": "17", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2005 Regular Season - Week 17" }, { "date": "Jan 1, 2006", @@ -103311,7 +153067,12 @@ "sF": "17", "sU": "13", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "2005 Regular Season - Week 17" }, { "date": "Jan 1, 2006", @@ -103321,7 +153082,12 @@ "sF": "26", "sU": "28", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2005 Regular Season - Week 17" }, { "date": "Jan 1, 2006", @@ -103330,8 +153096,13 @@ "und": "Detroit Lions", "sF": "35", "sU": "21", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 35.5, + "pScore": { + "sU": 10.0, + "sF": 25.5 + }, + "week": "2005 Regular Season - Week 17" }, { "date": "Jan 1, 2006", @@ -103341,7 +153112,12 @@ "sF": "27", "sU": "13", "spread": "13", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 12.25, + "sF": 25.25 + }, + "week": "2005 Regular Season - Week 17" }, { "date": "Jan 1, 2006", @@ -103350,8 +153126,13 @@ "und": "Atlanta Falcons", "sF": "44", "sU": "11", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "2005 Regular Season - Week 17" }, { "date": "Jan 1, 2006", @@ -103361,7 +153142,12 @@ "sF": "40", "sU": "13", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "2005 Regular Season - Week 17" }, { "date": "Jan 1, 2006", @@ -103371,11 +153157,12 @@ "sF": "17", "sU": "20", "spread": "1", - "ou": "49", + "ou": 37.5, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 18.25, + "sF": 19.25 + }, + "week": "2005 Regular Season - Week 17" }, { "date": "Jan 1, 2006", @@ -103385,7 +153172,12 @@ "sF": "34", "sU": "10", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "2005 Regular Season - Week 17" }, { "date": "Jan 1, 2006", @@ -103395,7 +153187,12 @@ "sF": "31", "sU": "20", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "2005 Regular Season - Week 17" }, { "date": "Jan 1, 2006", @@ -103404,8 +153201,13 @@ "und": "St Louis Rams", "sF": "10", "sU": "20", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 43.0, + "pScore": { + "sU": 15.25, + "sF": 27.75 + }, + "week": "2005 Regular Season - Week 17" }, { "date": "Jan 7, 2006", @@ -103414,8 +153216,13 @@ "und": "Washington Redskins (6)", "sF": "10", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2005 Playoffs" }, { "date": "Jan 7, 2006", @@ -103425,7 +153232,12 @@ "sF": "28", "sU": "3", "spread": "8", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 14.75, + "sF": 22.75 + }, + "week": "2005 Playoffs" }, { "date": "Jan 8, 2006", @@ -103435,7 +153247,12 @@ "sF": "0", "sU": "23", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2005 Playoffs" }, { "date": "Jan 8, 2006", @@ -103445,7 +153262,12 @@ "sF": "31", "sU": "17", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2005 Playoffs" }, { "date": "Jan 14, 2006", @@ -103454,8 +153276,13 @@ "und": "Washington Redskins (6)", "sF": "20", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 41.0, + "pScore": { + "sU": 15.75, + "sF": 25.25 + }, + "week": "2005 Playoffs" }, { "date": "Jan 14, 2006", @@ -103465,7 +153292,12 @@ "sF": "27", "sU": "13", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2005 Playoffs" }, { "date": "Jan 15, 2006", @@ -103474,8 +153306,13 @@ "und": "Pittsburgh Steelers (6)", "sF": "18", "sU": "21", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 46.5, + "pScore": { + "sU": 18.5, + "sF": 28.0 + }, + "week": "2005 Playoffs" }, { "date": "Jan 15, 2006", @@ -103485,7 +153322,12 @@ "sF": "21", "sU": "29", "spread": "3", - "ou": -1 + "ou": 31.0, + "pScore": { + "sU": 14.0, + "sF": 17.0 + }, + "week": "2005 Playoffs" }, { "date": "Jan 22, 2006", @@ -103494,8 +153336,13 @@ "und": "Pittsburgh Steelers (6)", "sF": "17", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2005 Playoffs" }, { "date": "Jan 22, 2006", @@ -103504,8 +153351,13 @@ "und": "Carolina Panthers (5)", "sF": "34", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2005 Playoffs" }, { "date": "Feb 5, 2006", @@ -103515,7 +153367,12 @@ "sF": "21", "sU": "10", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "2005 Playoffs" }, { "date": "Sep 7, 2006", @@ -103524,8 +153381,13 @@ "und": "Miami Dolphins", "sF": "28", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 34.5, + "pScore": { + "sU": 16.5, + "sF": 18.0 + }, + "week": "2006 Regular Season - Week 1" }, { "date": "Sep 10, 2006", @@ -103534,8 +153396,13 @@ "und": "Kansas City Chiefs", "sF": "23", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 49.5, + "pScore": { + "sU": 24.0, + "sF": 25.5 + }, + "week": "2006 Regular Season - Week 1" }, { "date": "Sep 10, 2006", @@ -103545,7 +153412,12 @@ "sF": "0", "sU": "27", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "2006 Regular Season - Week 1" }, { "date": "Sep 10, 2006", @@ -103555,7 +153427,12 @@ "sF": "24", "sU": "10", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "2006 Regular Season - Week 1" }, { "date": "Sep 10, 2006", @@ -103565,7 +153442,12 @@ "sF": "19", "sU": "17", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "2006 Regular Season - Week 1" }, { "date": "Sep 10, 2006", @@ -103574,8 +153456,13 @@ "und": "St Louis Rams", "sF": "10", "sU": "18", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2006 Regular Season - Week 1" }, { "date": "Sep 10, 2006", @@ -103584,8 +153471,13 @@ "und": "Atlanta Falcons", "sF": "6", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "2006 Regular Season - Week 1" }, { "date": "Sep 10, 2006", @@ -103594,8 +153486,13 @@ "und": "New York Jets", "sF": "16", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.0, + "pScore": { + "sU": 16.25, + "sF": 18.75 + }, + "week": "2006 Regular Season - Week 1" }, { "date": "Sep 10, 2006", @@ -103605,7 +153502,12 @@ "sF": "14", "sU": "19", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2006 Regular Season - Week 1" }, { "date": "Sep 10, 2006", @@ -103615,7 +153517,12 @@ "sF": "9", "sU": "6", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2006 Regular Season - Week 1" }, { "date": "Sep 10, 2006", @@ -103624,12 +153531,13 @@ "und": "San Francisco 49ers", "sF": "34", "sU": "27", - "spread": "9", - "ou": "49", + "spread": "9.5", + "ou": 44.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 17.25, + "sF": 26.75 + }, + "week": "2006 Regular Season - Week 1" }, { "date": "Sep 10, 2006", @@ -103638,8 +153546,13 @@ "und": "Green Bay Packers", "sF": "26", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "2006 Regular Season - Week 1" }, { "date": "Sep 10, 2006", @@ -103648,8 +153561,13 @@ "und": "Jacksonville Jaguars", "sF": "17", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "2006 Regular Season - Week 1" }, { "date": "Sep 10, 2006", @@ -103659,7 +153577,12 @@ "sF": "26", "sU": "21", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2006 Regular Season - Week 1" }, { "date": "Sep 11, 2006", @@ -103669,7 +153592,12 @@ "sF": "16", "sU": "19", "spread": "4", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 15.75, + "sF": 19.75 + }, + "week": "2006 Regular Season - Week 1" }, { "date": "Sep 11, 2006", @@ -103679,7 +153607,12 @@ "sF": "27", "sU": "0", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2006 Regular Season - Week 1" }, { "date": "Sep 17, 2006", @@ -103689,7 +153622,12 @@ "sF": "28", "sU": "6", "spread": "13", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 10.5, + "sF": 23.5 + }, + "week": "2006 Regular Season - Week 2" }, { "date": "Sep 17, 2006", @@ -103699,7 +153637,12 @@ "sF": "34", "sU": "27", "spread": "1", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.75, + "sF": 20.75 + }, + "week": "2006 Regular Season - Week 2" }, { "date": "Sep 17, 2006", @@ -103709,7 +153652,12 @@ "sF": "24", "sU": "30", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2006 Regular Season - Week 2" }, { "date": "Sep 17, 2006", @@ -103719,7 +153667,12 @@ "sF": "34", "sU": "7", "spread": "7", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 12.5, + "sF": 19.5 + }, + "week": "2006 Regular Season - Week 2" }, { "date": "Sep 17, 2006", @@ -103728,8 +153681,13 @@ "und": "Cleveland Browns", "sF": "34", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 40.5, + "pScore": { + "sU": 15.0, + "sF": 25.5 + }, + "week": "2006 Regular Season - Week 2" }, { "date": "Sep 17, 2006", @@ -103738,8 +153696,13 @@ "und": "Houston Texans", "sF": "43", "sU": "24", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 47.0, + "pScore": { + "sU": 17.25, + "sF": 29.75 + }, + "week": "2006 Regular Season - Week 2" }, { "date": "Sep 17, 2006", @@ -103748,8 +153711,13 @@ "und": "Buffalo Bills", "sF": "6", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "2006 Regular Season - Week 2" }, { "date": "Sep 17, 2006", @@ -103759,7 +153727,12 @@ "sF": "16", "sU": "13", "spread": "2", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.75, + "sF": 19.75 + }, + "week": "2006 Regular Season - Week 2" }, { "date": "Sep 17, 2006", @@ -103768,8 +153741,13 @@ "und": "Tampa Bay Buccaneers", "sF": "14", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 36.0, + "pScore": { + "sU": 15.75, + "sF": 20.25 + }, + "week": "2006 Regular Season - Week 2" }, { "date": "Sep 17, 2006", @@ -103779,11 +153757,12 @@ "sF": "13", "sU": "20", "spread": "3", - "ou": "49", + "ou": 44.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 20.75, + "sF": 23.75 + }, + "week": "2006 Regular Season - Week 2" }, { "date": "Sep 17, 2006", @@ -103793,7 +153772,12 @@ "sF": "21", "sU": "10", "spread": "7", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.5, + "sF": 27.5 + }, + "week": "2006 Regular Season - Week 2" }, { "date": "Sep 17, 2006", @@ -103803,7 +153787,12 @@ "sF": "24", "sU": "17", "spread": "6", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 16.25, + "sF": 22.25 + }, + "week": "2006 Regular Season - Week 2" }, { "date": "Sep 17, 2006", @@ -103813,7 +153802,12 @@ "sF": "40", "sU": "7", "spread": "12", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 13.25, + "sF": 25.25 + }, + "week": "2006 Regular Season - Week 2" }, { "date": "Sep 17, 2006", @@ -103823,7 +153817,12 @@ "sF": "9", "sU": "6", "spread": "11", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 13.5, + "sF": 24.5 + }, + "week": "2006 Regular Season - Week 2" }, { "date": "Sep 17, 2006", @@ -103833,7 +153832,12 @@ "sF": "27", "sU": "10", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "2006 Regular Season - Week 2" }, { "date": "Sep 18, 2006", @@ -103842,8 +153846,13 @@ "und": "Jacksonville Jaguars", "sF": "0", "sU": "9", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "2006 Regular Season - Week 2" }, { "date": "Sep 24, 2006", @@ -103853,7 +153862,12 @@ "sF": "20", "sU": "28", "spread": "6", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 13.5, + "sF": 19.5 + }, + "week": "2006 Regular Season - Week 3" }, { "date": "Sep 24, 2006", @@ -103862,8 +153876,13 @@ "und": "Green Bay Packers", "sF": "24", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "2006 Regular Season - Week 3" }, { "date": "Sep 24, 2006", @@ -103872,8 +153891,13 @@ "und": "Jacksonville Jaguars", "sF": "21", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "2006 Regular Season - Week 3" }, { "date": "Sep 24, 2006", @@ -103882,8 +153906,13 @@ "und": "Tennessee Titans", "sF": "13", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 36.0, + "pScore": { + "sU": 12.75, + "sF": 23.25 + }, + "week": "2006 Regular Season - Week 3" }, { "date": "Sep 24, 2006", @@ -103893,7 +153922,12 @@ "sF": "20", "sU": "28", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "2006 Regular Season - Week 3" }, { "date": "Sep 24, 2006", @@ -103902,8 +153936,13 @@ "und": "Houston Texans", "sF": "31", "sU": "15", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.5, + "pScore": { + "sU": 17.0, + "sF": 20.5 + }, + "week": "2006 Regular Season - Week 3" }, { "date": "Sep 24, 2006", @@ -103913,7 +153952,12 @@ "sF": "26", "sU": "24", "spread": "3", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 15.25, + "sF": 18.25 + }, + "week": "2006 Regular Season - Week 3" }, { "date": "Sep 24, 2006", @@ -103922,8 +153966,13 @@ "und": "Minnesota Vikings", "sF": "19", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "2006 Regular Season - Week 3" }, { "date": "Sep 24, 2006", @@ -103932,8 +153981,13 @@ "und": "Cleveland Browns", "sF": "15", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 33.0, + "pScore": { + "sU": 13.25, + "sF": 19.75 + }, + "week": "2006 Regular Season - Week 3" }, { "date": "Sep 24, 2006", @@ -103942,8 +153996,13 @@ "und": "St Louis Rams", "sF": "14", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.0, + "pScore": { + "sU": 19.75, + "sF": 25.25 + }, + "week": "2006 Regular Season - Week 3" }, { "date": "Sep 24, 2006", @@ -103953,11 +154012,12 @@ "sF": "38", "sU": "24", "spread": "6", - "ou": "49", + "ou": 42.5, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 18.25, + "sF": 24.25 + }, + "week": "2006 Regular Season - Week 3" }, { "date": "Sep 24, 2006", @@ -103967,7 +154027,12 @@ "sF": "42", "sU": "30", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "2006 Regular Season - Week 3" }, { "date": "Sep 24, 2006", @@ -103976,8 +154041,13 @@ "und": "Denver Broncos", "sF": "7", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.5, + "pScore": { + "sU": 16.0, + "sF": 22.5 + }, + "week": "2006 Regular Season - Week 3" }, { "date": "Sep 25, 2006", @@ -103987,7 +154057,12 @@ "sF": "3", "sU": "23", "spread": "4", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.5, + "sF": 24.5 + }, + "week": "2006 Regular Season - Week 3" }, { "date": "Oct 1, 2006", @@ -103997,11 +154072,12 @@ "sF": "41", "sU": "0", "spread": "7", - "ou": "49", + "ou": 39.5, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 16.25, + "sF": 23.25 + }, + "week": "2006 Regular Season - Week 4" }, { "date": "Oct 1, 2006", @@ -104011,7 +154087,12 @@ "sF": "13", "sU": "16", "spread": "1", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 16.25, + "sF": 17.25 + }, + "week": "2006 Regular Season - Week 4" }, { "date": "Oct 1, 2006", @@ -104021,7 +154102,12 @@ "sF": "17", "sU": "12", "spread": "1", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 16.75, + "sF": 17.75 + }, + "week": "2006 Regular Season - Week 4" }, { "date": "Oct 1, 2006", @@ -104030,8 +154116,13 @@ "und": "New Orleans Saints", "sF": "21", "sU": "18", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.0, + "pScore": { + "sU": 16.75, + "sF": 24.25 + }, + "week": "2006 Regular Season - Week 4" }, { "date": "Oct 1, 2006", @@ -104041,7 +154132,12 @@ "sF": "15", "sU": "17", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "2006 Regular Season - Week 4" }, { "date": "Oct 1, 2006", @@ -104051,7 +154147,12 @@ "sF": "31", "sU": "28", "spread": "8", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.0, + "sF": 27.0 + }, + "week": "2006 Regular Season - Week 4" }, { "date": "Oct 1, 2006", @@ -104060,8 +154161,13 @@ "und": "Arizona Cardinals", "sF": "32", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "2006 Regular Season - Week 4" }, { "date": "Oct 1, 2006", @@ -104070,8 +154176,13 @@ "und": "Tennessee Titans", "sF": "45", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 37.0, + "pScore": { + "sU": 13.75, + "sF": 23.25 + }, + "week": "2006 Regular Season - Week 4" }, { "date": "Oct 1, 2006", @@ -104081,7 +154192,12 @@ "sF": "41", "sU": "34", "spread": "5", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.75, + "sF": 23.75 + }, + "week": "2006 Regular Season - Week 4" }, { "date": "Oct 1, 2006", @@ -104091,7 +154207,12 @@ "sF": "13", "sU": "38", "spread": "6", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.0, + "sF": 26.0 + }, + "week": "2006 Regular Season - Week 4" }, { "date": "Oct 1, 2006", @@ -104100,8 +154221,13 @@ "und": "Oakland Raiders", "sF": "24", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 33.5, + "pScore": { + "sU": 15.5, + "sF": 18.0 + }, + "week": "2006 Regular Season - Week 4" }, { "date": "Oct 1, 2006", @@ -104111,7 +154237,12 @@ "sF": "30", "sU": "36", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "2006 Regular Season - Week 4" }, { "date": "Oct 1, 2006", @@ -104120,8 +154251,13 @@ "und": "Seattle Seahawks", "sF": "37", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2006 Regular Season - Week 4" }, { "date": "Oct 2, 2006", @@ -104130,8 +154266,13 @@ "und": "Green Bay Packers", "sF": "31", "sU": "9", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 49.5, + "pScore": { + "sU": 19.0, + "sF": 30.5 + }, + "week": "2006 Regular Season - Week 4" }, { "date": "Oct 8, 2006", @@ -104140,8 +154281,13 @@ "und": "Cleveland Browns", "sF": "20", "sU": "12", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.0, + "pScore": { + "sU": 15.25, + "sF": 22.75 + }, + "week": "2006 Regular Season - Week 5" }, { "date": "Oct 8, 2006", @@ -104150,8 +154296,13 @@ "und": "Green Bay Packers", "sF": "23", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "2006 Regular Season - Week 5" }, { "date": "Oct 8, 2006", @@ -104161,7 +154312,12 @@ "sF": "14", "sU": "13", "spread": "18", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 14.75, + "sF": 32.75 + }, + "week": "2006 Regular Season - Week 5" }, { "date": "Oct 8, 2006", @@ -104170,8 +154326,13 @@ "und": "Miami Dolphins", "sF": "20", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 36.5, + "pScore": { + "sU": 13.5, + "sF": 23.0 + }, + "week": "2006 Regular Season - Week 5" }, { "date": "Oct 8, 2006", @@ -104180,8 +154341,13 @@ "und": "Buffalo Bills", "sF": "40", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 34.5, + "pScore": { + "sU": 12.5, + "sF": 22.0 + }, + "week": "2006 Regular Season - Week 5" }, { "date": "Oct 8, 2006", @@ -104191,7 +154357,12 @@ "sF": "24", "sU": "21", "spread": "7", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 14.0, + "sF": 21.0 + }, + "week": "2006 Regular Season - Week 5" }, { "date": "Oct 8, 2006", @@ -104200,8 +154371,13 @@ "und": "Washington Redskins", "sF": "19", "sU": "3", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.5, + "pScore": { + "sU": 20.0, + "sF": 25.5 + }, + "week": "2006 Regular Season - Week 5" }, { "date": "Oct 8, 2006", @@ -104211,7 +154387,12 @@ "sF": "26", "sU": "17", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2006 Regular Season - Week 5" }, { "date": "Oct 8, 2006", @@ -104220,8 +154401,13 @@ "und": "Arizona Cardinals", "sF": "23", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2006 Regular Season - Week 5" }, { "date": "Oct 8, 2006", @@ -104231,7 +154417,12 @@ "sF": "41", "sU": "0", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "2006 Regular Season - Week 5" }, { "date": "Oct 8, 2006", @@ -104240,8 +154431,13 @@ "und": "Oakland Raiders", "sF": "34", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "2006 Regular Season - Week 5" }, { "date": "Oct 8, 2006", @@ -104251,7 +154447,12 @@ "sF": "38", "sU": "24", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "2006 Regular Season - Week 5" }, { "date": "Oct 8, 2006", @@ -104261,7 +154462,12 @@ "sF": "23", "sU": "13", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2006 Regular Season - Week 5" }, { "date": "Oct 9, 2006", @@ -104271,7 +154477,12 @@ "sF": "13", "sU": "3", "spread": "5", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 14.25, + "sF": 19.25 + }, + "week": "2006 Regular Season - Week 5" }, { "date": "Oct 15, 2006", @@ -104281,7 +154492,12 @@ "sF": "21", "sU": "23", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "2006 Regular Season - Week 6" }, { "date": "Oct 15, 2006", @@ -104291,7 +154507,12 @@ "sF": "34", "sU": "6", "spread": "13", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 15.5, + "sF": 28.5 + }, + "week": "2006 Regular Season - Week 6" }, { "date": "Oct 15, 2006", @@ -104301,7 +154522,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2006 Regular Season - Week 6" }, { "date": "Oct 15, 2006", @@ -104311,7 +154537,12 @@ "sF": "30", "sU": "28", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2006 Regular Season - Week 6" }, { "date": "Oct 15, 2006", @@ -104321,7 +154552,12 @@ "sF": "13", "sU": "14", "spread": "5", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.75, + "sF": 24.75 + }, + "week": "2006 Regular Season - Week 6" }, { "date": "Oct 15, 2006", @@ -104331,7 +154567,12 @@ "sF": "22", "sU": "25", "spread": "12", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 13.75, + "sF": 25.75 + }, + "week": "2006 Regular Season - Week 6" }, { "date": "Oct 15, 2006", @@ -104341,7 +154582,12 @@ "sF": "17", "sU": "20", "spread": "1", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.75, + "sF": 20.75 + }, + "week": "2006 Regular Season - Week 6" }, { "date": "Oct 15, 2006", @@ -104351,7 +154597,12 @@ "sF": "14", "sU": "27", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2006 Regular Season - Week 6" }, { "date": "Oct 15, 2006", @@ -104360,8 +154611,13 @@ "und": "Miami Dolphins", "sF": "20", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "2006 Regular Season - Week 6" }, { "date": "Oct 15, 2006", @@ -104370,8 +154626,13 @@ "und": "Kansas City Chiefs", "sF": "45", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.5, + "pScore": { + "sU": 15.0, + "sF": 21.5 + }, + "week": "2006 Regular Season - Week 6" }, { "date": "Oct 15, 2006", @@ -104381,11 +154642,12 @@ "sF": "48", "sU": "19", "spread": "10", - "ou": "49", + "ou": 42.5, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sU": 16.25, + "sF": 26.25 + }, + "week": "2006 Regular Season - Week 6" }, { "date": "Oct 15, 2006", @@ -104395,7 +154657,12 @@ "sF": "13", "sU": "3", "spread": "16", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 10.5, + "sF": 26.5 + }, + "week": "2006 Regular Season - Week 6" }, { "date": "Oct 16, 2006", @@ -104405,7 +154672,12 @@ "sF": "24", "sU": "23", "spread": "13", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 13.75, + "sF": 26.75 + }, + "week": "2006 Regular Season - Week 6" }, { "date": "Oct 22, 2006", @@ -104414,8 +154686,13 @@ "und": "Kansas City Chiefs", "sF": "27", "sU": "30", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.0, + "pScore": { + "sU": 16.75, + "sF": 22.25 + }, + "week": "2006 Regular Season - Week 7" }, { "date": "Oct 22, 2006", @@ -104424,8 +154701,13 @@ "und": "Buffalo Bills", "sF": "28", "sU": "6", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.0, + "pScore": { + "sU": 15.75, + "sF": 21.25 + }, + "week": "2006 Regular Season - Week 7" }, { "date": "Oct 22, 2006", @@ -104434,8 +154716,13 @@ "und": "Green Bay Packers", "sF": "24", "sU": "34", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "2006 Regular Season - Week 7" }, { "date": "Oct 22, 2006", @@ -104445,7 +154732,12 @@ "sF": "21", "sU": "23", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "2006 Regular Season - Week 7" }, { "date": "Oct 22, 2006", @@ -104455,7 +154747,12 @@ "sF": "17", "sU": "14", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2006 Regular Season - Week 7" }, { "date": "Oct 22, 2006", @@ -104465,7 +154762,12 @@ "sF": "7", "sU": "27", "spread": "8", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 15.75, + "sF": 23.75 + }, + "week": "2006 Regular Season - Week 7" }, { "date": "Oct 22, 2006", @@ -104474,8 +154776,13 @@ "und": "Detroit Lions", "sF": "31", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2006 Regular Season - Week 7" }, { "date": "Oct 22, 2006", @@ -104485,7 +154792,12 @@ "sF": "38", "sU": "41", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2006 Regular Season - Week 7" }, { "date": "Oct 22, 2006", @@ -104494,8 +154806,13 @@ "und": "Cleveland Browns", "sF": "17", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 31.0, + "pScore": { + "sU": 13.25, + "sF": 17.75 + }, + "week": "2006 Regular Season - Week 7" }, { "date": "Oct 22, 2006", @@ -104504,8 +154821,13 @@ "und": "Washington Redskins", "sF": "36", "sU": "22", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 47.0, + "pScore": { + "sU": 19.25, + "sF": 27.75 + }, + "week": "2006 Regular Season - Week 7" }, { "date": "Oct 22, 2006", @@ -104515,7 +154837,12 @@ "sF": "9", "sU": "22", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2006 Regular Season - Week 7" }, { "date": "Oct 22, 2006", @@ -104525,7 +154852,12 @@ "sF": "13", "sU": "31", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "2006 Regular Season - Week 7" }, { "date": "Oct 23, 2006", @@ -104535,7 +154867,12 @@ "sF": "22", "sU": "36", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2006 Regular Season - Week 7" }, { "date": "Oct 29, 2006", @@ -104545,7 +154882,12 @@ "sF": "35", "sU": "28", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "2006 Regular Season - Week 8" }, { "date": "Oct 29, 2006", @@ -104554,8 +154896,13 @@ "und": "Atlanta Falcons", "sF": "27", "sU": "29", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.5, + "pScore": { + "sU": 21.0, + "sF": 25.5 + }, + "week": "2006 Regular Season - Week 8" }, { "date": "Oct 29, 2006", @@ -104565,7 +154912,12 @@ "sF": "31", "sU": "14", "spread": "4", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 20.75, + "sF": 24.75 + }, + "week": "2006 Regular Season - Week 8" }, { "date": "Oct 29, 2006", @@ -104575,7 +154927,12 @@ "sF": "28", "sU": "22", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2006 Regular Season - Week 8" }, { "date": "Oct 29, 2006", @@ -104584,12 +154941,13 @@ "und": "San Francisco 49ers", "sF": "41", "sU": "10", - "spread": "16", - "ou": "49", + "spread": "16.5", + "ou": 42.0, "pScore": { - "sU": 16.5, - "sF": 32.5 - } + "sU": 12.75, + "sF": 29.25 + }, + "week": "2006 Regular Season - Week 8" }, { "date": "Oct 29, 2006", @@ -104599,7 +154957,12 @@ "sF": "22", "sU": "35", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "2006 Regular Season - Week 8" }, { "date": "Oct 29, 2006", @@ -104608,8 +154971,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "3", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 36.0, + "pScore": { + "sU": 13.25, + "sF": 22.75 + }, + "week": "2006 Regular Season - Week 8" }, { "date": "Oct 29, 2006", @@ -104619,7 +154987,12 @@ "sF": "6", "sU": "13", "spread": "8", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.5, + "sF": 23.5 + }, + "week": "2006 Regular Season - Week 8" }, { "date": "Oct 29, 2006", @@ -104629,7 +155002,12 @@ "sF": "38", "sU": "24", "spread": "9", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.5, + "sF": 27.5 + }, + "week": "2006 Regular Season - Week 8" }, { "date": "Oct 29, 2006", @@ -104639,7 +155017,12 @@ "sF": "31", "sU": "34", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2006 Regular Season - Week 8" }, { "date": "Oct 29, 2006", @@ -104649,7 +155032,12 @@ "sF": "13", "sU": "20", "spread": "9", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 14.75, + "sF": 23.75 + }, + "week": "2006 Regular Season - Week 8" }, { "date": "Oct 29, 2006", @@ -104658,8 +155046,13 @@ "und": "New York Jets", "sF": "20", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.5, + "pScore": { + "sU": 18.0, + "sF": 19.5 + }, + "week": "2006 Regular Season - Week 8" }, { "date": "Oct 29, 2006", @@ -104668,8 +155061,13 @@ "und": "Dallas Cowboys", "sF": "14", "sU": "35", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.5, + "pScore": { + "sU": 17.5, + "sF": 23.0 + }, + "week": "2006 Regular Season - Week 8" }, { "date": "Oct 30, 2006", @@ -104678,8 +155076,13 @@ "und": "Minnesota Vikings", "sF": "31", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "2006 Regular Season - Week 8" }, { "date": "Nov 5, 2006", @@ -104689,7 +155092,12 @@ "sF": "26", "sU": "20", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2006 Regular Season - Week 9" }, { "date": "Nov 5, 2006", @@ -104699,7 +155107,12 @@ "sF": "24", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2006 Regular Season - Week 9" }, { "date": "Nov 5, 2006", @@ -104708,8 +155121,13 @@ "und": "Miami Dolphins", "sF": "13", "sU": "31", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 37.5, + "pScore": { + "sU": 12.0, + "sF": 25.5 + }, + "week": "2006 Regular Season - Week 9" }, { "date": "Nov 5, 2006", @@ -104719,7 +155137,12 @@ "sF": "14", "sU": "10", "spread": "13", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 15.25, + "sF": 28.25 + }, + "week": "2006 Regular Season - Week 9" }, { "date": "Nov 5, 2006", @@ -104729,7 +155152,12 @@ "sF": "17", "sU": "31", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2006 Regular Season - Week 9" }, { "date": "Nov 5, 2006", @@ -104738,8 +155166,13 @@ "und": "New Orleans Saints", "sF": "14", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.0, + "pScore": { + "sU": 17.75, + "sF": 19.25 + }, + "week": "2006 Regular Season - Week 9" }, { "date": "Nov 5, 2006", @@ -104749,7 +155182,12 @@ "sF": "19", "sU": "22", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2006 Regular Season - Week 9" }, { "date": "Nov 5, 2006", @@ -104759,7 +155197,12 @@ "sF": "30", "sU": "14", "spread": "5", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.0, + "sF": 26.0 + }, + "week": "2006 Regular Season - Week 9" }, { "date": "Nov 5, 2006", @@ -104768,8 +155211,13 @@ "und": "Tennessee Titans", "sF": "37", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 37.0, + "pScore": { + "sU": 13.75, + "sF": 23.25 + }, + "week": "2006 Regular Season - Week 9" }, { "date": "Nov 5, 2006", @@ -104779,11 +155227,12 @@ "sF": "3", "sU": "9", "spread": "4", - "ou": "49", + "ou": 43.0, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sU": 19.5, + "sF": 23.5 + }, + "week": "2006 Regular Season - Week 9" }, { "date": "Nov 5, 2006", @@ -104792,8 +155241,13 @@ "und": "Denver Broncos", "sF": "20", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "2006 Regular Season - Week 9" }, { "date": "Nov 5, 2006", @@ -104802,8 +155256,13 @@ "und": "Cleveland Browns", "sF": "32", "sU": "25", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 42.0, + "pScore": { + "sU": 14.25, + "sF": 27.75 + }, + "week": "2006 Regular Season - Week 9" }, { "date": "Nov 5, 2006", @@ -104812,8 +155271,13 @@ "und": "Indianapolis Colts", "sF": "20", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.5, + "pScore": { + "sU": 22.5, + "sF": 25.0 + }, + "week": "2006 Regular Season - Week 9" }, { "date": "Nov 6, 2006", @@ -104822,8 +155286,13 @@ "und": "Oakland Raiders", "sF": "16", "sU": "0", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.0, + "pScore": { + "sU": 14.25, + "sF": 21.75 + }, + "week": "2006 Regular Season - Week 9" }, { "date": "Nov 12, 2006", @@ -104832,8 +155301,13 @@ "und": "Buffalo Bills", "sF": "17", "sU": "16", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 45.0, + "pScore": { + "sU": 16.25, + "sF": 28.75 + }, + "week": "2006 Regular Season - Week 10" }, { "date": "Nov 12, 2006", @@ -104842,8 +155316,13 @@ "und": "New York Jets", "sF": "14", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 38.0, + "pScore": { + "sU": 13.75, + "sF": 24.25 + }, + "week": "2006 Regular Season - Week 10" }, { "date": "Nov 12, 2006", @@ -104853,7 +155332,12 @@ "sF": "27", "sU": "3", "spread": "8", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 16.75, + "sF": 24.75 + }, + "week": "2006 Regular Season - Week 10" }, { "date": "Nov 12, 2006", @@ -104862,8 +155346,13 @@ "und": "Cincinnati Bengals", "sF": "49", "sU": "41", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 48.0, + "pScore": { + "sU": 23.25, + "sF": 24.75 + }, + "week": "2006 Regular Season - Week 10" }, { "date": "Nov 12, 2006", @@ -104873,11 +155362,12 @@ "sF": "13", "sU": "19", "spread": "6", - "ou": "49", + "ou": 46.5, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 20.25, + "sF": 26.25 + }, + "week": "2006 Regular Season - Week 10" }, { "date": "Nov 12, 2006", @@ -104886,8 +155376,13 @@ "und": "Houston Texans", "sF": "10", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 37.5, + "pScore": { + "sU": 13.5, + "sF": 24.0 + }, + "week": "2006 Regular Season - Week 10" }, { "date": "Nov 12, 2006", @@ -104897,7 +155392,12 @@ "sF": "13", "sU": "10", "spread": "2", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.25, + "sF": 21.25 + }, + "week": "2006 Regular Season - Week 10" }, { "date": "Nov 12, 2006", @@ -104906,8 +155406,13 @@ "und": "Tennessee Titans", "sF": "27", "sU": "26", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.0, + "pScore": { + "sU": 15.25, + "sF": 22.75 + }, + "week": "2006 Regular Season - Week 10" }, { "date": "Nov 12, 2006", @@ -104916,8 +155421,13 @@ "und": "Cleveland Browns", "sF": "13", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.5, + "pScore": { + "sU": 17.0, + "sF": 24.5 + }, + "week": "2006 Regular Season - Week 10" }, { "date": "Nov 12, 2006", @@ -104927,7 +155437,12 @@ "sF": "17", "sU": "23", "spread": "5", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.75, + "sF": 22.75 + }, + "week": "2006 Regular Season - Week 10" }, { "date": "Nov 12, 2006", @@ -104937,7 +155452,12 @@ "sF": "17", "sU": "13", "spread": "8", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 12.75, + "sF": 20.75 + }, + "week": "2006 Regular Season - Week 10" }, { "date": "Nov 12, 2006", @@ -104946,8 +155466,13 @@ "und": "New Orleans Saints", "sF": "38", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.5, + "pScore": { + "sU": 19.5, + "sF": 26.0 + }, + "week": "2006 Regular Season - Week 10" }, { "date": "Nov 12, 2006", @@ -104956,8 +155481,13 @@ "und": "Arizona Cardinals", "sF": "27", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2006 Regular Season - Week 10" }, { "date": "Nov 12, 2006", @@ -104967,7 +155497,12 @@ "sF": "24", "sU": "22", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2006 Regular Season - Week 10" }, { "date": "Nov 12, 2006", @@ -104977,7 +155512,12 @@ "sF": "20", "sU": "38", "spread": "1", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 18.25, + "sF": 19.25 + }, + "week": "2006 Regular Season - Week 10" }, { "date": "Nov 13, 2006", @@ -104987,7 +155527,12 @@ "sF": "24", "sU": "10", "spread": "10", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.5, + "sF": 23.5 + }, + "week": "2006 Regular Season - Week 10" }, { "date": "Nov 19, 2006", @@ -104997,7 +155542,12 @@ "sF": "17", "sU": "13", "spread": "9", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 13.75, + "sF": 22.75 + }, + "week": "2006 Regular Season - Week 11" }, { "date": "Nov 19, 2006", @@ -105007,7 +155557,12 @@ "sF": "13", "sU": "31", "spread": "13", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 15.25, + "sF": 28.25 + }, + "week": "2006 Regular Season - Week 11" }, { "date": "Nov 19, 2006", @@ -105016,8 +155571,13 @@ "und": "Atlanta Falcons", "sF": "24", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2006 Regular Season - Week 11" }, { "date": "Nov 19, 2006", @@ -105026,8 +155586,13 @@ "und": "St Louis Rams", "sF": "15", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "2006 Regular Season - Week 11" }, { "date": "Nov 19, 2006", @@ -105037,7 +155602,12 @@ "sF": "35", "sU": "0", "spread": "6", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.0, + "sF": 26.0 + }, + "week": "2006 Regular Season - Week 11" }, { "date": "Nov 19, 2006", @@ -105047,7 +155617,12 @@ "sF": "16", "sU": "31", "spread": "3", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 24.75, + "sF": 27.75 + }, + "week": "2006 Regular Season - Week 11" }, { "date": "Nov 19, 2006", @@ -105057,7 +155632,12 @@ "sF": "24", "sU": "20", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "2006 Regular Season - Week 11" }, { "date": "Nov 19, 2006", @@ -105066,8 +155646,13 @@ "und": "Buffalo Bills", "sF": "21", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "2006 Regular Season - Week 11" }, { "date": "Nov 19, 2006", @@ -105077,7 +155662,12 @@ "sF": "24", "sU": "20", "spread": "3", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 15.25, + "sF": 18.25 + }, + "week": "2006 Regular Season - Week 11" }, { "date": "Nov 19, 2006", @@ -105087,7 +155677,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "2006 Regular Season - Week 11" }, { "date": "Nov 19, 2006", @@ -105096,8 +155691,13 @@ "und": "New York Jets", "sF": "10", "sU": "0", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.5, + "pScore": { + "sU": 17.5, + "sF": 23.0 + }, + "week": "2006 Regular Season - Week 11" }, { "date": "Nov 19, 2006", @@ -105106,8 +155706,13 @@ "und": "Detroit Lions", "sF": "17", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2006 Regular Season - Week 11" }, { "date": "Nov 19, 2006", @@ -105117,11 +155722,12 @@ "sF": "14", "sU": "20", "spread": "3", - "ou": "49", + "ou": 43.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 20.25, + "sF": 23.25 + }, + "week": "2006 Regular Season - Week 11" }, { "date": "Nov 19, 2006", @@ -105131,7 +155737,12 @@ "sF": "14", "sU": "21", "spread": "1", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 24.0, + "sF": 25.0 + }, + "week": "2006 Regular Season - Week 11" }, { "date": "Nov 19, 2006", @@ -105140,8 +155751,13 @@ "und": "San Diego Chargers", "sF": "27", "sU": "35", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2006 Regular Season - Week 11" }, { "date": "Nov 20, 2006", @@ -105150,8 +155766,13 @@ "und": "New York Giants", "sF": "26", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "2006 Regular Season - Week 11" }, { "date": "Nov 23, 2006", @@ -105160,8 +155781,13 @@ "und": "Detroit Lions", "sF": "27", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "2006 Regular Season - Week 12" }, { "date": "Nov 23, 2006", @@ -105171,7 +155797,12 @@ "sF": "38", "sU": "10", "spread": "11", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.0, + "sF": 25.0 + }, + "week": "2006 Regular Season - Week 12" }, { "date": "Nov 23, 2006", @@ -105181,7 +155812,12 @@ "sF": "19", "sU": "10", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "2006 Regular Season - Week 12" }, { "date": "Nov 26, 2006", @@ -105191,7 +155827,12 @@ "sF": "27", "sU": "0", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2006 Regular Season - Week 12" }, { "date": "Nov 26, 2006", @@ -105201,7 +155842,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "2006 Regular Season - Week 12" }, { "date": "Nov 26, 2006", @@ -105210,8 +155856,13 @@ "und": "Houston Texans", "sF": "26", "sU": "11", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "2006 Regular Season - Week 12" }, { "date": "Nov 26, 2006", @@ -105220,12 +155871,13 @@ "und": "San Francisco 49ers", "sF": "20", "sU": "17", - "spread": "4", - "ou": "49", + "spread": "4.5", + "ou": 45.0, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sU": 20.25, + "sF": 24.75 + }, + "week": "2006 Regular Season - Week 12" }, { "date": "Nov 26, 2006", @@ -105235,7 +155887,12 @@ "sF": "13", "sU": "17", "spread": "6", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 15.0, + "sF": 21.0 + }, + "week": "2006 Regular Season - Week 12" }, { "date": "Nov 26, 2006", @@ -105245,7 +155902,12 @@ "sF": "30", "sU": "0", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2006 Regular Season - Week 12" }, { "date": "Nov 26, 2006", @@ -105255,7 +155917,12 @@ "sF": "13", "sU": "31", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2006 Regular Season - Week 12" }, { "date": "Nov 26, 2006", @@ -105265,7 +155932,12 @@ "sF": "31", "sU": "26", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "2006 Regular Season - Week 12" }, { "date": "Nov 26, 2006", @@ -105275,7 +155947,12 @@ "sF": "21", "sU": "14", "spread": "13", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 15.0, + "sF": 28.0 + }, + "week": "2006 Regular Season - Week 12" }, { "date": "Nov 26, 2006", @@ -105284,8 +155961,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "2006 Regular Season - Week 12" }, { "date": "Nov 26, 2006", @@ -105294,8 +155976,13 @@ "und": "Tennessee Titans", "sF": "21", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2006 Regular Season - Week 12" }, { "date": "Nov 26, 2006", @@ -105304,8 +155991,13 @@ "und": "Philadelphia Eagles", "sF": "45", "sU": "21", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 45.0, + "pScore": { + "sU": 17.75, + "sF": 27.25 + }, + "week": "2006 Regular Season - Week 12" }, { "date": "Nov 27, 2006", @@ -105315,7 +156007,12 @@ "sF": "34", "sU": "24", "spread": "10", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 16.25, + "sF": 26.25 + }, + "week": "2006 Regular Season - Week 12" }, { "date": "Nov 30, 2006", @@ -105324,8 +156021,13 @@ "und": "Baltimore Ravens", "sF": "13", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2006 Regular Season - Week 13" }, { "date": "Dec 3, 2006", @@ -105334,8 +156036,13 @@ "und": "Buffalo Bills", "sF": "24", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.5, + "pScore": { + "sU": 18.5, + "sF": 24.0 + }, + "week": "2006 Regular Season - Week 13" }, { "date": "Dec 3, 2006", @@ -105344,8 +156051,13 @@ "und": "Detroit Lions", "sF": "28", "sU": "21", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 41.5, + "pScore": { + "sU": 14.0, + "sF": 27.5 + }, + "week": "2006 Regular Season - Week 13" }, { "date": "Dec 3, 2006", @@ -105354,8 +156066,13 @@ "und": "Arizona Cardinals", "sF": "20", "sU": "34", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "2006 Regular Season - Week 13" }, { "date": "Dec 3, 2006", @@ -105365,7 +156082,12 @@ "sF": "23", "sU": "13", "spread": "9", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 12.75, + "sF": 21.75 + }, + "week": "2006 Regular Season - Week 13" }, { "date": "Dec 3, 2006", @@ -105375,7 +156097,12 @@ "sF": "28", "sU": "31", "spread": "5", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 15.25, + "sF": 20.25 + }, + "week": "2006 Regular Season - Week 13" }, { "date": "Dec 3, 2006", @@ -105384,8 +156111,13 @@ "und": "Tennessee Titans", "sF": "17", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.5, + "pScore": { + "sU": 19.5, + "sF": 27.0 + }, + "week": "2006 Regular Season - Week 13" }, { "date": "Dec 3, 2006", @@ -105394,8 +156126,13 @@ "und": "Atlanta Falcons", "sF": "14", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.5, + "pScore": { + "sU": 18.5, + "sF": 20.0 + }, + "week": "2006 Regular Season - Week 13" }, { "date": "Dec 3, 2006", @@ -105405,11 +156142,12 @@ "sF": "34", "sU": "10", "spread": "7", - "ou": "49", + "ou": 45.5, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 19.25, + "sF": 26.25 + }, + "week": "2006 Regular Season - Week 13" }, { "date": "Dec 3, 2006", @@ -105418,8 +156156,13 @@ "und": "Houston Texans", "sF": "14", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.5, + "pScore": { + "sU": 16.0, + "sF": 19.5 + }, + "week": "2006 Regular Season - Week 13" }, { "date": "Dec 3, 2006", @@ -105428,8 +156171,13 @@ "und": "New York Giants", "sF": "23", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2006 Regular Season - Week 13" }, { "date": "Dec 3, 2006", @@ -105439,7 +156187,12 @@ "sF": "20", "sU": "3", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "2006 Regular Season - Week 13" }, { "date": "Dec 3, 2006", @@ -105449,7 +156202,12 @@ "sF": "20", "sU": "23", "spread": "4", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.25, + "sF": 22.25 + }, + "week": "2006 Regular Season - Week 13" }, { "date": "Dec 4, 2006", @@ -105459,7 +156217,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2006 Regular Season - Week 13" }, { "date": "Dec 7, 2006", @@ -105468,8 +156231,13 @@ "und": "Cleveland Browns", "sF": "27", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 34.5, + "pScore": { + "sU": 13.5, + "sF": 21.0 + }, + "week": "2006 Regular Season - Week 14" }, { "date": "Dec 10, 2006", @@ -105479,7 +156247,12 @@ "sF": "10", "sU": "20", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2006 Regular Season - Week 14" }, { "date": "Dec 10, 2006", @@ -105488,8 +156261,13 @@ "und": "Carolina Panthers", "sF": "27", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "2006 Regular Season - Week 14" }, { "date": "Dec 10, 2006", @@ -105498,8 +156276,13 @@ "und": "Tennessee Titans", "sF": "20", "sU": "26", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "2006 Regular Season - Week 14" }, { "date": "Dec 10, 2006", @@ -105509,7 +156292,12 @@ "sF": "0", "sU": "21", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2006 Regular Season - Week 14" }, { "date": "Dec 10, 2006", @@ -105519,7 +156307,12 @@ "sF": "17", "sU": "6", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2006 Regular Season - Week 14" }, { "date": "Dec 10, 2006", @@ -105528,8 +156321,13 @@ "und": "Oakland Raiders", "sF": "27", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 39.5, + "pScore": { + "sU": 14.5, + "sF": 25.0 + }, + "week": "2006 Regular Season - Week 14" }, { "date": "Dec 10, 2006", @@ -105539,7 +156337,12 @@ "sF": "20", "sU": "30", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "2006 Regular Season - Week 14" }, { "date": "Dec 10, 2006", @@ -105549,7 +156352,12 @@ "sF": "17", "sU": "44", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2006 Regular Season - Week 14" }, { "date": "Dec 10, 2006", @@ -105559,7 +156367,12 @@ "sF": "21", "sU": "19", "spread": "2", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.25, + "sF": 21.25 + }, + "week": "2006 Regular Season - Week 14" }, { "date": "Dec 10, 2006", @@ -105568,8 +156381,13 @@ "und": "Arizona Cardinals", "sF": "21", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2006 Regular Season - Week 14" }, { "date": "Dec 10, 2006", @@ -105579,7 +156397,12 @@ "sF": "19", "sU": "30", "spread": "4", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.75, + "sF": 23.75 + }, + "week": "2006 Regular Season - Week 14" }, { "date": "Dec 10, 2006", @@ -105588,8 +156411,13 @@ "und": "Buffalo Bills", "sF": "13", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.5, + "pScore": { + "sU": 17.0, + "sF": 20.5 + }, + "week": "2006 Regular Season - Week 14" }, { "date": "Dec 10, 2006", @@ -105599,7 +156427,12 @@ "sF": "48", "sU": "20", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "2006 Regular Season - Week 14" }, { "date": "Dec 10, 2006", @@ -105608,8 +156441,13 @@ "und": "New Orleans Saints", "sF": "17", "sU": "42", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.0, + "pScore": { + "sU": 20.75, + "sF": 27.25 + }, + "week": "2006 Regular Season - Week 14" }, { "date": "Dec 11, 2006", @@ -105618,8 +156456,13 @@ "und": "St Louis Rams", "sF": "42", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "2006 Regular Season - Week 14" }, { "date": "Dec 14, 2006", @@ -105629,11 +156472,12 @@ "sF": "14", "sU": "24", "spread": "10", - "ou": "49", + "ou": 38.0, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sU": 14.0, + "sF": 24.0 + }, + "week": "2006 Regular Season - Week 15" }, { "date": "Dec 16, 2006", @@ -105642,8 +156486,13 @@ "und": "Atlanta Falcons", "sF": "38", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "2006 Regular Season - Week 15" }, { "date": "Dec 17, 2006", @@ -105653,7 +156502,12 @@ "sF": "27", "sU": "17", "spread": "12", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 11.25, + "sF": 23.25 + }, + "week": "2006 Regular Season - Week 15" }, { "date": "Dec 17, 2006", @@ -105663,7 +156517,12 @@ "sF": "21", "sU": "0", "spread": "1", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 16.75, + "sF": 17.75 + }, + "week": "2006 Regular Season - Week 15" }, { "date": "Dec 17, 2006", @@ -105672,8 +156531,13 @@ "und": "Carolina Panthers", "sF": "37", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "2006 Regular Season - Week 15" }, { "date": "Dec 17, 2006", @@ -105683,7 +156547,12 @@ "sF": "17", "sU": "9", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "2006 Regular Season - Week 15" }, { "date": "Dec 17, 2006", @@ -105692,8 +156561,13 @@ "und": "Houston Texans", "sF": "40", "sU": "7", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 37.5, + "pScore": { + "sU": 12.5, + "sF": 25.0 + }, + "week": "2006 Regular Season - Week 15" }, { "date": "Dec 17, 2006", @@ -105702,8 +156576,13 @@ "und": "Tennessee Titans", "sF": "17", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2006 Regular Season - Week 15" }, { "date": "Dec 17, 2006", @@ -105712,8 +156591,13 @@ "und": "Washington Redskins", "sF": "10", "sU": "16", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 47.0, + "pScore": { + "sU": 18.75, + "sF": 28.25 + }, + "week": "2006 Regular Season - Week 15" }, { "date": "Dec 17, 2006", @@ -105722,8 +156606,13 @@ "und": "Tampa Bay Buccaneers", "sF": "34", "sU": "31", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 35.0, + "pScore": { + "sU": 10.75, + "sF": 24.25 + }, + "week": "2006 Regular Season - Week 15" }, { "date": "Dec 17, 2006", @@ -105733,7 +156622,12 @@ "sF": "13", "sU": "26", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2006 Regular Season - Week 15" }, { "date": "Dec 17, 2006", @@ -105742,8 +156636,13 @@ "und": "Arizona Cardinals", "sF": "37", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2006 Regular Season - Week 15" }, { "date": "Dec 17, 2006", @@ -105753,7 +156652,12 @@ "sF": "22", "sU": "36", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "2006 Regular Season - Week 15" }, { "date": "Dec 17, 2006", @@ -105763,7 +156667,12 @@ "sF": "0", "sU": "20", "spread": "2", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.75, + "sF": 20.75 + }, + "week": "2006 Regular Season - Week 15" }, { "date": "Dec 17, 2006", @@ -105773,7 +156682,12 @@ "sF": "20", "sU": "9", "spread": "9", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.0, + "sF": 28.0 + }, + "week": "2006 Regular Season - Week 15" }, { "date": "Dec 18, 2006", @@ -105782,8 +156696,13 @@ "und": "Cincinnati Bengals", "sF": "34", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 55.0, + "pScore": { + "sU": 25.75, + "sF": 29.25 + }, + "week": "2006 Regular Season - Week 15" }, { "date": "Dec 21, 2006", @@ -105793,7 +156712,12 @@ "sF": "9", "sU": "7", "spread": "4", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.25, + "sF": 21.25 + }, + "week": "2006 Regular Season - Week 16" }, { "date": "Dec 23, 2006", @@ -105803,7 +156727,12 @@ "sF": "20", "sU": "9", "spread": "7", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 14.25, + "sF": 21.25 + }, + "week": "2006 Regular Season - Week 16" }, { "date": "Dec 24, 2006", @@ -105812,8 +156741,13 @@ "und": "Tennessee Titans", "sF": "29", "sU": "30", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "2006 Regular Season - Week 16" }, { "date": "Dec 24, 2006", @@ -105823,7 +156757,12 @@ "sF": "7", "sU": "31", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "2006 Regular Season - Week 16" }, { "date": "Dec 24, 2006", @@ -105833,7 +156772,12 @@ "sF": "37", "sU": "31", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "2006 Regular Season - Week 16" }, { "date": "Dec 24, 2006", @@ -105843,7 +156787,12 @@ "sF": "3", "sU": "10", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2006 Regular Season - Week 16" }, { "date": "Dec 24, 2006", @@ -105853,7 +156802,12 @@ "sF": "7", "sU": "22", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2006 Regular Season - Week 16" }, { "date": "Dec 24, 2006", @@ -105863,7 +156817,12 @@ "sF": "26", "sU": "21", "spread": "6", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.75, + "sF": 23.75 + }, + "week": "2006 Regular Season - Week 16" }, { "date": "Dec 24, 2006", @@ -105872,8 +156831,13 @@ "und": "Houston Texans", "sF": "24", "sU": "27", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 47.0, + "pScore": { + "sU": 18.75, + "sF": 28.25 + }, + "week": "2006 Regular Season - Week 16" }, { "date": "Dec 24, 2006", @@ -105883,7 +156847,12 @@ "sF": "21", "sU": "24", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2006 Regular Season - Week 16" }, { "date": "Dec 24, 2006", @@ -105893,7 +156862,12 @@ "sF": "7", "sU": "30", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2006 Regular Season - Week 16" }, { "date": "Dec 24, 2006", @@ -105903,7 +156877,12 @@ "sF": "20", "sU": "26", "spread": "4", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.5, + "sF": 24.5 + }, + "week": "2006 Regular Season - Week 16" }, { "date": "Dec 24, 2006", @@ -105913,7 +156892,12 @@ "sF": "24", "sU": "23", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2006 Regular Season - Week 16" }, { "date": "Dec 24, 2006", @@ -105922,8 +156906,13 @@ "und": "Seattle Seahawks", "sF": "20", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.0, + "pScore": { + "sU": 20.25, + "sF": 24.75 + }, + "week": "2006 Regular Season - Week 16" }, { "date": "Dec 25, 2006", @@ -105933,7 +156922,12 @@ "sF": "7", "sU": "23", "spread": "7", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 20.75, + "sF": 27.75 + }, + "week": "2006 Regular Season - Week 16" }, { "date": "Dec 25, 2006", @@ -105943,7 +156937,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2006 Regular Season - Week 16" }, { "date": "Dec 30, 2006", @@ -105953,7 +156952,12 @@ "sF": "34", "sU": "28", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "2006 Regular Season - Week 17" }, { "date": "Dec 31, 2006", @@ -105962,8 +156966,13 @@ "und": "Jacksonville Jaguars", "sF": "35", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2006 Regular Season - Week 17" }, { "date": "Dec 31, 2006", @@ -105973,7 +156982,12 @@ "sF": "31", "sU": "39", "spread": "14", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 16.0, + "sF": 30.0 + }, + "week": "2006 Regular Season - Week 17" }, { "date": "Dec 31, 2006", @@ -105983,7 +156997,12 @@ "sF": "14", "sU": "6", "spread": "6", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.75, + "sF": 21.75 + }, + "week": "2006 Regular Season - Week 17" }, { "date": "Dec 31, 2006", @@ -105992,8 +157011,13 @@ "und": "Oakland Raiders", "sF": "23", "sU": "3", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 34.5, + "pScore": { + "sU": 12.0, + "sF": 22.5 + }, + "week": "2006 Regular Season - Week 17" }, { "date": "Dec 31, 2006", @@ -106003,7 +157027,12 @@ "sF": "23", "sU": "40", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2006 Regular Season - Week 17" }, { "date": "Dec 31, 2006", @@ -106013,7 +157042,12 @@ "sF": "17", "sU": "23", "spread": "6", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.25, + "sF": 25.25 + }, + "week": "2006 Regular Season - Week 17" }, { "date": "Dec 31, 2006", @@ -106023,7 +157057,12 @@ "sF": "31", "sU": "21", "spread": "2", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.25, + "sF": 20.25 + }, + "week": "2006 Regular Season - Week 17" }, { "date": "Dec 31, 2006", @@ -106033,7 +157072,12 @@ "sF": "7", "sU": "23", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2006 Regular Season - Week 17" }, { "date": "Dec 31, 2006", @@ -106042,8 +157086,13 @@ "und": "Minnesota Vikings", "sF": "41", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2006 Regular Season - Week 17" }, { "date": "Dec 31, 2006", @@ -106052,8 +157101,13 @@ "und": "Atlanta Falcons", "sF": "24", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.0, + "pScore": { + "sU": 17.25, + "sF": 25.75 + }, + "week": "2006 Regular Season - Week 17" }, { "date": "Dec 31, 2006", @@ -106063,7 +157117,12 @@ "sF": "27", "sU": "22", "spread": "9", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 17.25, + "sF": 26.25 + }, + "week": "2006 Regular Season - Week 17" }, { "date": "Dec 31, 2006", @@ -106073,7 +157132,12 @@ "sF": "27", "sU": "20", "spread": "14", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 15.0, + "sF": 29.0 + }, + "week": "2006 Regular Season - Week 17" }, { "date": "Dec 31, 2006", @@ -106083,7 +157147,12 @@ "sF": "19", "sU": "7", "spread": "9", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 14.25, + "sF": 23.25 + }, + "week": "2006 Regular Season - Week 17" }, { "date": "Dec 31, 2006", @@ -106093,11 +157162,12 @@ "sF": "23", "sU": "26", "spread": "10", - "ou": "49", + "ou": 39.0, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sU": 14.5, + "sF": 24.5 + }, + "week": "2006 Regular Season - Week 17" }, { "date": "Dec 31, 2006", @@ -106106,8 +157176,13 @@ "und": "Green Bay Packers", "sF": "7", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2006 Regular Season - Week 17" }, { "date": "Jan 6, 2007", @@ -106116,8 +157191,13 @@ "und": "Kansas City Chiefs (6)", "sF": "23", "sU": "8", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 51.0, + "pScore": { + "sU": 22.25, + "sF": 28.75 + }, + "week": "2006 Playoffs" }, { "date": "Jan 6, 2007", @@ -106127,7 +157207,12 @@ "sF": "21", "sU": "20", "spread": "2", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.25, + "sF": 25.25 + }, + "week": "2006 Playoffs" }, { "date": "Jan 7, 2007", @@ -106137,7 +157222,12 @@ "sF": "37", "sU": "16", "spread": "9", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 14.75, + "sF": 23.75 + }, + "week": "2006 Playoffs" }, { "date": "Jan 7, 2007", @@ -106147,7 +157237,12 @@ "sF": "23", "sU": "20", "spread": "6", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.25, + "sF": 26.25 + }, + "week": "2006 Playoffs" }, { "date": "Jan 13, 2007", @@ -106157,7 +157252,12 @@ "sF": "6", "sU": "15", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "2006 Playoffs" }, { "date": "Jan 13, 2007", @@ -106166,8 +157266,13 @@ "und": "Philadelphia Eagles (3)", "sF": "27", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 48.5, + "pScore": { + "sU": 21.5, + "sF": 27.0 + }, + "week": "2006 Playoffs" }, { "date": "Jan 14, 2007", @@ -106176,8 +157281,13 @@ "und": "Seattle Seahawks (4)", "sF": "27", "sU": "24", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 37.5, + "pScore": { + "sU": 14.0, + "sF": 23.5 + }, + "week": "2006 Playoffs" }, { "date": "Jan 14, 2007", @@ -106187,7 +157297,12 @@ "sF": "21", "sU": "24", "spread": "5", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.75, + "sF": 25.75 + }, + "week": "2006 Playoffs" }, { "date": "Jan 21, 2007", @@ -106197,7 +157312,12 @@ "sF": "39", "sU": "14", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2006 Playoffs" }, { "date": "Jan 21, 2007", @@ -106207,7 +157327,12 @@ "sF": "38", "sU": "34", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2006 Playoffs" }, { "date": "Feb 4, 2007", @@ -106216,8 +157341,13 @@ "und": "Chicago Bears (1)", "sF": "29", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "2006 Playoffs" }, { "date": "Sep 6, 2007", @@ -106226,8 +157356,13 @@ "und": "New Orleans Saints", "sF": "41", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 53.5, + "pScore": { + "sU": 24.0, + "sF": 29.5 + }, + "week": "2007 Regular Season - Week 1" }, { "date": "Sep 9, 2007", @@ -106237,7 +157372,12 @@ "sF": "13", "sU": "27", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "2007 Regular Season - Week 1" }, { "date": "Sep 9, 2007", @@ -106247,7 +157387,12 @@ "sF": "24", "sU": "3", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "2007 Regular Season - Week 1" }, { "date": "Sep 9, 2007", @@ -106257,7 +157402,12 @@ "sF": "15", "sU": "14", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2007 Regular Season - Week 1" }, { "date": "Sep 9, 2007", @@ -106267,7 +157417,12 @@ "sF": "13", "sU": "16", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2007 Regular Season - Week 1" }, { "date": "Sep 9, 2007", @@ -106277,7 +157432,12 @@ "sF": "16", "sU": "13", "spread": "3", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 15.75, + "sF": 18.75 + }, + "week": "2007 Regular Season - Week 1" }, { "date": "Sep 9, 2007", @@ -106286,8 +157446,13 @@ "und": "Cleveland Browns", "sF": "34", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 36.5, + "pScore": { + "sU": 16.0, + "sF": 20.5 + }, + "week": "2007 Regular Season - Week 1" }, { "date": "Sep 9, 2007", @@ -106296,8 +157461,13 @@ "und": "New York Jets", "sF": "38", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "2007 Regular Season - Week 1" }, { "date": "Sep 9, 2007", @@ -106307,7 +157477,12 @@ "sF": "10", "sU": "13", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "2007 Regular Season - Week 1" }, { "date": "Sep 9, 2007", @@ -106317,7 +157492,12 @@ "sF": "20", "sU": "3", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2007 Regular Season - Week 1" }, { "date": "Sep 9, 2007", @@ -106326,8 +157506,13 @@ "und": "Detroit Lions", "sF": "21", "sU": "36", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "2007 Regular Season - Week 1" }, { "date": "Sep 9, 2007", @@ -106337,7 +157522,12 @@ "sF": "14", "sU": "3", "spread": "6", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.25, + "sF": 24.25 + }, + "week": "2007 Regular Season - Week 1" }, { "date": "Sep 9, 2007", @@ -106347,7 +157537,12 @@ "sF": "20", "sU": "6", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2007 Regular Season - Week 1" }, { "date": "Sep 9, 2007", @@ -106356,8 +157551,13 @@ "und": "New York Giants", "sF": "45", "sU": "35", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "2007 Regular Season - Week 1" }, { "date": "Sep 10, 2007", @@ -106366,8 +157566,13 @@ "und": "Baltimore Ravens", "sF": "27", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2007 Regular Season - Week 1" }, { "date": "Sep 10, 2007", @@ -106377,7 +157582,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2007 Regular Season - Week 1" }, { "date": "Sep 16, 2007", @@ -106386,8 +157596,13 @@ "und": "Houston Texans", "sF": "21", "sU": "34", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.5, + "pScore": { + "sU": 16.0, + "sF": 22.5 + }, + "week": "2007 Regular Season - Week 2" }, { "date": "Sep 16, 2007", @@ -106397,7 +157612,12 @@ "sF": "26", "sU": "3", "spread": "10", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.5, + "sF": 24.5 + }, + "week": "2007 Regular Season - Week 2" }, { "date": "Sep 16, 2007", @@ -106407,11 +157627,12 @@ "sF": "16", "sU": "17", "spread": "3", - "ou": "49", + "ou": 44.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 20.5, + "sF": 23.5 + }, + "week": "2007 Regular Season - Week 2" }, { "date": "Sep 16, 2007", @@ -106421,7 +157642,12 @@ "sF": "22", "sU": "20", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "2007 Regular Season - Week 2" }, { "date": "Sep 16, 2007", @@ -106431,7 +157657,12 @@ "sF": "45", "sU": "51", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2007 Regular Season - Week 2" }, { "date": "Sep 16, 2007", @@ -106441,7 +157672,12 @@ "sF": "14", "sU": "31", "spread": "4", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.75, + "sF": 22.75 + }, + "week": "2007 Regular Season - Week 2" }, { "date": "Sep 16, 2007", @@ -106451,7 +157687,12 @@ "sF": "13", "sU": "7", "spread": "10", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 12.25, + "sF": 22.25 + }, + "week": "2007 Regular Season - Week 2" }, { "date": "Sep 16, 2007", @@ -106460,8 +157701,13 @@ "und": "Green Bay Packers", "sF": "13", "sU": "35", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "2007 Regular Season - Week 2" }, { "date": "Sep 16, 2007", @@ -106470,8 +157716,13 @@ "und": "Arizona Cardinals", "sF": "20", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2007 Regular Season - Week 2" }, { "date": "Sep 16, 2007", @@ -106481,7 +157732,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2007 Regular Season - Week 2" }, { "date": "Sep 16, 2007", @@ -106490,8 +157746,13 @@ "und": "Miami Dolphins", "sF": "37", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "2007 Regular Season - Week 2" }, { "date": "Sep 16, 2007", @@ -106501,7 +157762,12 @@ "sF": "20", "sU": "13", "spread": "10", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 11.5, + "sF": 21.5 + }, + "week": "2007 Regular Season - Week 2" }, { "date": "Sep 16, 2007", @@ -106511,7 +157777,12 @@ "sF": "20", "sU": "10", "spread": "12", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 11.25, + "sF": 23.25 + }, + "week": "2007 Regular Season - Week 2" }, { "date": "Sep 16, 2007", @@ -106521,7 +157792,12 @@ "sF": "23", "sU": "20", "spread": "10", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.5, + "sF": 23.5 + }, + "week": "2007 Regular Season - Week 2" }, { "date": "Sep 16, 2007", @@ -106530,8 +157806,13 @@ "und": "San Diego Chargers", "sF": "38", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2007 Regular Season - Week 2" }, { "date": "Sep 17, 2007", @@ -106541,7 +157822,12 @@ "sF": "12", "sU": "20", "spread": "7", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.75, + "sF": 22.75 + }, + "week": "2007 Regular Season - Week 2" }, { "date": "Sep 23, 2007", @@ -106551,7 +157837,12 @@ "sF": "26", "sU": "23", "spread": "7", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 14.25, + "sF": 21.25 + }, + "week": "2007 Regular Season - Week 3" }, { "date": "Sep 23, 2007", @@ -106561,7 +157852,12 @@ "sF": "13", "sU": "10", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "2007 Regular Season - Week 3" }, { "date": "Sep 23, 2007", @@ -106570,8 +157866,13 @@ "und": "Green Bay Packers", "sF": "24", "sU": "31", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.5, + "pScore": { + "sU": 18.5, + "sF": 24.0 + }, + "week": "2007 Regular Season - Week 3" }, { "date": "Sep 23, 2007", @@ -106580,8 +157881,13 @@ "und": "Buffalo Bills", "sF": "38", "sU": "7", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 41.0, + "pScore": { + "sU": 12.25, + "sF": 28.75 + }, + "week": "2007 Regular Season - Week 3" }, { "date": "Sep 23, 2007", @@ -106591,7 +157897,12 @@ "sF": "31", "sU": "28", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2007 Regular Season - Week 3" }, { "date": "Sep 23, 2007", @@ -106601,7 +157912,12 @@ "sF": "56", "sU": "21", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "2007 Regular Season - Week 3" }, { "date": "Sep 23, 2007", @@ -106610,12 +157926,13 @@ "und": "San Francisco 49ers", "sF": "37", "sU": "16", - "spread": "9", - "ou": "49", + "spread": "9.5", + "ou": 38.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 14.25, + "sF": 23.75 + }, + "week": "2007 Regular Season - Week 3" }, { "date": "Sep 23, 2007", @@ -106624,8 +157941,13 @@ "und": "St Louis Rams", "sF": "24", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "2007 Regular Season - Week 3" }, { "date": "Sep 23, 2007", @@ -106634,8 +157956,13 @@ "und": "Houston Texans", "sF": "30", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.5, + "pScore": { + "sU": 20.0, + "sF": 26.5 + }, + "week": "2007 Regular Season - Week 3" }, { "date": "Sep 23, 2007", @@ -106645,7 +157972,12 @@ "sF": "14", "sU": "23", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2007 Regular Season - Week 3" }, { "date": "Sep 23, 2007", @@ -106655,7 +157987,12 @@ "sF": "26", "sU": "24", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2007 Regular Season - Week 3" }, { "date": "Sep 23, 2007", @@ -106665,7 +158002,12 @@ "sF": "24", "sU": "21", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "2007 Regular Season - Week 3" }, { "date": "Sep 23, 2007", @@ -106675,7 +158017,12 @@ "sF": "27", "sU": "20", "spread": "4", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.25, + "sF": 21.25 + }, + "week": "2007 Regular Season - Week 3" }, { "date": "Sep 23, 2007", @@ -106684,8 +158031,13 @@ "und": "New York Giants", "sF": "17", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2007 Regular Season - Week 3" }, { "date": "Sep 23, 2007", @@ -106695,7 +158047,12 @@ "sF": "10", "sU": "34", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2007 Regular Season - Week 3" }, { "date": "Sep 24, 2007", @@ -106704,8 +158061,13 @@ "und": "Tennessee Titans", "sF": "14", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.5, + "pScore": { + "sU": 21.0, + "sF": 25.5 + }, + "week": "2007 Regular Season - Week 3" }, { "date": "Sep 30, 2007", @@ -106714,8 +158076,13 @@ "und": "Atlanta Falcons", "sF": "16", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "2007 Regular Season - Week 4" }, { "date": "Sep 30, 2007", @@ -106725,7 +158092,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2007 Regular Season - Week 4" }, { "date": "Sep 30, 2007", @@ -106734,8 +158106,13 @@ "und": "Cleveland Browns", "sF": "13", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "2007 Regular Season - Week 4" }, { "date": "Sep 30, 2007", @@ -106745,7 +158122,12 @@ "sF": "35", "sU": "7", "spread": "13", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 17.0, + "sF": 30.0 + }, + "week": "2007 Regular Season - Week 4" }, { "date": "Sep 30, 2007", @@ -106754,8 +158136,13 @@ "und": "Detroit Lions", "sF": "27", "sU": "37", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "2007 Regular Season - Week 4" }, { "date": "Sep 30, 2007", @@ -106765,7 +158152,12 @@ "sF": "23", "sU": "16", "spread": "1", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.5, + "sF": 19.5 + }, + "week": "2007 Regular Season - Week 4" }, { "date": "Sep 30, 2007", @@ -106774,8 +158166,13 @@ "und": "Oakland Raiders", "sF": "17", "sU": "35", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2007 Regular Season - Week 4" }, { "date": "Sep 30, 2007", @@ -106785,11 +158182,12 @@ "sF": "23", "sU": "3", "spread": "1", - "ou": "49", + "ou": 40.5, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 19.75, + "sF": 20.75 + }, + "week": "2007 Regular Season - Week 4" }, { "date": "Sep 30, 2007", @@ -106799,7 +158197,12 @@ "sF": "7", "sU": "20", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2007 Regular Season - Week 4" }, { "date": "Sep 30, 2007", @@ -106809,7 +158212,12 @@ "sF": "14", "sU": "21", "spread": "5", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.75, + "sF": 23.75 + }, + "week": "2007 Regular Season - Week 4" }, { "date": "Sep 30, 2007", @@ -106819,7 +158227,12 @@ "sF": "38", "sU": "20", "spread": "10", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 18.25, + "sF": 28.25 + }, + "week": "2007 Regular Season - Week 4" }, { "date": "Sep 30, 2007", @@ -106829,7 +158242,12 @@ "sF": "16", "sU": "30", "spread": "12", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 13.25, + "sF": 25.25 + }, + "week": "2007 Regular Season - Week 4" }, { "date": "Sep 30, 2007", @@ -106838,8 +158256,13 @@ "und": "New York Giants", "sF": "3", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.0, + "pScore": { + "sU": 22.25, + "sF": 24.75 + }, + "week": "2007 Regular Season - Week 4" }, { "date": "Oct 1, 2007", @@ -106848,8 +158271,13 @@ "und": "Cincinnati Bengals", "sF": "34", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 54.0, + "pScore": { + "sU": 23.25, + "sF": 30.75 + }, + "week": "2007 Regular Season - Week 4" }, { "date": "Oct 7, 2007", @@ -106859,7 +158287,12 @@ "sF": "17", "sU": "7", "spread": "2", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.5, + "sF": 18.5 + }, + "week": "2007 Regular Season - Week 5" }, { "date": "Oct 7, 2007", @@ -106868,8 +158301,13 @@ "und": "Miami Dolphins", "sF": "22", "sU": "19", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.5, + "pScore": { + "sU": 19.0, + "sF": 24.5 + }, + "week": "2007 Regular Season - Week 5" }, { "date": "Oct 7, 2007", @@ -106878,8 +158316,13 @@ "und": "Cleveland Browns", "sF": "34", "sU": "17", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 48.0, + "pScore": { + "sU": 16.25, + "sF": 31.75 + }, + "week": "2007 Regular Season - Week 5" }, { "date": "Oct 7, 2007", @@ -106889,7 +158332,12 @@ "sF": "35", "sU": "24", "spread": "4", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.25, + "sF": 22.25 + }, + "week": "2007 Regular Season - Week 5" }, { "date": "Oct 7, 2007", @@ -106899,7 +158347,12 @@ "sF": "21", "sU": "0", "spread": "5", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.25, + "sF": 23.25 + }, + "week": "2007 Regular Season - Week 5" }, { "date": "Oct 7, 2007", @@ -106908,8 +158361,13 @@ "und": "St Louis Rams", "sF": "34", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2007 Regular Season - Week 5" }, { "date": "Oct 7, 2007", @@ -106919,7 +158377,12 @@ "sF": "34", "sU": "3", "spread": "4", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.25, + "sF": 24.25 + }, + "week": "2007 Regular Season - Week 5" }, { "date": "Oct 7, 2007", @@ -106929,7 +158392,12 @@ "sF": "13", "sU": "16", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2007 Regular Season - Week 5" }, { "date": "Oct 7, 2007", @@ -106938,8 +158406,13 @@ "und": "Atlanta Falcons", "sF": "20", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.0, + "pScore": { + "sU": 16.75, + "sF": 24.25 + }, + "week": "2007 Regular Season - Week 5" }, { "date": "Oct 7, 2007", @@ -106949,7 +158422,12 @@ "sF": "33", "sU": "14", "spread": "9", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 18.0, + "sF": 27.0 + }, + "week": "2007 Regular Season - Week 5" }, { "date": "Oct 7, 2007", @@ -106959,7 +158437,12 @@ "sF": "41", "sU": "3", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "2007 Regular Season - Week 5" }, { "date": "Oct 7, 2007", @@ -106969,11 +158452,12 @@ "sF": "9", "sU": "7", "spread": "3", - "ou": "49", + "ou": 34.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 15.75, + "sF": 18.75 + }, + "week": "2007 Regular Season - Week 5" }, { "date": "Oct 7, 2007", @@ -106982,8 +158466,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "2007 Regular Season - Week 5" }, { "date": "Oct 8, 2007", @@ -106993,7 +158482,12 @@ "sF": "25", "sU": "24", "spread": "11", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.0, + "sF": 28.0 + }, + "week": "2007 Regular Season - Week 5" }, { "date": "Oct 14, 2007", @@ -107002,8 +158496,13 @@ "und": "Kansas City Chiefs", "sF": "20", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2007 Regular Season - Week 6" }, { "date": "Oct 14, 2007", @@ -107013,7 +158512,12 @@ "sF": "22", "sU": "3", "spread": "9", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 13.75, + "sF": 22.75 + }, + "week": "2007 Regular Season - Week 6" }, { "date": "Oct 14, 2007", @@ -107022,8 +158526,13 @@ "und": "Minnesota Vikings", "sF": "31", "sU": "34", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 35.5, + "pScore": { + "sU": 15.5, + "sF": 20.0 + }, + "week": "2007 Regular Season - Week 6" }, { "date": "Oct 14, 2007", @@ -107033,7 +158542,12 @@ "sF": "17", "sU": "14", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2007 Regular Season - Week 6" }, { "date": "Oct 14, 2007", @@ -107042,8 +158556,13 @@ "und": "New York Jets", "sF": "16", "sU": "9", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.5, + "pScore": { + "sU": 19.5, + "sF": 24.0 + }, + "week": "2007 Regular Season - Week 6" }, { "date": "Oct 14, 2007", @@ -107053,7 +158572,12 @@ "sF": "41", "sU": "31", "spread": "4", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.5, + "sF": 24.5 + }, + "week": "2007 Regular Season - Week 6" }, { "date": "Oct 14, 2007", @@ -107063,7 +158587,12 @@ "sF": "37", "sU": "17", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "2007 Regular Season - Week 6" }, { "date": "Oct 14, 2007", @@ -107072,8 +158601,13 @@ "und": "Tennessee Titans", "sF": "13", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2007 Regular Season - Week 6" }, { "date": "Oct 14, 2007", @@ -107083,7 +158617,12 @@ "sF": "10", "sU": "25", "spread": "6", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 16.25, + "sF": 22.25 + }, + "week": "2007 Regular Season - Week 6" }, { "date": "Oct 14, 2007", @@ -107092,8 +158631,13 @@ "und": "Oakland Raiders", "sF": "28", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.0, + "pScore": { + "sU": 17.25, + "sF": 26.75 + }, + "week": "2007 Regular Season - Week 6" }, { "date": "Oct 14, 2007", @@ -107103,7 +158647,12 @@ "sF": "48", "sU": "27", "spread": "5", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 24.0, + "sF": 29.0 + }, + "week": "2007 Regular Season - Week 6" }, { "date": "Oct 14, 2007", @@ -107112,8 +158661,13 @@ "und": "New Orleans Saints", "sF": "17", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "2007 Regular Season - Week 6" }, { "date": "Oct 15, 2007", @@ -107122,8 +158676,13 @@ "und": "Atlanta Falcons", "sF": "31", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "2007 Regular Season - Week 6" }, { "date": "Oct 21, 2007", @@ -107133,7 +158692,12 @@ "sF": "14", "sU": "19", "spread": "3", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 15.25, + "sF": 18.25 + }, + "week": "2007 Regular Season - Week 7" }, { "date": "Oct 21, 2007", @@ -107143,7 +158707,12 @@ "sF": "36", "sU": "38", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "2007 Regular Season - Week 7" }, { "date": "Oct 21, 2007", @@ -107152,8 +158721,13 @@ "und": "Miami Dolphins", "sF": "49", "sU": "28", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 49.5, + "pScore": { + "sU": 17.0, + "sF": 32.5 + }, + "week": "2007 Regular Season - Week 7" }, { "date": "Oct 21, 2007", @@ -107163,7 +158737,12 @@ "sF": "21", "sU": "19", "spread": "8", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.0, + "sF": 22.0 + }, + "week": "2007 Regular Season - Week 7" }, { "date": "Oct 21, 2007", @@ -107172,8 +158751,13 @@ "und": "Tampa Bay Buccaneers", "sF": "23", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2007 Regular Season - Week 7" }, { "date": "Oct 21, 2007", @@ -107182,8 +158766,13 @@ "und": "Atlanta Falcons", "sF": "22", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "2007 Regular Season - Week 7" }, { "date": "Oct 21, 2007", @@ -107192,12 +158781,13 @@ "und": "San Francisco 49ers", "sF": "33", "sU": "15", - "spread": "9", - "ou": "49", + "spread": "9.5", + "ou": 39.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 14.75, + "sF": 24.25 + }, + "week": "2007 Regular Season - Week 7" }, { "date": "Oct 21, 2007", @@ -107207,7 +158797,12 @@ "sF": "38", "sU": "31", "spread": "6", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 21.25, + "sF": 27.25 + }, + "week": "2007 Regular Season - Week 7" }, { "date": "Oct 21, 2007", @@ -107216,8 +158811,13 @@ "und": "Kansas City Chiefs", "sF": "10", "sU": "12", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "2007 Regular Season - Week 7" }, { "date": "Oct 21, 2007", @@ -107226,8 +158826,13 @@ "und": "Chicago Bears", "sF": "16", "sU": "19", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "2007 Regular Season - Week 7" }, { "date": "Oct 21, 2007", @@ -107236,8 +158841,13 @@ "und": "Minnesota Vikings", "sF": "24", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 46.5, + "pScore": { + "sU": 18.5, + "sF": 28.0 + }, + "week": "2007 Regular Season - Week 7" }, { "date": "Oct 21, 2007", @@ -107246,8 +158856,13 @@ "und": "St Louis Rams", "sF": "33", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.5, + "pScore": { + "sU": 16.0, + "sF": 23.5 + }, + "week": "2007 Regular Season - Week 7" }, { "date": "Oct 21, 2007", @@ -107256,8 +158871,13 @@ "und": "Denver Broncos", "sF": "28", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.5, + "pScore": { + "sU": 17.0, + "sF": 21.5 + }, + "week": "2007 Regular Season - Week 7" }, { "date": "Oct 22, 2007", @@ -107267,7 +158887,12 @@ "sF": "29", "sU": "7", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2007 Regular Season - Week 7" }, { "date": "Oct 28, 2007", @@ -107277,7 +158902,12 @@ "sF": "27", "sU": "20", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2007 Regular Season - Week 8" }, { "date": "Oct 28, 2007", @@ -107286,8 +158916,13 @@ "und": "Carolina Panthers", "sF": "31", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2007 Regular Season - Week 8" }, { "date": "Oct 28, 2007", @@ -107297,7 +158932,12 @@ "sF": "24", "sU": "13", "spread": "4", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.25, + "sF": 26.25 + }, + "week": "2007 Regular Season - Week 8" }, { "date": "Oct 28, 2007", @@ -107307,7 +158947,12 @@ "sF": "13", "sU": "9", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "2007 Regular Season - Week 8" }, { "date": "Oct 28, 2007", @@ -107317,7 +158962,12 @@ "sF": "13", "sU": "10", "spread": "10", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 19.0, + "sF": 29.0 + }, + "week": "2007 Regular Season - Week 8" }, { "date": "Oct 28, 2007", @@ -107327,7 +158977,12 @@ "sF": "7", "sU": "16", "spread": "6", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.75, + "sF": 25.75 + }, + "week": "2007 Regular Season - Week 8" }, { "date": "Oct 28, 2007", @@ -107337,7 +158992,12 @@ "sF": "23", "sU": "16", "spread": "1", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 18.25, + "sF": 19.25 + }, + "week": "2007 Regular Season - Week 8" }, { "date": "Oct 28, 2007", @@ -107347,7 +159007,12 @@ "sF": "3", "sU": "13", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "2007 Regular Season - Week 8" }, { "date": "Oct 28, 2007", @@ -107357,7 +159022,12 @@ "sF": "35", "sU": "10", "spread": "10", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 17.75, + "sF": 27.75 + }, + "week": "2007 Regular Season - Week 8" }, { "date": "Oct 28, 2007", @@ -107366,8 +159036,13 @@ "und": "Jacksonville Jaguars", "sF": "23", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 32.0, + "pScore": { + "sU": 14.25, + "sF": 17.75 + }, + "week": "2007 Regular Season - Week 8" }, { "date": "Oct 28, 2007", @@ -107376,8 +159051,13 @@ "und": "Washington Redskins", "sF": "52", "sU": "7", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 46.5, + "pScore": { + "sU": 16.0, + "sF": 30.5 + }, + "week": "2007 Regular Season - Week 8" }, { "date": "Oct 28, 2007", @@ -107386,12 +159066,13 @@ "und": "San Francisco 49ers", "sF": "31", "sU": "10", - "spread": "1", - "ou": "49", + "spread": "1.5", + "ou": 40.0, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 19.25, + "sF": 20.75 + }, + "week": "2007 Regular Season - Week 8" }, { "date": "Oct 29, 2007", @@ -107401,7 +159082,12 @@ "sF": "13", "sU": "19", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2007 Regular Season - Week 8" }, { "date": "Nov 4, 2007", @@ -107410,8 +159096,13 @@ "und": "Green Bay Packers", "sF": "22", "sU": "33", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2007 Regular Season - Week 9" }, { "date": "Nov 4, 2007", @@ -107420,8 +159111,13 @@ "und": "Arizona Cardinals", "sF": "17", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "2007 Regular Season - Week 9" }, { "date": "Nov 4, 2007", @@ -107430,12 +159126,13 @@ "und": "San Francisco 49ers", "sF": "20", "sU": "16", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": 37.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 16.75, + "sF": 20.25 + }, + "week": "2007 Regular Season - Week 9" }, { "date": "Nov 4, 2007", @@ -107445,7 +159142,12 @@ "sF": "21", "sU": "33", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2007 Regular Season - Week 9" }, { "date": "Nov 4, 2007", @@ -107455,7 +159157,12 @@ "sF": "44", "sU": "7", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2007 Regular Season - Week 9" }, { "date": "Nov 4, 2007", @@ -107465,7 +159172,12 @@ "sF": "41", "sU": "24", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2007 Regular Season - Week 9" }, { "date": "Nov 4, 2007", @@ -107474,8 +159186,13 @@ "und": "New York Jets", "sF": "23", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "2007 Regular Season - Week 9" }, { "date": "Nov 4, 2007", @@ -107484,8 +159201,13 @@ "und": "Carolina Panthers", "sF": "20", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 35.5, + "pScore": { + "sU": 15.0, + "sF": 20.5 + }, + "week": "2007 Regular Season - Week 9" }, { "date": "Nov 4, 2007", @@ -107495,7 +159217,12 @@ "sF": "17", "sU": "35", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "2007 Regular Season - Week 9" }, { "date": "Nov 4, 2007", @@ -107504,8 +159231,13 @@ "und": "Seattle Seahawks", "sF": "33", "sU": "30", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.0, + "pScore": { + "sU": 22.75, + "sF": 24.25 + }, + "week": "2007 Regular Season - Week 9" }, { "date": "Nov 4, 2007", @@ -107515,7 +159247,12 @@ "sF": "17", "sU": "24", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2007 Regular Season - Week 9" }, { "date": "Nov 4, 2007", @@ -107525,7 +159262,12 @@ "sF": "24", "sU": "20", "spread": "5", - "ou": -1 + "ou": 56.5, + "pScore": { + "sU": 25.75, + "sF": 30.75 + }, + "week": "2007 Regular Season - Week 9" }, { "date": "Nov 4, 2007", @@ -107535,7 +159277,12 @@ "sF": "38", "sU": "17", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2007 Regular Season - Week 9" }, { "date": "Nov 5, 2007", @@ -107544,8 +159291,13 @@ "und": "Baltimore Ravens", "sF": "38", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 36.0, + "pScore": { + "sU": 13.25, + "sF": 22.75 + }, + "week": "2007 Regular Season - Week 9" }, { "date": "Nov 11, 2007", @@ -107554,8 +159306,13 @@ "und": "Denver Broncos", "sF": "11", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2007 Regular Season - Week 10" }, { "date": "Nov 11, 2007", @@ -107565,7 +159322,12 @@ "sF": "34", "sU": "0", "spread": "6", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.25, + "sF": 23.25 + }, + "week": "2007 Regular Season - Week 10" }, { "date": "Nov 11, 2007", @@ -107574,8 +159336,13 @@ "und": "Miami Dolphins", "sF": "13", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "2007 Regular Season - Week 10" }, { "date": "Nov 11, 2007", @@ -107584,8 +159351,13 @@ "und": "St Louis Rams", "sF": "29", "sU": "37", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 47.0, + "pScore": { + "sU": 18.25, + "sF": 28.75 + }, + "week": "2007 Regular Season - Week 10" }, { "date": "Nov 11, 2007", @@ -107594,8 +159366,13 @@ "und": "Cleveland Browns", "sF": "31", "sU": "28", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 47.5, + "pScore": { + "sU": 19.0, + "sF": 28.5 + }, + "week": "2007 Regular Season - Week 10" }, { "date": "Nov 11, 2007", @@ -107605,7 +159382,12 @@ "sF": "13", "sU": "20", "spread": "4", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 15.75, + "sF": 19.75 + }, + "week": "2007 Regular Season - Week 10" }, { "date": "Nov 11, 2007", @@ -107614,8 +159396,13 @@ "und": "Jacksonville Jaguars", "sF": "13", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "2007 Regular Season - Week 10" }, { "date": "Nov 11, 2007", @@ -107624,8 +159411,13 @@ "und": "Philadelphia Eagles", "sF": "25", "sU": "33", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2007 Regular Season - Week 10" }, { "date": "Nov 11, 2007", @@ -107635,7 +159427,12 @@ "sF": "7", "sU": "21", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2007 Regular Season - Week 10" }, { "date": "Nov 11, 2007", @@ -107645,7 +159442,12 @@ "sF": "31", "sU": "21", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "2007 Regular Season - Week 10" }, { "date": "Nov 11, 2007", @@ -107654,8 +159456,13 @@ "und": "New York Giants", "sF": "31", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 48.0, + "pScore": { + "sU": 23.25, + "sF": 24.75 + }, + "week": "2007 Regular Season - Week 10" }, { "date": "Nov 11, 2007", @@ -107664,8 +159471,13 @@ "und": "Oakland Raiders", "sF": "17", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "2007 Regular Season - Week 10" }, { "date": "Nov 11, 2007", @@ -107674,8 +159486,13 @@ "und": "San Diego Chargers", "sF": "21", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2007 Regular Season - Week 10" }, { "date": "Nov 12, 2007", @@ -107685,11 +159502,12 @@ "sF": "24", "sU": "0", "spread": "9", - "ou": "49", + "ou": 37.5, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 14.25, + "sF": 23.25 + }, + "week": "2007 Regular Season - Week 10" }, { "date": "Nov 18, 2007", @@ -107699,7 +159517,12 @@ "sF": "33", "sU": "30", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "2007 Regular Season - Week 11" }, { "date": "Nov 18, 2007", @@ -107708,8 +159531,13 @@ "und": "Arizona Cardinals", "sF": "27", "sU": "35", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "2007 Regular Season - Week 11" }, { "date": "Nov 18, 2007", @@ -107719,7 +159547,12 @@ "sF": "31", "sU": "17", "spread": "10", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 13.75, + "sF": 23.75 + }, + "week": "2007 Regular Season - Week 11" }, { "date": "Nov 18, 2007", @@ -107729,7 +159562,12 @@ "sF": "23", "sU": "10", "spread": "1", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 24.75, + "sF": 25.75 + }, + "week": "2007 Regular Season - Week 11" }, { "date": "Nov 18, 2007", @@ -107738,8 +159576,13 @@ "und": "Kansas City Chiefs", "sF": "13", "sU": "10", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 41.5, + "pScore": { + "sU": 13.5, + "sF": 28.0 + }, + "week": "2007 Regular Season - Week 11" }, { "date": "Nov 18, 2007", @@ -107748,8 +159591,13 @@ "und": "Miami Dolphins", "sF": "17", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 40.0, + "pScore": { + "sU": 15.25, + "sF": 24.75 + }, + "week": "2007 Regular Season - Week 11" }, { "date": "Nov 18, 2007", @@ -107758,8 +159606,13 @@ "und": "Detroit Lions", "sF": "16", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.0, + "pScore": { + "sU": 22.75, + "sF": 25.25 + }, + "week": "2007 Regular Season - Week 11" }, { "date": "Nov 18, 2007", @@ -107769,7 +159622,12 @@ "sF": "24", "sU": "17", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2007 Regular Season - Week 11" }, { "date": "Nov 18, 2007", @@ -107779,7 +159637,12 @@ "sF": "31", "sU": "7", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "2007 Regular Season - Week 11" }, { "date": "Nov 18, 2007", @@ -107788,8 +159651,13 @@ "und": "Oakland Raiders", "sF": "29", "sU": "22", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 35.5, + "pScore": { + "sU": 15.5, + "sF": 20.0 + }, + "week": "2007 Regular Season - Week 11" }, { "date": "Nov 18, 2007", @@ -107798,8 +159666,13 @@ "und": "New York Jets", "sF": "16", "sU": "19", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 40.5, + "pScore": { + "sU": 15.5, + "sF": 25.0 + }, + "week": "2007 Regular Season - Week 11" }, { "date": "Nov 18, 2007", @@ -107809,7 +159682,12 @@ "sF": "28", "sU": "23", "spread": "11", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 18.0, + "sF": 29.0 + }, + "week": "2007 Regular Season - Week 11" }, { "date": "Nov 18, 2007", @@ -107819,11 +159697,12 @@ "sF": "13", "sU": "9", "spread": "3", - "ou": "49", + "ou": 39.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 18.25, + "sF": 21.25 + }, + "week": "2007 Regular Season - Week 11" }, { "date": "Nov 18, 2007", @@ -107832,8 +159711,13 @@ "und": "Chicago Bears", "sF": "30", "sU": "23", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.5, + "pScore": { + "sU": 16.0, + "sF": 21.5 + }, + "week": "2007 Regular Season - Week 11" }, { "date": "Nov 18, 2007", @@ -107843,7 +159727,12 @@ "sF": "56", "sU": "10", "spread": "16", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 15.25, + "sF": 31.25 + }, + "week": "2007 Regular Season - Week 11" }, { "date": "Nov 22, 2007", @@ -107853,7 +159742,12 @@ "sF": "37", "sU": "26", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2007 Regular Season - Week 12" }, { "date": "Nov 22, 2007", @@ -107862,8 +159756,13 @@ "und": "New York Jets", "sF": "34", "sU": "3", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 47.5, + "pScore": { + "sU": 16.5, + "sF": 31.0 + }, + "week": "2007 Regular Season - Week 12" }, { "date": "Nov 22, 2007", @@ -107873,7 +159772,12 @@ "sF": "31", "sU": "13", "spread": "14", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 14.25, + "sF": 28.25 + }, + "week": "2007 Regular Season - Week 12" }, { "date": "Nov 25, 2007", @@ -107883,7 +159787,12 @@ "sF": "17", "sU": "20", "spread": "4", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 15.25, + "sF": 19.25 + }, + "week": "2007 Regular Season - Week 12" }, { "date": "Nov 25, 2007", @@ -107893,7 +159802,12 @@ "sF": "24", "sU": "19", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2007 Regular Season - Week 12" }, { "date": "Nov 25, 2007", @@ -107903,7 +159817,12 @@ "sF": "6", "sU": "35", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "2007 Regular Season - Week 12" }, { "date": "Nov 25, 2007", @@ -107913,7 +159832,12 @@ "sF": "19", "sU": "13", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "2007 Regular Season - Week 12" }, { "date": "Nov 25, 2007", @@ -107923,7 +159847,12 @@ "sF": "31", "sU": "6", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2007 Regular Season - Week 12" }, { "date": "Nov 25, 2007", @@ -107933,7 +159862,12 @@ "sF": "27", "sU": "17", "spread": "3", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 24.5, + "sF": 27.5 + }, + "week": "2007 Regular Season - Week 12" }, { "date": "Nov 25, 2007", @@ -107943,7 +159877,12 @@ "sF": "36", "sU": "14", "spread": "9", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.0, + "sF": 23.0 + }, + "week": "2007 Regular Season - Week 12" }, { "date": "Nov 25, 2007", @@ -107952,8 +159891,13 @@ "und": "Minnesota Vikings", "sF": "17", "sU": "41", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.0, + "pScore": { + "sU": 16.25, + "sF": 23.75 + }, + "week": "2007 Regular Season - Week 12" }, { "date": "Nov 25, 2007", @@ -107962,12 +159906,13 @@ "und": "San Francisco 49ers", "sF": "31", "sU": "37", - "spread": "10", - "ou": "49", + "spread": "10.5", + "ou": 38.0, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sU": 13.75, + "sF": 24.25 + }, + "week": "2007 Regular Season - Week 12" }, { "date": "Nov 25, 2007", @@ -107977,7 +159922,12 @@ "sF": "32", "sU": "14", "spread": "9", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 14.75, + "sF": 23.75 + }, + "week": "2007 Regular Season - Week 12" }, { "date": "Nov 25, 2007", @@ -107987,7 +159937,12 @@ "sF": "37", "sU": "34", "spread": "1", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 20.25, + "sF": 21.25 + }, + "week": "2007 Regular Season - Week 12" }, { "date": "Nov 25, 2007", @@ -107996,8 +159951,13 @@ "und": "Philadelphia Eagles", "sF": "31", "sU": "28", - "spread": "24", - "ou": -1 + "spread": "24.5", + "ou": 51.5, + "pScore": { + "sU": 13.5, + "sF": 38.0 + }, + "week": "2007 Regular Season - Week 12" }, { "date": "Nov 26, 2007", @@ -108007,7 +159967,12 @@ "sF": "3", "sU": "0", "spread": "16", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 11.25, + "sF": 27.25 + }, + "week": "2007 Regular Season - Week 12" }, { "date": "Nov 29, 2007", @@ -108016,8 +159981,13 @@ "und": "Green Bay Packers", "sF": "37", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 52.5, + "pScore": { + "sU": 23.0, + "sF": 29.5 + }, + "week": "2007 Regular Season - Week 13" }, { "date": "Dec 2, 2007", @@ -108027,7 +159997,12 @@ "sF": "24", "sU": "10", "spread": "6", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.75, + "sF": 21.75 + }, + "week": "2007 Regular Season - Week 13" }, { "date": "Dec 2, 2007", @@ -108037,7 +160012,12 @@ "sF": "28", "sU": "16", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2007 Regular Season - Week 13" }, { "date": "Dec 2, 2007", @@ -108047,7 +160027,12 @@ "sF": "28", "sU": "25", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "2007 Regular Season - Week 13" }, { "date": "Dec 2, 2007", @@ -108057,7 +160042,12 @@ "sF": "24", "sU": "28", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2007 Regular Season - Week 13" }, { "date": "Dec 2, 2007", @@ -108066,8 +160056,13 @@ "und": "Houston Texans", "sF": "28", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2007 Regular Season - Week 13" }, { "date": "Dec 2, 2007", @@ -108076,8 +160071,13 @@ "und": "Buffalo Bills", "sF": "16", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.5, + "pScore": { + "sU": 15.5, + "sF": 22.0 + }, + "week": "2007 Regular Season - Week 13" }, { "date": "Dec 2, 2007", @@ -108087,11 +160087,12 @@ "sF": "31", "sU": "14", "spread": "3", - "ou": "49", + "ou": 35.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 16.0, + "sF": 19.0 + }, + "week": "2007 Regular Season - Week 13" }, { "date": "Dec 2, 2007", @@ -108101,7 +160102,12 @@ "sF": "13", "sU": "40", "spread": "1", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 18.25, + "sF": 19.25 + }, + "week": "2007 Regular Season - Week 13" }, { "date": "Dec 2, 2007", @@ -108110,8 +160116,13 @@ "und": "Detroit Lions", "sF": "42", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.5, + "pScore": { + "sU": 20.0, + "sF": 24.5 + }, + "week": "2007 Regular Season - Week 13" }, { "date": "Dec 2, 2007", @@ -108121,7 +160132,12 @@ "sF": "20", "sU": "34", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2007 Regular Season - Week 13" }, { "date": "Dec 2, 2007", @@ -108131,7 +160147,12 @@ "sF": "21", "sU": "16", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "2007 Regular Season - Week 13" }, { "date": "Dec 2, 2007", @@ -108141,7 +160162,12 @@ "sF": "23", "sU": "27", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2007 Regular Season - Week 13" }, { "date": "Dec 2, 2007", @@ -108151,7 +160177,12 @@ "sF": "24", "sU": "10", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "2007 Regular Season - Week 13" }, { "date": "Dec 3, 2007", @@ -108160,8 +160191,13 @@ "und": "Baltimore Ravens", "sF": "27", "sU": "24", - "spread": "18", - "ou": -1 + "spread": "18.5", + "ou": 46.5, + "pScore": { + "sU": 14.0, + "sF": 32.5 + }, + "week": "2007 Regular Season - Week 13" }, { "date": "Dec 6, 2007", @@ -108171,7 +160207,12 @@ "sF": "24", "sU": "16", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2007 Regular Season - Week 14" }, { "date": "Dec 9, 2007", @@ -108180,8 +160221,13 @@ "und": "Houston Texans", "sF": "14", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2007 Regular Season - Week 14" }, { "date": "Dec 9, 2007", @@ -108191,7 +160237,12 @@ "sF": "38", "sU": "17", "spread": "7", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 13.5, + "sF": 20.5 + }, + "week": "2007 Regular Season - Week 14" }, { "date": "Dec 9, 2007", @@ -108201,7 +160252,12 @@ "sF": "19", "sU": "10", "spread": "10", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 17.75, + "sF": 27.75 + }, + "week": "2007 Regular Season - Week 14" }, { "date": "Dec 9, 2007", @@ -108211,7 +160267,12 @@ "sF": "38", "sU": "7", "spread": "10", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.25, + "sF": 25.25 + }, + "week": "2007 Regular Season - Week 14" }, { "date": "Dec 9, 2007", @@ -108221,7 +160282,12 @@ "sF": "13", "sU": "16", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2007 Regular Season - Week 14" }, { "date": "Dec 9, 2007", @@ -108231,7 +160297,12 @@ "sF": "23", "sU": "17", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "2007 Regular Season - Week 14" }, { "date": "Dec 9, 2007", @@ -108240,8 +160311,13 @@ "und": "Detroit Lions", "sF": "28", "sU": "27", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 50.5, + "pScore": { + "sU": 20.0, + "sF": 30.5 + }, + "week": "2007 Regular Season - Week 14" }, { "date": "Dec 9, 2007", @@ -108250,8 +160326,13 @@ "und": "Carolina Panthers", "sF": "37", "sU": "6", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 39.0, + "pScore": { + "sU": 14.25, + "sF": 24.75 + }, + "week": "2007 Regular Season - Week 14" }, { "date": "Dec 9, 2007", @@ -108260,12 +160341,13 @@ "und": "San Francisco 49ers", "sF": "27", "sU": "7", - "spread": "8", - "ou": "49", + "spread": "8.5", + "ou": 39.5, "pScore": { - "sU": 20.5, - "sF": 28.5 - } + "sU": 15.5, + "sF": 24.0 + }, + "week": "2007 Regular Season - Week 14" }, { "date": "Dec 9, 2007", @@ -108274,8 +160356,13 @@ "und": "Arizona Cardinals", "sF": "42", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.5, + "pScore": { + "sU": 18.5, + "sF": 26.0 + }, + "week": "2007 Regular Season - Week 14" }, { "date": "Dec 9, 2007", @@ -108284,8 +160371,13 @@ "und": "Kansas City Chiefs", "sF": "41", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.5, + "pScore": { + "sU": 15.0, + "sF": 22.5 + }, + "week": "2007 Regular Season - Week 14" }, { "date": "Dec 9, 2007", @@ -108294,8 +160386,13 @@ "und": "Pittsburgh Steelers", "sF": "34", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 49.5, + "pScore": { + "sU": 19.5, + "sF": 30.0 + }, + "week": "2007 Regular Season - Week 14" }, { "date": "Dec 9, 2007", @@ -108304,8 +160401,13 @@ "und": "New York Jets", "sF": "24", "sU": "18", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2007 Regular Season - Week 14" }, { "date": "Dec 9, 2007", @@ -108315,7 +160417,12 @@ "sF": "44", "sU": "20", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "2007 Regular Season - Week 14" }, { "date": "Dec 10, 2007", @@ -108324,8 +160431,13 @@ "und": "Atlanta Falcons", "sF": "34", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.0, + "pScore": { + "sU": 19.75, + "sF": 24.25 + }, + "week": "2007 Regular Season - Week 14" }, { "date": "Dec 13, 2007", @@ -108334,8 +160446,13 @@ "und": "Houston Texans", "sF": "13", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.5, + "pScore": { + "sU": 22.5, + "sF": 25.0 + }, + "week": "2007 Regular Season - Week 15" }, { "date": "Dec 15, 2007", @@ -108344,12 +160461,13 @@ "und": "San Francisco 49ers", "sF": "13", "sU": "20", - "spread": "8", - "ou": "49", + "spread": "8.5", + "ou": 43.0, "pScore": { - "sU": 20.5, - "sF": 28.5 - } + "sU": 17.25, + "sF": 25.75 + }, + "week": "2007 Regular Season - Week 15" }, { "date": "Dec 16, 2007", @@ -108358,8 +160476,13 @@ "und": "Kansas City Chiefs", "sF": "26", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 34.5, + "pScore": { + "sU": 15.5, + "sF": 19.0 + }, + "week": "2007 Regular Season - Week 15" }, { "date": "Dec 16, 2007", @@ -108369,7 +160492,12 @@ "sF": "33", "sU": "14", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2007 Regular Season - Week 15" }, { "date": "Dec 16, 2007", @@ -108379,7 +160507,12 @@ "sF": "10", "sU": "13", "spread": "8", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 14.5, + "sF": 22.5 + }, + "week": "2007 Regular Season - Week 15" }, { "date": "Dec 16, 2007", @@ -108388,8 +160521,13 @@ "und": "New York Jets", "sF": "20", "sU": "10", - "spread": "20", - "ou": -1 + "spread": "20.5", + "ou": 41.0, + "pScore": { + "sU": 10.25, + "sF": 30.75 + }, + "week": "2007 Regular Season - Week 15" }, { "date": "Dec 16, 2007", @@ -108399,7 +160537,12 @@ "sF": "8", "sU": "0", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "2007 Regular Season - Week 15" }, { "date": "Dec 16, 2007", @@ -108409,7 +160552,12 @@ "sF": "16", "sU": "22", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2007 Regular Season - Week 15" }, { "date": "Dec 16, 2007", @@ -108418,8 +160566,13 @@ "und": "Arizona Cardinals", "sF": "31", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "2007 Regular Season - Week 15" }, { "date": "Dec 16, 2007", @@ -108429,7 +160582,12 @@ "sF": "22", "sU": "29", "spread": "3", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 15.75, + "sF": 18.75 + }, + "week": "2007 Regular Season - Week 15" }, { "date": "Dec 16, 2007", @@ -108438,8 +160596,13 @@ "und": "Atlanta Falcons", "sF": "37", "sU": "3", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 37.5, + "pScore": { + "sU": 12.5, + "sF": 25.0 + }, + "week": "2007 Regular Season - Week 15" }, { "date": "Dec 16, 2007", @@ -108449,7 +160612,12 @@ "sF": "21", "sU": "14", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "2007 Regular Season - Week 15" }, { "date": "Dec 16, 2007", @@ -108459,7 +160627,12 @@ "sF": "6", "sU": "10", "spread": "10", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 19.5, + "sF": 29.5 + }, + "week": "2007 Regular Season - Week 15" }, { "date": "Dec 16, 2007", @@ -108468,8 +160641,13 @@ "und": "Detroit Lions", "sF": "51", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 46.0, + "pScore": { + "sU": 18.25, + "sF": 27.75 + }, + "week": "2007 Regular Season - Week 15" }, { "date": "Dec 16, 2007", @@ -108478,8 +160656,13 @@ "und": "Washington Redskins", "sF": "10", "sU": "22", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.5, + "pScore": { + "sU": 15.0, + "sF": 21.5 + }, + "week": "2007 Regular Season - Week 15" }, { "date": "Dec 17, 2007", @@ -108488,8 +160671,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.5, + "pScore": { + "sU": 16.5, + "sF": 27.0 + }, + "week": "2007 Regular Season - Week 15" }, { "date": "Dec 20, 2007", @@ -108499,7 +160687,12 @@ "sF": "41", "sU": "24", "spread": "8", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.5, + "sF": 25.5 + }, + "week": "2007 Regular Season - Week 16" }, { "date": "Dec 22, 2007", @@ -108508,8 +160701,13 @@ "und": "Carolina Panthers", "sF": "20", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 42.5, + "pScore": { + "sU": 16.0, + "sF": 26.5 + }, + "week": "2007 Regular Season - Week 16" }, { "date": "Dec 23, 2007", @@ -108519,7 +160717,12 @@ "sF": "38", "sU": "21", "spread": "3", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 14.5, + "sF": 17.5 + }, + "week": "2007 Regular Season - Week 16" }, { "date": "Dec 23, 2007", @@ -108529,7 +160732,12 @@ "sF": "14", "sU": "19", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2007 Regular Season - Week 16" }, { "date": "Dec 23, 2007", @@ -108539,7 +160747,12 @@ "sF": "25", "sU": "20", "spread": "5", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.25, + "sF": 24.25 + }, + "week": "2007 Regular Season - Week 16" }, { "date": "Dec 23, 2007", @@ -108548,8 +160761,13 @@ "und": "Houston Texans", "sF": "38", "sU": "15", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "2007 Regular Season - Week 16" }, { "date": "Dec 23, 2007", @@ -108558,8 +160776,13 @@ "und": "Oakland Raiders", "sF": "49", "sU": "11", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 39.5, + "pScore": { + "sU": 13.0, + "sF": 26.5 + }, + "week": "2007 Regular Season - Week 16" }, { "date": "Dec 23, 2007", @@ -108569,7 +160792,12 @@ "sF": "23", "sU": "38", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2007 Regular Season - Week 16" }, { "date": "Dec 23, 2007", @@ -108578,8 +160806,13 @@ "und": "Chicago Bears", "sF": "7", "sU": "35", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 32.0, + "pScore": { + "sU": 12.25, + "sF": 19.75 + }, + "week": "2007 Regular Season - Week 16" }, { "date": "Dec 23, 2007", @@ -108588,8 +160821,13 @@ "und": "Atlanta Falcons", "sF": "30", "sU": "27", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.5, + "pScore": { + "sU": 16.5, + "sF": 27.0 + }, + "week": "2007 Regular Season - Week 16" }, { "date": "Dec 23, 2007", @@ -108599,11 +160837,12 @@ "sF": "19", "sU": "21", "spread": "7", - "ou": "49", + "ou": 37.0, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 15.0, + "sF": 22.0 + }, + "week": "2007 Regular Season - Week 16" }, { "date": "Dec 23, 2007", @@ -108612,8 +160851,13 @@ "und": "Miami Dolphins", "sF": "28", "sU": "7", - "spread": "22", - "ou": -1 + "spread": "22.5", + "ou": 45.5, + "pScore": { + "sU": 11.5, + "sF": 34.0 + }, + "week": "2007 Regular Season - Week 16" }, { "date": "Dec 23, 2007", @@ -108623,7 +160867,12 @@ "sF": "10", "sU": "6", "spread": "9", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 14.25, + "sF": 23.25 + }, + "week": "2007 Regular Season - Week 16" }, { "date": "Dec 23, 2007", @@ -108632,8 +160881,13 @@ "und": "Baltimore Ravens", "sF": "27", "sU": "6", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 39.0, + "pScore": { + "sU": 12.75, + "sF": 26.25 + }, + "week": "2007 Regular Season - Week 16" }, { "date": "Dec 23, 2007", @@ -108642,8 +160896,13 @@ "und": "Washington Redskins", "sF": "21", "sU": "32", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.5, + "pScore": { + "sU": 17.0, + "sF": 23.5 + }, + "week": "2007 Regular Season - Week 16" }, { "date": "Dec 24, 2007", @@ -108652,8 +160911,13 @@ "und": "Denver Broncos", "sF": "23", "sU": "3", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 47.0, + "pScore": { + "sU": 19.25, + "sF": 27.75 + }, + "week": "2007 Regular Season - Week 16" }, { "date": "Dec 29, 2007", @@ -108662,8 +160926,13 @@ "und": "New York Giants", "sF": "38", "sU": "35", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 46.5, + "pScore": { + "sU": 16.5, + "sF": 30.0 + }, + "week": "2007 Regular Season - Week 17" }, { "date": "Dec 30, 2007", @@ -108673,7 +160942,12 @@ "sF": "33", "sU": "25", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "2007 Regular Season - Week 17" }, { "date": "Dec 30, 2007", @@ -108683,7 +160957,12 @@ "sF": "17", "sU": "9", "spread": "9", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.0, + "sF": 24.0 + }, + "week": "2007 Regular Season - Week 17" }, { "date": "Dec 30, 2007", @@ -108693,7 +160972,12 @@ "sF": "34", "sU": "13", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "2007 Regular Season - Week 17" }, { "date": "Dec 30, 2007", @@ -108703,7 +160987,12 @@ "sF": "42", "sU": "28", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "2007 Regular Season - Week 17" }, { "date": "Dec 30, 2007", @@ -108712,8 +161001,13 @@ "und": "Tampa Bay Buccaneers", "sF": "31", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "2007 Regular Season - Week 17" }, { "date": "Dec 30, 2007", @@ -108722,12 +161016,13 @@ "und": "San Francisco 49ers", "sF": "20", "sU": "7", - "spread": "11", - "ou": "49", + "spread": "11.5", + "ou": 41.0, "pScore": { - "sU": 19, - "sF": 30 - } + "sU": 14.75, + "sF": 26.25 + }, + "week": "2007 Regular Season - Week 17" }, { "date": "Dec 30, 2007", @@ -108737,7 +161032,12 @@ "sF": "38", "sU": "25", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2007 Regular Season - Week 17" }, { "date": "Dec 30, 2007", @@ -108747,7 +161047,12 @@ "sF": "41", "sU": "44", "spread": "2", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.25, + "sF": 20.25 + }, + "week": "2007 Regular Season - Week 17" }, { "date": "Dec 30, 2007", @@ -108757,7 +161062,12 @@ "sF": "48", "sU": "19", "spread": "6", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.5, + "sF": 27.5 + }, + "week": "2007 Regular Season - Week 17" }, { "date": "Dec 30, 2007", @@ -108766,8 +161076,13 @@ "und": "Kansas City Chiefs", "sF": "13", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 35.0, + "pScore": { + "sU": 15.25, + "sF": 19.75 + }, + "week": "2007 Regular Season - Week 17" }, { "date": "Dec 30, 2007", @@ -108777,7 +161092,12 @@ "sF": "30", "sU": "17", "spread": "9", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 16.75, + "sF": 25.75 + }, + "week": "2007 Regular Season - Week 17" }, { "date": "Dec 30, 2007", @@ -108787,7 +161107,12 @@ "sF": "27", "sU": "6", "spread": "9", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 15.25, + "sF": 24.25 + }, + "week": "2007 Regular Season - Week 17" }, { "date": "Dec 30, 2007", @@ -108797,7 +161122,12 @@ "sF": "19", "sU": "22", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2007 Regular Season - Week 17" }, { "date": "Dec 30, 2007", @@ -108807,7 +161137,12 @@ "sF": "21", "sU": "27", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "2007 Regular Season - Week 17" }, { "date": "Dec 30, 2007", @@ -108816,8 +161151,13 @@ "und": "Indianapolis Colts", "sF": "16", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "2007 Regular Season - Week 17" }, { "date": "Jan 5, 2008", @@ -108826,8 +161166,13 @@ "und": "Washington Redskins (6)", "sF": "35", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "2007 Playoffs" }, { "date": "Jan 5, 2008", @@ -108836,8 +161181,13 @@ "und": "Pittsburgh Steelers (4)", "sF": "31", "sU": "29", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2007 Playoffs" }, { "date": "Jan 6, 2008", @@ -108847,7 +161197,12 @@ "sF": "14", "sU": "24", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2007 Playoffs" }, { "date": "Jan 6, 2008", @@ -108857,7 +161212,12 @@ "sF": "17", "sU": "6", "spread": "10", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.5, + "sF": 24.5 + }, + "week": "2007 Playoffs" }, { "date": "Jan 12, 2008", @@ -108866,8 +161226,13 @@ "und": "Seattle Seahawks (3)", "sF": "42", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "2007 Playoffs" }, { "date": "Jan 12, 2008", @@ -108876,8 +161241,13 @@ "und": "Jacksonville Jaguars (5)", "sF": "31", "sU": "20", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 50.0, + "pScore": { + "sU": 18.25, + "sF": 31.75 + }, + "week": "2007 Playoffs" }, { "date": "Jan 13, 2008", @@ -108887,7 +161257,12 @@ "sF": "24", "sU": "28", "spread": "11", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 18.0, + "sF": 29.0 + }, + "week": "2007 Playoffs" }, { "date": "Jan 13, 2008", @@ -108897,7 +161272,12 @@ "sF": "17", "sU": "21", "spread": "7", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.25, + "sF": 27.25 + }, + "week": "2007 Playoffs" }, { "date": "Jan 20, 2008", @@ -108907,7 +161287,12 @@ "sF": "21", "sU": "12", "spread": "14", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 17.0, + "sF": 31.0 + }, + "week": "2007 Playoffs" }, { "date": "Jan 20, 2008", @@ -108916,8 +161301,13 @@ "und": "New York Giants (5)", "sF": "20", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.5, + "pScore": { + "sU": 17.0, + "sF": 24.5 + }, + "week": "2007 Playoffs" }, { "date": "Feb 3, 2008", @@ -108926,8 +161316,13 @@ "und": "New York Giants (5)", "sF": "14", "sU": "17", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 54.5, + "pScore": { + "sU": 21.0, + "sF": 33.5 + }, + "week": "2007 Playoffs" }, { "date": "Sep 4, 2008", @@ -108936,8 +161331,13 @@ "und": "Washington Redskins", "sF": "16", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.5, + "pScore": { + "sU": 18.5, + "sF": 23.0 + }, + "week": "2008 Regular Season - Week 1" }, { "date": "Sep 7, 2008", @@ -108947,7 +161347,12 @@ "sF": "34", "sU": "10", "spread": "1", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.75, + "sF": 19.75 + }, + "week": "2008 Regular Season - Week 1" }, { "date": "Sep 7, 2008", @@ -108957,7 +161362,12 @@ "sF": "20", "sU": "14", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2008 Regular Season - Week 1" }, { "date": "Sep 7, 2008", @@ -108967,7 +161377,12 @@ "sF": "17", "sU": "10", "spread": "16", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 13.75, + "sF": 29.75 + }, + "week": "2008 Regular Season - Week 1" }, { "date": "Sep 7, 2008", @@ -108977,7 +161392,12 @@ "sF": "24", "sU": "20", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2008 Regular Season - Week 1" }, { "date": "Sep 7, 2008", @@ -108987,7 +161407,12 @@ "sF": "38", "sU": "3", "spread": "8", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.0, + "sF": 26.0 + }, + "week": "2008 Regular Season - Week 1" }, { "date": "Sep 7, 2008", @@ -108996,8 +161421,13 @@ "und": "Houston Texans", "sF": "38", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "2008 Regular Season - Week 1" }, { "date": "Sep 7, 2008", @@ -109007,7 +161437,12 @@ "sF": "21", "sU": "34", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2008 Regular Season - Week 1" }, { "date": "Sep 7, 2008", @@ -109017,7 +161452,12 @@ "sF": "10", "sU": "17", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2008 Regular Season - Week 1" }, { "date": "Sep 7, 2008", @@ -109027,7 +161467,12 @@ "sF": "10", "sU": "17", "spread": "2", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.75, + "sF": 19.75 + }, + "week": "2008 Regular Season - Week 1" }, { "date": "Sep 7, 2008", @@ -109036,8 +161481,13 @@ "und": "Carolina Panthers", "sF": "24", "sU": "26", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 41.0, + "pScore": { + "sU": 15.75, + "sF": 25.25 + }, + "week": "2008 Regular Season - Week 1" }, { "date": "Sep 7, 2008", @@ -109047,7 +161497,12 @@ "sF": "28", "sU": "10", "spread": "6", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 21.25, + "sF": 27.25 + }, + "week": "2008 Regular Season - Week 1" }, { "date": "Sep 7, 2008", @@ -109056,12 +161511,13 @@ "und": "San Francisco 49ers", "sF": "23", "sU": "13", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": 42.0, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 19.75, + "sF": 22.25 + }, + "week": "2008 Regular Season - Week 1" }, { "date": "Sep 7, 2008", @@ -109071,7 +161527,12 @@ "sF": "13", "sU": "29", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "2008 Regular Season - Week 1" }, { "date": "Sep 8, 2008", @@ -109080,8 +161541,13 @@ "und": "Minnesota Vikings", "sF": "24", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2008 Regular Season - Week 1" }, { "date": "Sep 8, 2008", @@ -109091,7 +161557,12 @@ "sF": "41", "sU": "14", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2008 Regular Season - Week 1" }, { "date": "Sep 14, 2008", @@ -109100,8 +161571,13 @@ "und": "Oakland Raiders", "sF": "8", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.0, + "pScore": { + "sU": 16.25, + "sF": 19.75 + }, + "week": "2008 Regular Season - Week 2" }, { "date": "Sep 14, 2008", @@ -109111,7 +161587,12 @@ "sF": "41", "sU": "13", "spread": "8", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 17.75, + "sF": 25.75 + }, + "week": "2008 Regular Season - Week 2" }, { "date": "Sep 14, 2008", @@ -109121,7 +161602,12 @@ "sF": "7", "sU": "24", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "2008 Regular Season - Week 2" }, { "date": "Sep 14, 2008", @@ -109131,7 +161617,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2008 Regular Season - Week 2" }, { "date": "Sep 14, 2008", @@ -109141,7 +161632,12 @@ "sF": "48", "sU": "25", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2008 Regular Season - Week 2" }, { "date": "Sep 14, 2008", @@ -109151,7 +161647,12 @@ "sF": "16", "sU": "20", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "2008 Regular Season - Week 2" }, { "date": "Sep 14, 2008", @@ -109161,7 +161662,12 @@ "sF": "29", "sU": "24", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "2008 Regular Season - Week 2" }, { "date": "Sep 14, 2008", @@ -109171,7 +161677,12 @@ "sF": "18", "sU": "15", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "2008 Regular Season - Week 2" }, { "date": "Sep 14, 2008", @@ -109181,7 +161692,12 @@ "sF": "24", "sU": "9", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "2008 Regular Season - Week 2" }, { "date": "Sep 14, 2008", @@ -109190,12 +161706,13 @@ "und": "San Francisco 49ers", "sF": "30", "sU": "33", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": 38.0, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 15.75, + "sF": 22.25 + }, + "week": "2008 Regular Season - Week 2" }, { "date": "Sep 14, 2008", @@ -109204,8 +161721,13 @@ "und": "Miami Dolphins", "sF": "31", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.5, + "pScore": { + "sU": 17.0, + "sF": 23.5 + }, + "week": "2008 Regular Season - Week 2" }, { "date": "Sep 14, 2008", @@ -109215,7 +161737,12 @@ "sF": "39", "sU": "38", "spread": "1", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.75, + "sF": 23.75 + }, + "week": "2008 Regular Season - Week 2" }, { "date": "Sep 14, 2008", @@ -109225,7 +161752,12 @@ "sF": "10", "sU": "19", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "2008 Regular Season - Week 2" }, { "date": "Sep 14, 2008", @@ -109234,8 +161766,13 @@ "und": "Cleveland Browns", "sF": "10", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2008 Regular Season - Week 2" }, { "date": "Sep 15, 2008", @@ -109244,8 +161781,13 @@ "und": "Philadelphia Eagles", "sF": "41", "sU": "37", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.5, + "pScore": { + "sU": 20.0, + "sF": 26.5 + }, + "week": "2008 Regular Season - Week 2" }, { "date": "Sep 21, 2008", @@ -109254,8 +161796,13 @@ "und": "Kansas City Chiefs", "sF": "38", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "2008 Regular Season - Week 3" }, { "date": "Sep 21, 2008", @@ -109265,7 +161812,12 @@ "sF": "24", "sU": "23", "spread": "10", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 13.75, + "sF": 23.75 + }, + "week": "2008 Regular Season - Week 3" }, { "date": "Sep 21, 2008", @@ -109275,7 +161827,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "2008 Regular Season - Week 3" }, { "date": "Sep 21, 2008", @@ -109284,8 +161841,13 @@ "und": "Miami Dolphins", "sF": "13", "sU": "38", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 37.0, + "pScore": { + "sU": 12.25, + "sF": 24.75 + }, + "week": "2008 Regular Season - Week 3" }, { "date": "Sep 21, 2008", @@ -109295,7 +161857,12 @@ "sF": "26", "sU": "23", "spread": "13", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 14.75, + "sF": 27.75 + }, + "week": "2008 Regular Season - Week 3" }, { "date": "Sep 21, 2008", @@ -109305,7 +161872,12 @@ "sF": "31", "sU": "12", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "2008 Regular Season - Week 3" }, { "date": "Sep 21, 2008", @@ -109315,7 +161887,12 @@ "sF": "24", "sU": "17", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2008 Regular Season - Week 3" }, { "date": "Sep 21, 2008", @@ -109325,7 +161902,12 @@ "sF": "20", "sU": "10", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2008 Regular Season - Week 3" }, { "date": "Sep 21, 2008", @@ -109334,8 +161916,13 @@ "und": "New Orleans Saints", "sF": "34", "sU": "32", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 52.0, + "pScore": { + "sU": 23.25, + "sF": 28.75 + }, + "week": "2008 Regular Season - Week 3" }, { "date": "Sep 21, 2008", @@ -109345,7 +161932,12 @@ "sF": "31", "sU": "13", "spread": "5", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.0, + "sF": 26.0 + }, + "week": "2008 Regular Season - Week 3" }, { "date": "Sep 21, 2008", @@ -109355,7 +161947,12 @@ "sF": "37", "sU": "13", "spread": "8", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.25, + "sF": 26.25 + }, + "week": "2008 Regular Season - Week 3" }, { "date": "Sep 21, 2008", @@ -109364,8 +161961,13 @@ "und": "Pittsburgh Steelers", "sF": "15", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2008 Regular Season - Week 3" }, { "date": "Sep 21, 2008", @@ -109375,7 +161977,12 @@ "sF": "21", "sU": "23", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "2008 Regular Season - Week 3" }, { "date": "Sep 21, 2008", @@ -109384,8 +161991,13 @@ "und": "Cleveland Browns", "sF": "28", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2008 Regular Season - Week 3" }, { "date": "Sep 21, 2008", @@ -109395,7 +162007,12 @@ "sF": "27", "sU": "16", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2008 Regular Season - Week 3" }, { "date": "Sep 22, 2008", @@ -109405,7 +162022,12 @@ "sF": "48", "sU": "29", "spread": "8", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.25, + "sF": 27.25 + }, + "week": "2008 Regular Season - Week 3" }, { "date": "Sep 28, 2008", @@ -109415,7 +162037,12 @@ "sF": "19", "sU": "33", "spread": "9", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.0, + "sF": 28.0 + }, + "week": "2008 Regular Season - Week 4" }, { "date": "Sep 28, 2008", @@ -109425,7 +162052,12 @@ "sF": "12", "sU": "20", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "2008 Regular Season - Week 4" }, { "date": "Sep 28, 2008", @@ -109434,8 +162066,13 @@ "und": "Houston Texans", "sF": "30", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "2008 Regular Season - Week 4" }, { "date": "Sep 28, 2008", @@ -109444,8 +162081,13 @@ "und": "Arizona Cardinals", "sF": "56", "sU": "35", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.5, + "pScore": { + "sU": 21.0, + "sF": 22.5 + }, + "week": "2008 Regular Season - Week 4" }, { "date": "Sep 28, 2008", @@ -109455,7 +162097,12 @@ "sF": "30", "sU": "21", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "2008 Regular Season - Week 4" }, { "date": "Sep 28, 2008", @@ -109465,11 +162112,12 @@ "sF": "31", "sU": "17", "spread": "4", - "ou": "49", + "ou": 48.5, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sU": 22.25, + "sF": 26.25 + }, + "week": "2008 Regular Season - Week 4" }, { "date": "Sep 28, 2008", @@ -109479,7 +162127,12 @@ "sF": "30", "sU": "17", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "2008 Regular Season - Week 4" }, { "date": "Sep 28, 2008", @@ -109489,7 +162142,12 @@ "sF": "24", "sU": "9", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "2008 Regular Season - Week 4" }, { "date": "Sep 28, 2008", @@ -109499,7 +162157,12 @@ "sF": "28", "sU": "18", "spread": "8", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 18.75, + "sF": 26.75 + }, + "week": "2008 Regular Season - Week 4" }, { "date": "Sep 28, 2008", @@ -109508,8 +162171,13 @@ "und": "St Louis Rams", "sF": "31", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.5, + "pScore": { + "sU": 17.5, + "sF": 26.0 + }, + "week": "2008 Regular Season - Week 4" }, { "date": "Sep 28, 2008", @@ -109519,7 +162187,12 @@ "sF": "24", "sU": "26", "spread": "10", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 18.5, + "sF": 28.5 + }, + "week": "2008 Regular Season - Week 4" }, { "date": "Sep 28, 2008", @@ -109529,7 +162202,12 @@ "sF": "20", "sU": "24", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2008 Regular Season - Week 4" }, { "date": "Sep 29, 2008", @@ -109539,7 +162217,12 @@ "sF": "23", "sU": "20", "spread": "6", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 14.25, + "sF": 20.25 + }, + "week": "2008 Regular Season - Week 4" }, { "date": "Oct 5, 2008", @@ -109549,7 +162232,12 @@ "sF": "13", "sU": "10", "spread": "1", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 16.25, + "sF": 17.25 + }, + "week": "2008 Regular Season - Week 5" }, { "date": "Oct 5, 2008", @@ -109559,7 +162247,12 @@ "sF": "34", "sU": "7", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2008 Regular Season - Week 5" }, { "date": "Oct 5, 2008", @@ -109569,7 +162262,12 @@ "sF": "24", "sU": "27", "spread": "5", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.75, + "sF": 23.75 + }, + "week": "2008 Regular Season - Week 5" }, { "date": "Oct 5, 2008", @@ -109578,8 +162276,13 @@ "und": "Houston Texans", "sF": "31", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.5, + "pScore": { + "sU": 22.0, + "sF": 26.5 + }, + "week": "2008 Regular Season - Week 5" }, { "date": "Oct 5, 2008", @@ -109589,7 +162292,12 @@ "sF": "10", "sU": "17", "spread": "6", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.25, + "sF": 25.25 + }, + "week": "2008 Regular Season - Week 5" }, { "date": "Oct 5, 2008", @@ -109598,8 +162306,13 @@ "und": "Seattle Seahawks", "sF": "44", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2008 Regular Season - Week 5" }, { "date": "Oct 5, 2008", @@ -109609,7 +162322,12 @@ "sF": "34", "sU": "0", "spread": "10", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.0, + "sF": 24.0 + }, + "week": "2008 Regular Season - Week 5" }, { "date": "Oct 5, 2008", @@ -109618,8 +162336,13 @@ "und": "Washington Redskins", "sF": "17", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "2008 Regular Season - Week 5" }, { "date": "Oct 5, 2008", @@ -109629,7 +162352,12 @@ "sF": "16", "sU": "13", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "2008 Regular Season - Week 5" }, { "date": "Oct 5, 2008", @@ -109639,7 +162367,12 @@ "sF": "31", "sU": "22", "spread": "16", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 15.0, + "sF": 31.0 + }, + "week": "2008 Regular Season - Week 5" }, { "date": "Oct 5, 2008", @@ -109649,11 +162382,12 @@ "sF": "30", "sU": "21", "spread": "3", - "ou": "49", + "ou": 41.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 19.0, + "sF": 22.0 + }, + "week": "2008 Regular Season - Week 5" }, { "date": "Oct 5, 2008", @@ -109662,8 +162396,13 @@ "und": "Buffalo Bills", "sF": "41", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2008 Regular Season - Week 5" }, { "date": "Oct 5, 2008", @@ -109673,7 +162412,12 @@ "sF": "21", "sU": "26", "spread": "5", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.0, + "sF": 21.0 + }, + "week": "2008 Regular Season - Week 5" }, { "date": "Oct 6, 2008", @@ -109683,7 +162427,12 @@ "sF": "27", "sU": "30", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2008 Regular Season - Week 5" }, { "date": "Oct 12, 2008", @@ -109693,7 +162442,12 @@ "sF": "20", "sU": "22", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2008 Regular Season - Week 6" }, { "date": "Oct 12, 2008", @@ -109703,7 +162457,12 @@ "sF": "29", "sU": "28", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2008 Regular Season - Week 6" }, { "date": "Oct 12, 2008", @@ -109713,7 +162472,12 @@ "sF": "31", "sU": "3", "spread": "4", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.25, + "sF": 21.25 + }, + "week": "2008 Regular Season - Week 6" }, { "date": "Oct 12, 2008", @@ -109723,7 +162487,12 @@ "sF": "34", "sU": "3", "spread": "7", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.25, + "sF": 27.25 + }, + "week": "2008 Regular Season - Week 6" }, { "date": "Oct 12, 2008", @@ -109733,7 +162502,12 @@ "sF": "26", "sU": "14", "spread": "8", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.25, + "sF": 25.25 + }, + "week": "2008 Regular Season - Week 6" }, { "date": "Oct 12, 2008", @@ -109743,7 +162517,12 @@ "sF": "27", "sU": "3", "spread": "1", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.75, + "sF": 18.75 + }, + "week": "2008 Regular Season - Week 6" }, { "date": "Oct 12, 2008", @@ -109752,8 +162531,13 @@ "und": "St Louis Rams", "sF": "17", "sU": "19", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 44.0, + "pScore": { + "sU": 15.25, + "sF": 28.75 + }, + "week": "2008 Regular Season - Week 6" }, { "date": "Oct 12, 2008", @@ -109763,7 +162547,12 @@ "sF": "12", "sU": "10", "spread": "13", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 16.25, + "sF": 29.25 + }, + "week": "2008 Regular Season - Week 6" }, { "date": "Oct 12, 2008", @@ -109773,7 +162562,12 @@ "sF": "17", "sU": "24", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2008 Regular Season - Week 6" }, { "date": "Oct 12, 2008", @@ -109783,7 +162577,12 @@ "sF": "24", "sU": "30", "spread": "5", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 24.0, + "sF": 29.0 + }, + "week": "2008 Regular Season - Week 6" }, { "date": "Oct 12, 2008", @@ -109793,11 +162592,12 @@ "sF": "40", "sU": "26", "spread": "5", - "ou": "49", + "ou": 41.5, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 18.25, + "sF": 23.25 + }, + "week": "2008 Regular Season - Week 6" }, { "date": "Oct 12, 2008", @@ -109807,7 +162607,12 @@ "sF": "17", "sU": "27", "spread": "1", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.75, + "sF": 22.75 + }, + "week": "2008 Regular Season - Week 6" }, { "date": "Oct 12, 2008", @@ -109817,7 +162622,12 @@ "sF": "30", "sU": "10", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2008 Regular Season - Week 6" }, { "date": "Oct 13, 2008", @@ -109827,7 +162637,12 @@ "sF": "14", "sU": "35", "spread": "8", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 17.75, + "sF": 25.75 + }, + "week": "2008 Regular Season - Week 6" }, { "date": "Oct 19, 2008", @@ -109837,7 +162652,12 @@ "sF": "34", "sU": "10", "spread": "9", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 13.0, + "sF": 22.0 + }, + "week": "2008 Regular Season - Week 7" }, { "date": "Oct 19, 2008", @@ -109847,7 +162667,12 @@ "sF": "14", "sU": "34", "spread": "8", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 18.5, + "sF": 26.5 + }, + "week": "2008 Regular Season - Week 7" }, { "date": "Oct 19, 2008", @@ -109857,7 +162682,12 @@ "sF": "23", "sU": "14", "spread": "1", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 22.0, + "sF": 23.0 + }, + "week": "2008 Regular Season - Week 7" }, { "date": "Oct 19, 2008", @@ -109867,7 +162697,12 @@ "sF": "48", "sU": "41", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2008 Regular Season - Week 7" }, { "date": "Oct 19, 2008", @@ -109877,7 +162712,12 @@ "sF": "13", "sU": "27", "spread": "3", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.0, + "sF": 19.0 + }, + "week": "2008 Regular Season - Week 7" }, { "date": "Oct 19, 2008", @@ -109887,11 +162727,12 @@ "sF": "29", "sU": "17", "spread": "10", - "ou": "49", + "ou": 47.0, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sU": 18.5, + "sF": 28.5 + }, + "week": "2008 Regular Season - Week 7" }, { "date": "Oct 19, 2008", @@ -109901,7 +162742,12 @@ "sF": "30", "sU": "7", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2008 Regular Season - Week 7" }, { "date": "Oct 19, 2008", @@ -109910,8 +162756,13 @@ "und": "Cincinnati Bengals", "sF": "38", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 37.0, + "pScore": { + "sU": 14.25, + "sF": 22.75 + }, + "week": "2008 Regular Season - Week 7" }, { "date": "Oct 19, 2008", @@ -109920,8 +162771,13 @@ "und": "Detroit Lions", "sF": "28", "sU": "21", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 47.5, + "pScore": { + "sU": 18.0, + "sF": 29.5 + }, + "week": "2008 Regular Season - Week 7" }, { "date": "Oct 19, 2008", @@ -109930,8 +162786,13 @@ "und": "Green Bay Packers", "sF": "14", "sU": "34", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.0, + "pScore": { + "sU": 22.25, + "sF": 24.75 + }, + "week": "2008 Regular Season - Week 7" }, { "date": "Oct 19, 2008", @@ -109941,7 +162802,12 @@ "sF": "13", "sU": "16", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2008 Regular Season - Week 7" }, { "date": "Oct 19, 2008", @@ -109951,7 +162817,12 @@ "sF": "14", "sU": "11", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "2008 Regular Season - Week 7" }, { "date": "Oct 19, 2008", @@ -109960,8 +162831,13 @@ "und": "Seattle Seahawks", "sF": "20", "sU": "10", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 40.5, + "pScore": { + "sU": 14.5, + "sF": 26.0 + }, + "week": "2008 Regular Season - Week 7" }, { "date": "Oct 20, 2008", @@ -109971,7 +162847,12 @@ "sF": "41", "sU": "7", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2008 Regular Season - Week 7" }, { "date": "Oct 26, 2008", @@ -109981,7 +162862,12 @@ "sF": "29", "sU": "10", "spread": "8", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 13.25, + "sF": 21.25 + }, + "week": "2008 Regular Season - Week 8" }, { "date": "Oct 26, 2008", @@ -109990,8 +162876,13 @@ "und": "Tampa Bay Buccaneers", "sF": "13", "sU": "9", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.5, + "pScore": { + "sU": 19.5, + "sF": 21.0 + }, + "week": "2008 Regular Season - Week 8" }, { "date": "Oct 26, 2008", @@ -110001,7 +162892,12 @@ "sF": "23", "sU": "16", "spread": "9", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.0, + "sF": 25.0 + }, + "week": "2008 Regular Season - Week 8" }, { "date": "Oct 26, 2008", @@ -110010,8 +162906,13 @@ "und": "Atlanta Falcons", "sF": "27", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 45.0, + "pScore": { + "sU": 17.75, + "sF": 27.25 + }, + "week": "2008 Regular Season - Week 8" }, { "date": "Oct 26, 2008", @@ -110021,7 +162922,12 @@ "sF": "25", "sU": "17", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "2008 Regular Season - Week 8" }, { "date": "Oct 26, 2008", @@ -110030,8 +162936,13 @@ "und": "Arizona Cardinals", "sF": "27", "sU": "23", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "2008 Regular Season - Week 8" }, { "date": "Oct 26, 2008", @@ -110041,7 +162952,12 @@ "sF": "25", "sU": "16", "spread": "1", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 20.25, + "sF": 21.25 + }, + "week": "2008 Regular Season - Week 8" }, { "date": "Oct 26, 2008", @@ -110051,7 +162967,12 @@ "sF": "28", "sU": "24", "spread": "14", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 13.5, + "sF": 27.5 + }, + "week": "2008 Regular Season - Week 8" }, { "date": "Oct 26, 2008", @@ -110061,7 +162982,12 @@ "sF": "32", "sU": "37", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2008 Regular Season - Week 8" }, { "date": "Oct 26, 2008", @@ -110071,7 +162997,12 @@ "sF": "35", "sU": "6", "spread": "9", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 18.25, + "sF": 27.25 + }, + "week": "2008 Regular Season - Week 8" }, { "date": "Oct 26, 2008", @@ -110081,7 +163012,12 @@ "sF": "17", "sU": "23", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "2008 Regular Season - Week 8" }, { "date": "Oct 26, 2008", @@ -110091,7 +163027,12 @@ "sF": "14", "sU": "21", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2008 Regular Season - Week 8" }, { "date": "Oct 26, 2008", @@ -110100,8 +163041,13 @@ "und": "Seattle Seahawks", "sF": "13", "sU": "34", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.5, + "pScore": { + "sU": 18.0, + "sF": 23.5 + }, + "week": "2008 Regular Season - Week 8" }, { "date": "Oct 27, 2008", @@ -110111,7 +163057,12 @@ "sF": "31", "sU": "21", "spread": "4", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.75, + "sF": 22.75 + }, + "week": "2008 Regular Season - Week 8" }, { "date": "Nov 2, 2008", @@ -110121,7 +163072,12 @@ "sF": "34", "sU": "13", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "2008 Regular Season - Week 9" }, { "date": "Nov 2, 2008", @@ -110131,7 +163087,12 @@ "sF": "17", "sU": "26", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "2008 Regular Season - Week 9" }, { "date": "Nov 2, 2008", @@ -110140,8 +163101,13 @@ "und": "Detroit Lions", "sF": "27", "sU": "23", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 43.5, + "pScore": { + "sU": 15.5, + "sF": 28.0 + }, + "week": "2008 Regular Season - Week 9" }, { "date": "Nov 2, 2008", @@ -110150,8 +163116,13 @@ "und": "Cincinnati Bengals", "sF": "19", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.0, + "pScore": { + "sU": 16.25, + "sF": 23.75 + }, + "week": "2008 Regular Season - Week 9" }, { "date": "Nov 2, 2008", @@ -110160,8 +163131,13 @@ "und": "Baltimore Ravens", "sF": "27", "sU": "37", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "2008 Regular Season - Week 9" }, { "date": "Nov 2, 2008", @@ -110170,8 +163146,13 @@ "und": "Green Bay Packers", "sF": "19", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2008 Regular Season - Week 9" }, { "date": "Nov 2, 2008", @@ -110180,8 +163161,13 @@ "und": "Kansas City Chiefs", "sF": "30", "sU": "27", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 36.5, + "pScore": { + "sU": 13.5, + "sF": 23.0 + }, + "week": "2008 Regular Season - Week 9" }, { "date": "Nov 2, 2008", @@ -110190,8 +163176,13 @@ "und": "Houston Texans", "sF": "28", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.0, + "pScore": { + "sU": 20.75, + "sF": 26.25 + }, + "week": "2008 Regular Season - Week 9" }, { "date": "Nov 2, 2008", @@ -110201,7 +163192,12 @@ "sF": "17", "sU": "26", "spread": "4", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.0, + "sF": 27.0 + }, + "week": "2008 Regular Season - Week 9" }, { "date": "Nov 2, 2008", @@ -110210,8 +163206,13 @@ "und": "Dallas Cowboys", "sF": "35", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 42.0, + "pScore": { + "sU": 16.75, + "sF": 25.25 + }, + "week": "2008 Regular Season - Week 9" }, { "date": "Nov 2, 2008", @@ -110221,7 +163222,12 @@ "sF": "24", "sU": "0", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2008 Regular Season - Week 9" }, { "date": "Nov 2, 2008", @@ -110230,8 +163236,13 @@ "und": "Seattle Seahawks", "sF": "26", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "2008 Regular Season - Week 9" }, { "date": "Nov 2, 2008", @@ -110240,8 +163251,13 @@ "und": "New England Patriots", "sF": "18", "sU": "15", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2008 Regular Season - Week 9" }, { "date": "Nov 3, 2008", @@ -110250,8 +163266,13 @@ "und": "Pittsburgh Steelers", "sF": "6", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2008 Regular Season - Week 9" }, { "date": "Nov 6, 2008", @@ -110261,7 +163282,12 @@ "sF": "30", "sU": "34", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2008 Regular Season - Week 10" }, { "date": "Nov 9, 2008", @@ -110271,7 +163297,12 @@ "sF": "21", "sU": "14", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2008 Regular Season - Week 10" }, { "date": "Nov 9, 2008", @@ -110281,7 +163312,12 @@ "sF": "38", "sU": "14", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "2008 Regular Season - Week 10" }, { "date": "Nov 9, 2008", @@ -110290,8 +163326,13 @@ "und": "Baltimore Ravens", "sF": "13", "sU": "41", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2008 Regular Season - Week 10" }, { "date": "Nov 9, 2008", @@ -110300,8 +163341,13 @@ "und": "Buffalo Bills", "sF": "20", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2008 Regular Season - Week 10" }, { "date": "Nov 9, 2008", @@ -110310,8 +163356,13 @@ "und": "New Orleans Saints", "sF": "34", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 51.0, + "pScore": { + "sU": 24.75, + "sF": 26.25 + }, + "week": "2008 Regular Season - Week 10" }, { "date": "Nov 9, 2008", @@ -110320,8 +163371,13 @@ "und": "Seattle Seahawks", "sF": "21", "sU": "19", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "2008 Regular Season - Week 10" }, { "date": "Nov 9, 2008", @@ -110330,8 +163386,13 @@ "und": "St Louis Rams", "sF": "47", "sU": "3", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.5, + "pScore": { + "sU": 17.0, + "sF": 26.5 + }, + "week": "2008 Regular Season - Week 10" }, { "date": "Nov 9, 2008", @@ -110340,8 +163401,13 @@ "und": "Green Bay Packers", "sF": "28", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2008 Regular Season - Week 10" }, { "date": "Nov 9, 2008", @@ -110350,8 +163416,13 @@ "und": "Oakland Raiders", "sF": "17", "sU": "6", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 37.5, + "pScore": { + "sU": 14.0, + "sF": 23.5 + }, + "week": "2008 Regular Season - Week 10" }, { "date": "Nov 9, 2008", @@ -110360,8 +163431,13 @@ "und": "Indianapolis Colts", "sF": "20", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "2008 Regular Season - Week 10" }, { "date": "Nov 9, 2008", @@ -110370,8 +163446,13 @@ "und": "Kansas City Chiefs", "sF": "20", "sU": "19", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 47.5, + "pScore": { + "sU": 16.5, + "sF": 31.0 + }, + "week": "2008 Regular Season - Week 10" }, { "date": "Nov 9, 2008", @@ -110380,8 +163461,13 @@ "und": "New York Giants", "sF": "31", "sU": "36", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.5, + "pScore": { + "sU": 20.5, + "sF": 22.0 + }, + "week": "2008 Regular Season - Week 10" }, { "date": "Nov 10, 2008", @@ -110390,12 +163476,13 @@ "und": "San Francisco 49ers", "sF": "29", "sU": "24", - "spread": "9", - "ou": "49", + "spread": "9.5", + "ou": 47.5, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 19.0, + "sF": 28.5 + }, + "week": "2008 Regular Season - Week 10" }, { "date": "Nov 13, 2008", @@ -110404,8 +163491,13 @@ "und": "New York Jets", "sF": "31", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2008 Regular Season - Week 11" }, { "date": "Nov 16, 2008", @@ -110415,7 +163507,12 @@ "sF": "30", "sU": "20", "spread": "6", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 22.5, + "sF": 28.5 + }, + "week": "2008 Regular Season - Week 11" }, { "date": "Nov 16, 2008", @@ -110424,8 +163521,13 @@ "und": "Denver Broncos", "sF": "20", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 52.0, + "pScore": { + "sU": 22.75, + "sF": 29.25 + }, + "week": "2008 Regular Season - Week 11" }, { "date": "Nov 16, 2008", @@ -110434,8 +163536,13 @@ "und": "Chicago Bears", "sF": "37", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2008 Regular Season - Week 11" }, { "date": "Nov 16, 2008", @@ -110445,7 +163552,12 @@ "sF": "33", "sU": "27", "spread": "8", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 21.25, + "sF": 29.25 + }, + "week": "2008 Regular Season - Week 11" }, { "date": "Nov 16, 2008", @@ -110455,7 +163567,12 @@ "sF": "17", "sU": "15", "spread": "10", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 13.75, + "sF": 23.75 + }, + "week": "2008 Regular Season - Week 11" }, { "date": "Nov 16, 2008", @@ -110465,7 +163582,12 @@ "sF": "30", "sU": "10", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "2008 Regular Season - Week 11" }, { "date": "Nov 16, 2008", @@ -110474,8 +163596,13 @@ "und": "Minnesota Vikings", "sF": "19", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.5, + "pScore": { + "sU": 16.5, + "sF": 22.0 + }, + "week": "2008 Regular Season - Week 11" }, { "date": "Nov 16, 2008", @@ -110485,7 +163612,12 @@ "sF": "31", "sU": "22", "spread": "14", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 13.25, + "sF": 27.25 + }, + "week": "2008 Regular Season - Week 11" }, { "date": "Nov 16, 2008", @@ -110495,7 +163627,12 @@ "sF": "13", "sU": "13", "spread": "9", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.0, + "sF": 25.0 + }, + "week": "2008 Regular Season - Week 11" }, { "date": "Nov 16, 2008", @@ -110505,7 +163642,12 @@ "sF": "35", "sU": "16", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2008 Regular Season - Week 11" }, { "date": "Nov 16, 2008", @@ -110515,7 +163657,12 @@ "sF": "26", "sU": "20", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2008 Regular Season - Week 11" }, { "date": "Nov 16, 2008", @@ -110525,7 +163672,12 @@ "sF": "24", "sU": "14", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2008 Regular Season - Week 11" }, { "date": "Nov 16, 2008", @@ -110534,8 +163686,13 @@ "und": "San Diego Chargers", "sF": "11", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "2008 Regular Season - Week 11" }, { "date": "Nov 16, 2008", @@ -110545,7 +163702,12 @@ "sF": "14", "sU": "10", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "2008 Regular Season - Week 11" }, { "date": "Nov 17, 2008", @@ -110555,7 +163717,12 @@ "sF": "27", "sU": "29", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "2008 Regular Season - Week 11" }, { "date": "Nov 20, 2008", @@ -110564,8 +163731,13 @@ "und": "Cincinnati Bengals", "sF": "27", "sU": "10", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 34.5, + "pScore": { + "sU": 11.5, + "sF": 23.0 + }, + "week": "2008 Regular Season - Week 12" }, { "date": "Nov 23, 2008", @@ -110575,7 +163747,12 @@ "sF": "54", "sU": "31", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2008 Regular Season - Week 12" }, { "date": "Nov 23, 2008", @@ -110585,7 +163762,12 @@ "sF": "27", "sU": "3", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "2008 Regular Season - Week 12" }, { "date": "Nov 23, 2008", @@ -110595,7 +163777,12 @@ "sF": "36", "sU": "7", "spread": "2", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.75, + "sF": 20.75 + }, + "week": "2008 Regular Season - Week 12" }, { "date": "Nov 23, 2008", @@ -110605,7 +163792,12 @@ "sF": "48", "sU": "28", "spread": "2", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.25, + "sF": 22.25 + }, + "week": "2008 Regular Season - Week 12" }, { "date": "Nov 23, 2008", @@ -110614,8 +163806,13 @@ "und": "New York Jets", "sF": "13", "sU": "34", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.0, + "pScore": { + "sU": 17.75, + "sF": 23.25 + }, + "week": "2008 Regular Season - Week 12" }, { "date": "Nov 23, 2008", @@ -110625,7 +163822,12 @@ "sF": "6", "sU": "16", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "2008 Regular Season - Week 12" }, { "date": "Nov 23, 2008", @@ -110634,12 +163836,13 @@ "und": "San Francisco 49ers", "sF": "35", "sU": "22", - "spread": "9", - "ou": "49", + "spread": "9.5", + "ou": 45.5, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 18.0, + "sF": 27.5 + }, + "week": "2008 Regular Season - Week 12" }, { "date": "Nov 23, 2008", @@ -110649,7 +163852,12 @@ "sF": "38", "sU": "20", "spread": "8", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.25, + "sF": 25.25 + }, + "week": "2008 Regular Season - Week 12" }, { "date": "Nov 23, 2008", @@ -110658,8 +163866,13 @@ "und": "Minnesota Vikings", "sF": "12", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2008 Regular Season - Week 12" }, { "date": "Nov 23, 2008", @@ -110669,7 +163882,12 @@ "sF": "10", "sU": "31", "spread": "9", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 17.25, + "sF": 26.25 + }, + "week": "2008 Regular Season - Week 12" }, { "date": "Nov 23, 2008", @@ -110679,7 +163897,12 @@ "sF": "45", "sU": "28", "spread": "1", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 20.25, + "sF": 21.25 + }, + "week": "2008 Regular Season - Week 12" }, { "date": "Nov 23, 2008", @@ -110689,7 +163912,12 @@ "sF": "37", "sU": "29", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2008 Regular Season - Week 12" }, { "date": "Nov 23, 2008", @@ -110699,7 +163927,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2008 Regular Season - Week 12" }, { "date": "Nov 23, 2008", @@ -110709,7 +163942,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2008 Regular Season - Week 12" }, { "date": "Nov 24, 2008", @@ -110719,7 +163957,12 @@ "sF": "51", "sU": "29", "spread": "1", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 25.5, + "sF": 26.5 + }, + "week": "2008 Regular Season - Week 12" }, { "date": "Nov 27, 2008", @@ -110729,7 +163972,12 @@ "sF": "47", "sU": "10", "spread": "11", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 16.5, + "sF": 27.5 + }, + "week": "2008 Regular Season - Week 13" }, { "date": "Nov 27, 2008", @@ -110739,7 +163987,12 @@ "sF": "34", "sU": "9", "spread": "12", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 17.25, + "sF": 29.25 + }, + "week": "2008 Regular Season - Week 13" }, { "date": "Nov 27, 2008", @@ -110749,7 +164002,12 @@ "sF": "48", "sU": "20", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2008 Regular Season - Week 13" }, { "date": "Nov 30, 2008", @@ -110759,7 +164017,12 @@ "sF": "16", "sU": "12", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "2008 Regular Season - Week 13" }, { "date": "Nov 30, 2008", @@ -110768,12 +164031,13 @@ "und": "San Francisco 49ers", "sF": "3", "sU": "10", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": 43.0, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 18.25, + "sF": 24.75 + }, + "week": "2008 Regular Season - Week 13" }, { "date": "Nov 30, 2008", @@ -110783,7 +164047,12 @@ "sF": "34", "sU": "3", "spread": "7", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 14.5, + "sF": 21.5 + }, + "week": "2008 Regular Season - Week 13" }, { "date": "Nov 30, 2008", @@ -110793,7 +164062,12 @@ "sF": "10", "sU": "6", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2008 Regular Season - Week 13" }, { "date": "Nov 30, 2008", @@ -110803,7 +164077,12 @@ "sF": "31", "sU": "35", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2008 Regular Season - Week 13" }, { "date": "Nov 30, 2008", @@ -110812,8 +164091,13 @@ "und": "New Orleans Saints", "sF": "23", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2008 Regular Season - Week 13" }, { "date": "Nov 30, 2008", @@ -110823,7 +164107,12 @@ "sF": "23", "sU": "7", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "2008 Regular Season - Week 13" }, { "date": "Nov 30, 2008", @@ -110832,8 +164121,13 @@ "und": "Atlanta Falcons", "sF": "16", "sU": "22", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.0, + "pScore": { + "sU": 20.75, + "sF": 27.25 + }, + "week": "2008 Regular Season - Week 13" }, { "date": "Nov 30, 2008", @@ -110842,8 +164136,13 @@ "und": "Pittsburgh Steelers", "sF": "10", "sU": "33", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2008 Regular Season - Week 13" }, { "date": "Nov 30, 2008", @@ -110853,7 +164152,12 @@ "sF": "17", "sU": "34", "spread": "8", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.0, + "sF": 28.0 + }, + "week": "2008 Regular Season - Week 13" }, { "date": "Nov 30, 2008", @@ -110862,8 +164166,13 @@ "und": "Kansas City Chiefs", "sF": "13", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2008 Regular Season - Week 13" }, { "date": "Nov 30, 2008", @@ -110873,7 +164182,12 @@ "sF": "34", "sU": "14", "spread": "5", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.75, + "sF": 23.75 + }, + "week": "2008 Regular Season - Week 13" }, { "date": "Dec 1, 2008", @@ -110883,7 +164197,12 @@ "sF": "30", "sU": "17", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2008 Regular Season - Week 13" }, { "date": "Dec 4, 2008", @@ -110893,7 +164212,12 @@ "sF": "34", "sU": "7", "spread": "9", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.0, + "sF": 25.0 + }, + "week": "2008 Regular Season - Week 14" }, { "date": "Dec 7, 2008", @@ -110902,8 +164226,13 @@ "und": "Jacksonville Jaguars", "sF": "23", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "2008 Regular Season - Week 14" }, { "date": "Dec 7, 2008", @@ -110913,7 +164242,12 @@ "sF": "21", "sU": "24", "spread": "7", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.25, + "sF": 27.25 + }, + "week": "2008 Regular Season - Week 14" }, { "date": "Dec 7, 2008", @@ -110922,8 +164256,13 @@ "und": "Cincinnati Bengals", "sF": "35", "sU": "3", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 41.5, + "pScore": { + "sU": 14.0, + "sF": 27.5 + }, + "week": "2008 Regular Season - Week 14" }, { "date": "Dec 7, 2008", @@ -110933,7 +164272,12 @@ "sF": "29", "sU": "25", "spread": "3", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 24.25, + "sF": 27.25 + }, + "week": "2008 Regular Season - Week 14" }, { "date": "Dec 7, 2008", @@ -110942,8 +164286,13 @@ "und": "Detroit Lions", "sF": "20", "sU": "16", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 45.5, + "pScore": { + "sU": 17.5, + "sF": 28.0 + }, + "week": "2008 Regular Season - Week 14" }, { "date": "Dec 7, 2008", @@ -110953,7 +164302,12 @@ "sF": "14", "sU": "20", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "2008 Regular Season - Week 14" }, { "date": "Dec 7, 2008", @@ -110962,8 +164316,13 @@ "und": "Cleveland Browns", "sF": "28", "sU": "9", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 36.5, + "pScore": { + "sU": 11.5, + "sF": 25.0 + }, + "week": "2008 Regular Season - Week 14" }, { "date": "Dec 7, 2008", @@ -110973,7 +164332,12 @@ "sF": "3", "sU": "16", "spread": "2", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.25, + "sF": 22.25 + }, + "week": "2008 Regular Season - Week 14" }, { "date": "Dec 7, 2008", @@ -110983,7 +164347,12 @@ "sF": "24", "sU": "17", "spread": "9", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 20.0, + "sF": 29.0 + }, + "week": "2008 Regular Season - Week 14" }, { "date": "Dec 7, 2008", @@ -110993,11 +164362,12 @@ "sF": "14", "sU": "24", "spread": "5", - "ou": "49", + "ou": 45.5, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 20.25, + "sF": 25.25 + }, + "week": "2008 Regular Season - Week 14" }, { "date": "Dec 7, 2008", @@ -111006,8 +164376,13 @@ "und": "Seattle Seahawks", "sF": "24", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.0, + "pScore": { + "sU": 17.75, + "sF": 25.25 + }, + "week": "2008 Regular Season - Week 14" }, { "date": "Dec 7, 2008", @@ -111016,8 +164391,13 @@ "und": "St Louis Rams", "sF": "34", "sU": "10", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 48.5, + "pScore": { + "sU": 17.0, + "sF": 31.5 + }, + "week": "2008 Regular Season - Week 14" }, { "date": "Dec 7, 2008", @@ -111027,7 +164407,12 @@ "sF": "20", "sU": "13", "spread": "4", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.25, + "sF": 21.25 + }, + "week": "2008 Regular Season - Week 14" }, { "date": "Dec 7, 2008", @@ -111036,8 +164421,13 @@ "und": "Washington Redskins", "sF": "24", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "2008 Regular Season - Week 14" }, { "date": "Dec 8, 2008", @@ -111047,7 +164437,12 @@ "sF": "38", "sU": "23", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "2008 Regular Season - Week 14" }, { "date": "Dec 11, 2008", @@ -111057,7 +164452,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2008 Regular Season - Week 15" }, { "date": "Dec 14, 2008", @@ -111066,8 +164466,13 @@ "und": "Kansas City Chiefs", "sF": "22", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.0, + "pScore": { + "sU": 17.75, + "sF": 23.25 + }, + "week": "2008 Regular Season - Week 15" }, { "date": "Dec 14, 2008", @@ -111076,8 +164481,13 @@ "und": "St Louis Rams", "sF": "23", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "2008 Regular Season - Week 15" }, { "date": "Dec 14, 2008", @@ -111087,7 +164497,12 @@ "sF": "31", "sU": "21", "spread": "17", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 14.0, + "sF": 31.0 + }, + "week": "2008 Regular Season - Week 15" }, { "date": "Dec 14, 2008", @@ -111097,7 +164512,12 @@ "sF": "31", "sU": "27", "spread": "8", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.5, + "sF": 24.5 + }, + "week": "2008 Regular Season - Week 15" }, { "date": "Dec 14, 2008", @@ -111106,8 +164526,13 @@ "und": "Tampa Bay Buccaneers", "sF": "13", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.5, + "pScore": { + "sU": 19.5, + "sF": 24.0 + }, + "week": "2008 Regular Season - Week 15" }, { "date": "Dec 14, 2008", @@ -111116,8 +164541,13 @@ "und": "Cincinnati Bengals", "sF": "13", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.5, + "pScore": { + "sU": 15.0, + "sF": 21.5 + }, + "week": "2008 Regular Season - Week 15" }, { "date": "Dec 14, 2008", @@ -111126,12 +164556,13 @@ "und": "San Francisco 49ers", "sF": "14", "sU": "9", - "spread": "5", - "ou": "49", + "spread": "5.5", + "ou": 41.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 17.75, + "sF": 23.25 + }, + "week": "2008 Regular Season - Week 15" }, { "date": "Dec 14, 2008", @@ -111140,8 +164571,13 @@ "und": "Jacksonville Jaguars", "sF": "16", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "2008 Regular Season - Week 15" }, { "date": "Dec 14, 2008", @@ -111151,7 +164587,12 @@ "sF": "12", "sU": "13", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2008 Regular Season - Week 15" }, { "date": "Dec 14, 2008", @@ -111160,8 +164601,13 @@ "und": "Minnesota Vikings", "sF": "14", "sU": "35", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "2008 Regular Season - Week 15" }, { "date": "Dec 14, 2008", @@ -111171,7 +164617,12 @@ "sF": "9", "sU": "13", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "2008 Regular Season - Week 15" }, { "date": "Dec 14, 2008", @@ -111180,8 +164631,13 @@ "und": "Denver Broncos", "sF": "30", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2008 Regular Season - Week 15" }, { "date": "Dec 14, 2008", @@ -111191,7 +164647,12 @@ "sF": "49", "sU": "26", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "2008 Regular Season - Week 15" }, { "date": "Dec 14, 2008", @@ -111201,7 +164662,12 @@ "sF": "20", "sU": "8", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2008 Regular Season - Week 15" }, { "date": "Dec 15, 2008", @@ -111211,7 +164677,12 @@ "sF": "30", "sU": "10", "spread": "16", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 12.0, + "sF": 28.0 + }, + "week": "2008 Regular Season - Week 15" }, { "date": "Dec 18, 2008", @@ -111221,7 +164692,12 @@ "sF": "31", "sU": "24", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2008 Regular Season - Week 16" }, { "date": "Dec 20, 2008", @@ -111230,8 +164706,13 @@ "und": "Baltimore Ravens", "sF": "24", "sU": "33", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.0, + "pScore": { + "sU": 16.75, + "sF": 22.25 + }, + "week": "2008 Regular Season - Week 16" }, { "date": "Dec 21, 2008", @@ -111240,8 +164721,13 @@ "und": "Kansas City Chiefs", "sF": "38", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.5, + "pScore": { + "sU": 17.0, + "sF": 20.5 + }, + "week": "2008 Regular Season - Week 16" }, { "date": "Dec 21, 2008", @@ -111250,8 +164736,13 @@ "und": "St Louis Rams", "sF": "17", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "2008 Regular Season - Week 16" }, { "date": "Dec 21, 2008", @@ -111261,7 +164752,12 @@ "sF": "47", "sU": "7", "spread": "8", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.5, + "sF": 24.5 + }, + "week": "2008 Regular Season - Week 16" }, { "date": "Dec 21, 2008", @@ -111270,8 +164766,13 @@ "und": "San Diego Chargers", "sF": "24", "sU": "41", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.5, + "pScore": { + "sU": 19.0, + "sF": 23.5 + }, + "week": "2008 Regular Season - Week 16" }, { "date": "Dec 21, 2008", @@ -111281,7 +164782,12 @@ "sF": "14", "sU": "31", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "2008 Regular Season - Week 16" }, { "date": "Dec 21, 2008", @@ -111291,7 +164797,12 @@ "sF": "0", "sU": "14", "spread": "2", - "ou": -1 + "ou": 31.5, + "pScore": { + "sU": 14.75, + "sF": 16.75 + }, + "week": "2008 Regular Season - Week 16" }, { "date": "Dec 21, 2008", @@ -111301,7 +164812,12 @@ "sF": "42", "sU": "7", "spread": "7", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 21.75, + "sF": 28.75 + }, + "week": "2008 Regular Season - Week 16" }, { "date": "Dec 21, 2008", @@ -111311,7 +164827,12 @@ "sF": "16", "sU": "27", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2008 Regular Season - Week 16" }, { "date": "Dec 21, 2008", @@ -111320,8 +164841,13 @@ "und": "Buffalo Bills", "sF": "23", "sU": "30", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.5, + "pScore": { + "sU": 20.0, + "sF": 26.5 + }, + "week": "2008 Regular Season - Week 16" }, { "date": "Dec 21, 2008", @@ -111330,8 +164856,13 @@ "und": "Seattle Seahawks", "sF": "3", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2008 Regular Season - Week 16" }, { "date": "Dec 21, 2008", @@ -111341,7 +164872,12 @@ "sF": "17", "sU": "24", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2008 Regular Season - Week 16" }, { "date": "Dec 21, 2008", @@ -111351,7 +164887,12 @@ "sF": "3", "sU": "10", "spread": "6", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.75, + "sF": 21.75 + }, + "week": "2008 Regular Season - Week 16" }, { "date": "Dec 21, 2008", @@ -111361,7 +164902,12 @@ "sF": "34", "sU": "28", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "2008 Regular Season - Week 16" }, { "date": "Dec 22, 2008", @@ -111371,7 +164917,12 @@ "sF": "20", "sU": "17", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "2008 Regular Season - Week 16" }, { "date": "Dec 28, 2008", @@ -111381,7 +164932,12 @@ "sF": "31", "sU": "27", "spread": "14", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 15.25, + "sF": 29.25 + }, + "week": "2008 Regular Season - Week 17" }, { "date": "Dec 28, 2008", @@ -111390,8 +164946,13 @@ "und": "Buffalo Bills", "sF": "13", "sU": "0", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 34.5, + "pScore": { + "sU": 14.5, + "sF": 20.0 + }, + "week": "2008 Regular Season - Week 17" }, { "date": "Dec 28, 2008", @@ -111400,8 +164961,13 @@ "und": "Kansas City Chiefs", "sF": "16", "sU": "6", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.0, + "pScore": { + "sU": 19.25, + "sF": 20.75 + }, + "week": "2008 Regular Season - Week 17" }, { "date": "Dec 28, 2008", @@ -111411,7 +164977,12 @@ "sF": "31", "sU": "21", "spread": "11", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 15.25, + "sF": 26.25 + }, + "week": "2008 Regular Season - Week 17" }, { "date": "Dec 28, 2008", @@ -111421,7 +164992,12 @@ "sF": "0", "sU": "23", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2008 Regular Season - Week 17" }, { "date": "Dec 28, 2008", @@ -111430,8 +165006,13 @@ "und": "Cleveland Browns", "sF": "31", "sU": "0", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 33.0, + "pScore": { + "sU": 10.75, + "sF": 22.25 + }, + "week": "2008 Regular Season - Week 17" }, { "date": "Dec 28, 2008", @@ -111440,8 +165021,13 @@ "und": "Oakland Raiders", "sF": "24", "sU": "31", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 39.5, + "pScore": { + "sU": 14.5, + "sF": 25.0 + }, + "week": "2008 Regular Season - Week 17" }, { "date": "Dec 28, 2008", @@ -111451,7 +165037,12 @@ "sF": "31", "sU": "24", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2008 Regular Season - Week 17" }, { "date": "Dec 28, 2008", @@ -111460,8 +165051,13 @@ "und": "New Orleans Saints", "sF": "33", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 51.5, + "pScore": { + "sU": 25.0, + "sF": 26.5 + }, + "week": "2008 Regular Season - Week 17" }, { "date": "Dec 28, 2008", @@ -111471,7 +165067,12 @@ "sF": "20", "sU": "19", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "2008 Regular Season - Week 17" }, { "date": "Dec 28, 2008", @@ -111481,7 +165082,12 @@ "sF": "34", "sU": "21", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2008 Regular Season - Week 17" }, { "date": "Dec 28, 2008", @@ -111491,7 +165097,12 @@ "sF": "44", "sU": "6", "spread": "2", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.25, + "sF": 21.25 + }, + "week": "2008 Regular Season - Week 17" }, { "date": "Dec 28, 2008", @@ -111501,7 +165112,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2008 Regular Season - Week 17" }, { "date": "Dec 28, 2008", @@ -111510,8 +165126,13 @@ "und": "Jacksonville Jaguars", "sF": "27", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 37.5, + "pScore": { + "sU": 13.5, + "sF": 24.0 + }, + "week": "2008 Regular Season - Week 17" }, { "date": "Dec 28, 2008", @@ -111520,8 +165141,13 @@ "und": "Miami Dolphins", "sF": "17", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2008 Regular Season - Week 17" }, { "date": "Dec 28, 2008", @@ -111531,7 +165157,12 @@ "sF": "52", "sU": "21", "spread": "7", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 21.75, + "sF": 28.75 + }, + "week": "2008 Regular Season - Week 17" }, { "date": "Jan 3, 2009", @@ -111541,7 +165172,12 @@ "sF": "30", "sU": "24", "spread": "2", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 25.0, + "sF": 27.0 + }, + "week": "2008 Playoffs" }, { "date": "Jan 3, 2009", @@ -111550,8 +165186,13 @@ "und": "San Diego Chargers (4)", "sF": "17", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 50.0, + "pScore": { + "sU": 24.25, + "sF": 25.75 + }, + "week": "2008 Playoffs" }, { "date": "Jan 4, 2009", @@ -111560,8 +165201,13 @@ "und": "Miami Dolphins (3)", "sF": "27", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "2008 Playoffs" }, { "date": "Jan 4, 2009", @@ -111570,8 +165216,13 @@ "und": "Minnesota Vikings (3)", "sF": "26", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2008 Playoffs" }, { "date": "Jan 10, 2009", @@ -111581,7 +165232,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 15.25, + "sF": 18.25 + }, + "week": "2008 Playoffs" }, { "date": "Jan 10, 2009", @@ -111591,7 +165247,12 @@ "sF": "13", "sU": "33", "spread": "10", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 19.75, + "sF": 29.75 + }, + "week": "2008 Playoffs" }, { "date": "Jan 11, 2009", @@ -111601,7 +165262,12 @@ "sF": "11", "sU": "23", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "2008 Playoffs" }, { "date": "Jan 11, 2009", @@ -111610,8 +165276,13 @@ "und": "San Diego Chargers (4)", "sF": "35", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.5, + "pScore": { + "sU": 16.0, + "sF": 22.5 + }, + "week": "2008 Playoffs" }, { "date": "Jan 18, 2009", @@ -111620,8 +165291,13 @@ "und": "Arizona Cardinals (4)", "sF": "25", "sU": "32", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2008 Playoffs" }, { "date": "Jan 18, 2009", @@ -111631,7 +165307,12 @@ "sF": "23", "sU": "14", "spread": "6", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 14.75, + "sF": 20.75 + }, + "week": "2008 Playoffs" }, { "date": "Feb 1, 2009", @@ -111640,8 +165321,13 @@ "und": "Arizona Cardinals (4)", "sF": "27", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.5, + "pScore": { + "sU": 20.0, + "sF": 26.5 + }, + "week": "2008 Playoffs" }, { "date": "Sep 10, 2009", @@ -111650,8 +165336,13 @@ "und": "Tennessee Titans", "sF": "13", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 35.0, + "pScore": { + "sU": 14.25, + "sF": 20.75 + }, + "week": "2009 Regular Season - Week 1" }, { "date": "Sep 13, 2009", @@ -111661,7 +165352,12 @@ "sF": "38", "sU": "24", "spread": "13", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 11.75, + "sF": 24.75 + }, + "week": "2009 Regular Season - Week 1" }, { "date": "Sep 13, 2009", @@ -111671,7 +165367,12 @@ "sF": "7", "sU": "12", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "2009 Regular Season - Week 1" }, { "date": "Sep 13, 2009", @@ -111681,7 +165382,12 @@ "sF": "14", "sU": "12", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "2009 Regular Season - Week 1" }, { "date": "Sep 13, 2009", @@ -111690,8 +165396,13 @@ "und": "Cleveland Browns", "sF": "34", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "2009 Regular Season - Week 1" }, { "date": "Sep 13, 2009", @@ -111700,8 +165411,13 @@ "und": "New York Jets", "sF": "7", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.0, + "pScore": { + "sU": 20.25, + "sF": 24.75 + }, + "week": "2009 Regular Season - Week 1" }, { "date": "Sep 13, 2009", @@ -111711,7 +165427,12 @@ "sF": "45", "sU": "27", "spread": "14", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 18.0, + "sF": 32.0 + }, + "week": "2009 Regular Season - Week 1" }, { "date": "Sep 13, 2009", @@ -111721,7 +165442,12 @@ "sF": "34", "sU": "21", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "2009 Regular Season - Week 1" }, { "date": "Sep 13, 2009", @@ -111730,8 +165456,13 @@ "und": "Carolina Panthers", "sF": "38", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2009 Regular Season - Week 1" }, { "date": "Sep 13, 2009", @@ -111741,7 +165472,12 @@ "sF": "19", "sU": "7", "spread": "4", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.25, + "sF": 24.25 + }, + "week": "2009 Regular Season - Week 1" }, { "date": "Sep 13, 2009", @@ -111750,12 +165486,13 @@ "und": "San Francisco 49ers", "sF": "16", "sU": "20", - "spread": "4", - "ou": "49", + "spread": "4.5", + "ou": 45.0, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sU": 20.25, + "sF": 24.75 + }, + "week": "2009 Regular Season - Week 1" }, { "date": "Sep 13, 2009", @@ -111765,7 +165502,12 @@ "sF": "23", "sU": "17", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "2009 Regular Season - Week 1" }, { "date": "Sep 13, 2009", @@ -111775,7 +165517,12 @@ "sF": "28", "sU": "0", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "2009 Regular Season - Week 1" }, { "date": "Sep 13, 2009", @@ -111785,7 +165532,12 @@ "sF": "21", "sU": "15", "spread": "5", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.0, + "sF": 26.0 + }, + "week": "2009 Regular Season - Week 1" }, { "date": "Sep 14, 2009", @@ -111794,8 +165546,13 @@ "und": "Buffalo Bills", "sF": "25", "sU": "24", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 47.5, + "pScore": { + "sU": 17.0, + "sF": 30.5 + }, + "week": "2009 Regular Season - Week 1" }, { "date": "Sep 14, 2009", @@ -111805,7 +165562,12 @@ "sF": "24", "sU": "20", "spread": "10", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.5, + "sF": 26.5 + }, + "week": "2009 Regular Season - Week 1" }, { "date": "Sep 20, 2009", @@ -111814,8 +165576,13 @@ "und": "Oakland Raiders", "sF": "10", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.0, + "pScore": { + "sU": 19.25, + "sF": 20.75 + }, + "week": "2009 Regular Season - Week 2" }, { "date": "Sep 20, 2009", @@ -111824,8 +165591,13 @@ "und": "Carolina Panthers", "sF": "28", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.5, + "pScore": { + "sU": 19.0, + "sF": 24.5 + }, + "week": "2009 Regular Season - Week 2" }, { "date": "Sep 20, 2009", @@ -111834,8 +165606,13 @@ "und": "Cincinnati Bengals", "sF": "24", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "2009 Regular Season - Week 2" }, { "date": "Sep 20, 2009", @@ -111844,8 +165621,13 @@ "und": "New York Jets", "sF": "9", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2009 Regular Season - Week 2" }, { "date": "Sep 20, 2009", @@ -111855,7 +165637,12 @@ "sF": "9", "sU": "7", "spread": "10", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 13.5, + "sF": 23.5 + }, + "week": "2009 Regular Season - Week 2" }, { "date": "Sep 20, 2009", @@ -111865,7 +165652,12 @@ "sF": "27", "sU": "13", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "2009 Regular Season - Week 2" }, { "date": "Sep 20, 2009", @@ -111875,7 +165667,12 @@ "sF": "17", "sU": "31", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2009 Regular Season - Week 2" }, { "date": "Sep 20, 2009", @@ -111885,7 +165682,12 @@ "sF": "31", "sU": "34", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "2009 Regular Season - Week 2" }, { "date": "Sep 20, 2009", @@ -111894,8 +165696,13 @@ "und": "Philadelphia Eagles", "sF": "48", "sU": "22", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "2009 Regular Season - Week 2" }, { "date": "Sep 20, 2009", @@ -111905,7 +165712,12 @@ "sF": "33", "sU": "20", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "2009 Regular Season - Week 2" }, { "date": "Sep 20, 2009", @@ -111915,7 +165727,12 @@ "sF": "23", "sU": "10", "spread": "1", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.75, + "sF": 19.75 + }, + "week": "2009 Regular Season - Week 2" }, { "date": "Sep 20, 2009", @@ -111925,7 +165742,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "2009 Regular Season - Week 2" }, { "date": "Sep 20, 2009", @@ -111935,7 +165757,12 @@ "sF": "27", "sU": "6", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "2009 Regular Season - Week 2" }, { "date": "Sep 20, 2009", @@ -111945,7 +165772,12 @@ "sF": "26", "sU": "31", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "2009 Regular Season - Week 2" }, { "date": "Sep 20, 2009", @@ -111955,7 +165787,12 @@ "sF": "31", "sU": "33", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2009 Regular Season - Week 2" }, { "date": "Sep 21, 2009", @@ -111965,7 +165802,12 @@ "sF": "27", "sU": "23", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2009 Regular Season - Week 2" }, { "date": "Sep 27, 2009", @@ -111974,8 +165816,13 @@ "und": "St Louis Rams", "sF": "36", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "2009 Regular Season - Week 3" }, { "date": "Sep 27, 2009", @@ -111984,8 +165831,13 @@ "und": "Tampa Bay Buccaneers", "sF": "24", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.0, + "pScore": { + "sU": 19.75, + "sF": 26.25 + }, + "week": "2009 Regular Season - Week 3" }, { "date": "Sep 27, 2009", @@ -111994,8 +165846,13 @@ "und": "Cleveland Browns", "sF": "34", "sU": "3", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 38.5, + "pScore": { + "sU": 12.5, + "sF": 26.0 + }, + "week": "2009 Regular Season - Week 3" }, { "date": "Sep 27, 2009", @@ -112005,7 +165862,12 @@ "sF": "14", "sU": "19", "spread": "6", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.75, + "sF": 22.75 + }, + "week": "2009 Regular Season - Week 3" }, { "date": "Sep 27, 2009", @@ -112014,8 +165876,13 @@ "und": "Atlanta Falcons", "sF": "26", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.5, + "pScore": { + "sU": 20.5, + "sF": 25.0 + }, + "week": "2009 Regular Season - Week 3" }, { "date": "Sep 27, 2009", @@ -112024,8 +165891,13 @@ "und": "Kansas City Chiefs", "sF": "34", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.0, + "pScore": { + "sU": 15.75, + "sF": 23.25 + }, + "week": "2009 Regular Season - Week 3" }, { "date": "Sep 27, 2009", @@ -112034,8 +165906,13 @@ "und": "Jacksonville Jaguars", "sF": "24", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.5, + "pScore": { + "sU": 21.5, + "sF": 26.0 + }, + "week": "2009 Regular Season - Week 3" }, { "date": "Sep 27, 2009", @@ -112045,11 +165922,12 @@ "sF": "27", "sU": "24", "spread": "7", - "ou": "49", + "ou": 39.5, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 16.25, + "sF": 23.25 + }, + "week": "2009 Regular Season - Week 3" }, { "date": "Sep 27, 2009", @@ -112059,7 +165937,12 @@ "sF": "24", "sU": "17", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "2009 Regular Season - Week 3" }, { "date": "Sep 27, 2009", @@ -112068,8 +165951,13 @@ "und": "Buffalo Bills", "sF": "27", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 51.5, + "pScore": { + "sU": 23.0, + "sF": 28.5 + }, + "week": "2009 Regular Season - Week 3" }, { "date": "Sep 27, 2009", @@ -112078,8 +165966,13 @@ "und": "Seattle Seahawks", "sF": "25", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2009 Regular Season - Week 3" }, { "date": "Sep 27, 2009", @@ -112088,8 +165981,13 @@ "und": "Cincinnati Bengals", "sF": "20", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2009 Regular Season - Week 3" }, { "date": "Sep 27, 2009", @@ -112098,8 +165996,13 @@ "und": "Oakland Raiders", "sF": "23", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "2009 Regular Season - Week 3" }, { "date": "Sep 27, 2009", @@ -112108,8 +166011,13 @@ "und": "Miami Dolphins", "sF": "23", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.5, + "pScore": { + "sU": 20.0, + "sF": 25.5 + }, + "week": "2009 Regular Season - Week 3" }, { "date": "Sep 27, 2009", @@ -112119,7 +166027,12 @@ "sF": "10", "sU": "31", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2009 Regular Season - Week 3" }, { "date": "Sep 28, 2009", @@ -112128,8 +166041,13 @@ "und": "Carolina Panthers", "sF": "21", "sU": "7", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 48.5, + "pScore": { + "sU": 20.0, + "sF": 28.5 + }, + "week": "2009 Regular Season - Week 3" }, { "date": "Oct 4, 2009", @@ -112138,8 +166056,13 @@ "und": "Kansas City Chiefs", "sF": "27", "sU": "16", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "2009 Regular Season - Week 4" }, { "date": "Oct 4, 2009", @@ -112149,7 +166072,12 @@ "sF": "16", "sU": "13", "spread": "9", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 13.25, + "sF": 22.25 + }, + "week": "2009 Regular Season - Week 4" }, { "date": "Oct 4, 2009", @@ -112158,8 +166086,13 @@ "und": "Detroit Lions", "sF": "48", "sU": "24", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "2009 Regular Season - Week 4" }, { "date": "Oct 4, 2009", @@ -112169,7 +166102,12 @@ "sF": "29", "sU": "6", "spread": "8", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.5, + "sF": 25.5 + }, + "week": "2009 Regular Season - Week 4" }, { "date": "Oct 4, 2009", @@ -112179,7 +166117,12 @@ "sF": "27", "sU": "21", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "2009 Regular Season - Week 4" }, { "date": "Oct 4, 2009", @@ -112188,8 +166131,13 @@ "und": "Cleveland Browns", "sF": "23", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.5, + "pScore": { + "sU": 15.5, + "sF": 22.0 + }, + "week": "2009 Regular Season - Week 4" }, { "date": "Oct 4, 2009", @@ -112198,8 +166146,13 @@ "und": "Seattle Seahawks", "sF": "34", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.5, + "pScore": { + "sU": 16.5, + "sF": 27.0 + }, + "week": "2009 Regular Season - Week 4" }, { "date": "Oct 4, 2009", @@ -112208,8 +166161,13 @@ "und": "Jacksonville Jaguars", "sF": "17", "sU": "37", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "2009 Regular Season - Week 4" }, { "date": "Oct 4, 2009", @@ -112218,8 +166176,13 @@ "und": "Buffalo Bills", "sF": "38", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.5, + "pScore": { + "sU": 18.0, + "sF": 19.5 + }, + "week": "2009 Regular Season - Week 4" }, { "date": "Oct 4, 2009", @@ -112228,8 +166191,13 @@ "und": "New York Jets", "sF": "24", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.0, + "pScore": { + "sU": 19.75, + "sF": 27.25 + }, + "week": "2009 Regular Season - Week 4" }, { "date": "Oct 4, 2009", @@ -112239,7 +166207,12 @@ "sF": "10", "sU": "17", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2009 Regular Season - Week 4" }, { "date": "Oct 4, 2009", @@ -112248,8 +166221,13 @@ "und": "St Louis Rams", "sF": "35", "sU": "0", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 36.5, + "pScore": { + "sU": 13.5, + "sF": 23.0 + }, + "week": "2009 Regular Season - Week 4" }, { "date": "Oct 4, 2009", @@ -112258,8 +166236,13 @@ "und": "San Diego Chargers", "sF": "38", "sU": "28", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.5, + "pScore": { + "sU": 19.0, + "sF": 24.5 + }, + "week": "2009 Regular Season - Week 4" }, { "date": "Oct 5, 2009", @@ -112269,7 +166252,12 @@ "sF": "30", "sU": "23", "spread": "5", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.75, + "sF": 25.75 + }, + "week": "2009 Regular Season - Week 4" }, { "date": "Oct 11, 2009", @@ -112279,7 +166267,12 @@ "sF": "26", "sU": "20", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2009 Regular Season - Week 5" }, { "date": "Oct 11, 2009", @@ -112288,8 +166281,13 @@ "und": "St Louis Rams", "sF": "38", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 41.0, + "pScore": { + "sU": 15.25, + "sF": 25.75 + }, + "week": "2009 Regular Season - Week 5" }, { "date": "Oct 11, 2009", @@ -112298,8 +166296,13 @@ "und": "Cleveland Browns", "sF": "3", "sU": "6", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.0, + "pScore": { + "sU": 18.25, + "sF": 23.75 + }, + "week": "2009 Regular Season - Week 5" }, { "date": "Oct 11, 2009", @@ -112309,7 +166312,12 @@ "sF": "14", "sU": "17", "spread": "9", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 16.75, + "sF": 25.75 + }, + "week": "2009 Regular Season - Week 5" }, { "date": "Oct 11, 2009", @@ -112319,7 +166327,12 @@ "sF": "28", "sU": "20", "spread": "11", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 16.5, + "sF": 27.5 + }, + "week": "2009 Regular Season - Week 5" }, { "date": "Oct 11, 2009", @@ -112329,7 +166342,12 @@ "sF": "44", "sU": "7", "spread": "15", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 11.75, + "sF": 26.75 + }, + "week": "2009 Regular Season - Week 5" }, { "date": "Oct 11, 2009", @@ -112338,8 +166356,13 @@ "und": "Tampa Bay Buccaneers", "sF": "33", "sU": "14", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 42.0, + "pScore": { + "sU": 13.25, + "sF": 28.75 + }, + "week": "2009 Regular Season - Week 5" }, { "date": "Oct 11, 2009", @@ -112348,8 +166371,13 @@ "und": "Washington Redskins", "sF": "20", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "2009 Regular Season - Week 5" }, { "date": "Oct 11, 2009", @@ -112359,7 +166387,12 @@ "sF": "10", "sU": "45", "spread": "1", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 19.25, + "sF": 20.25 + }, + "week": "2009 Regular Season - Week 5" }, { "date": "Oct 11, 2009", @@ -112369,7 +166402,12 @@ "sF": "28", "sU": "21", "spread": "6", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 22.5, + "sF": 28.5 + }, + "week": "2009 Regular Season - Week 5" }, { "date": "Oct 11, 2009", @@ -112379,7 +166417,12 @@ "sF": "17", "sU": "20", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2009 Regular Season - Week 5" }, { "date": "Oct 11, 2009", @@ -112389,7 +166432,12 @@ "sF": "41", "sU": "0", "spread": "2", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.25, + "sF": 23.25 + }, + "week": "2009 Regular Season - Week 5" }, { "date": "Oct 11, 2009", @@ -112398,8 +166446,13 @@ "und": "Tennessee Titans", "sF": "31", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2009 Regular Season - Week 5" }, { "date": "Oct 12, 2009", @@ -112409,7 +166462,12 @@ "sF": "27", "sU": "31", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2009 Regular Season - Week 5" }, { "date": "Oct 18, 2009", @@ -112419,7 +166477,12 @@ "sF": "28", "sU": "21", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2009 Regular Season - Week 6" }, { "date": "Oct 18, 2009", @@ -112429,7 +166492,12 @@ "sF": "27", "sU": "14", "spread": "14", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 12.0, + "sF": 26.0 + }, + "week": "2009 Regular Season - Week 6" }, { "date": "Oct 18, 2009", @@ -112438,8 +166506,13 @@ "und": "Houston Texans", "sF": "17", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "2009 Regular Season - Week 6" }, { "date": "Oct 18, 2009", @@ -112449,7 +166522,12 @@ "sF": "26", "sU": "0", "spread": "14", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 17.0, + "sF": 31.0 + }, + "week": "2009 Regular Season - Week 6" }, { "date": "Oct 18, 2009", @@ -112458,8 +166536,13 @@ "und": "St Louis Rams", "sF": "23", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.5, + "pScore": { + "sU": 16.5, + "sF": 26.0 + }, + "week": "2009 Regular Season - Week 6" }, { "date": "Oct 18, 2009", @@ -112469,7 +166552,12 @@ "sF": "48", "sU": "27", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2009 Regular Season - Week 6" }, { "date": "Oct 18, 2009", @@ -112478,8 +166566,13 @@ "und": "Kansas City Chiefs", "sF": "6", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.5, + "pScore": { + "sU": 15.0, + "sF": 21.5 + }, + "week": "2009 Regular Season - Week 6" }, { "date": "Oct 18, 2009", @@ -112489,7 +166582,12 @@ "sF": "33", "sU": "31", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2009 Regular Season - Week 6" }, { "date": "Oct 18, 2009", @@ -112499,7 +166597,12 @@ "sF": "9", "sU": "13", "spread": "14", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 13.25, + "sF": 27.25 + }, + "week": "2009 Regular Season - Week 6" }, { "date": "Oct 18, 2009", @@ -112509,7 +166612,12 @@ "sF": "3", "sU": "27", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2009 Regular Season - Week 6" }, { "date": "Oct 18, 2009", @@ -112519,7 +166627,12 @@ "sF": "59", "sU": "0", "spread": "9", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 14.25, + "sF": 23.25 + }, + "week": "2009 Regular Season - Week 6" }, { "date": "Oct 18, 2009", @@ -112528,8 +166641,13 @@ "und": "Buffalo Bills", "sF": "13", "sU": "16", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 35.5, + "pScore": { + "sU": 13.0, + "sF": 22.5 + }, + "week": "2009 Regular Season - Week 6" }, { "date": "Oct 18, 2009", @@ -112538,8 +166656,13 @@ "und": "Chicago Bears", "sF": "21", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "2009 Regular Season - Week 6" }, { "date": "Oct 19, 2009", @@ -112548,8 +166671,13 @@ "und": "Denver Broncos", "sF": "23", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2009 Regular Season - Week 6" }, { "date": "Oct 25, 2009", @@ -112558,8 +166686,13 @@ "und": "Kansas City Chiefs", "sF": "37", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "2009 Regular Season - Week 7" }, { "date": "Oct 25, 2009", @@ -112568,8 +166701,13 @@ "und": "St Louis Rams", "sF": "42", "sU": "6", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 45.0, + "pScore": { + "sU": 15.25, + "sF": 29.75 + }, + "week": "2009 Regular Season - Week 7" }, { "date": "Oct 25, 2009", @@ -112579,7 +166717,12 @@ "sF": "31", "sU": "3", "spread": "9", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 16.25, + "sF": 25.25 + }, + "week": "2009 Regular Season - Week 7" }, { "date": "Oct 25, 2009", @@ -112589,7 +166732,12 @@ "sF": "27", "sU": "17", "spread": "6", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.25, + "sF": 26.25 + }, + "week": "2009 Regular Season - Week 7" }, { "date": "Oct 25, 2009", @@ -112599,11 +166747,12 @@ "sF": "24", "sU": "21", "spread": "3", - "ou": "49", + "ou": 44.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 20.75, + "sF": 23.75 + }, + "week": "2009 Regular Season - Week 7" }, { "date": "Oct 25, 2009", @@ -112612,8 +166761,13 @@ "und": "Tampa Bay Buccaneers", "sF": "35", "sU": "7", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 44.5, + "pScore": { + "sU": 14.5, + "sF": 30.0 + }, + "week": "2009 Regular Season - Week 7" }, { "date": "Oct 25, 2009", @@ -112623,7 +166777,12 @@ "sF": "9", "sU": "20", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "2009 Regular Season - Week 7" }, { "date": "Oct 25, 2009", @@ -112633,7 +166792,12 @@ "sF": "38", "sU": "0", "spread": "6", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 14.0, + "sF": 20.0 + }, + "week": "2009 Regular Season - Week 7" }, { "date": "Oct 25, 2009", @@ -112643,7 +166807,12 @@ "sF": "37", "sU": "21", "spread": "5", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 21.5, + "sF": 26.5 + }, + "week": "2009 Regular Season - Week 7" }, { "date": "Oct 25, 2009", @@ -112652,8 +166821,13 @@ "und": "Miami Dolphins", "sF": "46", "sU": "34", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.0, + "pScore": { + "sU": 20.75, + "sF": 27.25 + }, + "week": "2009 Regular Season - Week 7" }, { "date": "Oct 25, 2009", @@ -112663,7 +166837,12 @@ "sF": "10", "sU": "45", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "2009 Regular Season - Week 7" }, { "date": "Oct 25, 2009", @@ -112673,7 +166852,12 @@ "sF": "17", "sU": "24", "spread": "8", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.5, + "sF": 27.5 + }, + "week": "2009 Regular Season - Week 7" }, { "date": "Oct 26, 2009", @@ -112683,7 +166867,12 @@ "sF": "27", "sU": "17", "spread": "9", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.5, + "sF": 23.5 + }, + "week": "2009 Regular Season - Week 7" }, { "date": "Nov 1, 2009", @@ -112692,8 +166881,13 @@ "und": "Cleveland Browns", "sF": "30", "sU": "6", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 40.0, + "pScore": { + "sU": 13.25, + "sF": 26.75 + }, + "week": "2009 Regular Season - Week 8" }, { "date": "Nov 1, 2009", @@ -112702,8 +166896,13 @@ "und": "Denver Broncos", "sF": "30", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "2009 Regular Season - Week 8" }, { "date": "Nov 1, 2009", @@ -112712,8 +166911,13 @@ "und": "Buffalo Bills", "sF": "31", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2009 Regular Season - Week 8" }, { "date": "Nov 1, 2009", @@ -112722,8 +166926,13 @@ "und": "Miami Dolphins", "sF": "25", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "2009 Regular Season - Week 8" }, { "date": "Nov 1, 2009", @@ -112732,8 +166941,13 @@ "und": "Seattle Seahawks", "sF": "38", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 46.0, + "pScore": { + "sU": 18.25, + "sF": 27.75 + }, + "week": "2009 Regular Season - Week 8" }, { "date": "Nov 1, 2009", @@ -112743,7 +166957,12 @@ "sF": "10", "sU": "17", "spread": "4", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.75, + "sF": 23.75 + }, + "week": "2009 Regular Season - Week 8" }, { "date": "Nov 1, 2009", @@ -112752,12 +166971,13 @@ "und": "San Francisco 49ers", "sF": "18", "sU": "14", - "spread": "13", - "ou": "49", + "spread": "13.5", + "ou": 44.5, "pScore": { - "sU": 18, - "sF": 31 - } + "sU": 15.5, + "sF": 29.0 + }, + "week": "2009 Regular Season - Week 8" }, { "date": "Nov 1, 2009", @@ -112767,7 +166987,12 @@ "sF": "17", "sU": "40", "spread": "1", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.75, + "sF": 22.75 + }, + "week": "2009 Regular Season - Week 8" }, { "date": "Nov 1, 2009", @@ -112776,8 +167001,13 @@ "und": "Oakland Raiders", "sF": "24", "sU": "16", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 41.5, + "pScore": { + "sU": 12.5, + "sF": 29.0 + }, + "week": "2009 Regular Season - Week 8" }, { "date": "Nov 1, 2009", @@ -112787,7 +167017,12 @@ "sF": "30", "sU": "13", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2009 Regular Season - Week 8" }, { "date": "Nov 1, 2009", @@ -112797,7 +167032,12 @@ "sF": "21", "sU": "34", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "2009 Regular Season - Week 8" }, { "date": "Nov 1, 2009", @@ -112807,7 +167047,12 @@ "sF": "26", "sU": "38", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2009 Regular Season - Week 8" }, { "date": "Nov 2, 2009", @@ -112817,7 +167062,12 @@ "sF": "35", "sU": "27", "spread": "12", - "ou": -1 + "ou": 56.0, + "pScore": { + "sU": 22.0, + "sF": 34.0 + }, + "week": "2009 Regular Season - Week 8" }, { "date": "Nov 8, 2009", @@ -112827,7 +167077,12 @@ "sF": "7", "sU": "17", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2009 Regular Season - Week 9" }, { "date": "Nov 8, 2009", @@ -112836,8 +167091,13 @@ "und": "Houston Texans", "sF": "20", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 49.5, + "pScore": { + "sU": 20.5, + "sF": 29.0 + }, + "week": "2009 Regular Season - Week 9" }, { "date": "Nov 8, 2009", @@ -112846,8 +167106,13 @@ "und": "Miami Dolphins", "sF": "27", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 46.5, + "pScore": { + "sU": 18.0, + "sF": 28.5 + }, + "week": "2009 Regular Season - Week 9" }, { "date": "Nov 8, 2009", @@ -112857,7 +167122,12 @@ "sF": "31", "sU": "17", "spread": "9", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.0, + "sF": 25.0 + }, + "week": "2009 Regular Season - Week 9" }, { "date": "Nov 8, 2009", @@ -112867,7 +167137,12 @@ "sF": "21", "sU": "41", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2009 Regular Season - Week 9" }, { "date": "Nov 8, 2009", @@ -112877,7 +167152,12 @@ "sF": "24", "sU": "21", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2009 Regular Season - Week 9" }, { "date": "Nov 8, 2009", @@ -112886,8 +167166,13 @@ "und": "Tampa Bay Buccaneers", "sF": "28", "sU": "38", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.5, + "pScore": { + "sU": 17.0, + "sF": 26.5 + }, + "week": "2009 Regular Season - Week 9" }, { "date": "Nov 8, 2009", @@ -112897,7 +167182,12 @@ "sF": "30", "sU": "20", "spread": "13", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 19.25, + "sF": 32.25 + }, + "week": "2009 Regular Season - Week 9" }, { "date": "Nov 8, 2009", @@ -112907,7 +167197,12 @@ "sF": "32", "sU": "20", "spread": "10", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.0, + "sF": 26.0 + }, + "week": "2009 Regular Season - Week 9" }, { "date": "Nov 8, 2009", @@ -112916,8 +167211,13 @@ "und": "San Diego Chargers", "sF": "20", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.0, + "pScore": { + "sU": 21.75, + "sF": 26.25 + }, + "week": "2009 Regular Season - Week 9" }, { "date": "Nov 8, 2009", @@ -112927,7 +167227,12 @@ "sF": "27", "sU": "34", "spread": "4", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.25, + "sF": 22.25 + }, + "week": "2009 Regular Season - Week 9" }, { "date": "Nov 8, 2009", @@ -112937,7 +167242,12 @@ "sF": "16", "sU": "20", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "2009 Regular Season - Week 9" }, { "date": "Nov 9, 2009", @@ -112947,7 +167257,12 @@ "sF": "28", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2009 Regular Season - Week 9" }, { "date": "Nov 12, 2009", @@ -112957,7 +167272,12 @@ "sF": "10", "sU": "6", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2009 Regular Season - Week 10" }, { "date": "Nov 15, 2009", @@ -112966,8 +167286,13 @@ "und": "St Louis Rams", "sF": "28", "sU": "23", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 51.0, + "pScore": { + "sU": 18.25, + "sF": 32.75 + }, + "week": "2009 Regular Season - Week 10" }, { "date": "Nov 15, 2009", @@ -112976,8 +167301,13 @@ "und": "Jacksonville Jaguars", "sF": "22", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "2009 Regular Season - Week 10" }, { "date": "Nov 15, 2009", @@ -112986,8 +167316,13 @@ "und": "Cincinnati Bengals", "sF": "12", "sU": "18", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "2009 Regular Season - Week 10" }, { "date": "Nov 15, 2009", @@ -112996,8 +167331,13 @@ "und": "Buffalo Bills", "sF": "41", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.0, + "pScore": { + "sU": 16.75, + "sF": 24.25 + }, + "week": "2009 Regular Season - Week 10" }, { "date": "Nov 15, 2009", @@ -113006,8 +167346,13 @@ "und": "Washington Redskins", "sF": "17", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "2009 Regular Season - Week 10" }, { "date": "Nov 15, 2009", @@ -113017,7 +167362,12 @@ "sF": "19", "sU": "28", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "2009 Regular Season - Week 10" }, { "date": "Nov 15, 2009", @@ -113027,7 +167377,12 @@ "sF": "25", "sU": "23", "spread": "10", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 16.75, + "sF": 26.75 + }, + "week": "2009 Regular Season - Week 10" }, { "date": "Nov 15, 2009", @@ -113037,7 +167392,12 @@ "sF": "27", "sU": "10", "spread": "17", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 15.25, + "sF": 32.25 + }, + "week": "2009 Regular Season - Week 10" }, { "date": "Nov 15, 2009", @@ -113046,8 +167406,13 @@ "und": "Kansas City Chiefs", "sF": "10", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "2009 Regular Season - Week 10" }, { "date": "Nov 15, 2009", @@ -113056,8 +167421,13 @@ "und": "Seattle Seahawks", "sF": "31", "sU": "20", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 46.5, + "pScore": { + "sU": 19.0, + "sF": 27.5 + }, + "week": "2009 Regular Season - Week 10" }, { "date": "Nov 15, 2009", @@ -113067,7 +167437,12 @@ "sF": "7", "sU": "17", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2009 Regular Season - Week 10" }, { "date": "Nov 15, 2009", @@ -113076,8 +167451,13 @@ "und": "Philadelphia Eagles", "sF": "31", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.0, + "pScore": { + "sU": 22.75, + "sF": 24.25 + }, + "week": "2009 Regular Season - Week 10" }, { "date": "Nov 15, 2009", @@ -113086,8 +167466,13 @@ "und": "New England Patriots", "sF": "35", "sU": "34", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 48.5, + "pScore": { + "sU": 23.5, + "sF": 25.0 + }, + "week": "2009 Regular Season - Week 10" }, { "date": "Nov 16, 2009", @@ -113097,7 +167482,12 @@ "sF": "16", "sU": "0", "spread": "11", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.0, + "sF": 25.0 + }, + "week": "2009 Regular Season - Week 10" }, { "date": "Nov 19, 2009", @@ -113106,8 +167496,13 @@ "und": "Miami Dolphins", "sF": "17", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "2009 Regular Season - Week 11" }, { "date": "Nov 22, 2009", @@ -113116,8 +167511,13 @@ "und": "Kansas City Chiefs", "sF": "24", "sU": "27", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 39.5, + "pScore": { + "sU": 14.0, + "sF": 25.5 + }, + "week": "2009 Regular Season - Week 11" }, { "date": "Nov 22, 2009", @@ -113126,8 +167526,13 @@ "und": "Tampa Bay Buccaneers", "sF": "38", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 51.0, + "pScore": { + "sU": 20.25, + "sF": 30.75 + }, + "week": "2009 Regular Season - Week 11" }, { "date": "Nov 22, 2009", @@ -113136,8 +167541,13 @@ "und": "Baltimore Ravens", "sF": "17", "sU": "15", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.5, + "pScore": { + "sU": 21.5, + "sF": 23.0 + }, + "week": "2009 Regular Season - Week 11" }, { "date": "Nov 22, 2009", @@ -113147,7 +167557,12 @@ "sF": "38", "sU": "37", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2009 Regular Season - Week 11" }, { "date": "Nov 22, 2009", @@ -113157,11 +167572,12 @@ "sF": "30", "sU": "24", "spread": "6", - "ou": "49", + "ou": 42.0, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 18.0, + "sF": 24.0 + }, + "week": "2009 Regular Season - Week 11" }, { "date": "Nov 22, 2009", @@ -113170,8 +167586,13 @@ "und": "Washington Redskins", "sF": "7", "sU": "6", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 41.5, + "pScore": { + "sU": 15.5, + "sF": 26.0 + }, + "week": "2009 Regular Season - Week 11" }, { "date": "Nov 22, 2009", @@ -113180,8 +167601,13 @@ "und": "Buffalo Bills", "sF": "18", "sU": "15", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 41.0, + "pScore": { + "sU": 16.25, + "sF": 24.75 + }, + "week": "2009 Regular Season - Week 11" }, { "date": "Nov 22, 2009", @@ -113191,7 +167617,12 @@ "sF": "34", "sU": "31", "spread": "7", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.75, + "sF": 26.75 + }, + "week": "2009 Regular Season - Week 11" }, { "date": "Nov 22, 2009", @@ -113201,7 +167632,12 @@ "sF": "35", "sU": "9", "spread": "11", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 18.0, + "sF": 29.0 + }, + "week": "2009 Regular Season - Week 11" }, { "date": "Nov 22, 2009", @@ -113211,7 +167647,12 @@ "sF": "21", "sU": "13", "spread": "9", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.0, + "sF": 28.0 + }, + "week": "2009 Regular Season - Week 11" }, { "date": "Nov 22, 2009", @@ -113221,7 +167662,12 @@ "sF": "32", "sU": "3", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "2009 Regular Season - Week 11" }, { "date": "Nov 22, 2009", @@ -113231,7 +167677,12 @@ "sF": "31", "sU": "14", "spread": "11", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.0, + "sF": 28.0 + }, + "week": "2009 Regular Season - Week 11" }, { "date": "Nov 22, 2009", @@ -113240,8 +167691,13 @@ "und": "Oakland Raiders", "sF": "17", "sU": "20", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 36.0, + "pScore": { + "sU": 13.75, + "sF": 22.25 + }, + "week": "2009 Regular Season - Week 11" }, { "date": "Nov 22, 2009", @@ -113250,8 +167706,13 @@ "und": "Chicago Bears", "sF": "24", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2009 Regular Season - Week 11" }, { "date": "Nov 23, 2009", @@ -113260,8 +167721,13 @@ "und": "Tennessee Titans", "sF": "17", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "2009 Regular Season - Week 11" }, { "date": "Nov 26, 2009", @@ -113270,8 +167736,13 @@ "und": "Detroit Lions", "sF": "34", "sU": "12", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 48.0, + "pScore": { + "sU": 18.25, + "sF": 29.75 + }, + "week": "2009 Regular Season - Week 12" }, { "date": "Nov 26, 2009", @@ -113280,8 +167751,13 @@ "und": "Oakland Raiders", "sF": "24", "sU": "7", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 40.5, + "pScore": { + "sU": 13.5, + "sF": 27.0 + }, + "week": "2009 Regular Season - Week 12" }, { "date": "Nov 26, 2009", @@ -113290,8 +167766,13 @@ "und": "Denver Broncos", "sF": "6", "sU": "26", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.5, + "pScore": { + "sU": 19.5, + "sF": 24.0 + }, + "week": "2009 Regular Season - Week 12" }, { "date": "Nov 29, 2009", @@ -113300,8 +167781,13 @@ "und": "St Louis Rams", "sF": "27", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2009 Regular Season - Week 12" }, { "date": "Nov 29, 2009", @@ -113310,8 +167796,13 @@ "und": "Buffalo Bills", "sF": "14", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "2009 Regular Season - Week 12" }, { "date": "Nov 29, 2009", @@ -113321,7 +167812,12 @@ "sF": "16", "sU": "7", "spread": "12", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 13.75, + "sF": 25.75 + }, + "week": "2009 Regular Season - Week 12" }, { "date": "Nov 29, 2009", @@ -113331,7 +167827,12 @@ "sF": "35", "sU": "27", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2009 Regular Season - Week 12" }, { "date": "Nov 29, 2009", @@ -113340,8 +167841,13 @@ "und": "Carolina Panthers", "sF": "17", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2009 Regular Season - Week 12" }, { "date": "Nov 29, 2009", @@ -113350,8 +167856,13 @@ "und": "Tampa Bay Buccaneers", "sF": "20", "sU": "17", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 46.0, + "pScore": { + "sU": 16.75, + "sF": 29.25 + }, + "week": "2009 Regular Season - Week 12" }, { "date": "Nov 29, 2009", @@ -113361,7 +167872,12 @@ "sF": "27", "sU": "24", "spread": "10", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.25, + "sF": 25.25 + }, + "week": "2009 Regular Season - Week 12" }, { "date": "Nov 29, 2009", @@ -113370,8 +167886,13 @@ "und": "Kansas City Chiefs", "sF": "43", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 45.0, + "pScore": { + "sU": 15.75, + "sF": 29.25 + }, + "week": "2009 Regular Season - Week 12" }, { "date": "Nov 29, 2009", @@ -113381,7 +167902,12 @@ "sF": "20", "sU": "3", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2009 Regular Season - Week 12" }, { "date": "Nov 29, 2009", @@ -113391,7 +167917,12 @@ "sF": "36", "sU": "10", "spread": "10", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 18.5, + "sF": 28.5 + }, + "week": "2009 Regular Season - Week 12" }, { "date": "Nov 29, 2009", @@ -113401,7 +167932,12 @@ "sF": "20", "sU": "17", "spread": "2", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.75, + "sF": 23.75 + }, + "week": "2009 Regular Season - Week 12" }, { "date": "Nov 29, 2009", @@ -113411,7 +167947,12 @@ "sF": "20", "sU": "17", "spread": "8", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 13.0, + "sF": 21.0 + }, + "week": "2009 Regular Season - Week 12" }, { "date": "Nov 30, 2009", @@ -113420,8 +167961,13 @@ "und": "New England Patriots", "sF": "38", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 56.5, + "pScore": { + "sU": 27.5, + "sF": 29.0 + }, + "week": "2009 Regular Season - Week 12" }, { "date": "Dec 3, 2009", @@ -113430,8 +167976,13 @@ "und": "Buffalo Bills", "sF": "19", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2009 Regular Season - Week 13" }, { "date": "Dec 6, 2009", @@ -113441,7 +167992,12 @@ "sF": "44", "sU": "13", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "2009 Regular Season - Week 13" }, { "date": "Dec 6, 2009", @@ -113451,7 +168007,12 @@ "sF": "17", "sU": "9", "spread": "9", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.0, + "sF": 25.0 + }, + "week": "2009 Regular Season - Week 13" }, { "date": "Dec 6, 2009", @@ -113460,8 +168021,13 @@ "und": "Detroit Lions", "sF": "23", "sU": "13", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 42.0, + "pScore": { + "sU": 14.25, + "sF": 27.75 + }, + "week": "2009 Regular Season - Week 13" }, { "date": "Dec 6, 2009", @@ -113471,7 +168037,12 @@ "sF": "21", "sU": "22", "spread": "5", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.75, + "sF": 25.75 + }, + "week": "2009 Regular Season - Week 13" }, { "date": "Dec 6, 2009", @@ -113481,7 +168052,12 @@ "sF": "24", "sU": "27", "spread": "15", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 11.0, + "sF": 26.0 + }, + "week": "2009 Regular Season - Week 13" }, { "date": "Dec 6, 2009", @@ -113491,7 +168067,12 @@ "sF": "34", "sU": "7", "spread": "4", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.75, + "sF": 23.75 + }, + "week": "2009 Regular Season - Week 13" }, { "date": "Dec 6, 2009", @@ -113500,8 +168081,13 @@ "und": "Tampa Bay Buccaneers", "sF": "16", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2009 Regular Season - Week 13" }, { "date": "Dec 6, 2009", @@ -113511,7 +168097,12 @@ "sF": "27", "sU": "17", "spread": "6", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.5, + "sF": 26.5 + }, + "week": "2009 Regular Season - Week 13" }, { "date": "Dec 6, 2009", @@ -113520,8 +168111,13 @@ "und": "Jacksonville Jaguars", "sF": "18", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.5, + "pScore": { + "sU": 23.0, + "sF": 24.5 + }, + "week": "2009 Regular Season - Week 13" }, { "date": "Dec 6, 2009", @@ -113531,7 +168127,12 @@ "sF": "33", "sU": "30", "spread": "8", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.5, + "sF": 27.5 + }, + "week": "2009 Regular Season - Week 13" }, { "date": "Dec 6, 2009", @@ -113540,8 +168141,13 @@ "und": "Cleveland Browns", "sF": "30", "sU": "23", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 42.5, + "pScore": { + "sU": 14.5, + "sF": 28.0 + }, + "week": "2009 Regular Season - Week 13" }, { "date": "Dec 6, 2009", @@ -113550,8 +168156,13 @@ "und": "New York Giants", "sF": "24", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.5, + "pScore": { + "sU": 22.0, + "sF": 23.5 + }, + "week": "2009 Regular Season - Week 13" }, { "date": "Dec 6, 2009", @@ -113561,7 +168172,12 @@ "sF": "17", "sU": "20", "spread": "1", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 20.25, + "sF": 21.25 + }, + "week": "2009 Regular Season - Week 13" }, { "date": "Dec 6, 2009", @@ -113571,7 +168187,12 @@ "sF": "17", "sU": "30", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2009 Regular Season - Week 13" }, { "date": "Dec 7, 2009", @@ -113581,7 +168202,12 @@ "sF": "27", "sU": "14", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "2009 Regular Season - Week 13" }, { "date": "Dec 10, 2009", @@ -113591,7 +168217,12 @@ "sF": "6", "sU": "13", "spread": "10", - "ou": -1 + "ou": 34.5, + "pScore": { + "sU": 12.25, + "sF": 22.25 + }, + "week": "2009 Regular Season - Week 14" }, { "date": "Dec 13, 2009", @@ -113600,8 +168231,13 @@ "und": "Kansas City Chiefs", "sF": "16", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "2009 Regular Season - Week 14" }, { "date": "Dec 13, 2009", @@ -113610,8 +168246,13 @@ "und": "Tampa Bay Buccaneers", "sF": "26", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "2009 Regular Season - Week 14" }, { "date": "Dec 13, 2009", @@ -113621,7 +168262,12 @@ "sF": "26", "sU": "23", "spread": "10", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 20.0, + "sF": 30.0 + }, + "week": "2009 Regular Season - Week 14" }, { "date": "Dec 13, 2009", @@ -113631,7 +168277,12 @@ "sF": "48", "sU": "3", "spread": "14", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 13.25, + "sF": 27.25 + }, + "week": "2009 Regular Season - Week 14" }, { "date": "Dec 13, 2009", @@ -113641,7 +168292,12 @@ "sF": "21", "sU": "14", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "2009 Regular Season - Week 14" }, { "date": "Dec 13, 2009", @@ -113651,7 +168307,12 @@ "sF": "34", "sU": "7", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "2009 Regular Season - Week 14" }, { "date": "Dec 13, 2009", @@ -113660,8 +168321,13 @@ "und": "Denver Broncos", "sF": "28", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2009 Regular Season - Week 14" }, { "date": "Dec 13, 2009", @@ -113670,8 +168336,13 @@ "und": "Carolina Panthers", "sF": "20", "sU": "10", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 43.5, + "pScore": { + "sU": 15.5, + "sF": 28.0 + }, + "week": "2009 Regular Season - Week 14" }, { "date": "Dec 13, 2009", @@ -113681,7 +168352,12 @@ "sF": "10", "sU": "14", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "2009 Regular Season - Week 14" }, { "date": "Dec 13, 2009", @@ -113691,7 +168367,12 @@ "sF": "30", "sU": "10", "spread": "6", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.25, + "sF": 24.25 + }, + "week": "2009 Regular Season - Week 14" }, { "date": "Dec 13, 2009", @@ -113700,8 +168381,13 @@ "und": "Oakland Raiders", "sF": "34", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2009 Regular Season - Week 14" }, { "date": "Dec 13, 2009", @@ -113711,7 +168397,12 @@ "sF": "47", "sU": "7", "spread": "14", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 13.0, + "sF": 27.0 + }, + "week": "2009 Regular Season - Week 14" }, { "date": "Dec 13, 2009", @@ -113720,8 +168411,13 @@ "und": "San Diego Chargers", "sF": "17", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.5, + "pScore": { + "sU": 22.5, + "sF": 26.0 + }, + "week": "2009 Regular Season - Week 14" }, { "date": "Dec 13, 2009", @@ -113731,7 +168427,12 @@ "sF": "45", "sU": "38", "spread": "1", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.75, + "sF": 21.75 + }, + "week": "2009 Regular Season - Week 14" }, { "date": "Dec 14, 2009", @@ -113741,11 +168442,12 @@ "sF": "9", "sU": "24", "spread": "4", - "ou": "49", + "ou": 45.0, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sU": 20.5, + "sF": 24.5 + }, + "week": "2009 Regular Season - Week 14" }, { "date": "Dec 17, 2009", @@ -113755,7 +168457,12 @@ "sF": "35", "sU": "31", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2009 Regular Season - Week 15" }, { "date": "Dec 19, 2009", @@ -113764,8 +168471,13 @@ "und": "Dallas Cowboys", "sF": "17", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 53.5, + "pScore": { + "sU": 23.0, + "sF": 30.5 + }, + "week": "2009 Regular Season - Week 15" }, { "date": "Dec 20, 2009", @@ -113775,7 +168487,12 @@ "sF": "34", "sU": "41", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2009 Regular Season - Week 15" }, { "date": "Dec 20, 2009", @@ -113785,7 +168502,12 @@ "sF": "16", "sU": "13", "spread": "14", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 14.75, + "sF": 28.75 + }, + "week": "2009 Regular Season - Week 15" }, { "date": "Dec 20, 2009", @@ -113795,7 +168517,12 @@ "sF": "17", "sU": "10", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "2009 Regular Season - Week 15" }, { "date": "Dec 20, 2009", @@ -113805,7 +168532,12 @@ "sF": "31", "sU": "24", "spread": "14", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 16.5, + "sF": 30.5 + }, + "week": "2009 Regular Season - Week 15" }, { "date": "Dec 20, 2009", @@ -113814,8 +168546,13 @@ "und": "Miami Dolphins", "sF": "27", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "2009 Regular Season - Week 15" }, { "date": "Dec 20, 2009", @@ -113825,7 +168562,12 @@ "sF": "7", "sU": "10", "spread": "7", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 14.25, + "sF": 21.25 + }, + "week": "2009 Regular Season - Week 15" }, { "date": "Dec 20, 2009", @@ -113835,7 +168577,12 @@ "sF": "19", "sU": "20", "spread": "14", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 11.5, + "sF": 25.5 + }, + "week": "2009 Regular Season - Week 15" }, { "date": "Dec 20, 2009", @@ -113845,7 +168592,12 @@ "sF": "27", "sU": "24", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2009 Regular Season - Week 15" }, { "date": "Dec 20, 2009", @@ -113855,7 +168607,12 @@ "sF": "31", "sU": "7", "spread": "11", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.0, + "sF": 25.0 + }, + "week": "2009 Regular Season - Week 15" }, { "date": "Dec 20, 2009", @@ -113864,8 +168621,13 @@ "und": "Green Bay Packers", "sF": "37", "sU": "36", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "2009 Regular Season - Week 15" }, { "date": "Dec 20, 2009", @@ -113874,12 +168636,13 @@ "und": "San Francisco 49ers", "sF": "27", "sU": "13", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": 41.0, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 16.75, + "sF": 24.25 + }, + "week": "2009 Regular Season - Week 15" }, { "date": "Dec 20, 2009", @@ -113888,8 +168651,13 @@ "und": "Tampa Bay Buccaneers", "sF": "7", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "2009 Regular Season - Week 15" }, { "date": "Dec 20, 2009", @@ -113899,7 +168667,12 @@ "sF": "7", "sU": "26", "spread": "9", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.0, + "sF": 26.0 + }, + "week": "2009 Regular Season - Week 15" }, { "date": "Dec 21, 2009", @@ -113909,7 +168682,12 @@ "sF": "45", "sU": "12", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2009 Regular Season - Week 15" }, { "date": "Dec 25, 2009", @@ -113919,7 +168697,12 @@ "sF": "17", "sU": "42", "spread": "2", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.0, + "sF": 25.0 + }, + "week": "2009 Regular Season - Week 16" }, { "date": "Dec 27, 2009", @@ -113929,7 +168712,12 @@ "sF": "23", "sU": "9", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2009 Regular Season - Week 16" }, { "date": "Dec 27, 2009", @@ -113939,7 +168727,12 @@ "sF": "31", "sU": "3", "spread": "8", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.0, + "sF": 24.0 + }, + "week": "2009 Regular Season - Week 16" }, { "date": "Dec 27, 2009", @@ -113948,8 +168741,13 @@ "und": "Seattle Seahawks", "sF": "48", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 43.5, + "pScore": { + "sU": 15.0, + "sF": 28.5 + }, + "week": "2009 Regular Season - Week 16" }, { "date": "Dec 27, 2009", @@ -113959,7 +168757,12 @@ "sF": "20", "sU": "27", "spread": "2", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.5, + "sF": 24.5 + }, + "week": "2009 Regular Season - Week 16" }, { "date": "Dec 27, 2009", @@ -113969,7 +168772,12 @@ "sF": "35", "sU": "7", "spread": "9", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.75, + "sF": 26.75 + }, + "week": "2009 Regular Season - Week 16" }, { "date": "Dec 27, 2009", @@ -113979,7 +168787,12 @@ "sF": "23", "sU": "20", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2009 Regular Season - Week 16" }, { "date": "Dec 27, 2009", @@ -113989,7 +168802,12 @@ "sF": "17", "sU": "10", "spread": "13", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 13.25, + "sF": 26.25 + }, + "week": "2009 Regular Season - Week 16" }, { "date": "Dec 27, 2009", @@ -113999,7 +168817,12 @@ "sF": "17", "sU": "20", "spread": "14", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 17.25, + "sF": 31.25 + }, + "week": "2009 Regular Season - Week 16" }, { "date": "Dec 27, 2009", @@ -114008,8 +168831,13 @@ "und": "Carolina Panthers", "sF": "9", "sU": "41", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.0, + "pScore": { + "sU": 17.25, + "sF": 25.75 + }, + "week": "2009 Regular Season - Week 16" }, { "date": "Dec 27, 2009", @@ -114019,7 +168847,12 @@ "sF": "20", "sU": "6", "spread": "14", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 13.5, + "sF": 27.5 + }, + "week": "2009 Regular Season - Week 16" }, { "date": "Dec 27, 2009", @@ -114029,7 +168862,12 @@ "sF": "31", "sU": "10", "spread": "16", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 13.75, + "sF": 29.75 + }, + "week": "2009 Regular Season - Week 16" }, { "date": "Dec 27, 2009", @@ -114039,7 +168877,12 @@ "sF": "15", "sU": "29", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2009 Regular Season - Week 16" }, { "date": "Dec 27, 2009", @@ -114049,7 +168892,12 @@ "sF": "30", "sU": "27", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2009 Regular Season - Week 16" }, { "date": "Dec 27, 2009", @@ -114059,7 +168907,12 @@ "sF": "17", "sU": "0", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "2009 Regular Season - Week 16" }, { "date": "Dec 28, 2009", @@ -114068,8 +168921,13 @@ "und": "Chicago Bears", "sF": "30", "sU": "36", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 42.0, + "pScore": { + "sU": 16.75, + "sF": 25.25 + }, + "week": "2009 Regular Season - Week 16" }, { "date": "Jan 3, 2010", @@ -114079,7 +168937,12 @@ "sF": "28", "sU": "6", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "2009 Regular Season - Week 17" }, { "date": "Jan 3, 2010", @@ -114089,7 +168952,12 @@ "sF": "30", "sU": "7", "spread": "8", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 12.0, + "sF": 20.0 + }, + "week": "2009 Regular Season - Week 17" }, { "date": "Jan 3, 2010", @@ -114099,7 +168967,12 @@ "sF": "23", "sU": "17", "spread": "2", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.5, + "sF": 18.5 + }, + "week": "2009 Regular Season - Week 17" }, { "date": "Jan 3, 2010", @@ -114108,8 +168981,13 @@ "und": "New England Patriots", "sF": "34", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.0, + "pScore": { + "sU": 19.75, + "sF": 27.25 + }, + "week": "2009 Regular Season - Week 17" }, { "date": "Jan 3, 2010", @@ -114119,7 +168997,12 @@ "sF": "30", "sU": "24", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2009 Regular Season - Week 17" }, { "date": "Jan 3, 2010", @@ -114128,8 +169011,13 @@ "und": "Detroit Lions", "sF": "37", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.5, + "pScore": { + "sU": 20.0, + "sF": 24.5 + }, + "week": "2009 Regular Season - Week 17" }, { "date": "Jan 3, 2010", @@ -114139,7 +169027,12 @@ "sF": "20", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2009 Regular Season - Week 17" }, { "date": "Jan 3, 2010", @@ -114149,7 +169042,12 @@ "sF": "23", "sU": "10", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "2009 Regular Season - Week 17" }, { "date": "Jan 3, 2010", @@ -114159,7 +169057,12 @@ "sF": "44", "sU": "7", "spread": "8", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.0, + "sF": 28.0 + }, + "week": "2009 Regular Season - Week 17" }, { "date": "Jan 3, 2010", @@ -114169,7 +169072,12 @@ "sF": "7", "sU": "33", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2009 Regular Season - Week 17" }, { "date": "Jan 3, 2010", @@ -114179,7 +169087,12 @@ "sF": "24", "sU": "0", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2009 Regular Season - Week 17" }, { "date": "Jan 3, 2010", @@ -114189,7 +169102,12 @@ "sF": "24", "sU": "44", "spread": "10", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 14.0, + "sF": 24.0 + }, + "week": "2009 Regular Season - Week 17" }, { "date": "Jan 3, 2010", @@ -114199,7 +169117,12 @@ "sF": "21", "sU": "13", "spread": "10", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.5, + "sF": 24.5 + }, + "week": "2009 Regular Season - Week 17" }, { "date": "Jan 3, 2010", @@ -114209,7 +169132,12 @@ "sF": "23", "sU": "20", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2009 Regular Season - Week 17" }, { "date": "Jan 3, 2010", @@ -114219,7 +169147,12 @@ "sF": "17", "sU": "13", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "2009 Regular Season - Week 17" }, { "date": "Jan 3, 2010", @@ -114229,7 +169162,12 @@ "sF": "37", "sU": "0", "spread": "10", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 11.75, + "sF": 21.75 + }, + "week": "2009 Regular Season - Week 17" }, { "date": "Jan 9, 2010", @@ -114238,8 +169176,13 @@ "und": "New York Jets (5)", "sF": "14", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 34.5, + "pScore": { + "sU": 16.0, + "sF": 18.5 + }, + "week": "2009 Playoffs" }, { "date": "Jan 9, 2010", @@ -114248,8 +169191,13 @@ "und": "Philadelphia Eagles (6)", "sF": "34", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2009 Playoffs" }, { "date": "Jan 10, 2010", @@ -114259,7 +169207,12 @@ "sF": "14", "sU": "33", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2009 Playoffs" }, { "date": "Jan 10, 2010", @@ -114268,8 +169221,13 @@ "und": "Arizona Cardinals (4)", "sF": "45", "sU": "51", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.0, + "pScore": { + "sU": 22.75, + "sF": 25.25 + }, + "week": "2009 Playoffs" }, { "date": "Jan 16, 2010", @@ -114279,7 +169237,12 @@ "sF": "45", "sU": "14", "spread": "7", - "ou": -1 + "ou": 57.0, + "pScore": { + "sU": 25.0, + "sF": 32.0 + }, + "week": "2009 Playoffs" }, { "date": "Jan 16, 2010", @@ -114288,8 +169251,13 @@ "und": "Baltimore Ravens (6)", "sF": "20", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2009 Playoffs" }, { "date": "Jan 17, 2010", @@ -114298,8 +169266,13 @@ "und": "Dallas Cowboys (3)", "sF": "34", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "2009 Playoffs" }, { "date": "Jan 17, 2010", @@ -114308,8 +169281,13 @@ "und": "New York Jets (5)", "sF": "14", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.5, + "pScore": { + "sU": 17.5, + "sF": 25.0 + }, + "week": "2009 Playoffs" }, { "date": "Jan 24, 2010", @@ -114318,8 +169296,13 @@ "und": "New York Jets (5)", "sF": "30", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 40.5, + "pScore": { + "sU": 16.0, + "sF": 24.5 + }, + "week": "2009 Playoffs" }, { "date": "Jan 24, 2010", @@ -114328,8 +169311,13 @@ "und": "Minnesota Vikings (2)", "sF": "31", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 54.0, + "pScore": { + "sU": 25.25, + "sF": 28.75 + }, + "week": "2009 Playoffs" }, { "date": "Feb 7, 2010", @@ -114338,8 +169326,13 @@ "und": "New Orleans Saints (1)", "sF": "17", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 56.5, + "pScore": { + "sU": 26.0, + "sF": 30.5 + }, + "week": "2009 Playoffs" }, { "date": "Sep 9, 2010", @@ -114349,7 +169342,12 @@ "sF": "14", "sU": "9", "spread": "5", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 22.25, + "sF": 27.25 + }, + "week": "2010 Regular Season - Week 1" }, { "date": "Sep 12, 2010", @@ -114359,7 +169357,12 @@ "sF": "15", "sU": "10", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2010 Regular Season - Week 1" }, { "date": "Sep 12, 2010", @@ -114368,8 +169371,13 @@ "und": "Detroit Lions", "sF": "19", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "2010 Regular Season - Week 1" }, { "date": "Sep 12, 2010", @@ -114379,7 +169387,12 @@ "sF": "24", "sU": "34", "spread": "1", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.5, + "sF": 24.5 + }, + "week": "2010 Regular Season - Week 1" }, { "date": "Sep 12, 2010", @@ -114388,8 +169401,13 @@ "und": "Cincinnati Bengals", "sF": "38", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.0, + "pScore": { + "sU": 19.75, + "sF": 25.25 + }, + "week": "2010 Regular Season - Week 1" }, { "date": "Sep 12, 2010", @@ -114398,8 +169416,13 @@ "und": "Pittsburgh Steelers", "sF": "9", "sU": "15", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.5, + "pScore": { + "sU": 19.0, + "sF": 20.5 + }, + "week": "2010 Regular Season - Week 1" }, { "date": "Sep 12, 2010", @@ -114408,8 +169431,13 @@ "und": "Cleveland Browns", "sF": "17", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2010 Regular Season - Week 1" }, { "date": "Sep 12, 2010", @@ -114418,8 +169446,13 @@ "und": "Oakland Raiders", "sF": "38", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "2010 Regular Season - Week 1" }, { "date": "Sep 12, 2010", @@ -114429,7 +169462,12 @@ "sF": "24", "sU": "17", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2010 Regular Season - Week 1" }, { "date": "Sep 12, 2010", @@ -114439,7 +169477,12 @@ "sF": "31", "sU": "18", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2010 Regular Season - Week 1" }, { "date": "Sep 12, 2010", @@ -114449,7 +169492,12 @@ "sF": "17", "sU": "13", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2010 Regular Season - Week 1" }, { "date": "Sep 12, 2010", @@ -114459,7 +169507,12 @@ "sF": "27", "sU": "20", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2010 Regular Season - Week 1" }, { "date": "Sep 12, 2010", @@ -114469,7 +169522,12 @@ "sF": "6", "sU": "31", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2010 Regular Season - Week 1" }, { "date": "Sep 12, 2010", @@ -114479,7 +169537,12 @@ "sF": "7", "sU": "13", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2010 Regular Season - Week 1" }, { "date": "Sep 13, 2010", @@ -114489,7 +169552,12 @@ "sF": "9", "sU": "10", "spread": "1", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.75, + "sF": 18.75 + }, + "week": "2010 Regular Season - Week 1" }, { "date": "Sep 13, 2010", @@ -114499,7 +169567,12 @@ "sF": "14", "sU": "21", "spread": "4", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 20.75, + "sF": 24.75 + }, + "week": "2010 Regular Season - Week 1" }, { "date": "Sep 19, 2010", @@ -114509,7 +169582,12 @@ "sF": "10", "sU": "15", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2010 Regular Season - Week 2" }, { "date": "Sep 19, 2010", @@ -114519,7 +169597,12 @@ "sF": "14", "sU": "16", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2010 Regular Season - Week 2" }, { "date": "Sep 19, 2010", @@ -114528,8 +169611,13 @@ "und": "Detroit Lions", "sF": "35", "sU": "32", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "2010 Regular Season - Week 2" }, { "date": "Sep 19, 2010", @@ -114539,7 +169627,12 @@ "sF": "34", "sU": "7", "spread": "13", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 15.0, + "sF": 28.0 + }, + "week": "2010 Regular Season - Week 2" }, { "date": "Sep 19, 2010", @@ -114549,7 +169642,12 @@ "sF": "11", "sU": "19", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "2010 Regular Season - Week 2" }, { "date": "Sep 19, 2010", @@ -114559,7 +169657,12 @@ "sF": "41", "sU": "7", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2010 Regular Season - Week 2" }, { "date": "Sep 19, 2010", @@ -114569,7 +169672,12 @@ "sF": "7", "sU": "20", "spread": "4", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.75, + "sF": 20.75 + }, + "week": "2010 Regular Season - Week 2" }, { "date": "Sep 19, 2010", @@ -114579,7 +169687,12 @@ "sF": "20", "sU": "27", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2010 Regular Season - Week 2" }, { "date": "Sep 19, 2010", @@ -114589,7 +169702,12 @@ "sF": "10", "sU": "14", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2010 Regular Season - Week 2" }, { "date": "Sep 19, 2010", @@ -114599,7 +169717,12 @@ "sF": "16", "sU": "14", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2010 Regular Season - Week 2" }, { "date": "Sep 19, 2010", @@ -114608,8 +169731,13 @@ "und": "Seattle Seahawks", "sF": "31", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2010 Regular Season - Week 2" }, { "date": "Sep 19, 2010", @@ -114619,7 +169747,12 @@ "sF": "38", "sU": "13", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "2010 Regular Season - Week 2" }, { "date": "Sep 19, 2010", @@ -114629,7 +169762,12 @@ "sF": "30", "sU": "27", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2010 Regular Season - Week 2" }, { "date": "Sep 19, 2010", @@ -114639,7 +169777,12 @@ "sF": "14", "sU": "28", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2010 Regular Season - Week 2" }, { "date": "Sep 19, 2010", @@ -114649,7 +169792,12 @@ "sF": "38", "sU": "14", "spread": "4", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.25, + "sF": 26.25 + }, + "week": "2010 Regular Season - Week 2" }, { "date": "Sep 20, 2010", @@ -114659,11 +169807,12 @@ "sF": "25", "sU": "22", "spread": "5", - "ou": "49", + "ou": 43.5, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 19.25, + "sF": 24.25 + }, + "week": "2010 Regular Season - Week 2" }, { "date": "Sep 26, 2010", @@ -114672,8 +169821,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "17", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 36.5, + "pScore": { + "sU": 12.0, + "sF": 24.5 + }, + "week": "2010 Regular Season - Week 3" }, { "date": "Sep 26, 2010", @@ -114682,8 +169836,13 @@ "und": "Carolina Panthers", "sF": "20", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2010 Regular Season - Week 3" }, { "date": "Sep 26, 2010", @@ -114692,8 +169851,13 @@ "und": "Dallas Cowboys", "sF": "13", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.5, + "pScore": { + "sU": 22.5, + "sF": 25.0 + }, + "week": "2010 Regular Season - Week 3" }, { "date": "Sep 26, 2010", @@ -114702,8 +169866,13 @@ "und": "Buffalo Bills", "sF": "38", "sU": "30", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 43.0, + "pScore": { + "sU": 14.25, + "sF": 28.75 + }, + "week": "2010 Regular Season - Week 3" }, { "date": "Sep 26, 2010", @@ -114713,7 +169882,12 @@ "sF": "10", "sU": "29", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2010 Regular Season - Week 3" }, { "date": "Sep 26, 2010", @@ -114723,7 +169897,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "2010 Regular Season - Week 3" }, { "date": "Sep 26, 2010", @@ -114733,7 +169912,12 @@ "sF": "38", "sU": "13", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "2010 Regular Season - Week 3" }, { "date": "Sep 26, 2010", @@ -114743,7 +169927,12 @@ "sF": "10", "sU": "31", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2010 Regular Season - Week 3" }, { "date": "Sep 26, 2010", @@ -114753,7 +169942,12 @@ "sF": "24", "sU": "10", "spread": "13", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 15.0, + "sF": 28.0 + }, + "week": "2010 Regular Season - Week 3" }, { "date": "Sep 26, 2010", @@ -114763,7 +169957,12 @@ "sF": "28", "sU": "3", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2010 Regular Season - Week 3" }, { "date": "Sep 26, 2010", @@ -114773,7 +169972,12 @@ "sF": "16", "sU": "30", "spread": "5", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.0, + "sF": 22.0 + }, + "week": "2010 Regular Season - Week 3" }, { "date": "Sep 26, 2010", @@ -114782,8 +169986,13 @@ "und": "Oakland Raiders", "sF": "24", "sU": "23", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.0, + "pScore": { + "sU": 16.75, + "sF": 22.25 + }, + "week": "2010 Regular Season - Week 3" }, { "date": "Sep 26, 2010", @@ -114793,7 +170002,12 @@ "sF": "27", "sU": "13", "spread": "6", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.5, + "sF": 26.5 + }, + "week": "2010 Regular Season - Week 3" }, { "date": "Sep 26, 2010", @@ -114803,7 +170017,12 @@ "sF": "20", "sU": "27", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2010 Regular Season - Week 3" }, { "date": "Sep 26, 2010", @@ -114812,8 +170031,13 @@ "und": "New York Jets", "sF": "23", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "2010 Regular Season - Week 3" }, { "date": "Sep 27, 2010", @@ -114823,7 +170047,12 @@ "sF": "17", "sU": "20", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2010 Regular Season - Week 3" }, { "date": "Oct 3, 2010", @@ -114833,7 +170062,12 @@ "sF": "3", "sU": "20", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "2010 Regular Season - Week 4" }, { "date": "Oct 3, 2010", @@ -114843,7 +170077,12 @@ "sF": "38", "sU": "14", "spread": "6", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.5, + "sF": 21.5 + }, + "week": "2010 Regular Season - Week 4" }, { "date": "Oct 3, 2010", @@ -114852,8 +170091,13 @@ "und": "Cleveland Browns", "sF": "20", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2010 Regular Season - Week 4" }, { "date": "Oct 3, 2010", @@ -114862,8 +170106,13 @@ "und": "Detroit Lions", "sF": "28", "sU": "26", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 46.0, + "pScore": { + "sU": 15.75, + "sF": 30.25 + }, + "week": "2010 Regular Season - Week 4" }, { "date": "Oct 3, 2010", @@ -114872,8 +170121,13 @@ "und": "Baltimore Ravens", "sF": "14", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 34.5, + "pScore": { + "sU": 16.0, + "sF": 18.5 + }, + "week": "2010 Regular Season - Week 4" }, { "date": "Oct 3, 2010", @@ -114882,8 +170136,13 @@ "und": "Denver Broncos", "sF": "20", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2010 Regular Season - Week 4" }, { "date": "Oct 3, 2010", @@ -114893,11 +170152,12 @@ "sF": "16", "sU": "14", "spread": "7", - "ou": "49", + "ou": 42.5, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 17.75, + "sF": 24.75 + }, + "week": "2010 Regular Season - Week 4" }, { "date": "Oct 3, 2010", @@ -114906,8 +170166,13 @@ "und": "Carolina Panthers", "sF": "16", "sU": "14", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 44.0, + "pScore": { + "sU": 15.75, + "sF": 28.25 + }, + "week": "2010 Regular Season - Week 4" }, { "date": "Oct 3, 2010", @@ -114917,7 +170182,12 @@ "sF": "28", "sU": "31", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "2010 Regular Season - Week 4" }, { "date": "Oct 3, 2010", @@ -114926,8 +170196,13 @@ "und": "Oakland Raiders", "sF": "31", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2010 Regular Season - Week 4" }, { "date": "Oct 3, 2010", @@ -114937,7 +170212,12 @@ "sF": "12", "sU": "17", "spread": "5", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.25, + "sF": 24.25 + }, + "week": "2010 Regular Season - Week 4" }, { "date": "Oct 3, 2010", @@ -114946,8 +170226,13 @@ "und": "Arizona Cardinals", "sF": "41", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 46.5, + "pScore": { + "sU": 18.5, + "sF": 28.0 + }, + "week": "2010 Regular Season - Week 4" }, { "date": "Oct 3, 2010", @@ -114956,8 +170241,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2010 Regular Season - Week 4" }, { "date": "Oct 4, 2010", @@ -114967,7 +170257,12 @@ "sF": "41", "sU": "14", "spread": "1", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.5, + "sF": 24.5 + }, + "week": "2010 Regular Season - Week 4" }, { "date": "Oct 10, 2010", @@ -114977,7 +170272,12 @@ "sF": "44", "sU": "6", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2010 Regular Season - Week 5" }, { "date": "Oct 10, 2010", @@ -114987,7 +170287,12 @@ "sF": "31", "sU": "17", "spread": "8", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 15.75, + "sF": 23.75 + }, + "week": "2010 Regular Season - Week 5" }, { "date": "Oct 10, 2010", @@ -114996,8 +170301,13 @@ "und": "Jacksonville Jaguars", "sF": "26", "sU": "36", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2010 Regular Season - Week 5" }, { "date": "Oct 10, 2010", @@ -115007,7 +170317,12 @@ "sF": "13", "sU": "16", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2010 Regular Season - Week 5" }, { "date": "Oct 10, 2010", @@ -115017,7 +170332,12 @@ "sF": "6", "sU": "23", "spread": "3", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.0, + "sF": 18.0 + }, + "week": "2010 Regular Season - Week 5" }, { "date": "Oct 10, 2010", @@ -115027,7 +170347,12 @@ "sF": "21", "sU": "24", "spread": "7", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.75, + "sF": 22.75 + }, + "week": "2010 Regular Season - Week 5" }, { "date": "Oct 10, 2010", @@ -115037,7 +170362,12 @@ "sF": "20", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2010 Regular Season - Week 5" }, { "date": "Oct 10, 2010", @@ -115047,7 +170377,12 @@ "sF": "10", "sU": "34", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2010 Regular Season - Week 5" }, { "date": "Oct 10, 2010", @@ -115056,8 +170391,13 @@ "und": "Kansas City Chiefs", "sF": "19", "sU": "9", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.5, + "pScore": { + "sU": 19.5, + "sF": 27.0 + }, + "week": "2010 Regular Season - Week 5" }, { "date": "Oct 10, 2010", @@ -115067,7 +170407,12 @@ "sF": "20", "sU": "30", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "2010 Regular Season - Week 5" }, { "date": "Oct 10, 2010", @@ -115077,7 +170422,12 @@ "sF": "27", "sU": "35", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2010 Regular Season - Week 5" }, { "date": "Oct 10, 2010", @@ -115087,7 +170437,12 @@ "sF": "27", "sU": "34", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2010 Regular Season - Week 5" }, { "date": "Oct 10, 2010", @@ -115097,7 +170452,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "2010 Regular Season - Week 5" }, { "date": "Oct 11, 2010", @@ -115106,8 +170466,13 @@ "und": "Minnesota Vikings", "sF": "29", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "2010 Regular Season - Week 5" }, { "date": "Oct 17, 2010", @@ -115116,8 +170481,13 @@ "und": "St Louis Rams", "sF": "17", "sU": "20", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 45.0, + "pScore": { + "sU": 18.25, + "sF": 26.75 + }, + "week": "2010 Regular Season - Week 6" }, { "date": "Oct 17, 2010", @@ -115127,7 +170497,12 @@ "sF": "20", "sU": "23", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "2010 Regular Season - Week 6" }, { "date": "Oct 17, 2010", @@ -115137,7 +170512,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2010 Regular Season - Week 6" }, { "date": "Oct 17, 2010", @@ -115147,7 +170527,12 @@ "sF": "23", "sU": "20", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2010 Regular Season - Week 6" }, { "date": "Oct 17, 2010", @@ -115156,8 +170541,13 @@ "und": "Atlanta Falcons", "sF": "31", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.0, + "pScore": { + "sU": 20.75, + "sF": 22.25 + }, + "week": "2010 Regular Season - Week 6" }, { "date": "Oct 17, 2010", @@ -115167,7 +170557,12 @@ "sF": "28", "sU": "10", "spread": "14", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 11.75, + "sF": 25.75 + }, + "week": "2010 Regular Season - Week 6" }, { "date": "Oct 17, 2010", @@ -115176,8 +170571,13 @@ "und": "Tampa Bay Buccaneers", "sF": "31", "sU": "6", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "2010 Regular Season - Week 6" }, { "date": "Oct 17, 2010", @@ -115186,8 +170586,13 @@ "und": "Kansas City Chiefs", "sF": "35", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.0, + "pScore": { + "sU": 20.75, + "sF": 25.25 + }, + "week": "2010 Regular Season - Week 6" }, { "date": "Oct 17, 2010", @@ -115197,7 +170602,12 @@ "sF": "28", "sU": "20", "spread": "10", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 17.75, + "sF": 27.75 + }, + "week": "2010 Regular Season - Week 6" }, { "date": "Oct 17, 2010", @@ -115206,8 +170616,13 @@ "und": "Denver Broncos", "sF": "24", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2010 Regular Season - Week 6" }, { "date": "Oct 17, 2010", @@ -115217,7 +170632,12 @@ "sF": "17", "sU": "9", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "2010 Regular Season - Week 6" }, { "date": "Oct 17, 2010", @@ -115226,8 +170646,13 @@ "und": "Dallas Cowboys", "sF": "24", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.0, + "pScore": { + "sU": 21.25, + "sF": 22.75 + }, + "week": "2010 Regular Season - Week 6" }, { "date": "Oct 17, 2010", @@ -115237,7 +170662,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2010 Regular Season - Week 6" }, { "date": "Oct 18, 2010", @@ -115247,7 +170677,12 @@ "sF": "30", "sU": "3", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2010 Regular Season - Week 6" }, { "date": "Oct 24, 2010", @@ -115256,8 +170691,13 @@ "und": "Buffalo Bills", "sF": "37", "sU": "34", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 40.0, + "pScore": { + "sU": 13.75, + "sF": 26.25 + }, + "week": "2010 Regular Season - Week 7" }, { "date": "Oct 24, 2010", @@ -115267,7 +170707,12 @@ "sF": "23", "sU": "22", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2010 Regular Season - Week 7" }, { "date": "Oct 24, 2010", @@ -115276,8 +170721,13 @@ "und": "Cleveland Browns", "sF": "17", "sU": "30", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 44.0, + "pScore": { + "sU": 15.75, + "sF": 28.25 + }, + "week": "2010 Regular Season - Week 7" }, { "date": "Oct 24, 2010", @@ -115287,7 +170737,12 @@ "sF": "18", "sU": "17", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2010 Regular Season - Week 7" }, { "date": "Oct 24, 2010", @@ -115297,7 +170752,12 @@ "sF": "37", "sU": "19", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2010 Regular Season - Week 7" }, { "date": "Oct 24, 2010", @@ -115306,8 +170766,13 @@ "und": "Carolina Panthers", "sF": "20", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.5, + "pScore": { + "sU": 16.5, + "sF": 19.0 + }, + "week": "2010 Regular Season - Week 7" }, { "date": "Oct 24, 2010", @@ -115317,7 +170782,12 @@ "sF": "42", "sU": "20", "spread": "9", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.0, + "sF": 24.0 + }, + "week": "2010 Regular Season - Week 7" }, { "date": "Oct 24, 2010", @@ -115327,7 +170797,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2010 Regular Season - Week 7" }, { "date": "Oct 24, 2010", @@ -115336,8 +170811,13 @@ "und": "Cincinnati Bengals", "sF": "39", "sU": "32", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2010 Regular Season - Week 7" }, { "date": "Oct 24, 2010", @@ -115346,8 +170826,13 @@ "und": "Arizona Cardinals", "sF": "22", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.5, + "pScore": { + "sU": 17.0, + "sF": 23.5 + }, + "week": "2010 Regular Season - Week 7" }, { "date": "Oct 24, 2010", @@ -115357,7 +170842,12 @@ "sF": "14", "sU": "59", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2010 Regular Season - Week 7" }, { "date": "Oct 24, 2010", @@ -115366,8 +170856,13 @@ "und": "New England Patriots", "sF": "20", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 49.5, + "pScore": { + "sU": 24.0, + "sF": 25.5 + }, + "week": "2010 Regular Season - Week 7" }, { "date": "Oct 24, 2010", @@ -115376,8 +170871,13 @@ "und": "Minnesota Vikings", "sF": "28", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2010 Regular Season - Week 7" }, { "date": "Oct 25, 2010", @@ -115386,8 +170886,13 @@ "und": "New York Giants", "sF": "35", "sU": "41", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "2010 Regular Season - Week 7" }, { "date": "Oct 31, 2010", @@ -115396,8 +170901,13 @@ "und": "Carolina Panthers", "sF": "20", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2010 Regular Season - Week 8" }, { "date": "Oct 31, 2010", @@ -115407,7 +170917,12 @@ "sF": "37", "sU": "25", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2010 Regular Season - Week 8" }, { "date": "Oct 31, 2010", @@ -115417,7 +170932,12 @@ "sF": "0", "sU": "9", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "2010 Regular Season - Week 8" }, { "date": "Oct 31, 2010", @@ -115426,8 +170946,13 @@ "und": "Jacksonville Jaguars", "sF": "17", "sU": "35", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2010 Regular Season - Week 8" }, { "date": "Oct 31, 2010", @@ -115437,7 +170962,12 @@ "sF": "14", "sU": "22", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2010 Regular Season - Week 8" }, { "date": "Oct 31, 2010", @@ -115446,8 +170976,13 @@ "und": "Denver Broncos", "sF": "24", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2010 Regular Season - Week 8" }, { "date": "Oct 31, 2010", @@ -115457,7 +170992,12 @@ "sF": "13", "sU": "10", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "2010 Regular Season - Week 8" }, { "date": "Oct 31, 2010", @@ -115467,7 +171007,12 @@ "sF": "33", "sU": "25", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "2010 Regular Season - Week 8" }, { "date": "Oct 31, 2010", @@ -115477,7 +171022,12 @@ "sF": "35", "sU": "38", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2010 Regular Season - Week 8" }, { "date": "Oct 31, 2010", @@ -115486,8 +171036,13 @@ "und": "Minnesota Vikings", "sF": "28", "sU": "18", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.0, + "pScore": { + "sU": 19.75, + "sF": 25.25 + }, + "week": "2010 Regular Season - Week 8" }, { "date": "Oct 31, 2010", @@ -115497,7 +171052,12 @@ "sF": "33", "sU": "3", "spread": "2", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.25, + "sF": 21.25 + }, + "week": "2010 Regular Season - Week 8" }, { "date": "Oct 31, 2010", @@ -115507,7 +171067,12 @@ "sF": "20", "sU": "10", "spread": "1", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 22.25, + "sF": 23.25 + }, + "week": "2010 Regular Season - Week 8" }, { "date": "Nov 1, 2010", @@ -115516,8 +171081,13 @@ "und": "Houston Texans", "sF": "30", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 51.0, + "pScore": { + "sU": 22.75, + "sF": 28.25 + }, + "week": "2010 Regular Season - Week 8" }, { "date": "Nov 7, 2010", @@ -115527,7 +171097,12 @@ "sF": "27", "sU": "21", "spread": "9", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 18.25, + "sF": 27.25 + }, + "week": "2010 Regular Season - Week 9" }, { "date": "Nov 7, 2010", @@ -115537,7 +171112,12 @@ "sF": "26", "sU": "10", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "2010 Regular Season - Week 9" }, { "date": "Nov 7, 2010", @@ -115547,7 +171127,12 @@ "sF": "22", "sU": "19", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2010 Regular Season - Week 9" }, { "date": "Nov 7, 2010", @@ -115557,7 +171142,12 @@ "sF": "14", "sU": "34", "spread": "4", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.75, + "sF": 23.75 + }, + "week": "2010 Regular Season - Week 9" }, { "date": "Nov 7, 2010", @@ -115567,7 +171157,12 @@ "sF": "29", "sU": "23", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "2010 Regular Season - Week 9" }, { "date": "Nov 7, 2010", @@ -115576,8 +171171,13 @@ "und": "Detroit Lions", "sF": "23", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.0, + "pScore": { + "sU": 18.25, + "sF": 23.75 + }, + "week": "2010 Regular Season - Week 9" }, { "date": "Nov 7, 2010", @@ -115586,8 +171186,13 @@ "und": "Carolina Panthers", "sF": "34", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.5, + "pScore": { + "sU": 17.0, + "sF": 23.5 + }, + "week": "2010 Regular Season - Week 9" }, { "date": "Nov 7, 2010", @@ -115596,8 +171201,13 @@ "und": "Arizona Cardinals", "sF": "27", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.5, + "pScore": { + "sU": 17.5, + "sF": 25.0 + }, + "week": "2010 Regular Season - Week 9" }, { "date": "Nov 7, 2010", @@ -115606,8 +171216,13 @@ "und": "Seattle Seahawks", "sF": "41", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.5, + "pScore": { + "sU": 16.5, + "sF": 24.0 + }, + "week": "2010 Regular Season - Week 9" }, { "date": "Nov 7, 2010", @@ -115617,7 +171232,12 @@ "sF": "26", "sU": "24", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2010 Regular Season - Week 9" }, { "date": "Nov 7, 2010", @@ -115627,7 +171247,12 @@ "sF": "45", "sU": "7", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "2010 Regular Season - Week 9" }, { "date": "Nov 8, 2010", @@ -115636,8 +171261,13 @@ "und": "Cincinnati Bengals", "sF": "27", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.5, + "pScore": { + "sU": 18.0, + "sF": 23.5 + }, + "week": "2010 Regular Season - Week 9" }, { "date": "Nov 11, 2010", @@ -115647,7 +171277,12 @@ "sF": "26", "sU": "21", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2010 Regular Season - Week 10" }, { "date": "Nov 14, 2010", @@ -115656,8 +171291,13 @@ "und": "Detroit Lions", "sF": "14", "sU": "12", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.0, + "pScore": { + "sU": 21.75, + "sF": 23.25 + }, + "week": "2010 Regular Season - Week 10" }, { "date": "Nov 14, 2010", @@ -115667,7 +171307,12 @@ "sF": "13", "sU": "27", "spread": "1", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 20.25, + "sF": 21.25 + }, + "week": "2010 Regular Season - Week 10" }, { "date": "Nov 14, 2010", @@ -115676,8 +171321,13 @@ "und": "Cleveland Browns", "sF": "26", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2010 Regular Season - Week 10" }, { "date": "Nov 14, 2010", @@ -115687,7 +171337,12 @@ "sF": "23", "sU": "17", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2010 Regular Season - Week 10" }, { "date": "Nov 14, 2010", @@ -115697,7 +171352,12 @@ "sF": "29", "sU": "17", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "2010 Regular Season - Week 10" }, { "date": "Nov 14, 2010", @@ -115707,7 +171367,12 @@ "sF": "31", "sU": "16", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "2010 Regular Season - Week 10" }, { "date": "Nov 14, 2010", @@ -115717,7 +171382,12 @@ "sF": "29", "sU": "49", "spread": "1", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.75, + "sF": 22.75 + }, + "week": "2010 Regular Season - Week 10" }, { "date": "Nov 14, 2010", @@ -115727,7 +171397,12 @@ "sF": "18", "sU": "36", "spread": "4", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.75, + "sF": 22.75 + }, + "week": "2010 Regular Season - Week 10" }, { "date": "Nov 14, 2010", @@ -115736,8 +171411,13 @@ "und": "Dallas Cowboys", "sF": "20", "sU": "33", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 46.5, + "pScore": { + "sU": 17.0, + "sF": 29.5 + }, + "week": "2010 Regular Season - Week 10" }, { "date": "Nov 14, 2010", @@ -115746,8 +171426,13 @@ "und": "St Louis Rams", "sF": "23", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "2010 Regular Season - Week 10" }, { "date": "Nov 14, 2010", @@ -115756,8 +171441,13 @@ "und": "New England Patriots", "sF": "26", "sU": "39", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.0, + "pScore": { + "sU": 20.25, + "sF": 24.75 + }, + "week": "2010 Regular Season - Week 10" }, { "date": "Nov 15, 2010", @@ -115766,8 +171456,13 @@ "und": "Washington Redskins", "sF": "59", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2010 Regular Season - Week 10" }, { "date": "Nov 18, 2010", @@ -115777,7 +171472,12 @@ "sF": "0", "sU": "16", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "2010 Regular Season - Week 11" }, { "date": "Nov 21, 2010", @@ -115787,7 +171487,12 @@ "sF": "31", "sU": "49", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "2010 Regular Season - Week 11" }, { "date": "Nov 21, 2010", @@ -115797,7 +171502,12 @@ "sF": "35", "sU": "19", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "2010 Regular Season - Week 11" }, { "date": "Nov 21, 2010", @@ -115807,7 +171517,12 @@ "sF": "35", "sU": "3", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "2010 Regular Season - Week 11" }, { "date": "Nov 21, 2010", @@ -115816,8 +171531,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2010 Regular Season - Week 11" }, { "date": "Nov 21, 2010", @@ -115827,7 +171547,12 @@ "sF": "31", "sU": "13", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "2010 Regular Season - Week 11" }, { "date": "Nov 21, 2010", @@ -115836,8 +171561,13 @@ "und": "Houston Texans", "sF": "30", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.0, + "pScore": { + "sU": 19.75, + "sF": 26.25 + }, + "week": "2010 Regular Season - Week 11" }, { "date": "Nov 21, 2010", @@ -115847,7 +171577,12 @@ "sF": "16", "sU": "19", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "2010 Regular Season - Week 11" }, { "date": "Nov 21, 2010", @@ -115856,8 +171591,13 @@ "und": "Carolina Panthers", "sF": "37", "sU": "13", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 37.0, + "pScore": { + "sU": 11.75, + "sF": 25.25 + }, + "week": "2010 Regular Season - Week 11" }, { "date": "Nov 21, 2010", @@ -115867,7 +171607,12 @@ "sF": "31", "sU": "3", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2010 Regular Season - Week 11" }, { "date": "Nov 21, 2010", @@ -115877,7 +171622,12 @@ "sF": "34", "sU": "19", "spread": "11", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.0, + "sF": 28.0 + }, + "week": "2010 Regular Season - Week 11" }, { "date": "Nov 21, 2010", @@ -115886,8 +171636,13 @@ "und": "Tampa Bay Buccaneers", "sF": "0", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2010 Regular Season - Week 11" }, { "date": "Nov 21, 2010", @@ -115896,8 +171651,13 @@ "und": "St Louis Rams", "sF": "34", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2010 Regular Season - Week 11" }, { "date": "Nov 21, 2010", @@ -115906,8 +171666,13 @@ "und": "Indianapolis Colts", "sF": "31", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 50.0, + "pScore": { + "sU": 22.75, + "sF": 27.25 + }, + "week": "2010 Regular Season - Week 11" }, { "date": "Nov 21, 2010", @@ -115916,8 +171681,13 @@ "und": "New York Giants", "sF": "27", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "2010 Regular Season - Week 11" }, { "date": "Nov 22, 2010", @@ -115927,7 +171697,12 @@ "sF": "35", "sU": "14", "spread": "9", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 20.5, + "sF": 29.5 + }, + "week": "2010 Regular Season - Week 11" }, { "date": "Nov 25, 2010", @@ -115936,8 +171711,13 @@ "und": "Detroit Lions", "sF": "45", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 50.5, + "pScore": { + "sU": 21.5, + "sF": 29.0 + }, + "week": "2010 Regular Season - Week 12" }, { "date": "Nov 25, 2010", @@ -115946,8 +171726,13 @@ "und": "Dallas Cowboys", "sF": "30", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 49.0, + "pScore": { + "sU": 22.25, + "sF": 26.75 + }, + "week": "2010 Regular Season - Week 12" }, { "date": "Nov 25, 2010", @@ -115956,8 +171741,13 @@ "und": "Cincinnati Bengals", "sF": "26", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.5, + "pScore": { + "sU": 17.0, + "sF": 26.5 + }, + "week": "2010 Regular Season - Week 12" }, { "date": "Nov 28, 2010", @@ -115967,7 +171757,12 @@ "sF": "20", "sU": "17", "spread": "2", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.0, + "sF": 25.0 + }, + "week": "2010 Regular Season - Week 12" }, { "date": "Nov 28, 2010", @@ -115977,7 +171772,12 @@ "sF": "19", "sU": "16", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2010 Regular Season - Week 12" }, { "date": "Nov 28, 2010", @@ -115987,7 +171787,12 @@ "sF": "20", "sU": "0", "spread": "5", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.75, + "sF": 25.75 + }, + "week": "2010 Regular Season - Week 12" }, { "date": "Nov 28, 2010", @@ -115996,8 +171801,13 @@ "und": "Jacksonville Jaguars", "sF": "24", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "2010 Regular Season - Week 12" }, { "date": "Nov 28, 2010", @@ -116006,8 +171816,13 @@ "und": "Washington Redskins", "sF": "17", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2010 Regular Season - Week 12" }, { "date": "Nov 28, 2010", @@ -116016,8 +171831,13 @@ "und": "Carolina Panthers", "sF": "24", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.5, + "pScore": { + "sU": 15.0, + "sF": 22.5 + }, + "week": "2010 Regular Season - Week 12" }, { "date": "Nov 28, 2010", @@ -116027,7 +171847,12 @@ "sF": "17", "sU": "33", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2010 Regular Season - Week 12" }, { "date": "Nov 28, 2010", @@ -116037,7 +171862,12 @@ "sF": "42", "sU": "24", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "2010 Regular Season - Week 12" }, { "date": "Nov 28, 2010", @@ -116046,8 +171876,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.5, + "pScore": { + "sU": 17.0, + "sF": 24.5 + }, + "week": "2010 Regular Season - Week 12" }, { "date": "Nov 28, 2010", @@ -116056,8 +171891,13 @@ "und": "Chicago Bears", "sF": "26", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2010 Regular Season - Week 12" }, { "date": "Nov 28, 2010", @@ -116067,7 +171907,12 @@ "sF": "33", "sU": "36", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2010 Regular Season - Week 12" }, { "date": "Nov 28, 2010", @@ -116077,7 +171922,12 @@ "sF": "14", "sU": "36", "spread": "2", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.5, + "sF": 26.5 + }, + "week": "2010 Regular Season - Week 12" }, { "date": "Nov 29, 2010", @@ -116087,7 +171937,12 @@ "sF": "27", "sU": "6", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "2010 Regular Season - Week 12" }, { "date": "Dec 2, 2010", @@ -116097,7 +171952,12 @@ "sF": "34", "sU": "24", "spread": "8", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 20.75, + "sF": 28.75 + }, + "week": "2010 Regular Season - Week 13" }, { "date": "Dec 5, 2010", @@ -116107,11 +171967,12 @@ "sF": "34", "sU": "16", "spread": "9", - "ou": "49", + "ou": 41.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 16.0, + "sF": 25.0 + }, + "week": "2010 Regular Season - Week 13" }, { "date": "Dec 5, 2010", @@ -116121,7 +171982,12 @@ "sF": "10", "sU": "13", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "2010 Regular Season - Week 13" }, { "date": "Dec 5, 2010", @@ -116130,8 +171996,13 @@ "und": "Washington Redskins", "sF": "31", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.0, + "pScore": { + "sU": 17.75, + "sF": 25.25 + }, + "week": "2010 Regular Season - Week 13" }, { "date": "Dec 5, 2010", @@ -116141,7 +172012,12 @@ "sF": "34", "sU": "30", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "2010 Regular Season - Week 13" }, { "date": "Dec 5, 2010", @@ -116150,8 +172026,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.5, + "pScore": { + "sU": 19.0, + "sF": 24.5 + }, + "week": "2010 Regular Season - Week 13" }, { "date": "Dec 5, 2010", @@ -116161,7 +172042,12 @@ "sF": "10", "sU": "6", "spread": "8", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 20.25, + "sF": 28.25 + }, + "week": "2010 Regular Season - Week 13" }, { "date": "Dec 5, 2010", @@ -116171,7 +172057,12 @@ "sF": "6", "sU": "17", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2010 Regular Season - Week 13" }, { "date": "Dec 5, 2010", @@ -116181,7 +172072,12 @@ "sF": "38", "sU": "14", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "2010 Regular Season - Week 13" }, { "date": "Dec 5, 2010", @@ -116191,7 +172087,12 @@ "sF": "13", "sU": "28", "spread": "13", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 15.75, + "sF": 28.75 + }, + "week": "2010 Regular Season - Week 13" }, { "date": "Dec 5, 2010", @@ -116200,8 +172101,13 @@ "und": "Arizona Cardinals", "sF": "19", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2010 Regular Season - Week 13" }, { "date": "Dec 5, 2010", @@ -116210,8 +172116,13 @@ "und": "Dallas Cowboys", "sF": "35", "sU": "38", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 48.0, + "pScore": { + "sU": 21.25, + "sF": 26.75 + }, + "week": "2010 Regular Season - Week 13" }, { "date": "Dec 5, 2010", @@ -116221,7 +172132,12 @@ "sF": "31", "sU": "14", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "2010 Regular Season - Week 13" }, { "date": "Dec 5, 2010", @@ -116231,7 +172147,12 @@ "sF": "28", "sU": "24", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2010 Regular Season - Week 13" }, { "date": "Dec 5, 2010", @@ -116241,7 +172162,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2010 Regular Season - Week 13" }, { "date": "Dec 6, 2010", @@ -116251,7 +172177,12 @@ "sF": "45", "sU": "3", "spread": "4", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.25, + "sF": 24.25 + }, + "week": "2010 Regular Season - Week 13" }, { "date": "Dec 9, 2010", @@ -116261,7 +172192,12 @@ "sF": "30", "sU": "28", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2010 Regular Season - Week 14" }, { "date": "Dec 12, 2010", @@ -116270,8 +172206,13 @@ "und": "Oakland Raiders", "sF": "38", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2010 Regular Season - Week 14" }, { "date": "Dec 12, 2010", @@ -116281,7 +172222,12 @@ "sF": "23", "sU": "7", "spread": "8", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 15.75, + "sF": 23.75 + }, + "week": "2010 Regular Season - Week 14" }, { "date": "Dec 12, 2010", @@ -116290,8 +172236,13 @@ "und": "Carolina Panthers", "sF": "31", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.0, + "pScore": { + "sU": 16.75, + "sF": 24.25 + }, + "week": "2010 Regular Season - Week 14" }, { "date": "Dec 12, 2010", @@ -116301,7 +172252,12 @@ "sF": "3", "sU": "7", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "2010 Regular Season - Week 14" }, { "date": "Dec 12, 2010", @@ -116310,8 +172266,13 @@ "und": "Washington Redskins", "sF": "17", "sU": "16", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.5, + "pScore": { + "sU": 20.0, + "sF": 21.5 + }, + "week": "2010 Regular Season - Week 14" }, { "date": "Dec 12, 2010", @@ -116321,7 +172282,12 @@ "sF": "31", "sU": "13", "spread": "9", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.0, + "sF": 28.0 + }, + "week": "2010 Regular Season - Week 14" }, { "date": "Dec 12, 2010", @@ -116331,7 +172297,12 @@ "sF": "40", "sU": "21", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "2010 Regular Season - Week 14" }, { "date": "Dec 12, 2010", @@ -116341,7 +172312,12 @@ "sF": "13", "sU": "43", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2010 Regular Season - Week 14" }, { "date": "Dec 12, 2010", @@ -116350,8 +172326,13 @@ "und": "Miami Dolphins", "sF": "6", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "2010 Regular Season - Week 14" }, { "date": "Dec 12, 2010", @@ -116361,7 +172342,12 @@ "sF": "31", "sU": "0", "spread": "10", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 17.75, + "sF": 27.75 + }, + "week": "2010 Regular Season - Week 14" }, { "date": "Dec 12, 2010", @@ -116371,7 +172357,12 @@ "sF": "36", "sU": "7", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2010 Regular Season - Week 14" }, { "date": "Dec 12, 2010", @@ -116381,7 +172372,12 @@ "sF": "30", "sU": "27", "spread": "4", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 23.5, + "sF": 27.5 + }, + "week": "2010 Regular Season - Week 14" }, { "date": "Dec 13, 2010", @@ -116390,8 +172386,13 @@ "und": "Minnesota Vikings", "sF": "21", "sU": "3", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "2010 Regular Season - Week 14" }, { "date": "Dec 13, 2010", @@ -116401,7 +172402,12 @@ "sF": "34", "sU": "28", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2010 Regular Season - Week 14" }, { "date": "Dec 16, 2010", @@ -116410,12 +172416,13 @@ "und": "San Francisco 49ers", "sF": "34", "sU": "7", - "spread": "10", - "ou": "49", + "spread": "10.5", + "ou": 45.0, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sU": 17.25, + "sF": 27.75 + }, + "week": "2010 Regular Season - Week 15" }, { "date": "Dec 19, 2010", @@ -116425,7 +172432,12 @@ "sF": "13", "sU": "27", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2010 Regular Season - Week 15" }, { "date": "Dec 19, 2010", @@ -116434,8 +172446,13 @@ "und": "Jacksonville Jaguars", "sF": "34", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.0, + "pScore": { + "sU": 21.75, + "sF": 26.25 + }, + "week": "2010 Regular Season - Week 15" }, { "date": "Dec 19, 2010", @@ -116444,8 +172461,13 @@ "und": "Buffalo Bills", "sF": "14", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "2010 Regular Season - Week 15" }, { "date": "Dec 19, 2010", @@ -116455,7 +172477,12 @@ "sF": "31", "sU": "17", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "2010 Regular Season - Week 15" }, { "date": "Dec 19, 2010", @@ -116464,8 +172491,13 @@ "und": "New Orleans Saints", "sF": "30", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2010 Regular Season - Week 15" }, { "date": "Dec 19, 2010", @@ -116474,8 +172506,13 @@ "und": "Washington Redskins", "sF": "33", "sU": "30", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.5, + "pScore": { + "sU": 17.5, + "sF": 27.0 + }, + "week": "2010 Regular Season - Week 15" }, { "date": "Dec 19, 2010", @@ -116485,7 +172522,12 @@ "sF": "31", "sU": "38", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2010 Regular Season - Week 15" }, { "date": "Dec 19, 2010", @@ -116495,7 +172537,12 @@ "sF": "20", "sU": "23", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "2010 Regular Season - Week 15" }, { "date": "Dec 19, 2010", @@ -116504,8 +172551,13 @@ "und": "Arizona Cardinals", "sF": "19", "sU": "12", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2010 Regular Season - Week 15" }, { "date": "Dec 19, 2010", @@ -116515,7 +172567,12 @@ "sF": "34", "sU": "18", "spread": "6", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.25, + "sF": 26.25 + }, + "week": "2010 Regular Season - Week 15" }, { "date": "Dec 19, 2010", @@ -116525,7 +172582,12 @@ "sF": "39", "sU": "23", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "2010 Regular Season - Week 15" }, { "date": "Dec 19, 2010", @@ -116535,7 +172597,12 @@ "sF": "17", "sU": "22", "spread": "4", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 15.75, + "sF": 19.75 + }, + "week": "2010 Regular Season - Week 15" }, { "date": "Dec 19, 2010", @@ -116544,8 +172611,13 @@ "und": "Green Bay Packers", "sF": "31", "sU": "27", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 43.5, + "pScore": { + "sU": 14.5, + "sF": 29.0 + }, + "week": "2010 Regular Season - Week 15" }, { "date": "Dec 20, 2010", @@ -116555,7 +172627,12 @@ "sF": "40", "sU": "14", "spread": "7", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 13.0, + "sF": 20.0 + }, + "week": "2010 Regular Season - Week 15" }, { "date": "Dec 23, 2010", @@ -116564,8 +172641,13 @@ "und": "Carolina Panthers", "sF": "27", "sU": "3", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 38.0, + "pScore": { + "sU": 11.75, + "sF": 26.25 + }, + "week": "2010 Regular Season - Week 16" }, { "date": "Dec 25, 2010", @@ -116574,8 +172656,13 @@ "und": "Arizona Cardinals", "sF": "26", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.0, + "pScore": { + "sU": 18.75, + "sF": 26.25 + }, + "week": "2010 Regular Season - Week 16" }, { "date": "Dec 26, 2010", @@ -116584,12 +172671,13 @@ "und": "San Francisco 49ers", "sF": "25", "sU": "17", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": 40.0, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 18.75, + "sF": 21.25 + }, + "week": "2010 Regular Season - Week 16" }, { "date": "Dec 26, 2010", @@ -116599,7 +172687,12 @@ "sF": "34", "sU": "3", "spread": "9", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 18.25, + "sF": 27.25 + }, + "week": "2010 Regular Season - Week 16" }, { "date": "Dec 26, 2010", @@ -116609,7 +172702,12 @@ "sF": "38", "sU": "34", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2010 Regular Season - Week 16" }, { "date": "Dec 26, 2010", @@ -116619,7 +172717,12 @@ "sF": "20", "sU": "10", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "2010 Regular Season - Week 16" }, { "date": "Dec 26, 2010", @@ -116628,8 +172731,13 @@ "und": "Washington Redskins", "sF": "17", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "2010 Regular Season - Week 16" }, { "date": "Dec 26, 2010", @@ -116639,7 +172747,12 @@ "sF": "34", "sU": "14", "spread": "4", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.25, + "sF": 23.25 + }, + "week": "2010 Regular Season - Week 16" }, { "date": "Dec 26, 2010", @@ -116648,8 +172761,13 @@ "und": "Detroit Lions", "sF": "27", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2010 Regular Season - Week 16" }, { "date": "Dec 26, 2010", @@ -116659,7 +172777,12 @@ "sF": "20", "sU": "34", "spread": "8", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 17.75, + "sF": 25.75 + }, + "week": "2010 Regular Season - Week 16" }, { "date": "Dec 26, 2010", @@ -116668,8 +172791,13 @@ "und": "Oakland Raiders", "sF": "31", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.5, + "pScore": { + "sU": 22.5, + "sF": 25.0 + }, + "week": "2010 Regular Season - Week 16" }, { "date": "Dec 26, 2010", @@ -116678,8 +172806,13 @@ "und": "Denver Broncos", "sF": "23", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.5, + "pScore": { + "sU": 23.5, + "sF": 26.0 + }, + "week": "2010 Regular Season - Week 16" }, { "date": "Dec 26, 2010", @@ -116689,7 +172822,12 @@ "sF": "45", "sU": "17", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2010 Regular Season - Week 16" }, { "date": "Dec 26, 2010", @@ -116699,7 +172837,12 @@ "sF": "38", "sU": "15", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "2010 Regular Season - Week 16" }, { "date": "Dec 27, 2010", @@ -116708,8 +172851,13 @@ "und": "New Orleans Saints", "sF": "14", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.5, + "pScore": { + "sU": 23.5, + "sF": 26.0 + }, + "week": "2010 Regular Season - Week 16" }, { "date": "Dec 28, 2010", @@ -116718,8 +172866,13 @@ "und": "Minnesota Vikings", "sF": "14", "sU": "24", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 44.5, + "pScore": { + "sU": 15.0, + "sF": 29.5 + }, + "week": "2010 Regular Season - Week 16" }, { "date": "Jan 2, 2011", @@ -116729,7 +172882,12 @@ "sF": "13", "sU": "23", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2010 Regular Season - Week 17" }, { "date": "Jan 2, 2011", @@ -116738,8 +172896,13 @@ "und": "Cincinnati Bengals", "sF": "13", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "2010 Regular Season - Week 17" }, { "date": "Jan 2, 2011", @@ -116748,8 +172911,13 @@ "und": "Cleveland Browns", "sF": "41", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "2010 Regular Season - Week 17" }, { "date": "Jan 2, 2011", @@ -116758,8 +172926,13 @@ "und": "Oakland Raiders", "sF": "10", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.5, + "pScore": { + "sU": 19.5, + "sF": 24.0 + }, + "week": "2010 Regular Season - Week 17" }, { "date": "Jan 2, 2011", @@ -116769,7 +172942,12 @@ "sF": "38", "sU": "7", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2010 Regular Season - Week 17" }, { "date": "Jan 2, 2011", @@ -116778,8 +172956,13 @@ "und": "Carolina Panthers", "sF": "31", "sU": "10", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 41.5, + "pScore": { + "sU": 13.5, + "sF": 28.0 + }, + "week": "2010 Regular Season - Week 17" }, { "date": "Jan 2, 2011", @@ -116788,8 +172971,13 @@ "und": "Minnesota Vikings", "sF": "20", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2010 Regular Season - Week 17" }, { "date": "Jan 2, 2011", @@ -116798,8 +172986,13 @@ "und": "Buffalo Bills", "sF": "38", "sU": "7", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "2010 Regular Season - Week 17" }, { "date": "Jan 2, 2011", @@ -116808,8 +173001,13 @@ "und": "Denver Broncos", "sF": "33", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2010 Regular Season - Week 17" }, { "date": "Jan 2, 2011", @@ -116818,8 +173016,13 @@ "und": "Chicago Bears", "sF": "10", "sU": "3", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.5, + "pScore": { + "sU": 16.5, + "sF": 27.0 + }, + "week": "2010 Regular Season - Week 17" }, { "date": "Jan 2, 2011", @@ -116829,7 +173032,12 @@ "sF": "34", "sU": "17", "spread": "4", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.0, + "sF": 26.0 + }, + "week": "2010 Regular Season - Week 17" }, { "date": "Jan 2, 2011", @@ -116839,7 +173047,12 @@ "sF": "38", "sU": "7", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "2010 Regular Season - Week 17" }, { "date": "Jan 2, 2011", @@ -116848,8 +173061,13 @@ "und": "Tennessee Titans", "sF": "23", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 48.0, + "pScore": { + "sU": 19.25, + "sF": 28.75 + }, + "week": "2010 Regular Season - Week 17" }, { "date": "Jan 2, 2011", @@ -116859,7 +173077,12 @@ "sF": "17", "sU": "14", "spread": "4", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.25, + "sF": 24.25 + }, + "week": "2010 Regular Season - Week 17" }, { "date": "Jan 2, 2011", @@ -116869,7 +173092,12 @@ "sF": "6", "sU": "16", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2010 Regular Season - Week 17" }, { "date": "Jan 8, 2011", @@ -116879,7 +173107,12 @@ "sF": "36", "sU": "41", "spread": "10", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.0, + "sF": 28.0 + }, + "week": "2010 Playoffs" }, { "date": "Jan 8, 2011", @@ -116888,8 +173121,13 @@ "und": "New York Jets (6)", "sF": "16", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2010 Playoffs" }, { "date": "Jan 9, 2011", @@ -116899,7 +173137,12 @@ "sF": "30", "sU": "7", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2010 Playoffs" }, { "date": "Jan 9, 2011", @@ -116908,8 +173151,13 @@ "und": "Green Bay Packers (6)", "sF": "16", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.0, + "pScore": { + "sU": 22.25, + "sF": 24.75 + }, + "week": "2010 Playoffs" }, { "date": "Jan 15, 2011", @@ -116919,7 +173167,12 @@ "sF": "31", "sU": "24", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2010 Playoffs" }, { "date": "Jan 15, 2011", @@ -116928,8 +173181,13 @@ "und": "Green Bay Packers (6)", "sF": "21", "sU": "48", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.5, + "pScore": { + "sU": 21.0, + "sF": 22.5 + }, + "week": "2010 Playoffs" }, { "date": "Jan 16, 2011", @@ -116939,7 +173197,12 @@ "sF": "35", "sU": "24", "spread": "10", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.5, + "sF": 26.5 + }, + "week": "2010 Playoffs" }, { "date": "Jan 16, 2011", @@ -116948,8 +173211,13 @@ "und": "New York Jets (6)", "sF": "21", "sU": "28", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 45.0, + "pScore": { + "sU": 17.75, + "sF": 27.25 + }, + "week": "2010 Playoffs" }, { "date": "Jan 23, 2011", @@ -116958,8 +173226,13 @@ "und": "Chicago Bears (2)", "sF": "21", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2010 Playoffs" }, { "date": "Jan 23, 2011", @@ -116969,7 +173242,12 @@ "sF": "24", "sU": "19", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "2010 Playoffs" }, { "date": "Feb 6, 2011", @@ -116979,7 +173257,12 @@ "sF": "31", "sU": "25", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2010 Playoffs" }, { "date": "Sep 8, 2011", @@ -116989,7 +173272,12 @@ "sF": "42", "sU": "34", "spread": "5", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 21.5, + "sF": 26.5 + }, + "week": "2011 Regular Season - Week 1" }, { "date": "Sep 11, 2011", @@ -116999,7 +173287,12 @@ "sF": "31", "sU": "13", "spread": "4", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.25, + "sF": 24.25 + }, + "week": "2011 Regular Season - Week 1" }, { "date": "Sep 11, 2011", @@ -117008,8 +173301,13 @@ "und": "Pittsburgh Steelers", "sF": "35", "sU": "7", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.0, + "pScore": { + "sU": 17.75, + "sF": 19.25 + }, + "week": "2011 Regular Season - Week 1" }, { "date": "Sep 11, 2011", @@ -117019,7 +173317,12 @@ "sF": "34", "sU": "7", "spread": "9", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.5, + "sF": 26.5 + }, + "week": "2011 Regular Season - Week 1" }, { "date": "Sep 11, 2011", @@ -117028,8 +173331,13 @@ "und": "Jacksonville Jaguars", "sF": "14", "sU": "16", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "2011 Regular Season - Week 1" }, { "date": "Sep 11, 2011", @@ -117038,8 +173346,13 @@ "und": "Chicago Bears", "sF": "12", "sU": "30", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.0, + "pScore": { + "sU": 19.75, + "sF": 21.25 + }, + "week": "2011 Regular Season - Week 1" }, { "date": "Sep 11, 2011", @@ -117049,7 +173362,12 @@ "sF": "17", "sU": "27", "spread": "7", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 14.75, + "sF": 21.75 + }, + "week": "2011 Regular Season - Week 1" }, { "date": "Sep 11, 2011", @@ -117058,8 +173376,13 @@ "und": "Buffalo Bills", "sF": "7", "sU": "41", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2011 Regular Season - Week 1" }, { "date": "Sep 11, 2011", @@ -117068,8 +173391,13 @@ "und": "Detroit Lions", "sF": "20", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.5, + "pScore": { + "sU": 21.0, + "sF": 22.5 + }, + "week": "2011 Regular Season - Week 1" }, { "date": "Sep 11, 2011", @@ -117079,7 +173407,12 @@ "sF": "28", "sU": "21", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "2011 Regular Season - Week 1" }, { "date": "Sep 11, 2011", @@ -117088,8 +173421,13 @@ "und": "Minnesota Vikings", "sF": "24", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.0, + "pScore": { + "sU": 17.25, + "sF": 25.75 + }, + "week": "2011 Regular Season - Week 1" }, { "date": "Sep 11, 2011", @@ -117099,7 +173437,12 @@ "sF": "33", "sU": "17", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "2011 Regular Season - Week 1" }, { "date": "Sep 11, 2011", @@ -117109,7 +173452,12 @@ "sF": "14", "sU": "28", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "2011 Regular Season - Week 1" }, { "date": "Sep 11, 2011", @@ -117119,7 +173467,12 @@ "sF": "27", "sU": "24", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2011 Regular Season - Week 1" }, { "date": "Sep 12, 2011", @@ -117128,8 +173481,13 @@ "und": "Miami Dolphins", "sF": "38", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.0, + "pScore": { + "sU": 19.75, + "sF": 27.25 + }, + "week": "2011 Regular Season - Week 1" }, { "date": "Sep 12, 2011", @@ -117139,7 +173497,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2011 Regular Season - Week 1" }, { "date": "Sep 18, 2011", @@ -117149,7 +173512,12 @@ "sF": "30", "sU": "23", "spread": "11", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.0, + "sF": 28.0 + }, + "week": "2011 Regular Season - Week 2" }, { "date": "Sep 18, 2011", @@ -117159,7 +173527,12 @@ "sF": "48", "sU": "3", "spread": "9", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 18.0, + "sF": 27.0 + }, + "week": "2011 Regular Season - Week 2" }, { "date": "Sep 18, 2011", @@ -117168,8 +173541,13 @@ "und": "Indianapolis Colts", "sF": "27", "sU": "19", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.0, + "pScore": { + "sU": 18.75, + "sF": 20.25 + }, + "week": "2011 Regular Season - Week 2" }, { "date": "Sep 18, 2011", @@ -117179,7 +173557,12 @@ "sF": "30", "sU": "13", "spread": "5", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.75, + "sF": 25.75 + }, + "week": "2011 Regular Season - Week 2" }, { "date": "Sep 18, 2011", @@ -117189,7 +173572,12 @@ "sF": "32", "sU": "3", "spread": "9", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 14.75, + "sF": 23.75 + }, + "week": "2011 Regular Season - Week 2" }, { "date": "Sep 18, 2011", @@ -117199,7 +173587,12 @@ "sF": "24", "sU": "0", "spread": "14", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 13.0, + "sF": 27.0 + }, + "week": "2011 Regular Season - Week 2" }, { "date": "Sep 18, 2011", @@ -117209,7 +173602,12 @@ "sF": "13", "sU": "26", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "2011 Regular Season - Week 2" }, { "date": "Sep 18, 2011", @@ -117219,7 +173617,12 @@ "sF": "38", "sU": "35", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "2011 Regular Season - Week 2" }, { "date": "Sep 18, 2011", @@ -117228,8 +173631,13 @@ "und": "Arizona Cardinals", "sF": "22", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.0, + "pScore": { + "sU": 20.25, + "sF": 24.75 + }, + "week": "2011 Regular Season - Week 2" }, { "date": "Sep 18, 2011", @@ -117239,7 +173647,12 @@ "sF": "20", "sU": "24", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "2011 Regular Season - Week 2" }, { "date": "Sep 18, 2011", @@ -117249,11 +173662,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": "49", + "ou": 41.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 19.25, + "sF": 22.25 + }, + "week": "2011 Regular Season - Week 2" }, { "date": "Sep 18, 2011", @@ -117263,7 +173677,12 @@ "sF": "24", "sU": "22", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2011 Regular Season - Week 2" }, { "date": "Sep 18, 2011", @@ -117273,7 +173692,12 @@ "sF": "23", "sU": "13", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2011 Regular Season - Week 2" }, { "date": "Sep 18, 2011", @@ -117283,7 +173707,12 @@ "sF": "35", "sU": "21", "spread": "7", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 23.25, + "sF": 30.25 + }, + "week": "2011 Regular Season - Week 2" }, { "date": "Sep 18, 2011", @@ -117292,8 +173721,13 @@ "und": "Atlanta Falcons", "sF": "31", "sU": "35", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.5, + "pScore": { + "sU": 23.5, + "sF": 26.0 + }, + "week": "2011 Regular Season - Week 2" }, { "date": "Sep 19, 2011", @@ -117303,7 +173737,12 @@ "sF": "28", "sU": "16", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2011 Regular Season - Week 2" }, { "date": "Sep 25, 2011", @@ -117312,8 +173751,13 @@ "und": "Jacksonville Jaguars", "sF": "16", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2011 Regular Season - Week 3" }, { "date": "Sep 25, 2011", @@ -117323,11 +173767,12 @@ "sF": "8", "sU": "13", "spread": "1", - "ou": "49", + "ou": 38.5, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 18.75, + "sF": 19.75 + }, + "week": "2011 Regular Season - Week 3" }, { "date": "Sep 25, 2011", @@ -117337,7 +173782,12 @@ "sF": "16", "sU": "17", "spread": "2", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.25, + "sF": 22.25 + }, + "week": "2011 Regular Season - Week 3" }, { "date": "Sep 25, 2011", @@ -117347,7 +173797,12 @@ "sF": "40", "sU": "33", "spread": "4", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 23.5, + "sF": 27.5 + }, + "week": "2011 Regular Season - Week 3" }, { "date": "Sep 25, 2011", @@ -117357,7 +173812,12 @@ "sF": "17", "sU": "14", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2011 Regular Season - Week 3" }, { "date": "Sep 25, 2011", @@ -117366,8 +173826,13 @@ "und": "Buffalo Bills", "sF": "31", "sU": "34", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 54.5, + "pScore": { + "sU": 23.5, + "sF": 31.0 + }, + "week": "2011 Regular Season - Week 3" }, { "date": "Sep 25, 2011", @@ -117377,7 +173842,12 @@ "sF": "16", "sU": "29", "spread": "8", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.25, + "sF": 27.25 + }, + "week": "2011 Regular Season - Week 3" }, { "date": "Sep 25, 2011", @@ -117387,7 +173857,12 @@ "sF": "26", "sU": "23", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2011 Regular Season - Week 3" }, { "date": "Sep 25, 2011", @@ -117397,7 +173872,12 @@ "sF": "24", "sU": "34", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2011 Regular Season - Week 3" }, { "date": "Sep 25, 2011", @@ -117406,8 +173886,13 @@ "und": "Kansas City Chiefs", "sF": "20", "sU": "17", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 44.5, + "pScore": { + "sU": 15.0, + "sF": 29.5 + }, + "week": "2011 Regular Season - Week 3" }, { "date": "Sep 25, 2011", @@ -117417,7 +173902,12 @@ "sF": "37", "sU": "7", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "2011 Regular Season - Week 3" }, { "date": "Sep 25, 2011", @@ -117427,7 +173917,12 @@ "sF": "27", "sU": "17", "spread": "5", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 20.25, + "sF": 25.25 + }, + "week": "2011 Regular Season - Week 3" }, { "date": "Sep 25, 2011", @@ -117437,7 +173932,12 @@ "sF": "10", "sU": "13", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2011 Regular Season - Week 3" }, { "date": "Sep 25, 2011", @@ -117447,7 +173947,12 @@ "sF": "16", "sU": "13", "spread": "1", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 22.0, + "sF": 23.0 + }, + "week": "2011 Regular Season - Week 3" }, { "date": "Sep 25, 2011", @@ -117457,7 +173962,12 @@ "sF": "23", "sU": "20", "spread": "11", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 14.25, + "sF": 25.25 + }, + "week": "2011 Regular Season - Week 3" }, { "date": "Sep 26, 2011", @@ -117466,8 +173976,13 @@ "und": "Washington Redskins", "sF": "18", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2011 Regular Season - Week 3" }, { "date": "Oct 2, 2011", @@ -117477,7 +173992,12 @@ "sF": "17", "sU": "10", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2011 Regular Season - Week 4" }, { "date": "Oct 2, 2011", @@ -117486,8 +174006,13 @@ "und": "Detroit Lions", "sF": "30", "sU": "34", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "2011 Regular Season - Week 4" }, { "date": "Oct 2, 2011", @@ -117497,7 +174022,12 @@ "sF": "17", "sU": "22", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2011 Regular Season - Week 4" }, { "date": "Oct 2, 2011", @@ -117507,7 +174037,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2011 Regular Season - Week 4" }, { "date": "Oct 2, 2011", @@ -117516,8 +174051,13 @@ "und": "Tennessee Titans", "sF": "13", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.5, + "pScore": { + "sU": 18.0, + "sF": 19.5 + }, + "week": "2011 Regular Season - Week 4" }, { "date": "Oct 2, 2011", @@ -117527,7 +174067,12 @@ "sF": "17", "sU": "10", "spread": "4", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.25, + "sF": 25.25 + }, + "week": "2011 Regular Season - Week 4" }, { "date": "Oct 2, 2011", @@ -117537,7 +174082,12 @@ "sF": "23", "sU": "10", "spread": "9", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 18.0, + "sF": 27.0 + }, + "week": "2011 Regular Season - Week 4" }, { "date": "Oct 2, 2011", @@ -117547,11 +174097,12 @@ "sF": "23", "sU": "24", "spread": "10", - "ou": "49", + "ou": 43.5, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sU": 16.75, + "sF": 26.75 + }, + "week": "2011 Regular Season - Week 4" }, { "date": "Oct 2, 2011", @@ -117561,7 +174112,12 @@ "sF": "34", "sU": "29", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "2011 Regular Season - Week 4" }, { "date": "Oct 2, 2011", @@ -117570,8 +174126,13 @@ "und": "Arizona Cardinals", "sF": "31", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.0, + "pScore": { + "sU": 21.75, + "sF": 23.25 + }, + "week": "2011 Regular Season - Week 4" }, { "date": "Oct 2, 2011", @@ -117581,7 +174142,12 @@ "sF": "30", "sU": "28", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "2011 Regular Season - Week 4" }, { "date": "Oct 2, 2011", @@ -117591,7 +174157,12 @@ "sF": "49", "sU": "23", "spread": "12", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 17.25, + "sF": 29.25 + }, + "week": "2011 Regular Season - Week 4" }, { "date": "Oct 2, 2011", @@ -117600,8 +174171,13 @@ "und": "Oakland Raiders", "sF": "31", "sU": "19", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 55.5, + "pScore": { + "sU": 24.5, + "sF": 31.0 + }, + "week": "2011 Regular Season - Week 4" }, { "date": "Oct 2, 2011", @@ -117611,7 +174187,12 @@ "sF": "26", "sU": "16", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "2011 Regular Season - Week 4" }, { "date": "Oct 2, 2011", @@ -117621,7 +174202,12 @@ "sF": "34", "sU": "17", "spread": "5", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.25, + "sF": 24.25 + }, + "week": "2011 Regular Season - Week 4" }, { "date": "Oct 3, 2011", @@ -117631,7 +174217,12 @@ "sF": "24", "sU": "17", "spread": "10", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.25, + "sF": 25.25 + }, + "week": "2011 Regular Season - Week 4" }, { "date": "Oct 9, 2011", @@ -117640,8 +174231,13 @@ "und": "Oakland Raiders", "sF": "20", "sU": "25", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.5, + "pScore": { + "sU": 22.0, + "sF": 26.5 + }, + "week": "2011 Regular Season - Week 5" }, { "date": "Oct 9, 2011", @@ -117650,8 +174246,13 @@ "und": "Kansas City Chiefs", "sF": "24", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "2011 Regular Season - Week 5" }, { "date": "Oct 9, 2011", @@ -117660,8 +174261,13 @@ "und": "Jacksonville Jaguars", "sF": "30", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2011 Regular Season - Week 5" }, { "date": "Oct 9, 2011", @@ -117671,7 +174277,12 @@ "sF": "38", "sU": "17", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2011 Regular Season - Week 5" }, { "date": "Oct 9, 2011", @@ -117681,7 +174292,12 @@ "sF": "24", "sU": "31", "spread": "3", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 25.0, + "sF": 28.0 + }, + "week": "2011 Regular Season - Week 5" }, { "date": "Oct 9, 2011", @@ -117690,8 +174306,13 @@ "und": "Carolina Panthers", "sF": "30", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 51.5, + "pScore": { + "sU": 22.5, + "sF": 29.0 + }, + "week": "2011 Regular Season - Week 5" }, { "date": "Oct 9, 2011", @@ -117701,7 +174322,12 @@ "sF": "25", "sU": "36", "spread": "10", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 16.75, + "sF": 26.75 + }, + "week": "2011 Regular Season - Week 5" }, { "date": "Oct 9, 2011", @@ -117710,8 +174336,13 @@ "und": "Arizona Cardinals", "sF": "34", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2011 Regular Season - Week 5" }, { "date": "Oct 9, 2011", @@ -117721,7 +174352,12 @@ "sF": "48", "sU": "3", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2011 Regular Season - Week 5" }, { "date": "Oct 9, 2011", @@ -117730,8 +174366,13 @@ "und": "New York Jets", "sF": "30", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 50.0, + "pScore": { + "sU": 21.25, + "sF": 28.75 + }, + "week": "2011 Regular Season - Week 5" }, { "date": "Oct 9, 2011", @@ -117740,8 +174381,13 @@ "und": "Denver Broncos", "sF": "29", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "2011 Regular Season - Week 5" }, { "date": "Oct 9, 2011", @@ -117750,8 +174396,13 @@ "und": "Atlanta Falcons", "sF": "25", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 53.0, + "pScore": { + "sU": 23.25, + "sF": 29.75 + }, + "week": "2011 Regular Season - Week 5" }, { "date": "Oct 10, 2011", @@ -117761,7 +174412,12 @@ "sF": "24", "sU": "13", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2011 Regular Season - Week 5" }, { "date": "Oct 16, 2011", @@ -117770,8 +174426,13 @@ "und": "Carolina Panthers", "sF": "31", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "2011 Regular Season - Week 6" }, { "date": "Oct 16, 2011", @@ -117780,8 +174441,13 @@ "und": "Indianapolis Colts", "sF": "27", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "2011 Regular Season - Week 6" }, { "date": "Oct 16, 2011", @@ -117791,7 +174457,12 @@ "sF": "24", "sU": "3", "spread": "14", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 16.75, + "sF": 30.75 + }, + "week": "2011 Regular Season - Week 6" }, { "date": "Oct 16, 2011", @@ -117801,7 +174472,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2011 Regular Season - Week 6" }, { "date": "Oct 16, 2011", @@ -117810,8 +174486,13 @@ "und": "Jacksonville Jaguars", "sF": "17", "sU": "13", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 40.0, + "pScore": { + "sU": 13.75, + "sF": 26.25 + }, + "week": "2011 Regular Season - Week 6" }, { "date": "Oct 16, 2011", @@ -117821,11 +174502,12 @@ "sF": "19", "sU": "25", "spread": "5", - "ou": "49", + "ou": 45.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 20.0, + "sF": 25.0 + }, + "week": "2011 Regular Season - Week 6" }, { "date": "Oct 16, 2011", @@ -117835,7 +174517,12 @@ "sF": "20", "sU": "13", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2011 Regular Season - Week 6" }, { "date": "Oct 16, 2011", @@ -117844,8 +174531,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "2011 Regular Season - Week 6" }, { "date": "Oct 16, 2011", @@ -117855,7 +174547,12 @@ "sF": "29", "sU": "14", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2011 Regular Season - Week 6" }, { "date": "Oct 16, 2011", @@ -117865,7 +174562,12 @@ "sF": "20", "sU": "16", "spread": "7", - "ou": -1 + "ou": 54.5, + "pScore": { + "sU": 23.75, + "sF": 30.75 + }, + "week": "2011 Regular Season - Week 6" }, { "date": "Oct 16, 2011", @@ -117874,8 +174576,13 @@ "und": "Tampa Bay Buccaneers", "sF": "20", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.5, + "pScore": { + "sU": 21.5, + "sF": 28.0 + }, + "week": "2011 Regular Season - Week 6" }, { "date": "Oct 16, 2011", @@ -117884,8 +174591,13 @@ "und": "Minnesota Vikings", "sF": "39", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "2011 Regular Season - Week 6" }, { "date": "Oct 17, 2011", @@ -117894,8 +174606,13 @@ "und": "Miami Dolphins", "sF": "24", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.5, + "pScore": { + "sU": 17.0, + "sF": 24.5 + }, + "week": "2011 Regular Season - Week 6" }, { "date": "Oct 23, 2011", @@ -117905,7 +174622,12 @@ "sF": "18", "sU": "15", "spread": "1", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 20.25, + "sF": 21.25 + }, + "week": "2011 Regular Season - Week 7" }, { "date": "Oct 23, 2011", @@ -117914,8 +174636,13 @@ "und": "Houston Texans", "sF": "7", "sU": "41", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2011 Regular Season - Week 7" }, { "date": "Oct 23, 2011", @@ -117925,7 +174652,12 @@ "sF": "21", "sU": "27", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "2011 Regular Season - Week 7" }, { "date": "Oct 23, 2011", @@ -117934,8 +174666,13 @@ "und": "Washington Redskins", "sF": "33", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2011 Regular Season - Week 7" }, { "date": "Oct 23, 2011", @@ -117945,7 +174682,12 @@ "sF": "24", "sU": "18", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "2011 Regular Season - Week 7" }, { "date": "Oct 23, 2011", @@ -117955,7 +174697,12 @@ "sF": "6", "sU": "3", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2011 Regular Season - Week 7" }, { "date": "Oct 23, 2011", @@ -117964,8 +174711,13 @@ "und": "Atlanta Falcons", "sF": "16", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.0, + "pScore": { + "sU": 21.25, + "sF": 25.75 + }, + "week": "2011 Regular Season - Week 7" }, { "date": "Oct 23, 2011", @@ -117974,8 +174726,13 @@ "und": "Arizona Cardinals", "sF": "32", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.5, + "pScore": { + "sU": 21.0, + "sF": 25.5 + }, + "week": "2011 Regular Season - Week 7" }, { "date": "Oct 23, 2011", @@ -117985,7 +174742,12 @@ "sF": "34", "sU": "7", "spread": "14", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 14.5, + "sF": 28.5 + }, + "week": "2011 Regular Season - Week 7" }, { "date": "Oct 23, 2011", @@ -117995,7 +174757,12 @@ "sF": "33", "sU": "27", "spread": "11", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 18.0, + "sF": 29.0 + }, + "week": "2011 Regular Season - Week 7" }, { "date": "Oct 23, 2011", @@ -118004,8 +174771,13 @@ "und": "Kansas City Chiefs", "sF": "0", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2011 Regular Season - Week 7" }, { "date": "Oct 23, 2011", @@ -118015,7 +174787,12 @@ "sF": "62", "sU": "7", "spread": "14", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 17.5, + "sF": 31.5 + }, + "week": "2011 Regular Season - Week 7" }, { "date": "Oct 24, 2011", @@ -118024,8 +174801,13 @@ "und": "Jacksonville Jaguars", "sF": "7", "sU": "12", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 39.0, + "pScore": { + "sU": 14.25, + "sF": 24.75 + }, + "week": "2011 Regular Season - Week 7" }, { "date": "Oct 30, 2011", @@ -118035,7 +174817,12 @@ "sF": "21", "sU": "31", "spread": "14", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 17.25, + "sF": 31.25 + }, + "week": "2011 Regular Season - Week 8" }, { "date": "Oct 30, 2011", @@ -118044,8 +174831,13 @@ "und": "Arizona Cardinals", "sF": "30", "sU": "27", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 43.0, + "pScore": { + "sU": 15.75, + "sF": 27.25 + }, + "week": "2011 Regular Season - Week 8" }, { "date": "Oct 30, 2011", @@ -118055,7 +174847,12 @@ "sF": "24", "sU": "14", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "2011 Regular Season - Week 8" }, { "date": "Oct 30, 2011", @@ -118065,7 +174862,12 @@ "sF": "20", "sU": "17", "spread": "10", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 16.75, + "sF": 26.75 + }, + "week": "2011 Regular Season - Week 8" }, { "date": "Oct 30, 2011", @@ -118074,8 +174876,13 @@ "und": "Indianapolis Colts", "sF": "27", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.5, + "pScore": { + "sU": 18.0, + "sF": 25.5 + }, + "week": "2011 Regular Season - Week 8" }, { "date": "Oct 30, 2011", @@ -118085,7 +174892,12 @@ "sF": "21", "sU": "24", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2011 Regular Season - Week 8" }, { "date": "Oct 30, 2011", @@ -118095,7 +174907,12 @@ "sF": "23", "sU": "0", "spread": "4", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.25, + "sF": 25.25 + }, + "week": "2011 Regular Season - Week 8" }, { "date": "Oct 30, 2011", @@ -118104,8 +174921,13 @@ "und": "Denver Broncos", "sF": "45", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2011 Regular Season - Week 8" }, { "date": "Oct 30, 2011", @@ -118115,7 +174937,12 @@ "sF": "17", "sU": "25", "spread": "3", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 24.5, + "sF": 27.5 + }, + "week": "2011 Regular Season - Week 8" }, { "date": "Oct 30, 2011", @@ -118124,8 +174951,13 @@ "und": "Cleveland Browns", "sF": "20", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 38.5, + "pScore": { + "sU": 14.5, + "sF": 24.0 + }, + "week": "2011 Regular Season - Week 8" }, { "date": "Oct 30, 2011", @@ -118134,8 +174966,13 @@ "und": "Seattle Seahawks", "sF": "34", "sU": "12", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.5, + "pScore": { + "sU": 18.0, + "sF": 19.5 + }, + "week": "2011 Regular Season - Week 8" }, { "date": "Oct 30, 2011", @@ -118145,7 +174982,12 @@ "sF": "34", "sU": "7", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "2011 Regular Season - Week 8" }, { "date": "Oct 31, 2011", @@ -118155,7 +174997,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2011 Regular Season - Week 8" }, { "date": "Nov 6, 2011", @@ -118165,7 +175012,12 @@ "sF": "23", "sU": "13", "spread": "11", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.0, + "sF": 28.0 + }, + "week": "2011 Regular Season - Week 9" }, { "date": "Nov 6, 2011", @@ -118175,7 +175027,12 @@ "sF": "31", "sU": "7", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "2011 Regular Season - Week 9" }, { "date": "Nov 6, 2011", @@ -118184,8 +175041,13 @@ "und": "New York Jets", "sF": "11", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "2011 Regular Season - Week 9" }, { "date": "Nov 6, 2011", @@ -118194,8 +175056,13 @@ "und": "Cleveland Browns", "sF": "30", "sU": "12", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 41.0, + "pScore": { + "sU": 15.25, + "sF": 25.75 + }, + "week": "2011 Regular Season - Week 9" }, { "date": "Nov 6, 2011", @@ -118205,7 +175072,12 @@ "sF": "3", "sU": "31", "spread": "4", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.25, + "sF": 22.25 + }, + "week": "2011 Regular Season - Week 9" }, { "date": "Nov 6, 2011", @@ -118215,7 +175087,12 @@ "sF": "27", "sU": "16", "spread": "9", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 20.75, + "sF": 29.75 + }, + "week": "2011 Regular Season - Week 9" }, { "date": "Nov 6, 2011", @@ -118224,8 +175101,13 @@ "und": "Washington Redskins", "sF": "19", "sU": "11", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.5, + "pScore": { + "sU": 16.5, + "sF": 21.0 + }, + "week": "2011 Regular Season - Week 9" }, { "date": "Nov 6, 2011", @@ -118234,8 +175116,13 @@ "und": "Denver Broncos", "sF": "24", "sU": "38", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.5, + "pScore": { + "sU": 17.5, + "sF": 25.0 + }, + "week": "2011 Regular Season - Week 9" }, { "date": "Nov 6, 2011", @@ -118245,7 +175132,12 @@ "sF": "17", "sU": "24", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2011 Regular Season - Week 9" }, { "date": "Nov 6, 2011", @@ -118255,7 +175147,12 @@ "sF": "19", "sU": "13", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2011 Regular Season - Week 9" }, { "date": "Nov 6, 2011", @@ -118265,7 +175162,12 @@ "sF": "20", "sU": "24", "spread": "9", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 21.0, + "sF": 30.0 + }, + "week": "2011 Regular Season - Week 9" }, { "date": "Nov 6, 2011", @@ -118275,7 +175177,12 @@ "sF": "45", "sU": "38", "spread": "6", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 22.5, + "sF": 28.5 + }, + "week": "2011 Regular Season - Week 9" }, { "date": "Nov 6, 2011", @@ -118284,8 +175191,13 @@ "und": "Baltimore Ravens", "sF": "20", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "2011 Regular Season - Week 9" }, { "date": "Nov 7, 2011", @@ -118295,7 +175207,12 @@ "sF": "24", "sU": "30", "spread": "8", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 19.75, + "sF": 27.75 + }, + "week": "2011 Regular Season - Week 9" }, { "date": "Nov 10, 2011", @@ -118305,7 +175222,12 @@ "sF": "17", "sU": "24", "spread": "7", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.5, + "sF": 27.5 + }, + "week": "2011 Regular Season - Week 10" }, { "date": "Nov 13, 2011", @@ -118315,7 +175237,12 @@ "sF": "24", "sU": "17", "spread": "4", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.25, + "sF": 22.25 + }, + "week": "2011 Regular Season - Week 10" }, { "date": "Nov 13, 2011", @@ -118324,8 +175251,13 @@ "und": "Buffalo Bills", "sF": "44", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 49.0, + "pScore": { + "sU": 22.25, + "sF": 26.75 + }, + "week": "2011 Regular Season - Week 10" }, { "date": "Nov 13, 2011", @@ -118335,7 +175267,12 @@ "sF": "17", "sU": "3", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2011 Regular Season - Week 10" }, { "date": "Nov 13, 2011", @@ -118345,7 +175282,12 @@ "sF": "17", "sU": "21", "spread": "13", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 17.25, + "sF": 30.25 + }, + "week": "2011 Regular Season - Week 10" }, { "date": "Nov 13, 2011", @@ -118355,7 +175297,12 @@ "sF": "37", "sU": "9", "spread": "4", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 20.75, + "sF": 24.75 + }, + "week": "2011 Regular Season - Week 10" }, { "date": "Nov 13, 2011", @@ -118365,7 +175312,12 @@ "sF": "23", "sU": "26", "spread": "1", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 24.5, + "sF": 25.5 + }, + "week": "2011 Regular Season - Week 10" }, { "date": "Nov 13, 2011", @@ -118375,7 +175327,12 @@ "sF": "12", "sU": "13", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2011 Regular Season - Week 10" }, { "date": "Nov 13, 2011", @@ -118384,8 +175341,13 @@ "und": "Denver Broncos", "sF": "10", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2011 Regular Season - Week 10" }, { "date": "Nov 13, 2011", @@ -118395,7 +175357,12 @@ "sF": "20", "sU": "9", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "2011 Regular Season - Week 10" }, { "date": "Nov 13, 2011", @@ -118404,8 +175371,13 @@ "und": "Tennessee Titans", "sF": "3", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2011 Regular Season - Week 10" }, { "date": "Nov 13, 2011", @@ -118415,7 +175387,12 @@ "sF": "17", "sU": "22", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "2011 Regular Season - Week 10" }, { "date": "Nov 13, 2011", @@ -118425,7 +175402,12 @@ "sF": "27", "sU": "20", "spread": "4", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.25, + "sF": 23.25 + }, + "week": "2011 Regular Season - Week 10" }, { "date": "Nov 13, 2011", @@ -118435,7 +175417,12 @@ "sF": "37", "sU": "13", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2011 Regular Season - Week 10" }, { "date": "Nov 13, 2011", @@ -118444,8 +175431,13 @@ "und": "New England Patriots", "sF": "16", "sU": "37", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.0, + "pScore": { + "sU": 22.25, + "sF": 24.75 + }, + "week": "2011 Regular Season - Week 10" }, { "date": "Nov 14, 2011", @@ -118455,7 +175447,12 @@ "sF": "45", "sU": "7", "spread": "13", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 18.5, + "sF": 31.5 + }, + "week": "2011 Regular Season - Week 10" }, { "date": "Nov 17, 2011", @@ -118464,8 +175461,13 @@ "und": "Denver Broncos", "sF": "13", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.5, + "pScore": { + "sU": 16.0, + "sF": 22.5 + }, + "week": "2011 Regular Season - Week 11" }, { "date": "Nov 20, 2011", @@ -118475,7 +175477,12 @@ "sF": "31", "sU": "24", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "2011 Regular Season - Week 11" }, { "date": "Nov 20, 2011", @@ -118484,8 +175491,13 @@ "und": "Jacksonville Jaguars", "sF": "14", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 34.5, + "pScore": { + "sU": 16.5, + "sF": 18.0 + }, + "week": "2011 Regular Season - Week 11" }, { "date": "Nov 20, 2011", @@ -118495,7 +175507,12 @@ "sF": "49", "sU": "35", "spread": "7", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.25, + "sF": 27.25 + }, + "week": "2011 Regular Season - Week 11" }, { "date": "Nov 20, 2011", @@ -118504,8 +175521,13 @@ "und": "Tampa Bay Buccaneers", "sF": "35", "sU": "26", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 49.0, + "pScore": { + "sU": 17.75, + "sF": 31.25 + }, + "week": "2011 Regular Season - Week 11" }, { "date": "Nov 20, 2011", @@ -118515,7 +175537,12 @@ "sF": "35", "sU": "8", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2011 Regular Season - Week 11" }, { "date": "Nov 20, 2011", @@ -118525,7 +175552,12 @@ "sF": "27", "sU": "24", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2011 Regular Season - Week 11" }, { "date": "Nov 20, 2011", @@ -118535,7 +175567,12 @@ "sF": "21", "sU": "27", "spread": "2", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.25, + "sF": 24.25 + }, + "week": "2011 Regular Season - Week 11" }, { "date": "Nov 20, 2011", @@ -118545,7 +175582,12 @@ "sF": "23", "sU": "7", "spread": "10", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.25, + "sF": 25.25 + }, + "week": "2011 Regular Season - Week 11" }, { "date": "Nov 20, 2011", @@ -118555,7 +175597,12 @@ "sF": "7", "sU": "24", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2011 Regular Season - Week 11" }, { "date": "Nov 20, 2011", @@ -118564,8 +175611,13 @@ "und": "Tennessee Titans", "sF": "23", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2011 Regular Season - Week 11" }, { "date": "Nov 20, 2011", @@ -118574,8 +175626,13 @@ "und": "San Diego Chargers", "sF": "31", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.5, + "pScore": { + "sU": 20.5, + "sF": 25.0 + }, + "week": "2011 Regular Season - Week 11" }, { "date": "Nov 20, 2011", @@ -118585,7 +175642,12 @@ "sF": "10", "sU": "17", "spread": "6", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.75, + "sF": 25.75 + }, + "week": "2011 Regular Season - Week 11" }, { "date": "Nov 21, 2011", @@ -118595,7 +175657,12 @@ "sF": "34", "sU": "3", "spread": "17", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 15.0, + "sF": 32.0 + }, + "week": "2011 Regular Season - Week 11" }, { "date": "Nov 24, 2011", @@ -118604,8 +175671,13 @@ "und": "Detroit Lions", "sF": "27", "sU": "15", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 55.0, + "pScore": { + "sU": 25.25, + "sF": 29.75 + }, + "week": "2011 Regular Season - Week 12" }, { "date": "Nov 24, 2011", @@ -118615,7 +175687,12 @@ "sF": "20", "sU": "19", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "2011 Regular Season - Week 12" }, { "date": "Nov 24, 2011", @@ -118624,12 +175701,13 @@ "und": "San Francisco 49ers", "sF": "16", "sU": "6", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": 40.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 18.5, + "sF": 22.0 + }, + "week": "2011 Regular Season - Week 12" }, { "date": "Nov 27, 2011", @@ -118638,8 +175716,13 @@ "und": "Arizona Cardinals", "sF": "20", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2011 Regular Season - Week 12" }, { "date": "Nov 27, 2011", @@ -118649,7 +175732,12 @@ "sF": "24", "sU": "14", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "2011 Regular Season - Week 12" }, { "date": "Nov 27, 2011", @@ -118659,7 +175747,12 @@ "sF": "23", "sU": "20", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "2011 Regular Season - Week 12" }, { "date": "Nov 27, 2011", @@ -118668,8 +175761,13 @@ "und": "Buffalo Bills", "sF": "28", "sU": "24", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.5, + "pScore": { + "sU": 16.5, + "sF": 26.0 + }, + "week": "2011 Regular Season - Week 12" }, { "date": "Nov 27, 2011", @@ -118679,7 +175777,12 @@ "sF": "23", "sU": "17", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2011 Regular Season - Week 12" }, { "date": "Nov 27, 2011", @@ -118688,8 +175791,13 @@ "und": "Indianapolis Colts", "sF": "27", "sU": "19", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "2011 Regular Season - Week 12" }, { "date": "Nov 27, 2011", @@ -118698,8 +175806,13 @@ "und": "Jacksonville Jaguars", "sF": "20", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.0, + "pScore": { + "sU": 15.25, + "sF": 21.75 + }, + "week": "2011 Regular Season - Week 12" }, { "date": "Nov 27, 2011", @@ -118709,7 +175822,12 @@ "sF": "25", "sU": "20", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2011 Regular Season - Week 12" }, { "date": "Nov 27, 2011", @@ -118719,7 +175837,12 @@ "sF": "17", "sU": "23", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2011 Regular Season - Week 12" }, { "date": "Nov 27, 2011", @@ -118728,8 +175851,13 @@ "und": "Philadelphia Eagles", "sF": "38", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 50.5, + "pScore": { + "sU": 23.5, + "sF": 27.0 + }, + "week": "2011 Regular Season - Week 12" }, { "date": "Nov 27, 2011", @@ -118738,8 +175866,13 @@ "und": "Denver Broncos", "sF": "13", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.0, + "pScore": { + "sU": 18.25, + "sF": 23.75 + }, + "week": "2011 Regular Season - Week 12" }, { "date": "Nov 27, 2011", @@ -118748,8 +175881,13 @@ "und": "Kansas City Chiefs", "sF": "13", "sU": "9", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 40.5, + "pScore": { + "sU": 15.0, + "sF": 25.5 + }, + "week": "2011 Regular Season - Week 12" }, { "date": "Nov 28, 2011", @@ -118759,7 +175897,12 @@ "sF": "49", "sU": "24", "spread": "7", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 22.0, + "sF": 29.0 + }, + "week": "2011 Regular Season - Week 12" }, { "date": "Dec 1, 2011", @@ -118769,7 +175912,12 @@ "sF": "14", "sU": "31", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2011 Regular Season - Week 13" }, { "date": "Dec 4, 2011", @@ -118779,7 +175927,12 @@ "sF": "17", "sU": "23", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2011 Regular Season - Week 13" }, { "date": "Dec 4, 2011", @@ -118788,8 +175941,13 @@ "und": "Indianapolis Colts", "sF": "31", "sU": "24", - "spread": "20", - "ou": -1 + "spread": "20.5", + "ou": 48.5, + "pScore": { + "sU": 14.0, + "sF": 34.5 + }, + "week": "2011 Regular Season - Week 13" }, { "date": "Dec 4, 2011", @@ -118799,7 +175957,12 @@ "sF": "35", "sU": "7", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2011 Regular Season - Week 13" }, { "date": "Dec 4, 2011", @@ -118808,8 +175971,13 @@ "und": "Tampa Bay Buccaneers", "sF": "38", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "2011 Regular Season - Week 13" }, { "date": "Dec 4, 2011", @@ -118819,7 +175987,12 @@ "sF": "3", "sU": "10", "spread": "9", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 13.0, + "sF": 22.0 + }, + "week": "2011 Regular Season - Week 13" }, { "date": "Dec 4, 2011", @@ -118829,7 +176002,12 @@ "sF": "10", "sU": "17", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "2011 Regular Season - Week 13" }, { "date": "Dec 4, 2011", @@ -118839,7 +176017,12 @@ "sF": "34", "sU": "14", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2011 Regular Season - Week 13" }, { "date": "Dec 4, 2011", @@ -118849,7 +176032,12 @@ "sF": "34", "sU": "19", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "2011 Regular Season - Week 13" }, { "date": "Dec 4, 2011", @@ -118858,8 +176046,13 @@ "und": "Denver Broncos", "sF": "32", "sU": "35", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.5, + "pScore": { + "sU": 18.0, + "sF": 19.5 + }, + "week": "2011 Regular Season - Week 13" }, { "date": "Dec 4, 2011", @@ -118869,7 +176062,12 @@ "sF": "24", "sU": "10", "spread": "7", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.75, + "sF": 22.75 + }, + "week": "2011 Regular Season - Week 13" }, { "date": "Dec 4, 2011", @@ -118878,8 +176076,13 @@ "und": "Arizona Cardinals", "sF": "13", "sU": "19", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.5, + "pScore": { + "sU": 21.0, + "sF": 25.5 + }, + "week": "2011 Regular Season - Week 13" }, { "date": "Dec 4, 2011", @@ -118889,7 +176092,12 @@ "sF": "38", "sU": "35", "spread": "7", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 23.5, + "sF": 30.5 + }, + "week": "2011 Regular Season - Week 13" }, { "date": "Dec 4, 2011", @@ -118898,8 +176106,13 @@ "und": "St Louis Rams", "sF": "26", "sU": "0", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 38.5, + "pScore": { + "sU": 12.0, + "sF": 26.5 + }, + "week": "2011 Regular Season - Week 13" }, { "date": "Dec 4, 2011", @@ -118909,7 +176122,12 @@ "sF": "31", "sU": "17", "spread": "9", - "ou": -1 + "ou": 54.5, + "pScore": { + "sU": 22.75, + "sF": 31.75 + }, + "week": "2011 Regular Season - Week 13" }, { "date": "Dec 5, 2011", @@ -118919,7 +176137,12 @@ "sF": "38", "sU": "14", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2011 Regular Season - Week 13" }, { "date": "Dec 8, 2011", @@ -118929,7 +176152,12 @@ "sF": "14", "sU": "3", "spread": "14", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 13.0, + "sF": 27.0 + }, + "week": "2011 Regular Season - Week 14" }, { "date": "Dec 11, 2011", @@ -118938,8 +176166,13 @@ "und": "Indianapolis Colts", "sF": "24", "sU": "10", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 41.5, + "pScore": { + "sU": 12.5, + "sF": 29.0 + }, + "week": "2011 Regular Season - Week 14" }, { "date": "Dec 11, 2011", @@ -118949,7 +176182,12 @@ "sF": "19", "sU": "20", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2011 Regular Season - Week 14" }, { "date": "Dec 11, 2011", @@ -118958,8 +176196,13 @@ "und": "Kansas City Chiefs", "sF": "37", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 35.5, + "pScore": { + "sU": 12.5, + "sF": 23.0 + }, + "week": "2011 Regular Season - Week 14" }, { "date": "Dec 11, 2011", @@ -118969,7 +176212,12 @@ "sF": "34", "sU": "28", "spread": "10", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 18.5, + "sF": 28.5 + }, + "week": "2011 Regular Season - Week 14" }, { "date": "Dec 11, 2011", @@ -118979,7 +176227,12 @@ "sF": "14", "sU": "41", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2011 Regular Season - Week 14" }, { "date": "Dec 11, 2011", @@ -118989,7 +176242,12 @@ "sF": "10", "sU": "26", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2011 Regular Season - Week 14" }, { "date": "Dec 11, 2011", @@ -118998,8 +176256,13 @@ "und": "Tennessee Titans", "sF": "22", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "2011 Regular Season - Week 14" }, { "date": "Dec 11, 2011", @@ -119008,8 +176271,13 @@ "und": "Washington Redskins", "sF": "34", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.0, + "pScore": { + "sU": 19.75, + "sF": 27.25 + }, + "week": "2011 Regular Season - Week 14" }, { "date": "Dec 11, 2011", @@ -119019,7 +176287,12 @@ "sF": "31", "sU": "23", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2011 Regular Season - Week 14" }, { "date": "Dec 11, 2011", @@ -119028,8 +176301,13 @@ "und": "Arizona Cardinals", "sF": "19", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2011 Regular Season - Week 14" }, { "date": "Dec 11, 2011", @@ -119038,8 +176316,13 @@ "und": "Chicago Bears", "sF": "13", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.5, + "pScore": { + "sU": 16.0, + "sF": 19.5 + }, + "week": "2011 Regular Season - Week 14" }, { "date": "Dec 11, 2011", @@ -119048,8 +176331,13 @@ "und": "Oakland Raiders", "sF": "46", "sU": "16", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 49.5, + "pScore": { + "sU": 19.0, + "sF": 30.5 + }, + "week": "2011 Regular Season - Week 14" }, { "date": "Dec 11, 2011", @@ -119059,7 +176347,12 @@ "sF": "37", "sU": "10", "spread": "7", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.0, + "sF": 28.0 + }, + "week": "2011 Regular Season - Week 14" }, { "date": "Dec 11, 2011", @@ -119068,8 +176361,13 @@ "und": "New York Giants", "sF": "34", "sU": "37", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 50.5, + "pScore": { + "sU": 23.0, + "sF": 27.5 + }, + "week": "2011 Regular Season - Week 14" }, { "date": "Dec 12, 2011", @@ -119078,8 +176376,13 @@ "und": "St Louis Rams", "sF": "30", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 37.0, + "pScore": { + "sU": 13.75, + "sF": 23.25 + }, + "week": "2011 Regular Season - Week 14" }, { "date": "Dec 15, 2011", @@ -119088,8 +176391,13 @@ "und": "Jacksonville Jaguars", "sF": "41", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 42.0, + "pScore": { + "sU": 14.25, + "sF": 27.75 + }, + "week": "2011 Regular Season - Week 15" }, { "date": "Dec 17, 2011", @@ -119099,7 +176407,12 @@ "sF": "31", "sU": "15", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2011 Regular Season - Week 15" }, { "date": "Dec 18, 2011", @@ -119109,7 +176422,12 @@ "sF": "20", "sU": "13", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "2011 Regular Season - Week 15" }, { "date": "Dec 18, 2011", @@ -119118,8 +176436,13 @@ "und": "Miami Dolphins", "sF": "23", "sU": "30", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.5, + "pScore": { + "sU": 19.5, + "sF": 21.0 + }, + "week": "2011 Regular Season - Week 15" }, { "date": "Dec 18, 2011", @@ -119129,7 +176452,12 @@ "sF": "10", "sU": "23", "spread": "6", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.25, + "sF": 26.25 + }, + "week": "2011 Regular Season - Week 15" }, { "date": "Dec 18, 2011", @@ -119138,8 +176466,13 @@ "und": "Seattle Seahawks", "sF": "14", "sU": "38", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "2011 Regular Season - Week 15" }, { "date": "Dec 18, 2011", @@ -119149,7 +176482,12 @@ "sF": "13", "sU": "28", "spread": "6", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.75, + "sF": 25.75 + }, + "week": "2011 Regular Season - Week 15" }, { "date": "Dec 18, 2011", @@ -119158,8 +176496,13 @@ "und": "Indianapolis Colts", "sF": "13", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "2011 Regular Season - Week 15" }, { "date": "Dec 18, 2011", @@ -119168,8 +176511,13 @@ "und": "Kansas City Chiefs", "sF": "14", "sU": "19", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 46.0, + "pScore": { + "sU": 17.25, + "sF": 28.75 + }, + "week": "2011 Regular Season - Week 15" }, { "date": "Dec 18, 2011", @@ -119178,8 +176526,13 @@ "und": "Minnesota Vikings", "sF": "42", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 53.5, + "pScore": { + "sU": 23.0, + "sF": 30.5 + }, + "week": "2011 Regular Season - Week 15" }, { "date": "Dec 18, 2011", @@ -119188,8 +176541,13 @@ "und": "Oakland Raiders", "sF": "28", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.5, + "pScore": { + "sU": 23.0, + "sF": 24.5 + }, + "week": "2011 Regular Season - Week 15" }, { "date": "Dec 18, 2011", @@ -119198,8 +176556,13 @@ "und": "Cleveland Browns", "sF": "20", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.5, + "pScore": { + "sU": 15.5, + "sF": 22.0 + }, + "week": "2011 Regular Season - Week 15" }, { "date": "Dec 18, 2011", @@ -119208,8 +176571,13 @@ "und": "Denver Broncos", "sF": "41", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.5, + "pScore": { + "sU": 20.0, + "sF": 27.5 + }, + "week": "2011 Regular Season - Week 15" }, { "date": "Dec 18, 2011", @@ -119219,7 +176587,12 @@ "sF": "45", "sU": "19", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2011 Regular Season - Week 15" }, { "date": "Dec 18, 2011", @@ -119228,8 +176601,13 @@ "und": "San Diego Chargers", "sF": "14", "sU": "34", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2011 Regular Season - Week 15" }, { "date": "Dec 19, 2011", @@ -119239,7 +176617,12 @@ "sF": "20", "sU": "3", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2011 Regular Season - Week 15" }, { "date": "Dec 22, 2011", @@ -119249,7 +176632,12 @@ "sF": "16", "sU": "19", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "2011 Regular Season - Week 16" }, { "date": "Dec 24, 2011", @@ -119259,7 +176647,12 @@ "sF": "14", "sU": "40", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2011 Regular Season - Week 16" }, { "date": "Dec 24, 2011", @@ -119269,7 +176662,12 @@ "sF": "23", "sU": "16", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "2011 Regular Season - Week 16" }, { "date": "Dec 24, 2011", @@ -119278,8 +176676,13 @@ "und": "Miami Dolphins", "sF": "27", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 49.5, + "pScore": { + "sU": 21.0, + "sF": 28.5 + }, + "week": "2011 Regular Season - Week 16" }, { "date": "Dec 24, 2011", @@ -119289,7 +176692,12 @@ "sF": "27", "sU": "0", "spread": "10", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 12.0, + "sF": 22.0 + }, + "week": "2011 Regular Season - Week 16" }, { "date": "Dec 24, 2011", @@ -119298,8 +176706,13 @@ "und": "Jacksonville Jaguars", "sF": "23", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.5, + "pScore": { + "sU": 15.0, + "sF": 23.5 + }, + "week": "2011 Regular Season - Week 16" }, { "date": "Dec 24, 2011", @@ -119309,7 +176722,12 @@ "sF": "20", "sU": "14", "spread": "11", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 13.5, + "sF": 24.5 + }, + "week": "2011 Regular Season - Week 16" }, { "date": "Dec 24, 2011", @@ -119319,7 +176737,12 @@ "sF": "13", "sU": "16", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2011 Regular Season - Week 16" }, { "date": "Dec 24, 2011", @@ -119329,7 +176752,12 @@ "sF": "14", "sU": "29", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2011 Regular Season - Week 16" }, { "date": "Dec 24, 2011", @@ -119338,8 +176766,13 @@ "und": "Tampa Bay Buccaneers", "sF": "48", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2011 Regular Season - Week 16" }, { "date": "Dec 24, 2011", @@ -119349,7 +176782,12 @@ "sF": "26", "sU": "33", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "2011 Regular Season - Week 16" }, { "date": "Dec 24, 2011", @@ -119359,7 +176797,12 @@ "sF": "10", "sU": "38", "spread": "1", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 26.0, + "sF": 27.0 + }, + "week": "2011 Regular Season - Week 16" }, { "date": "Dec 24, 2011", @@ -119368,8 +176811,13 @@ "und": "Dallas Cowboys", "sF": "20", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 50.0, + "pScore": { + "sU": 23.75, + "sF": 26.25 + }, + "week": "2011 Regular Season - Week 16" }, { "date": "Dec 24, 2011", @@ -119378,8 +176826,13 @@ "und": "Seattle Seahawks", "sF": "19", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2011 Regular Season - Week 16" }, { "date": "Dec 25, 2011", @@ -119389,7 +176842,12 @@ "sF": "35", "sU": "21", "spread": "13", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 14.5, + "sF": 27.5 + }, + "week": "2011 Regular Season - Week 16" }, { "date": "Dec 26, 2011", @@ -119399,7 +176857,12 @@ "sF": "45", "sU": "16", "spread": "7", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 22.75, + "sF": 29.75 + }, + "week": "2011 Regular Season - Week 16" }, { "date": "Jan 1, 2012", @@ -119408,8 +176871,13 @@ "und": "St Louis Rams", "sF": "34", "sU": "27", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 34.5, + "pScore": { + "sU": 11.0, + "sF": 23.5 + }, + "week": "2011 Regular Season - Week 17" }, { "date": "Jan 1, 2012", @@ -119418,8 +176886,13 @@ "und": "Green Bay Packers", "sF": "41", "sU": "45", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "2011 Regular Season - Week 17" }, { "date": "Jan 1, 2012", @@ -119429,7 +176902,12 @@ "sF": "23", "sU": "22", "spread": "2", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.25, + "sF": 20.25 + }, + "week": "2011 Regular Season - Week 17" }, { "date": "Jan 1, 2012", @@ -119439,7 +176917,12 @@ "sF": "19", "sU": "17", "spread": "2", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.5, + "sF": 20.5 + }, + "week": "2011 Regular Season - Week 17" }, { "date": "Jan 1, 2012", @@ -119449,7 +176932,12 @@ "sF": "49", "sU": "21", "spread": "10", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 20.0, + "sF": 30.0 + }, + "week": "2011 Regular Season - Week 17" }, { "date": "Jan 1, 2012", @@ -119459,7 +176947,12 @@ "sF": "34", "sU": "10", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "2011 Regular Season - Week 17" }, { "date": "Jan 1, 2012", @@ -119469,7 +176962,12 @@ "sF": "19", "sU": "13", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2011 Regular Season - Week 17" }, { "date": "Jan 1, 2012", @@ -119479,7 +176977,12 @@ "sF": "45", "sU": "17", "spread": "7", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 24.0, + "sF": 31.0 + }, + "week": "2011 Regular Season - Week 17" }, { "date": "Jan 1, 2012", @@ -119488,8 +176991,13 @@ "und": "Chicago Bears", "sF": "13", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "2011 Regular Season - Week 17" }, { "date": "Jan 1, 2012", @@ -119498,8 +177006,13 @@ "und": "Seattle Seahawks", "sF": "23", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "2011 Regular Season - Week 17" }, { "date": "Jan 1, 2012", @@ -119509,7 +177022,12 @@ "sF": "26", "sU": "38", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2011 Regular Season - Week 17" }, { "date": "Jan 1, 2012", @@ -119518,8 +177036,13 @@ "und": "Cincinnati Bengals", "sF": "24", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "2011 Regular Season - Week 17" }, { "date": "Jan 1, 2012", @@ -119529,7 +177052,12 @@ "sF": "13", "sU": "9", "spread": "7", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 13.0, + "sF": 20.0 + }, + "week": "2011 Regular Season - Week 17" }, { "date": "Jan 1, 2012", @@ -119539,7 +177067,12 @@ "sF": "3", "sU": "7", "spread": "2", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.75, + "sF": 19.75 + }, + "week": "2011 Regular Season - Week 17" }, { "date": "Jan 1, 2012", @@ -119548,8 +177081,13 @@ "und": "Tampa Bay Buccaneers", "sF": "45", "sU": "24", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 45.0, + "pScore": { + "sU": 17.75, + "sF": 27.25 + }, + "week": "2011 Regular Season - Week 17" }, { "date": "Jan 1, 2012", @@ -119559,7 +177097,12 @@ "sF": "31", "sU": "14", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2011 Regular Season - Week 17" }, { "date": "Jan 7, 2012", @@ -119569,7 +177112,12 @@ "sF": "31", "sU": "10", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "2011 Playoffs" }, { "date": "Jan 7, 2012", @@ -119578,8 +177126,13 @@ "und": "Detroit Lions (6)", "sF": "45", "sU": "28", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 60.0, + "pScore": { + "sU": 24.75, + "sF": 35.25 + }, + "week": "2011 Playoffs" }, { "date": "Jan 8, 2012", @@ -119589,7 +177142,12 @@ "sF": "24", "sU": "2", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2011 Playoffs" }, { "date": "Jan 8, 2012", @@ -119598,8 +177156,13 @@ "und": "Denver Broncos (4)", "sF": "23", "sU": "29", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 34.0, + "pScore": { + "sU": 13.25, + "sF": 20.75 + }, + "week": "2011 Playoffs" }, { "date": "Jan 14, 2012", @@ -119608,12 +177171,13 @@ "und": "San Francisco 49ers (2)", "sF": "32", "sU": "36", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": 47.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 21.75, + "sF": 25.25 + }, + "week": "2011 Playoffs" }, { "date": "Jan 14, 2012", @@ -119622,8 +177186,13 @@ "und": "Denver Broncos (4)", "sF": "45", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 50.0, + "pScore": { + "sU": 18.25, + "sF": 31.75 + }, + "week": "2011 Playoffs" }, { "date": "Jan 15, 2012", @@ -119633,7 +177202,12 @@ "sF": "20", "sU": "13", "spread": "8", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 14.75, + "sF": 22.75 + }, + "week": "2011 Playoffs" }, { "date": "Jan 15, 2012", @@ -119643,7 +177217,12 @@ "sF": "20", "sU": "37", "spread": "8", - "ou": -1 + "ou": 54.5, + "pScore": { + "sU": 23.25, + "sF": 31.25 + }, + "week": "2011 Playoffs" }, { "date": "Jan 22, 2012", @@ -119653,7 +177232,12 @@ "sF": "23", "sU": "20", "spread": "7", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 21.5, + "sF": 28.5 + }, + "week": "2011 Playoffs" }, { "date": "Jan 22, 2012", @@ -119663,7 +177247,12 @@ "sF": "17", "sU": "20", "spread": "2", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.75, + "sF": 21.75 + }, + "week": "2011 Playoffs" }, { "date": "Feb 5, 2012", @@ -119673,7 +177262,12 @@ "sF": "17", "sU": "21", "spread": "3", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 25.0, + "sF": 28.0 + }, + "week": "2011 Playoffs" }, { "date": "Sep 5, 2012", @@ -119683,7 +177277,12 @@ "sF": "17", "sU": "24", "spread": "4", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.0, + "sF": 25.0 + }, + "week": "2012 Regular Season - Week 1" }, { "date": "Sep 9, 2012", @@ -119693,7 +177292,12 @@ "sF": "41", "sU": "21", "spread": "10", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 16.25, + "sF": 26.25 + }, + "week": "2012 Regular Season - Week 1" }, { "date": "Sep 9, 2012", @@ -119702,8 +177306,13 @@ "und": "Cleveland Browns", "sF": "17", "sU": "16", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.0, + "pScore": { + "sU": 16.25, + "sF": 25.75 + }, + "week": "2012 Regular Season - Week 1" }, { "date": "Sep 9, 2012", @@ -119713,7 +177322,12 @@ "sF": "27", "sU": "23", "spread": "9", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 18.75, + "sF": 27.75 + }, + "week": "2012 Regular Season - Week 1" }, { "date": "Sep 9, 2012", @@ -119722,8 +177336,13 @@ "und": "Miami Dolphins", "sF": "30", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 41.5, + "pScore": { + "sU": 14.0, + "sF": 27.5 + }, + "week": "2012 Regular Season - Week 1" }, { "date": "Sep 9, 2012", @@ -119732,8 +177351,13 @@ "und": "Kansas City Chiefs", "sF": "40", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2012 Regular Season - Week 1" }, { "date": "Sep 9, 2012", @@ -119743,7 +177367,12 @@ "sF": "32", "sU": "40", "spread": "9", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 20.75, + "sF": 29.75 + }, + "week": "2012 Regular Season - Week 1" }, { "date": "Sep 9, 2012", @@ -119753,7 +177382,12 @@ "sF": "48", "sU": "28", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2012 Regular Season - Week 1" }, { "date": "Sep 9, 2012", @@ -119762,8 +177396,13 @@ "und": "Tennessee Titans", "sF": "34", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.0, + "pScore": { + "sU": 20.75, + "sF": 27.25 + }, + "week": "2012 Regular Season - Week 1" }, { "date": "Sep 9, 2012", @@ -119772,8 +177411,13 @@ "und": "Jacksonville Jaguars", "sF": "26", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "2012 Regular Season - Week 1" }, { "date": "Sep 9, 2012", @@ -119783,7 +177427,12 @@ "sF": "16", "sU": "20", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2012 Regular Season - Week 1" }, { "date": "Sep 9, 2012", @@ -119792,12 +177441,13 @@ "und": "San Francisco 49ers", "sF": "22", "sU": "30", - "spread": "5", - "ou": "49", + "spread": "5.5", + "ou": 46.5, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 20.5, + "sF": 26.0 + }, + "week": "2012 Regular Season - Week 1" }, { "date": "Sep 9, 2012", @@ -119807,7 +177457,12 @@ "sF": "10", "sU": "16", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2012 Regular Season - Week 1" }, { "date": "Sep 9, 2012", @@ -119817,7 +177472,12 @@ "sF": "31", "sU": "19", "spread": "2", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.75, + "sF": 23.75 + }, + "week": "2012 Regular Season - Week 1" }, { "date": "Sep 10, 2012", @@ -119827,7 +177487,12 @@ "sF": "44", "sU": "13", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2012 Regular Season - Week 1" }, { "date": "Sep 10, 2012", @@ -119837,7 +177502,12 @@ "sF": "14", "sU": "22", "spread": "1", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 23.25, + "sF": 24.25 + }, + "week": "2012 Regular Season - Week 1" }, { "date": "Sep 13, 2012", @@ -119846,8 +177516,13 @@ "und": "Chicago Bears", "sF": "23", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 51.0, + "pScore": { + "sU": 22.75, + "sF": 28.25 + }, + "week": "2012 Regular Season - Week 2" }, { "date": "Sep 16, 2012", @@ -119857,7 +177532,12 @@ "sF": "35", "sU": "17", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2012 Regular Season - Week 2" }, { "date": "Sep 16, 2012", @@ -119867,7 +177547,12 @@ "sF": "34", "sU": "27", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "2012 Regular Season - Week 2" }, { "date": "Sep 16, 2012", @@ -119877,7 +177562,12 @@ "sF": "13", "sU": "35", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "2012 Regular Season - Week 2" }, { "date": "Sep 16, 2012", @@ -119886,8 +177576,13 @@ "und": "Arizona Cardinals", "sF": "18", "sU": "20", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 47.0, + "pScore": { + "sU": 16.75, + "sF": 30.25 + }, + "week": "2012 Regular Season - Week 2" }, { "date": "Sep 16, 2012", @@ -119897,7 +177592,12 @@ "sF": "27", "sU": "35", "spread": "3", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 25.5, + "sF": 28.5 + }, + "week": "2012 Regular Season - Week 2" }, { "date": "Sep 16, 2012", @@ -119907,7 +177607,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2012 Regular Season - Week 2" }, { "date": "Sep 16, 2012", @@ -119917,7 +177622,12 @@ "sF": "27", "sU": "7", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "2012 Regular Season - Week 2" }, { "date": "Sep 16, 2012", @@ -119927,7 +177637,12 @@ "sF": "41", "sU": "34", "spread": "8", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 17.75, + "sF": 25.75 + }, + "week": "2012 Regular Season - Week 2" }, { "date": "Sep 16, 2012", @@ -119937,7 +177652,12 @@ "sF": "24", "sU": "23", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2012 Regular Season - Week 2" }, { "date": "Sep 16, 2012", @@ -119946,8 +177666,13 @@ "und": "St Louis Rams", "sF": "28", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2012 Regular Season - Week 2" }, { "date": "Sep 16, 2012", @@ -119957,7 +177682,12 @@ "sF": "7", "sU": "27", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2012 Regular Season - Week 2" }, { "date": "Sep 16, 2012", @@ -119966,8 +177696,13 @@ "und": "New York Jets", "sF": "27", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "2012 Regular Season - Week 2" }, { "date": "Sep 16, 2012", @@ -119977,7 +177712,12 @@ "sF": "38", "sU": "10", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "2012 Regular Season - Week 2" }, { "date": "Sep 16, 2012", @@ -119987,7 +177727,12 @@ "sF": "27", "sU": "19", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "2012 Regular Season - Week 2" }, { "date": "Sep 17, 2012", @@ -119997,7 +177742,12 @@ "sF": "27", "sU": "21", "spread": "3", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 23.75, + "sF": 26.75 + }, + "week": "2012 Regular Season - Week 2" }, { "date": "Sep 20, 2012", @@ -120007,7 +177757,12 @@ "sF": "7", "sU": "36", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2012 Regular Season - Week 3" }, { "date": "Sep 23, 2012", @@ -120017,7 +177772,12 @@ "sF": "24", "sU": "14", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2012 Regular Season - Week 3" }, { "date": "Sep 23, 2012", @@ -120026,8 +177786,13 @@ "und": "Kansas City Chiefs", "sF": "24", "sU": "27", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 51.5, + "pScore": { + "sU": 21.5, + "sF": 30.0 + }, + "week": "2012 Regular Season - Week 3" }, { "date": "Sep 23, 2012", @@ -120037,7 +177802,12 @@ "sF": "17", "sU": "22", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2012 Regular Season - Week 3" }, { "date": "Sep 23, 2012", @@ -120047,7 +177817,12 @@ "sF": "23", "sU": "20", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2012 Regular Season - Week 3" }, { "date": "Sep 23, 2012", @@ -120057,7 +177832,12 @@ "sF": "41", "sU": "44", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "2012 Regular Season - Week 3" }, { "date": "Sep 23, 2012", @@ -120067,7 +177847,12 @@ "sF": "31", "sU": "38", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "2012 Regular Season - Week 3" }, { "date": "Sep 23, 2012", @@ -120077,7 +177862,12 @@ "sF": "23", "sU": "6", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "2012 Regular Season - Week 3" }, { "date": "Sep 23, 2012", @@ -120087,7 +177877,12 @@ "sF": "16", "sU": "10", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "2012 Regular Season - Week 3" }, { "date": "Sep 23, 2012", @@ -120097,7 +177892,12 @@ "sF": "13", "sU": "24", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "2012 Regular Season - Week 3" }, { "date": "Sep 23, 2012", @@ -120107,7 +177907,12 @@ "sF": "6", "sU": "27", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2012 Regular Season - Week 3" }, { "date": "Sep 23, 2012", @@ -120117,7 +177922,12 @@ "sF": "3", "sU": "27", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2012 Regular Season - Week 3" }, { "date": "Sep 23, 2012", @@ -120126,8 +177936,13 @@ "und": "Denver Broncos", "sF": "31", "sU": "25", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.5, + "pScore": { + "sU": 21.0, + "sF": 22.5 + }, + "week": "2012 Regular Season - Week 3" }, { "date": "Sep 23, 2012", @@ -120137,7 +177952,12 @@ "sF": "31", "sU": "34", "spread": "4", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.5, + "sF": 24.5 + }, + "week": "2012 Regular Season - Week 3" }, { "date": "Sep 23, 2012", @@ -120147,7 +177967,12 @@ "sF": "31", "sU": "30", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2012 Regular Season - Week 3" }, { "date": "Sep 24, 2012", @@ -120156,8 +177981,13 @@ "und": "Seattle Seahawks", "sF": "12", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "2012 Regular Season - Week 3" }, { "date": "Sep 27, 2012", @@ -120166,8 +177996,13 @@ "und": "Cleveland Browns", "sF": "23", "sU": "16", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 43.5, + "pScore": { + "sU": 16.0, + "sF": 27.5 + }, + "week": "2012 Regular Season - Week 4" }, { "date": "Sep 30, 2012", @@ -120176,8 +178011,13 @@ "und": "St Louis Rams", "sF": "13", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "2012 Regular Season - Week 4" }, { "date": "Sep 30, 2012", @@ -120186,8 +178026,13 @@ "und": "Buffalo Bills", "sF": "52", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.5, + "pScore": { + "sU": 22.0, + "sF": 26.5 + }, + "week": "2012 Regular Season - Week 4" }, { "date": "Sep 30, 2012", @@ -120197,7 +178042,12 @@ "sF": "30", "sU": "28", "spread": "7", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.5, + "sF": 27.5 + }, + "week": "2012 Regular Season - Week 4" }, { "date": "Sep 30, 2012", @@ -120207,7 +178057,12 @@ "sF": "13", "sU": "20", "spread": "4", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.25, + "sF": 26.25 + }, + "week": "2012 Regular Season - Week 4" }, { "date": "Sep 30, 2012", @@ -120216,8 +178071,13 @@ "und": "Tennessee Titans", "sF": "38", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 45.0, + "pScore": { + "sU": 15.75, + "sF": 29.25 + }, + "week": "2012 Regular Season - Week 4" }, { "date": "Sep 30, 2012", @@ -120226,8 +178086,13 @@ "und": "Kansas City Chiefs", "sF": "37", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2012 Regular Season - Week 4" }, { "date": "Sep 30, 2012", @@ -120237,7 +178102,12 @@ "sF": "34", "sU": "0", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "2012 Regular Season - Week 4" }, { "date": "Sep 30, 2012", @@ -120247,7 +178117,12 @@ "sF": "24", "sU": "21", "spread": "4", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 17.75, + "sF": 21.75 + }, + "week": "2012 Regular Season - Week 4" }, { "date": "Sep 30, 2012", @@ -120256,8 +178131,13 @@ "und": "Oakland Raiders", "sF": "37", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "2012 Regular Season - Week 4" }, { "date": "Sep 30, 2012", @@ -120266,8 +178146,13 @@ "und": "Cincinnati Bengals", "sF": "10", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.5, + "pScore": { + "sU": 22.0, + "sF": 23.5 + }, + "week": "2012 Regular Season - Week 4" }, { "date": "Sep 30, 2012", @@ -120276,8 +178161,13 @@ "und": "New Orleans Saints", "sF": "28", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 54.0, + "pScore": { + "sU": 23.25, + "sF": 30.75 + }, + "week": "2012 Regular Season - Week 4" }, { "date": "Sep 30, 2012", @@ -120287,7 +178177,12 @@ "sF": "22", "sU": "24", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "2012 Regular Season - Week 4" }, { "date": "Sep 30, 2012", @@ -120296,8 +178191,13 @@ "und": "New York Giants", "sF": "19", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.5, + "pScore": { + "sU": 22.5, + "sF": 24.0 + }, + "week": "2012 Regular Season - Week 4" }, { "date": "Oct 1, 2012", @@ -120307,7 +178207,12 @@ "sF": "18", "sU": "34", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2012 Regular Season - Week 4" }, { "date": "Oct 4, 2012", @@ -120316,8 +178221,13 @@ "und": "St Louis Rams", "sF": "3", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "2012 Regular Season - Week 5" }, { "date": "Oct 7, 2012", @@ -120326,8 +178236,13 @@ "und": "Kansas City Chiefs", "sF": "9", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "2012 Regular Season - Week 5" }, { "date": "Oct 7, 2012", @@ -120337,7 +178252,12 @@ "sF": "41", "sU": "27", "spread": "8", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.0, + "sF": 26.0 + }, + "week": "2012 Regular Season - Week 5" }, { "date": "Oct 7, 2012", @@ -120347,7 +178267,12 @@ "sF": "16", "sU": "14", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2012 Regular Season - Week 5" }, { "date": "Oct 7, 2012", @@ -120357,7 +178282,12 @@ "sF": "13", "sU": "17", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2012 Regular Season - Week 5" }, { "date": "Oct 7, 2012", @@ -120366,8 +178296,13 @@ "und": "Indianapolis Colts", "sF": "27", "sU": "30", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.0, + "pScore": { + "sU": 21.25, + "sF": 27.75 + }, + "week": "2012 Regular Season - Week 5" }, { "date": "Oct 7, 2012", @@ -120377,7 +178312,12 @@ "sF": "24", "sU": "17", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2012 Regular Season - Week 5" }, { "date": "Oct 7, 2012", @@ -120387,7 +178327,12 @@ "sF": "12", "sU": "16", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "2012 Regular Season - Week 5" }, { "date": "Oct 7, 2012", @@ -120396,8 +178341,13 @@ "und": "Jacksonville Jaguars", "sF": "41", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "2012 Regular Season - Week 5" }, { "date": "Oct 7, 2012", @@ -120407,7 +178357,12 @@ "sF": "30", "sU": "7", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2012 Regular Season - Week 5" }, { "date": "Oct 7, 2012", @@ -120417,7 +178372,12 @@ "sF": "31", "sU": "21", "spread": "6", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 22.75, + "sF": 28.75 + }, + "week": "2012 Regular Season - Week 5" }, { "date": "Oct 7, 2012", @@ -120427,7 +178387,12 @@ "sF": "45", "sU": "3", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "2012 Regular Season - Week 5" }, { "date": "Oct 7, 2012", @@ -120436,8 +178401,13 @@ "und": "San Diego Chargers", "sF": "31", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 52.5, + "pScore": { + "sU": 24.5, + "sF": 28.0 + }, + "week": "2012 Regular Season - Week 5" }, { "date": "Oct 8, 2012", @@ -120447,7 +178417,12 @@ "sF": "23", "sU": "17", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "2012 Regular Season - Week 5" }, { "date": "Oct 11, 2012", @@ -120456,8 +178431,13 @@ "und": "Tennessee Titans", "sF": "23", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "2012 Regular Season - Week 6" }, { "date": "Oct 14, 2012", @@ -120467,7 +178447,12 @@ "sF": "17", "sU": "14", "spread": "5", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.5, + "sF": 21.5 + }, + "week": "2012 Regular Season - Week 6" }, { "date": "Oct 14, 2012", @@ -120477,7 +178462,12 @@ "sF": "38", "sU": "10", "spread": "5", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 17.25, + "sF": 22.25 + }, + "week": "2012 Regular Season - Week 6" }, { "date": "Oct 14, 2012", @@ -120487,7 +178477,12 @@ "sF": "23", "sU": "20", "spread": "10", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 19.5, + "sF": 29.5 + }, + "week": "2012 Regular Season - Week 6" }, { "date": "Oct 14, 2012", @@ -120497,7 +178492,12 @@ "sF": "31", "sU": "29", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2012 Regular Season - Week 6" }, { "date": "Oct 14, 2012", @@ -120507,7 +178507,12 @@ "sF": "24", "sU": "34", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "2012 Regular Season - Week 6" }, { "date": "Oct 14, 2012", @@ -120517,7 +178522,12 @@ "sF": "35", "sU": "9", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2012 Regular Season - Week 6" }, { "date": "Oct 14, 2012", @@ -120526,8 +178536,13 @@ "und": "Detroit Lions", "sF": "23", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2012 Regular Season - Week 6" }, { "date": "Oct 14, 2012", @@ -120537,7 +178552,12 @@ "sF": "23", "sU": "24", "spread": "4", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.25, + "sF": 23.25 + }, + "week": "2012 Regular Season - Week 6" }, { "date": "Oct 14, 2012", @@ -120547,7 +178567,12 @@ "sF": "16", "sU": "19", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "2012 Regular Season - Week 6" }, { "date": "Oct 14, 2012", @@ -120557,7 +178582,12 @@ "sF": "3", "sU": "26", "spread": "7", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.75, + "sF": 26.75 + }, + "week": "2012 Regular Season - Week 6" }, { "date": "Oct 14, 2012", @@ -120567,7 +178597,12 @@ "sF": "26", "sU": "38", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "2012 Regular Season - Week 6" }, { "date": "Oct 14, 2012", @@ -120577,7 +178612,12 @@ "sF": "24", "sU": "42", "spread": "4", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.25, + "sF": 25.25 + }, + "week": "2012 Regular Season - Week 6" }, { "date": "Oct 18, 2012", @@ -120586,8 +178626,13 @@ "und": "Seattle Seahawks", "sF": "13", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.5, + "pScore": { + "sU": 15.0, + "sF": 22.5 + }, + "week": "2012 Regular Season - Week 7" }, { "date": "Oct 21, 2012", @@ -120597,7 +178642,12 @@ "sF": "30", "sU": "20", "spread": "5", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.0, + "sF": 25.0 + }, + "week": "2012 Regular Season - Week 7" }, { "date": "Oct 21, 2012", @@ -120606,8 +178656,13 @@ "und": "Tennessee Titans", "sF": "34", "sU": "35", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.5, + "pScore": { + "sU": 21.0, + "sF": 25.5 + }, + "week": "2012 Regular Season - Week 7" }, { "date": "Oct 21, 2012", @@ -120616,8 +178671,13 @@ "und": "Baltimore Ravens", "sF": "43", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.5, + "pScore": { + "sU": 20.5, + "sF": 27.0 + }, + "week": "2012 Regular Season - Week 7" }, { "date": "Oct 21, 2012", @@ -120627,7 +178687,12 @@ "sF": "17", "sU": "13", "spread": "1", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.75, + "sF": 23.75 + }, + "week": "2012 Regular Season - Week 7" }, { "date": "Oct 21, 2012", @@ -120636,8 +178701,13 @@ "und": "Tampa Bay Buccaneers", "sF": "35", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 49.5, + "pScore": { + "sU": 24.0, + "sF": 25.5 + }, + "week": "2012 Regular Season - Week 7" }, { "date": "Oct 21, 2012", @@ -120646,8 +178716,13 @@ "und": "Carolina Panthers", "sF": "19", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "2012 Regular Season - Week 7" }, { "date": "Oct 21, 2012", @@ -120656,8 +178731,13 @@ "und": "Washington Redskins", "sF": "27", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 51.5, + "pScore": { + "sU": 22.5, + "sF": 29.0 + }, + "week": "2012 Regular Season - Week 7" }, { "date": "Oct 21, 2012", @@ -120666,8 +178746,13 @@ "und": "Arizona Cardinals", "sF": "21", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "2012 Regular Season - Week 7" }, { "date": "Oct 21, 2012", @@ -120676,8 +178761,13 @@ "und": "New York Jets", "sF": "29", "sU": "26", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 47.0, + "pScore": { + "sU": 18.25, + "sF": 28.75 + }, + "week": "2012 Regular Season - Week 7" }, { "date": "Oct 21, 2012", @@ -120687,7 +178777,12 @@ "sF": "26", "sU": "23", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2012 Regular Season - Week 7" }, { "date": "Oct 21, 2012", @@ -120697,7 +178792,12 @@ "sF": "17", "sU": "24", "spread": "1", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 22.25, + "sF": 23.25 + }, + "week": "2012 Regular Season - Week 7" }, { "date": "Oct 22, 2012", @@ -120706,8 +178806,13 @@ "und": "Detroit Lions", "sF": "13", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "2012 Regular Season - Week 7" }, { "date": "Oct 25, 2012", @@ -120716,8 +178821,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "36", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "2012 Regular Season - Week 8" }, { "date": "Oct 28, 2012", @@ -120726,8 +178836,13 @@ "und": "Washington Redskins", "sF": "27", "sU": "12", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.0, + "pScore": { + "sU": 19.75, + "sF": 24.25 + }, + "week": "2012 Regular Season - Week 8" }, { "date": "Oct 28, 2012", @@ -120736,8 +178851,13 @@ "und": "Carolina Panthers", "sF": "23", "sU": "22", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.5, + "pScore": { + "sU": 17.0, + "sF": 24.5 + }, + "week": "2012 Regular Season - Week 8" }, { "date": "Oct 28, 2012", @@ -120747,7 +178867,12 @@ "sF": "28", "sU": "24", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2012 Regular Season - Week 8" }, { "date": "Oct 28, 2012", @@ -120757,7 +178882,12 @@ "sF": "17", "sU": "30", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2012 Regular Season - Week 8" }, { "date": "Oct 28, 2012", @@ -120767,7 +178897,12 @@ "sF": "24", "sU": "15", "spread": "16", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 14.75, + "sF": 30.75 + }, + "week": "2012 Regular Season - Week 8" }, { "date": "Oct 28, 2012", @@ -120777,7 +178912,12 @@ "sF": "6", "sU": "7", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2012 Regular Season - Week 8" }, { "date": "Oct 28, 2012", @@ -120787,7 +178927,12 @@ "sF": "45", "sU": "7", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "2012 Regular Season - Week 8" }, { "date": "Oct 28, 2012", @@ -120797,7 +178942,12 @@ "sF": "9", "sU": "30", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "2012 Regular Season - Week 8" }, { "date": "Oct 28, 2012", @@ -120807,7 +178957,12 @@ "sF": "13", "sU": "19", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2012 Regular Season - Week 8" }, { "date": "Oct 28, 2012", @@ -120817,7 +178972,12 @@ "sF": "16", "sU": "26", "spread": "1", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.75, + "sF": 21.75 + }, + "week": "2012 Regular Season - Week 8" }, { "date": "Oct 28, 2012", @@ -120826,8 +178986,13 @@ "und": "Dallas Cowboys", "sF": "29", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.0, + "pScore": { + "sU": 22.75, + "sF": 25.25 + }, + "week": "2012 Regular Season - Week 8" }, { "date": "Oct 28, 2012", @@ -120836,8 +179001,13 @@ "und": "New Orleans Saints", "sF": "34", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 55.0, + "pScore": { + "sU": 24.25, + "sF": 30.75 + }, + "week": "2012 Regular Season - Week 8" }, { "date": "Oct 29, 2012", @@ -120847,7 +179017,12 @@ "sF": "24", "sU": "3", "spread": "7", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.75, + "sF": 22.75 + }, + "week": "2012 Regular Season - Week 8" }, { "date": "Nov 1, 2012", @@ -120857,7 +179032,12 @@ "sF": "31", "sU": "13", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "2012 Regular Season - Week 9" }, { "date": "Nov 4, 2012", @@ -120866,8 +179046,13 @@ "und": "Cincinnati Bengals", "sF": "31", "sU": "23", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.5, + "pScore": { + "sU": 21.0, + "sF": 26.5 + }, + "week": "2012 Regular Season - Week 9" }, { "date": "Nov 4, 2012", @@ -120876,8 +179061,13 @@ "und": "Arizona Cardinals", "sF": "31", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.5, + "pScore": { + "sU": 16.5, + "sF": 27.0 + }, + "week": "2012 Regular Season - Week 9" }, { "date": "Nov 4, 2012", @@ -120886,8 +179076,13 @@ "und": "Buffalo Bills", "sF": "21", "sU": "9", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 48.0, + "pScore": { + "sU": 18.25, + "sF": 29.75 + }, + "week": "2012 Regular Season - Week 9" }, { "date": "Nov 4, 2012", @@ -120897,7 +179092,12 @@ "sF": "20", "sU": "23", "spread": "2", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.75, + "sF": 22.75 + }, + "week": "2012 Regular Season - Week 9" }, { "date": "Nov 4, 2012", @@ -120906,8 +179106,13 @@ "und": "Cleveland Browns", "sF": "25", "sU": "15", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2012 Regular Season - Week 9" }, { "date": "Nov 4, 2012", @@ -120917,7 +179122,12 @@ "sF": "31", "sU": "14", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2012 Regular Season - Week 9" }, { "date": "Nov 4, 2012", @@ -120927,7 +179137,12 @@ "sF": "51", "sU": "20", "spread": "5", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.25, + "sF": 24.25 + }, + "week": "2012 Regular Season - Week 9" }, { "date": "Nov 4, 2012", @@ -120937,7 +179152,12 @@ "sF": "13", "sU": "21", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2012 Regular Season - Week 9" }, { "date": "Nov 4, 2012", @@ -120947,7 +179167,12 @@ "sF": "32", "sU": "42", "spread": "1", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 23.25, + "sF": 24.25 + }, + "week": "2012 Regular Season - Week 9" }, { "date": "Nov 4, 2012", @@ -120957,7 +179182,12 @@ "sF": "30", "sU": "20", "spread": "4", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.25, + "sF": 21.25 + }, + "week": "2012 Regular Season - Week 9" }, { "date": "Nov 4, 2012", @@ -120966,8 +179196,13 @@ "und": "Pittsburgh Steelers", "sF": "20", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2012 Regular Season - Week 9" }, { "date": "Nov 4, 2012", @@ -120976,8 +179211,13 @@ "und": "Dallas Cowboys", "sF": "19", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.5, + "pScore": { + "sU": 21.5, + "sF": 26.0 + }, + "week": "2012 Regular Season - Week 9" }, { "date": "Nov 5, 2012", @@ -120987,7 +179227,12 @@ "sF": "28", "sU": "13", "spread": "3", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 24.5, + "sF": 27.5 + }, + "week": "2012 Regular Season - Week 9" }, { "date": "Nov 8, 2012", @@ -120996,8 +179241,13 @@ "und": "Jacksonville Jaguars", "sF": "27", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2012 Regular Season - Week 10" }, { "date": "Nov 11, 2012", @@ -121006,8 +179256,13 @@ "und": "Oakland Raiders", "sF": "55", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.5, + "pScore": { + "sU": 20.0, + "sF": 27.5 + }, + "week": "2012 Regular Season - Week 10" }, { "date": "Nov 11, 2012", @@ -121017,7 +179272,12 @@ "sF": "36", "sU": "14", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "2012 Regular Season - Week 10" }, { "date": "Nov 11, 2012", @@ -121026,8 +179286,13 @@ "und": "Buffalo Bills", "sF": "37", "sU": "31", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 54.0, + "pScore": { + "sU": 20.25, + "sF": 33.75 + }, + "week": "2012 Regular Season - Week 10" }, { "date": "Nov 11, 2012", @@ -121036,8 +179301,13 @@ "und": "New Orleans Saints", "sF": "27", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 54.0, + "pScore": { + "sU": 26.25, + "sF": 27.75 + }, + "week": "2012 Regular Season - Week 10" }, { "date": "Nov 11, 2012", @@ -121046,8 +179316,13 @@ "und": "Cincinnati Bengals", "sF": "13", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.5, + "pScore": { + "sU": 21.5, + "sF": 26.0 + }, + "week": "2012 Regular Season - Week 10" }, { "date": "Nov 11, 2012", @@ -121057,7 +179332,12 @@ "sF": "3", "sU": "37", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2012 Regular Season - Week 10" }, { "date": "Nov 11, 2012", @@ -121067,7 +179347,12 @@ "sF": "34", "sU": "24", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2012 Regular Season - Week 10" }, { "date": "Nov 11, 2012", @@ -121077,7 +179362,12 @@ "sF": "24", "sU": "34", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2012 Regular Season - Week 10" }, { "date": "Nov 11, 2012", @@ -121086,8 +179376,13 @@ "und": "New York Jets", "sF": "28", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.5, + "pScore": { + "sU": 16.5, + "sF": 22.0 + }, + "week": "2012 Regular Season - Week 10" }, { "date": "Nov 11, 2012", @@ -121096,8 +179391,13 @@ "und": "Philadelphia Eagles", "sF": "38", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2012 Regular Season - Week 10" }, { "date": "Nov 11, 2012", @@ -121107,7 +179407,12 @@ "sF": "24", "sU": "24", "spread": "13", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 12.5, + "sF": 25.5 + }, + "week": "2012 Regular Season - Week 10" }, { "date": "Nov 11, 2012", @@ -121117,7 +179422,12 @@ "sF": "6", "sU": "13", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "2012 Regular Season - Week 10" }, { "date": "Nov 12, 2012", @@ -121127,7 +179437,12 @@ "sF": "16", "sU": "13", "spread": "13", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 13.5, + "sF": 26.5 + }, + "week": "2012 Regular Season - Week 10" }, { "date": "Nov 15, 2012", @@ -121136,8 +179451,13 @@ "und": "Miami Dolphins", "sF": "19", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "2012 Regular Season - Week 11" }, { "date": "Nov 18, 2012", @@ -121146,8 +179466,13 @@ "und": "New York Jets", "sF": "13", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "2012 Regular Season - Week 11" }, { "date": "Nov 18, 2012", @@ -121157,7 +179482,12 @@ "sF": "24", "sU": "20", "spread": "3", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 25.25, + "sF": 28.25 + }, + "week": "2012 Regular Season - Week 11" }, { "date": "Nov 18, 2012", @@ -121166,8 +179496,13 @@ "und": "Arizona Cardinals", "sF": "23", "sU": "19", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.0, + "pScore": { + "sU": 17.25, + "sF": 26.75 + }, + "week": "2012 Regular Season - Week 11" }, { "date": "Nov 18, 2012", @@ -121176,8 +179511,13 @@ "und": "Jacksonville Jaguars", "sF": "43", "sU": "37", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 40.5, + "pScore": { + "sU": 12.5, + "sF": 28.0 + }, + "week": "2012 Regular Season - Week 11" }, { "date": "Nov 18, 2012", @@ -121187,7 +179527,12 @@ "sF": "28", "sU": "6", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2012 Regular Season - Week 11" }, { "date": "Nov 18, 2012", @@ -121196,8 +179541,13 @@ "und": "Philadelphia Eagles", "sF": "31", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2012 Regular Season - Week 11" }, { "date": "Nov 18, 2012", @@ -121206,8 +179556,13 @@ "und": "Carolina Panthers", "sF": "27", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.0, + "pScore": { + "sU": 22.75, + "sF": 24.25 + }, + "week": "2012 Regular Season - Week 11" }, { "date": "Nov 18, 2012", @@ -121217,7 +179572,12 @@ "sF": "23", "sU": "20", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2012 Regular Season - Week 11" }, { "date": "Nov 18, 2012", @@ -121226,8 +179586,13 @@ "und": "Oakland Raiders", "sF": "38", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 56.0, + "pScore": { + "sU": 24.75, + "sF": 31.25 + }, + "week": "2012 Regular Season - Week 11" }, { "date": "Nov 18, 2012", @@ -121236,8 +179601,13 @@ "und": "San Diego Chargers", "sF": "30", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2012 Regular Season - Week 11" }, { "date": "Nov 18, 2012", @@ -121247,7 +179617,12 @@ "sF": "59", "sU": "24", "spread": "10", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 22.5, + "sF": 32.5 + }, + "week": "2012 Regular Season - Week 11" }, { "date": "Nov 18, 2012", @@ -121257,7 +179632,12 @@ "sF": "13", "sU": "10", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2012 Regular Season - Week 11" }, { "date": "Nov 19, 2012", @@ -121267,7 +179647,12 @@ "sF": "32", "sU": "7", "spread": "5", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 15.0, + "sF": 20.0 + }, + "week": "2012 Regular Season - Week 11" }, { "date": "Nov 22, 2012", @@ -121277,7 +179662,12 @@ "sF": "34", "sU": "31", "spread": "4", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 22.5, + "sF": 26.5 + }, + "week": "2012 Regular Season - Week 12" }, { "date": "Nov 22, 2012", @@ -121286,8 +179676,13 @@ "und": "Washington Redskins", "sF": "31", "sU": "38", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2012 Regular Season - Week 12" }, { "date": "Nov 22, 2012", @@ -121297,7 +179692,12 @@ "sF": "49", "sU": "19", "spread": "7", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 20.75, + "sF": 27.75 + }, + "week": "2012 Regular Season - Week 12" }, { "date": "Nov 25, 2012", @@ -121306,8 +179706,13 @@ "und": "Minnesota Vikings", "sF": "28", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "2012 Regular Season - Week 12" }, { "date": "Nov 25, 2012", @@ -121317,7 +179722,12 @@ "sF": "34", "sU": "10", "spread": "8", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 21.5, + "sF": 29.5 + }, + "week": "2012 Regular Season - Week 12" }, { "date": "Nov 25, 2012", @@ -121327,7 +179737,12 @@ "sF": "14", "sU": "20", "spread": "2", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 15.75, + "sF": 17.75 + }, + "week": "2012 Regular Season - Week 12" }, { "date": "Nov 25, 2012", @@ -121336,8 +179751,13 @@ "und": "Tampa Bay Buccaneers", "sF": "24", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 51.5, + "pScore": { + "sU": 25.0, + "sF": 26.5 + }, + "week": "2012 Regular Season - Week 12" }, { "date": "Nov 25, 2012", @@ -121347,7 +179767,12 @@ "sF": "20", "sU": "13", "spread": "3", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 24.25, + "sF": 27.25 + }, + "week": "2012 Regular Season - Week 12" }, { "date": "Nov 25, 2012", @@ -121356,8 +179781,13 @@ "und": "Jacksonville Jaguars", "sF": "19", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2012 Regular Season - Week 12" }, { "date": "Nov 25, 2012", @@ -121366,8 +179796,13 @@ "und": "Kansas City Chiefs", "sF": "17", "sU": "9", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 42.5, + "pScore": { + "sU": 16.0, + "sF": 26.5 + }, + "week": "2012 Regular Season - Week 12" }, { "date": "Nov 25, 2012", @@ -121377,7 +179812,12 @@ "sF": "21", "sU": "24", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2012 Regular Season - Week 12" }, { "date": "Nov 25, 2012", @@ -121387,7 +179827,12 @@ "sF": "16", "sU": "13", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "2012 Regular Season - Week 12" }, { "date": "Nov 25, 2012", @@ -121397,7 +179842,12 @@ "sF": "17", "sU": "31", "spread": "1", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 17.75, + "sF": 18.75 + }, + "week": "2012 Regular Season - Week 12" }, { "date": "Nov 25, 2012", @@ -121406,8 +179856,13 @@ "und": "New Orleans Saints", "sF": "31", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 50.0, + "pScore": { + "sU": 24.25, + "sF": 25.75 + }, + "week": "2012 Regular Season - Week 12" }, { "date": "Nov 25, 2012", @@ -121416,8 +179871,13 @@ "und": "Green Bay Packers", "sF": "38", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 51.5, + "pScore": { + "sU": 24.5, + "sF": 27.0 + }, + "week": "2012 Regular Season - Week 12" }, { "date": "Nov 26, 2012", @@ -121427,7 +179887,12 @@ "sF": "30", "sU": "22", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2012 Regular Season - Week 12" }, { "date": "Nov 29, 2012", @@ -121436,8 +179901,13 @@ "und": "New Orleans Saints", "sF": "23", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 55.0, + "pScore": { + "sU": 25.75, + "sF": 29.25 + }, + "week": "2012 Regular Season - Week 13" }, { "date": "Dec 2, 2012", @@ -121447,7 +179917,12 @@ "sF": "13", "sU": "16", "spread": "8", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 16.5, + "sF": 24.5 + }, + "week": "2012 Regular Season - Week 13" }, { "date": "Dec 2, 2012", @@ -121457,7 +179932,12 @@ "sF": "34", "sU": "18", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "2012 Regular Season - Week 13" }, { "date": "Dec 2, 2012", @@ -121466,8 +179946,13 @@ "und": "Minnesota Vikings", "sF": "23", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.0, + "pScore": { + "sU": 19.75, + "sF": 27.25 + }, + "week": "2012 Regular Season - Week 13" }, { "date": "Dec 2, 2012", @@ -121477,7 +179962,12 @@ "sF": "23", "sU": "16", "spread": "9", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 21.25, + "sF": 30.25 + }, + "week": "2012 Regular Season - Week 13" }, { "date": "Dec 2, 2012", @@ -121487,7 +179977,12 @@ "sF": "24", "sU": "10", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2012 Regular Season - Week 13" }, { "date": "Dec 2, 2012", @@ -121496,8 +179991,13 @@ "und": "Seattle Seahawks", "sF": "17", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2012 Regular Season - Week 13" }, { "date": "Dec 2, 2012", @@ -121507,7 +180007,12 @@ "sF": "33", "sU": "35", "spread": "7", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 22.0, + "sF": 29.0 + }, + "week": "2012 Regular Season - Week 13" }, { "date": "Dec 2, 2012", @@ -121517,7 +180022,12 @@ "sF": "21", "sU": "27", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2012 Regular Season - Week 13" }, { "date": "Dec 2, 2012", @@ -121527,7 +180037,12 @@ "sF": "7", "sU": "6", "spread": "6", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 15.25, + "sF": 21.25 + }, + "week": "2012 Regular Season - Week 13" }, { "date": "Dec 2, 2012", @@ -121536,8 +180051,13 @@ "und": "Tampa Bay Buccaneers", "sF": "31", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 50.0, + "pScore": { + "sU": 21.25, + "sF": 28.75 + }, + "week": "2012 Regular Season - Week 13" }, { "date": "Dec 2, 2012", @@ -121546,8 +180066,13 @@ "und": "Pittsburgh Steelers", "sF": "20", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.5, + "pScore": { + "sU": 14.5, + "sF": 22.0 + }, + "week": "2012 Regular Season - Week 13" }, { "date": "Dec 2, 2012", @@ -121556,8 +180081,13 @@ "und": "Oakland Raiders", "sF": "20", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "2012 Regular Season - Week 13" }, { "date": "Dec 2, 2012", @@ -121566,8 +180096,13 @@ "und": "San Diego Chargers", "sF": "20", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "2012 Regular Season - Week 13" }, { "date": "Dec 2, 2012", @@ -121576,8 +180111,13 @@ "und": "Philadelphia Eagles", "sF": "38", "sU": "33", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 44.0, + "pScore": { + "sU": 16.75, + "sF": 27.25 + }, + "week": "2012 Regular Season - Week 13" }, { "date": "Dec 3, 2012", @@ -121587,7 +180127,12 @@ "sF": "16", "sU": "17", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "2012 Regular Season - Week 13" }, { "date": "Dec 6, 2012", @@ -121596,8 +180141,13 @@ "und": "Oakland Raiders", "sF": "26", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 47.0, + "pScore": { + "sU": 18.25, + "sF": 28.75 + }, + "week": "2012 Regular Season - Week 14" }, { "date": "Dec 9, 2012", @@ -121607,7 +180157,12 @@ "sF": "12", "sU": "15", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2012 Regular Season - Week 14" }, { "date": "Dec 9, 2012", @@ -121617,7 +180172,12 @@ "sF": "30", "sU": "7", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "2012 Regular Season - Week 14" }, { "date": "Dec 9, 2012", @@ -121627,7 +180187,12 @@ "sF": "27", "sU": "23", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "2012 Regular Season - Week 14" }, { "date": "Dec 9, 2012", @@ -121637,7 +180202,12 @@ "sF": "17", "sU": "10", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2012 Regular Season - Week 14" }, { "date": "Dec 9, 2012", @@ -121646,8 +180216,13 @@ "und": "San Diego Chargers", "sF": "24", "sU": "34", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.0, + "pScore": { + "sU": 15.25, + "sF": 22.75 + }, + "week": "2012 Regular Season - Week 14" }, { "date": "Dec 9, 2012", @@ -121656,8 +180231,13 @@ "und": "Dallas Cowboys", "sF": "19", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2012 Regular Season - Week 14" }, { "date": "Dec 9, 2012", @@ -121667,7 +180247,12 @@ "sF": "21", "sU": "23", "spread": "7", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.5, + "sF": 27.5 + }, + "week": "2012 Regular Season - Week 14" }, { "date": "Dec 9, 2012", @@ -121676,8 +180261,13 @@ "und": "Baltimore Ravens", "sF": "31", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 48.0, + "pScore": { + "sU": 23.25, + "sF": 24.75 + }, + "week": "2012 Regular Season - Week 14" }, { "date": "Dec 9, 2012", @@ -121686,8 +180276,13 @@ "und": "Carolina Panthers", "sF": "20", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2012 Regular Season - Week 14" }, { "date": "Dec 9, 2012", @@ -121696,8 +180291,13 @@ "und": "Minnesota Vikings", "sF": "14", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.5, + "pScore": { + "sU": 19.5, + "sF": 21.0 + }, + "week": "2012 Regular Season - Week 14" }, { "date": "Dec 9, 2012", @@ -121706,8 +180306,13 @@ "und": "Miami Dolphins", "sF": "27", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 38.5, + "pScore": { + "sU": 14.0, + "sF": 24.5 + }, + "week": "2012 Regular Season - Week 14" }, { "date": "Dec 9, 2012", @@ -121716,8 +180321,13 @@ "und": "New Orleans Saints", "sF": "52", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 51.5, + "pScore": { + "sU": 23.5, + "sF": 28.0 + }, + "week": "2012 Regular Season - Week 14" }, { "date": "Dec 9, 2012", @@ -121727,7 +180337,12 @@ "sF": "58", "sU": "0", "spread": "10", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 13.0, + "sF": 23.0 + }, + "week": "2012 Regular Season - Week 14" }, { "date": "Dec 9, 2012", @@ -121736,8 +180351,13 @@ "und": "Detroit Lions", "sF": "27", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.0, + "pScore": { + "sU": 21.25, + "sF": 27.75 + }, + "week": "2012 Regular Season - Week 14" }, { "date": "Dec 10, 2012", @@ -121746,8 +180366,13 @@ "und": "Houston Texans", "sF": "42", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 51.0, + "pScore": { + "sU": 22.75, + "sF": 28.25 + }, + "week": "2012 Regular Season - Week 14" }, { "date": "Dec 13, 2012", @@ -121757,7 +180382,12 @@ "sF": "34", "sU": "13", "spread": "5", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.0, + "sF": 25.0 + }, + "week": "2012 Regular Season - Week 15" }, { "date": "Dec 16, 2012", @@ -121766,8 +180396,13 @@ "und": "Minnesota Vikings", "sF": "22", "sU": "36", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "2012 Regular Season - Week 15" }, { "date": "Dec 16, 2012", @@ -121777,7 +180412,12 @@ "sF": "34", "sU": "17", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2012 Regular Season - Week 15" }, { "date": "Dec 16, 2012", @@ -121786,8 +180426,13 @@ "und": "Indianapolis Colts", "sF": "29", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 48.0, + "pScore": { + "sU": 18.75, + "sF": 29.25 + }, + "week": "2012 Regular Season - Week 15" }, { "date": "Dec 16, 2012", @@ -121797,7 +180442,12 @@ "sF": "21", "sU": "13", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2012 Regular Season - Week 15" }, { "date": "Dec 16, 2012", @@ -121807,7 +180457,12 @@ "sF": "21", "sU": "38", "spread": "4", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.25, + "sF": 22.25 + }, + "week": "2012 Regular Season - Week 15" }, { "date": "Dec 16, 2012", @@ -121816,8 +180471,13 @@ "und": "Jacksonville Jaguars", "sF": "24", "sU": "3", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.0, + "pScore": { + "sU": 15.25, + "sF": 22.75 + }, + "week": "2012 Regular Season - Week 15" }, { "date": "Dec 16, 2012", @@ -121826,8 +180486,13 @@ "und": "Tampa Bay Buccaneers", "sF": "41", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 55.0, + "pScore": { + "sU": 25.75, + "sF": 29.25 + }, + "week": "2012 Regular Season - Week 15" }, { "date": "Dec 16, 2012", @@ -121836,8 +180501,13 @@ "und": "Arizona Cardinals", "sF": "10", "sU": "38", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2012 Regular Season - Week 15" }, { "date": "Dec 16, 2012", @@ -121847,7 +180517,12 @@ "sF": "50", "sU": "17", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "2012 Regular Season - Week 15" }, { "date": "Dec 16, 2012", @@ -121857,7 +180532,12 @@ "sF": "7", "sU": "31", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2012 Regular Season - Week 15" }, { "date": "Dec 16, 2012", @@ -121866,8 +180546,13 @@ "und": "Dallas Cowboys", "sF": "24", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "2012 Regular Season - Week 15" }, { "date": "Dec 16, 2012", @@ -121876,8 +180561,13 @@ "und": "Kansas City Chiefs", "sF": "15", "sU": "0", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.0, + "pScore": { + "sU": 19.75, + "sF": 24.25 + }, + "week": "2012 Regular Season - Week 15" }, { "date": "Dec 16, 2012", @@ -121887,11 +180577,12 @@ "sF": "34", "sU": "41", "spread": "5", - "ou": "49", + "ou": 47.5, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 21.25, + "sF": 26.25 + }, + "week": "2012 Regular Season - Week 15" }, { "date": "Dec 17, 2012", @@ -121901,7 +180592,12 @@ "sF": "14", "sU": "10", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "2012 Regular Season - Week 15" }, { "date": "Dec 22, 2012", @@ -121911,7 +180607,12 @@ "sF": "31", "sU": "18", "spread": "4", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 23.25, + "sF": 27.25 + }, + "week": "2012 Regular Season - Week 16" }, { "date": "Dec 23, 2012", @@ -121921,7 +180622,12 @@ "sF": "31", "sU": "34", "spread": "3", - "ou": -1 + "ou": 54.5, + "pScore": { + "sU": 25.75, + "sF": 28.75 + }, + "week": "2012 Regular Season - Week 16" }, { "date": "Dec 23, 2012", @@ -121931,7 +180637,12 @@ "sF": "55", "sU": "7", "spread": "11", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 16.75, + "sF": 27.75 + }, + "week": "2012 Regular Season - Week 16" }, { "date": "Dec 23, 2012", @@ -121940,8 +180651,13 @@ "und": "Jacksonville Jaguars", "sF": "23", "sU": "16", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 51.0, + "pScore": { + "sU": 18.25, + "sF": 32.75 + }, + "week": "2012 Regular Season - Week 16" }, { "date": "Dec 23, 2012", @@ -121951,7 +180667,12 @@ "sF": "24", "sU": "10", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "2012 Regular Season - Week 16" }, { "date": "Dec 23, 2012", @@ -121960,8 +180681,13 @@ "und": "Cincinnati Bengals", "sF": "10", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2012 Regular Season - Week 16" }, { "date": "Dec 23, 2012", @@ -121970,8 +180696,13 @@ "und": "Minnesota Vikings", "sF": "6", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.5, + "pScore": { + "sU": 18.0, + "sF": 25.5 + }, + "week": "2012 Regular Season - Week 16" }, { "date": "Dec 23, 2012", @@ -121981,7 +180712,12 @@ "sF": "20", "sU": "13", "spread": "6", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.75, + "sF": 23.75 + }, + "week": "2012 Regular Season - Week 16" }, { "date": "Dec 23, 2012", @@ -121991,7 +180727,12 @@ "sF": "17", "sU": "27", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2012 Regular Season - Week 16" }, { "date": "Dec 23, 2012", @@ -122001,7 +180742,12 @@ "sF": "27", "sU": "20", "spread": "6", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.0, + "sF": 26.0 + }, + "week": "2012 Regular Season - Week 16" }, { "date": "Dec 23, 2012", @@ -122011,7 +180757,12 @@ "sF": "13", "sU": "28", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2012 Regular Season - Week 16" }, { "date": "Dec 23, 2012", @@ -122020,8 +180771,13 @@ "und": "Oakland Raiders", "sF": "17", "sU": "6", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 47.0, + "pScore": { + "sU": 18.75, + "sF": 28.25 + }, + "week": "2012 Regular Season - Week 16" }, { "date": "Dec 23, 2012", @@ -122031,7 +180787,12 @@ "sF": "34", "sU": "12", "spread": "11", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 16.5, + "sF": 27.5 + }, + "week": "2012 Regular Season - Week 16" }, { "date": "Dec 23, 2012", @@ -122041,7 +180802,12 @@ "sF": "28", "sU": "13", "spread": "7", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 14.75, + "sF": 21.75 + }, + "week": "2012 Regular Season - Week 16" }, { "date": "Dec 23, 2012", @@ -122050,8 +180816,13 @@ "und": "Baltimore Ravens", "sF": "14", "sU": "33", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.0, + "pScore": { + "sU": 22.25, + "sF": 24.75 + }, + "week": "2012 Regular Season - Week 16" }, { "date": "Dec 23, 2012", @@ -122061,11 +180832,12 @@ "sF": "42", "sU": "13", "spread": "2", - "ou": "49", + "ou": 40.5, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 19.25, + "sF": 21.25 + }, + "week": "2012 Regular Season - Week 16" }, { "date": "Dec 30, 2012", @@ -122075,7 +180847,12 @@ "sF": "17", "sU": "22", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2012 Regular Season - Week 17" }, { "date": "Dec 30, 2012", @@ -122084,8 +180861,13 @@ "und": "New York Jets", "sF": "28", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2012 Regular Season - Week 17" }, { "date": "Dec 30, 2012", @@ -122095,7 +180877,12 @@ "sF": "16", "sU": "28", "spread": "6", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.5, + "sF": 26.5 + }, + "week": "2012 Regular Season - Week 17" }, { "date": "Dec 30, 2012", @@ -122104,8 +180891,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 36.0, + "pScore": { + "sU": 13.25, + "sF": 22.75 + }, + "week": "2012 Regular Season - Week 17" }, { "date": "Dec 30, 2012", @@ -122114,8 +180906,13 @@ "und": "Jacksonville Jaguars", "sF": "38", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.0, + "pScore": { + "sU": 18.25, + "sF": 23.75 + }, + "week": "2012 Regular Season - Week 17" }, { "date": "Dec 30, 2012", @@ -122125,7 +180922,12 @@ "sF": "23", "sU": "17", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2012 Regular Season - Week 17" }, { "date": "Dec 30, 2012", @@ -122135,7 +180937,12 @@ "sF": "26", "sU": "24", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2012 Regular Season - Week 17" }, { "date": "Dec 30, 2012", @@ -122145,7 +180952,12 @@ "sF": "38", "sU": "44", "spread": "4", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 25.0, + "sF": 29.0 + }, + "week": "2012 Regular Season - Week 17" }, { "date": "Dec 30, 2012", @@ -122154,8 +180966,13 @@ "und": "Philadelphia Eagles", "sF": "42", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "2012 Regular Season - Week 17" }, { "date": "Dec 30, 2012", @@ -122165,7 +180982,12 @@ "sF": "24", "sU": "21", "spread": "8", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 16.75, + "sF": 24.75 + }, + "week": "2012 Regular Season - Week 17" }, { "date": "Dec 30, 2012", @@ -122175,7 +180997,12 @@ "sF": "38", "sU": "3", "spread": "17", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 12.25, + "sF": 29.25 + }, + "week": "2012 Regular Season - Week 17" }, { "date": "Dec 30, 2012", @@ -122185,7 +181012,12 @@ "sF": "34", "sU": "37", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2012 Regular Season - Week 17" }, { "date": "Dec 30, 2012", @@ -122195,7 +181027,12 @@ "sF": "28", "sU": "0", "spread": "10", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 18.25, + "sF": 28.25 + }, + "week": "2012 Regular Season - Week 17" }, { "date": "Dec 30, 2012", @@ -122204,8 +181041,13 @@ "und": "Arizona Cardinals", "sF": "27", "sU": "13", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 39.5, + "pScore": { + "sU": 11.5, + "sF": 28.0 + }, + "week": "2012 Regular Season - Week 17" }, { "date": "Dec 30, 2012", @@ -122215,7 +181057,12 @@ "sF": "20", "sU": "13", "spread": "12", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 15.25, + "sF": 27.25 + }, + "week": "2012 Regular Season - Week 17" }, { "date": "Dec 30, 2012", @@ -122225,7 +181072,12 @@ "sF": "28", "sU": "18", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2012 Regular Season - Week 17" }, { "date": "Jan 5, 2013", @@ -122235,7 +181087,12 @@ "sF": "19", "sU": "13", "spread": "4", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.25, + "sF": 23.25 + }, + "week": "2012 Playoffs" }, { "date": "Jan 5, 2013", @@ -122245,7 +181102,12 @@ "sF": "24", "sU": "10", "spread": "11", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 16.75, + "sF": 27.75 + }, + "week": "2012 Playoffs" }, { "date": "Jan 6, 2013", @@ -122255,7 +181117,12 @@ "sF": "24", "sU": "9", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2012 Playoffs" }, { "date": "Jan 6, 2013", @@ -122265,7 +181132,12 @@ "sF": "24", "sU": "14", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2012 Playoffs" }, { "date": "Jan 12, 2013", @@ -122275,7 +181147,12 @@ "sF": "35", "sU": "38", "spread": "9", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.75, + "sF": 26.75 + }, + "week": "2012 Playoffs" }, { "date": "Jan 12, 2013", @@ -122285,7 +181162,12 @@ "sF": "45", "sU": "31", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2012 Playoffs" }, { "date": "Jan 13, 2013", @@ -122295,7 +181177,12 @@ "sF": "30", "sU": "28", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2012 Playoffs" }, { "date": "Jan 13, 2013", @@ -122304,8 +181191,13 @@ "und": "Houston Texans (3)", "sF": "41", "sU": "28", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 51.0, + "pScore": { + "sU": 20.75, + "sF": 30.25 + }, + "week": "2012 Playoffs" }, { "date": "Jan 20, 2013", @@ -122314,8 +181206,13 @@ "und": "Atlanta Falcons (1)", "sF": "28", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.0, + "pScore": { + "sU": 22.75, + "sF": 26.25 + }, + "week": "2012 Playoffs" }, { "date": "Jan 20, 2013", @@ -122324,8 +181221,13 @@ "und": "Baltimore Ravens (4)", "sF": "13", "sU": "28", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 51.5, + "pScore": { + "sU": 22.0, + "sF": 29.5 + }, + "week": "2012 Playoffs" }, { "date": "Feb 3, 2013", @@ -122334,8 +181236,13 @@ "und": "Baltimore Ravens (4)", "sF": "31", "sU": "34", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.5, + "pScore": { + "sU": 21.5, + "sF": 26.0 + }, + "week": "2012 Playoffs" }, { "date": "Sep 5, 2013", @@ -122344,8 +181251,13 @@ "und": "Baltimore Ravens", "sF": "49", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2013 Regular Season - Week 1" }, { "date": "Sep 8, 2013", @@ -122354,8 +181266,13 @@ "und": "Buffalo Bills", "sF": "23", "sU": "21", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 50.5, + "pScore": { + "sU": 20.0, + "sF": 30.5 + }, + "week": "2013 Regular Season - Week 1" }, { "date": "Sep 8, 2013", @@ -122365,7 +181282,12 @@ "sF": "24", "sU": "21", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2013 Regular Season - Week 1" }, { "date": "Sep 8, 2013", @@ -122374,8 +181296,13 @@ "und": "Miami Dolphins", "sF": "10", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "2013 Regular Season - Week 1" }, { "date": "Sep 8, 2013", @@ -122384,8 +181311,13 @@ "und": "Minnesota Vikings", "sF": "34", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.0, + "pScore": { + "sU": 20.75, + "sF": 25.25 + }, + "week": "2013 Regular Season - Week 1" }, { "date": "Sep 8, 2013", @@ -122394,8 +181326,13 @@ "und": "Oakland Raiders", "sF": "21", "sU": "17", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 45.0, + "pScore": { + "sU": 16.75, + "sF": 28.25 + }, + "week": "2013 Regular Season - Week 1" }, { "date": "Sep 8, 2013", @@ -122405,7 +181342,12 @@ "sF": "9", "sU": "16", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "2013 Regular Season - Week 1" }, { "date": "Sep 8, 2013", @@ -122414,8 +181356,13 @@ "und": "Jacksonville Jaguars", "sF": "28", "sU": "2", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.5, + "pScore": { + "sU": 19.0, + "sF": 23.5 + }, + "week": "2013 Regular Season - Week 1" }, { "date": "Sep 8, 2013", @@ -122424,8 +181371,13 @@ "und": "Atlanta Falcons", "sF": "23", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 54.5, + "pScore": { + "sU": 25.5, + "sF": 29.0 + }, + "week": "2013 Regular Season - Week 1" }, { "date": "Sep 8, 2013", @@ -122435,7 +181387,12 @@ "sF": "17", "sU": "18", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "2013 Regular Season - Week 1" }, { "date": "Sep 8, 2013", @@ -122444,8 +181401,13 @@ "und": "Carolina Panthers", "sF": "12", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "2013 Regular Season - Week 1" }, { "date": "Sep 8, 2013", @@ -122454,8 +181416,13 @@ "und": "Arizona Cardinals", "sF": "27", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2013 Regular Season - Week 1" }, { "date": "Sep 8, 2013", @@ -122465,7 +181432,12 @@ "sF": "34", "sU": "28", "spread": "5", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 21.5, + "sF": 26.5 + }, + "week": "2013 Regular Season - Week 1" }, { "date": "Sep 8, 2013", @@ -122474,8 +181446,13 @@ "und": "New York Giants", "sF": "36", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "2013 Regular Season - Week 1" }, { "date": "Sep 9, 2013", @@ -122484,8 +181461,13 @@ "und": "Philadelphia Eagles", "sF": "27", "sU": "33", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 52.0, + "pScore": { + "sU": 23.75, + "sF": 28.25 + }, + "week": "2013 Regular Season - Week 1" }, { "date": "Sep 9, 2013", @@ -122494,8 +181476,13 @@ "und": "San Diego Chargers", "sF": "31", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2013 Regular Season - Week 1" }, { "date": "Sep 12, 2013", @@ -122504,8 +181491,13 @@ "und": "New York Jets", "sF": "13", "sU": "10", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 43.0, + "pScore": { + "sU": 15.75, + "sF": 27.25 + }, + "week": "2013 Regular Season - Week 2" }, { "date": "Sep 15, 2013", @@ -122515,7 +181507,12 @@ "sF": "14", "sU": "6", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2013 Regular Season - Week 2" }, { "date": "Sep 15, 2013", @@ -122524,8 +181521,13 @@ "und": "Buffalo Bills", "sF": "23", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2013 Regular Season - Week 2" }, { "date": "Sep 15, 2013", @@ -122535,7 +181537,12 @@ "sF": "38", "sU": "20", "spread": "8", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 20.25, + "sF": 28.25 + }, + "week": "2013 Regular Season - Week 2" }, { "date": "Sep 15, 2013", @@ -122545,7 +181552,12 @@ "sF": "20", "sU": "24", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2013 Regular Season - Week 2" }, { "date": "Sep 15, 2013", @@ -122555,7 +181567,12 @@ "sF": "17", "sU": "16", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2013 Regular Season - Week 2" }, { "date": "Sep 15, 2013", @@ -122564,8 +181581,13 @@ "und": "San Diego Chargers", "sF": "30", "sU": "33", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 51.0, + "pScore": { + "sU": 21.75, + "sF": 29.25 + }, + "week": "2013 Regular Season - Week 2" }, { "date": "Sep 15, 2013", @@ -122574,8 +181596,13 @@ "und": "St Louis Rams", "sF": "31", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.5, + "pScore": { + "sU": 21.0, + "sF": 26.5 + }, + "week": "2013 Regular Season - Week 2" }, { "date": "Sep 15, 2013", @@ -122584,8 +181611,13 @@ "und": "Minnesota Vikings", "sF": "31", "sU": "30", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "2013 Regular Season - Week 2" }, { "date": "Sep 15, 2013", @@ -122595,7 +181627,12 @@ "sF": "30", "sU": "24", "spread": "9", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 16.75, + "sF": 25.75 + }, + "week": "2013 Regular Season - Week 2" }, { "date": "Sep 15, 2013", @@ -122605,7 +181642,12 @@ "sF": "21", "sU": "25", "spread": "2", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.75, + "sF": 24.75 + }, + "week": "2013 Regular Season - Week 2" }, { "date": "Sep 15, 2013", @@ -122615,7 +181657,12 @@ "sF": "16", "sU": "14", "spread": "4", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.25, + "sF": 26.25 + }, + "week": "2013 Regular Season - Week 2" }, { "date": "Sep 15, 2013", @@ -122625,7 +181672,12 @@ "sF": "41", "sU": "23", "spread": "4", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 24.25, + "sF": 28.25 + }, + "week": "2013 Regular Season - Week 2" }, { "date": "Sep 15, 2013", @@ -122635,7 +181687,12 @@ "sF": "19", "sU": "9", "spread": "5", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.75, + "sF": 22.75 + }, + "week": "2013 Regular Season - Week 2" }, { "date": "Sep 15, 2013", @@ -122644,12 +181701,13 @@ "und": "San Francisco 49ers", "sF": "29", "sU": "3", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": 43.5, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 20.5, + "sF": 23.0 + }, + "week": "2013 Regular Season - Week 2" }, { "date": "Sep 16, 2013", @@ -122658,8 +181716,13 @@ "und": "Pittsburgh Steelers", "sF": "20", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "2013 Regular Season - Week 2" }, { "date": "Sep 19, 2013", @@ -122668,8 +181731,13 @@ "und": "Kansas City Chiefs", "sF": "16", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 50.0, + "pScore": { + "sU": 23.25, + "sF": 26.75 + }, + "week": "2013 Regular Season - Week 3" }, { "date": "Sep 22, 2013", @@ -122678,8 +181746,13 @@ "und": "St Louis Rams", "sF": "31", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2013 Regular Season - Week 3" }, { "date": "Sep 22, 2013", @@ -122688,8 +181761,13 @@ "und": "Tampa Bay Buccaneers", "sF": "23", "sU": "3", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.5, + "pScore": { + "sU": 18.5, + "sF": 26.0 + }, + "week": "2013 Regular Season - Week 3" }, { "date": "Sep 22, 2013", @@ -122699,7 +181777,12 @@ "sF": "9", "sU": "30", "spread": "1", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.75, + "sF": 22.75 + }, + "week": "2013 Regular Season - Week 3" }, { "date": "Sep 22, 2013", @@ -122709,7 +181792,12 @@ "sF": "0", "sU": "38", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2013 Regular Season - Week 3" }, { "date": "Sep 22, 2013", @@ -122719,7 +181807,12 @@ "sF": "30", "sU": "34", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "2013 Regular Season - Week 3" }, { "date": "Sep 22, 2013", @@ -122728,8 +181821,13 @@ "und": "Arizona Cardinals", "sF": "31", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.5, + "pScore": { + "sU": 20.5, + "sF": 28.0 + }, + "week": "2013 Regular Season - Week 3" }, { "date": "Sep 22, 2013", @@ -122739,7 +181837,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2013 Regular Season - Week 3" }, { "date": "Sep 22, 2013", @@ -122749,7 +181852,12 @@ "sF": "27", "sU": "20", "spread": "1", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.75, + "sF": 24.75 + }, + "week": "2013 Regular Season - Week 3" }, { "date": "Sep 22, 2013", @@ -122759,7 +181867,12 @@ "sF": "27", "sU": "31", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "2013 Regular Season - Week 3" }, { "date": "Sep 22, 2013", @@ -122768,8 +181881,13 @@ "und": "Atlanta Falcons", "sF": "27", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2013 Regular Season - Week 3" }, { "date": "Sep 22, 2013", @@ -122778,8 +181896,13 @@ "und": "Buffalo Bills", "sF": "27", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "2013 Regular Season - Week 3" }, { "date": "Sep 22, 2013", @@ -122789,7 +181912,12 @@ "sF": "7", "sU": "27", "spread": "10", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 17.75, + "sF": 27.75 + }, + "week": "2013 Regular Season - Week 3" }, { "date": "Sep 22, 2013", @@ -122799,7 +181927,12 @@ "sF": "45", "sU": "17", "spread": "20", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 9.5, + "sF": 29.5 + }, + "week": "2013 Regular Season - Week 3" }, { "date": "Sep 22, 2013", @@ -122808,8 +181941,13 @@ "und": "Pittsburgh Steelers", "sF": "40", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "2013 Regular Season - Week 3" }, { "date": "Sep 23, 2013", @@ -122818,8 +181956,13 @@ "und": "Oakland Raiders", "sF": "37", "sU": "21", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 48.5, + "pScore": { + "sU": 16.0, + "sF": 32.5 + }, + "week": "2013 Regular Season - Week 3" }, { "date": "Sep 26, 2013", @@ -122829,7 +181972,12 @@ "sF": "35", "sU": "11", "spread": "4", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.25, + "sF": 23.25 + }, + "week": "2013 Regular Season - Week 4" }, { "date": "Sep 29, 2013", @@ -122839,7 +181987,12 @@ "sF": "20", "sU": "23", "spread": "4", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.5, + "sF": 24.5 + }, + "week": "2013 Regular Season - Week 4" }, { "date": "Sep 29, 2013", @@ -122848,8 +182001,13 @@ "und": "New York Giants", "sF": "31", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.5, + "pScore": { + "sU": 19.5, + "sF": 24.0 + }, + "week": "2013 Regular Season - Week 4" }, { "date": "Sep 29, 2013", @@ -122858,8 +182016,13 @@ "und": "Chicago Bears", "sF": "40", "sU": "32", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.0, + "pScore": { + "sU": 22.75, + "sF": 25.25 + }, + "week": "2013 Regular Season - Week 4" }, { "date": "Sep 29, 2013", @@ -122869,7 +182032,12 @@ "sF": "23", "sU": "20", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "2013 Regular Season - Week 4" }, { "date": "Sep 29, 2013", @@ -122878,8 +182046,13 @@ "und": "Arizona Cardinals", "sF": "10", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2013 Regular Season - Week 4" }, { "date": "Sep 29, 2013", @@ -122888,8 +182061,13 @@ "und": "Cleveland Browns", "sF": "6", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.5, + "pScore": { + "sU": 19.0, + "sF": 23.5 + }, + "week": "2013 Regular Season - Week 4" }, { "date": "Sep 29, 2013", @@ -122898,8 +182076,13 @@ "und": "Jacksonville Jaguars", "sF": "37", "sU": "3", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.5, + "pScore": { + "sU": 16.5, + "sF": 26.0 + }, + "week": "2013 Regular Season - Week 4" }, { "date": "Sep 29, 2013", @@ -122909,7 +182092,12 @@ "sF": "27", "sU": "34", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2013 Regular Season - Week 4" }, { "date": "Sep 29, 2013", @@ -122918,8 +182106,13 @@ "und": "New York Jets", "sF": "38", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "2013 Regular Season - Week 4" }, { "date": "Sep 29, 2013", @@ -122928,8 +182121,13 @@ "und": "Philadelphia Eagles", "sF": "52", "sU": "20", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 57.5, + "pScore": { + "sU": 23.0, + "sF": 34.5 + }, + "week": "2013 Regular Season - Week 4" }, { "date": "Sep 29, 2013", @@ -122939,7 +182137,12 @@ "sF": "24", "sU": "14", "spread": "4", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 20.75, + "sF": 24.75 + }, + "week": "2013 Regular Season - Week 4" }, { "date": "Sep 29, 2013", @@ -122948,8 +182151,13 @@ "und": "San Diego Chargers", "sF": "21", "sU": "30", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.0, + "pScore": { + "sU": 22.75, + "sF": 24.25 + }, + "week": "2013 Regular Season - Week 4" }, { "date": "Sep 29, 2013", @@ -122959,7 +182167,12 @@ "sF": "23", "sU": "30", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2013 Regular Season - Week 4" }, { "date": "Sep 30, 2013", @@ -122968,8 +182181,13 @@ "und": "Miami Dolphins", "sF": "38", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.5, + "pScore": { + "sU": 20.5, + "sF": 28.0 + }, + "week": "2013 Regular Season - Week 4" }, { "date": "Oct 3, 2013", @@ -122979,7 +182197,12 @@ "sF": "37", "sU": "24", "spread": "4", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.25, + "sF": 22.25 + }, + "week": "2013 Regular Season - Week 5" }, { "date": "Oct 6, 2013", @@ -122989,7 +182212,12 @@ "sF": "34", "sU": "20", "spread": "11", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 14.75, + "sF": 25.75 + }, + "week": "2013 Regular Season - Week 5" }, { "date": "Oct 6, 2013", @@ -122998,8 +182226,13 @@ "und": "Chicago Bears", "sF": "26", "sU": "18", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 50.5, + "pScore": { + "sU": 24.5, + "sF": 26.0 + }, + "week": "2013 Regular Season - Week 5" }, { "date": "Oct 6, 2013", @@ -123009,7 +182242,12 @@ "sF": "6", "sU": "13", "spread": "1", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 22.25, + "sF": 23.25 + }, + "week": "2013 Regular Season - Week 5" }, { "date": "Oct 6, 2013", @@ -123018,8 +182256,13 @@ "und": "Detroit Lions", "sF": "22", "sU": "9", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 53.0, + "pScore": { + "sU": 21.75, + "sF": 31.25 + }, + "week": "2013 Regular Season - Week 5" }, { "date": "Oct 6, 2013", @@ -123028,8 +182271,13 @@ "und": "Baltimore Ravens", "sF": "23", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2013 Regular Season - Week 5" }, { "date": "Oct 6, 2013", @@ -123038,8 +182286,13 @@ "und": "Philadelphia Eagles", "sF": "21", "sU": "36", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 53.5, + "pScore": { + "sU": 26.0, + "sF": 27.5 + }, + "week": "2013 Regular Season - Week 5" }, { "date": "Oct 6, 2013", @@ -123049,7 +182302,12 @@ "sF": "28", "sU": "34", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2013 Regular Season - Week 5" }, { "date": "Oct 6, 2013", @@ -123059,7 +182317,12 @@ "sF": "26", "sU": "17", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2013 Regular Season - Week 5" }, { "date": "Oct 6, 2013", @@ -123069,7 +182332,12 @@ "sF": "6", "sU": "22", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2013 Regular Season - Week 5" }, { "date": "Oct 6, 2013", @@ -123079,7 +182347,12 @@ "sF": "51", "sU": "48", "spread": "9", - "ou": -1 + "ou": 56.0, + "pScore": { + "sU": 23.5, + "sF": 32.5 + }, + "week": "2013 Regular Season - Week 5" }, { "date": "Oct 6, 2013", @@ -123088,8 +182361,13 @@ "und": "Houston Texans", "sF": "34", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "2013 Regular Season - Week 5" }, { "date": "Oct 6, 2013", @@ -123099,7 +182377,12 @@ "sF": "17", "sU": "27", "spread": "5", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.5, + "sF": 25.5 + }, + "week": "2013 Regular Season - Week 5" }, { "date": "Oct 7, 2013", @@ -123108,8 +182391,13 @@ "und": "New York Jets", "sF": "28", "sU": "30", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 45.0, + "pScore": { + "sU": 17.25, + "sF": 27.75 + }, + "week": "2013 Regular Season - Week 5" }, { "date": "Oct 10, 2013", @@ -123118,8 +182406,13 @@ "und": "New York Giants", "sF": "27", "sU": "21", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 46.5, + "pScore": { + "sU": 19.0, + "sF": 27.5 + }, + "week": "2013 Regular Season - Week 6" }, { "date": "Oct 13, 2013", @@ -123129,7 +182422,12 @@ "sF": "19", "sU": "17", "spread": "2", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.25, + "sF": 25.25 + }, + "week": "2013 Regular Season - Week 6" }, { "date": "Oct 13, 2013", @@ -123139,7 +182437,12 @@ "sF": "27", "sU": "24", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2013 Regular Season - Week 6" }, { "date": "Oct 13, 2013", @@ -123148,8 +182451,13 @@ "und": "Cleveland Browns", "sF": "31", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2013 Regular Season - Week 6" }, { "date": "Oct 13, 2013", @@ -123158,8 +182466,13 @@ "und": "Oakland Raiders", "sF": "24", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.0, + "pScore": { + "sU": 16.75, + "sF": 24.25 + }, + "week": "2013 Regular Season - Week 6" }, { "date": "Oct 13, 2013", @@ -123169,7 +182482,12 @@ "sF": "13", "sU": "38", "spread": "9", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.0, + "sF": 26.0 + }, + "week": "2013 Regular Season - Week 6" }, { "date": "Oct 13, 2013", @@ -123178,8 +182496,13 @@ "und": "New York Jets", "sF": "19", "sU": "6", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.5, + "pScore": { + "sU": 19.5, + "sF": 21.0 + }, + "week": "2013 Regular Season - Week 6" }, { "date": "Oct 13, 2013", @@ -123189,7 +182512,12 @@ "sF": "31", "sU": "20", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2013 Regular Season - Week 6" }, { "date": "Oct 13, 2013", @@ -123198,8 +182526,13 @@ "und": "Carolina Panthers", "sF": "10", "sU": "35", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2013 Regular Season - Week 6" }, { "date": "Oct 13, 2013", @@ -123208,8 +182541,13 @@ "und": "Jacksonville Jaguars", "sF": "35", "sU": "19", - "spread": "26", - "ou": -1 + "spread": "26.5", + "ou": 53.0, + "pScore": { + "sU": 13.25, + "sF": 39.75 + }, + "week": "2013 Regular Season - Week 6" }, { "date": "Oct 13, 2013", @@ -123218,8 +182556,13 @@ "und": "Tennessee Titans", "sF": "20", "sU": "13", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 42.0, + "pScore": { + "sU": 15.25, + "sF": 26.75 + }, + "week": "2013 Regular Season - Week 6" }, { "date": "Oct 13, 2013", @@ -123228,8 +182571,13 @@ "und": "New Orleans Saints", "sF": "30", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 51.0, + "pScore": { + "sU": 24.25, + "sF": 26.75 + }, + "week": "2013 Regular Season - Week 6" }, { "date": "Oct 13, 2013", @@ -123238,8 +182586,13 @@ "und": "Arizona Cardinals", "sF": "32", "sU": "20", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 40.5, + "pScore": { + "sU": 15.0, + "sF": 25.5 + }, + "week": "2013 Regular Season - Week 6" }, { "date": "Oct 13, 2013", @@ -123248,8 +182601,13 @@ "und": "Washington Redskins", "sF": "31", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 52.0, + "pScore": { + "sU": 23.25, + "sF": 28.75 + }, + "week": "2013 Regular Season - Week 6" }, { "date": "Oct 17, 2013", @@ -123258,8 +182616,13 @@ "und": "Arizona Cardinals", "sF": "34", "sU": "22", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "2013 Regular Season - Week 7" }, { "date": "Oct 20, 2013", @@ -123268,8 +182631,13 @@ "und": "Tampa Bay Buccaneers", "sF": "31", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "2013 Regular Season - Week 7" }, { "date": "Oct 20, 2013", @@ -123278,8 +182646,13 @@ "und": "Cincinnati Bengals", "sF": "24", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.5, + "pScore": { + "sU": 22.0, + "sF": 23.5 + }, + "week": "2013 Regular Season - Week 7" }, { "date": "Oct 20, 2013", @@ -123289,7 +182662,12 @@ "sF": "24", "sU": "6", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "2013 Regular Season - Week 7" }, { "date": "Oct 20, 2013", @@ -123298,8 +182676,13 @@ "und": "Buffalo Bills", "sF": "21", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2013 Regular Season - Week 7" }, { "date": "Oct 20, 2013", @@ -123308,8 +182691,13 @@ "und": "Dallas Cowboys", "sF": "3", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 55.0, + "pScore": { + "sU": 26.25, + "sF": 28.75 + }, + "week": "2013 Regular Season - Week 7" }, { "date": "Oct 20, 2013", @@ -123319,7 +182707,12 @@ "sF": "30", "sU": "15", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "2013 Regular Season - Week 7" }, { "date": "Oct 20, 2013", @@ -123329,7 +182722,12 @@ "sF": "27", "sU": "30", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2013 Regular Season - Week 7" }, { "date": "Oct 20, 2013", @@ -123339,7 +182737,12 @@ "sF": "41", "sU": "45", "spread": "1", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 23.25, + "sF": 24.25 + }, + "week": "2013 Regular Season - Week 7" }, { "date": "Oct 20, 2013", @@ -123349,7 +182752,12 @@ "sF": "31", "sU": "17", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2013 Regular Season - Week 7" }, { "date": "Oct 20, 2013", @@ -123358,8 +182766,13 @@ "und": "Cleveland Browns", "sF": "31", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 45.0, + "pScore": { + "sU": 17.75, + "sF": 27.25 + }, + "week": "2013 Regular Season - Week 7" }, { "date": "Oct 20, 2013", @@ -123368,8 +182781,13 @@ "und": "Baltimore Ravens", "sF": "19", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "2013 Regular Season - Week 7" }, { "date": "Oct 20, 2013", @@ -123379,7 +182797,12 @@ "sF": "17", "sU": "16", "spread": "6", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 16.25, + "sF": 22.25 + }, + "week": "2013 Regular Season - Week 7" }, { "date": "Oct 20, 2013", @@ -123389,7 +182812,12 @@ "sF": "33", "sU": "39", "spread": "6", - "ou": -1 + "ou": 54.5, + "pScore": { + "sU": 24.25, + "sF": 30.25 + }, + "week": "2013 Regular Season - Week 7" }, { "date": "Oct 21, 2013", @@ -123398,8 +182826,13 @@ "und": "Minnesota Vikings", "sF": "23", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2013 Regular Season - Week 7" }, { "date": "Oct 24, 2013", @@ -123408,8 +182841,13 @@ "und": "Tampa Bay Buccaneers", "sF": "31", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.0, + "pScore": { + "sU": 16.25, + "sF": 22.75 + }, + "week": "2013 Regular Season - Week 8" }, { "date": "Oct 27, 2013", @@ -123419,7 +182857,12 @@ "sF": "23", "sU": "17", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "2013 Regular Season - Week 8" }, { "date": "Oct 27, 2013", @@ -123428,8 +182871,13 @@ "und": "Miami Dolphins", "sF": "27", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.5, + "pScore": { + "sU": 20.5, + "sF": 26.0 + }, + "week": "2013 Regular Season - Week 8" }, { "date": "Oct 27, 2013", @@ -123438,8 +182886,13 @@ "und": "Buffalo Bills", "sF": "35", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 48.5, + "pScore": { + "sU": 19.0, + "sF": 29.5 + }, + "week": "2013 Regular Season - Week 8" }, { "date": "Oct 27, 2013", @@ -123448,8 +182901,13 @@ "und": "New York Giants", "sF": "7", "sU": "15", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 49.0, + "pScore": { + "sU": 21.75, + "sF": 27.25 + }, + "week": "2013 Regular Season - Week 8" }, { "date": "Oct 27, 2013", @@ -123459,7 +182917,12 @@ "sF": "31", "sU": "30", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2013 Regular Season - Week 8" }, { "date": "Oct 27, 2013", @@ -123468,8 +182931,13 @@ "und": "Jacksonville Jaguars", "sF": "42", "sU": "10", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 40.0, + "pScore": { + "sU": 12.75, + "sF": 27.25 + }, + "week": "2013 Regular Season - Week 8" }, { "date": "Oct 27, 2013", @@ -123478,8 +182946,13 @@ "und": "Oakland Raiders", "sF": "18", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2013 Regular Season - Week 8" }, { "date": "Oct 27, 2013", @@ -123488,8 +182961,13 @@ "und": "New York Jets", "sF": "49", "sU": "9", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "2013 Regular Season - Week 8" }, { "date": "Oct 27, 2013", @@ -123499,7 +182977,12 @@ "sF": "27", "sU": "13", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2013 Regular Season - Week 8" }, { "date": "Oct 27, 2013", @@ -123509,7 +182992,12 @@ "sF": "45", "sU": "21", "spread": "11", - "ou": -1 + "ou": 58.5, + "pScore": { + "sU": 23.75, + "sF": 34.75 + }, + "week": "2013 Regular Season - Week 8" }, { "date": "Oct 27, 2013", @@ -123518,8 +183006,13 @@ "und": "Minnesota Vikings", "sF": "44", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.5, + "pScore": { + "sU": 20.0, + "sF": 27.5 + }, + "week": "2013 Regular Season - Week 8" }, { "date": "Oct 28, 2013", @@ -123529,7 +183022,12 @@ "sF": "14", "sU": "9", "spread": "13", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 15.25, + "sF": 28.25 + }, + "week": "2013 Regular Season - Week 8" }, { "date": "Oct 31, 2013", @@ -123539,7 +183037,12 @@ "sF": "20", "sU": "22", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2013 Regular Season - Week 9" }, { "date": "Nov 3, 2013", @@ -123549,7 +183052,12 @@ "sF": "28", "sU": "21", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2013 Regular Season - Week 9" }, { "date": "Nov 3, 2013", @@ -123558,8 +183066,13 @@ "und": "Buffalo Bills", "sF": "23", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "2013 Regular Season - Week 9" }, { "date": "Nov 3, 2013", @@ -123569,7 +183082,12 @@ "sF": "34", "sU": "10", "spread": "8", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.25, + "sF": 27.25 + }, + "week": "2013 Regular Season - Week 9" }, { "date": "Nov 3, 2013", @@ -123578,8 +183096,13 @@ "und": "Minnesota Vikings", "sF": "27", "sU": "23", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 51.0, + "pScore": { + "sU": 21.25, + "sF": 29.75 + }, + "week": "2013 Regular Season - Week 9" }, { "date": "Nov 3, 2013", @@ -123588,8 +183111,13 @@ "und": "New York Jets", "sF": "20", "sU": "26", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.5, + "pScore": { + "sU": 20.0, + "sF": 25.5 + }, + "week": "2013 Regular Season - Week 9" }, { "date": "Nov 3, 2013", @@ -123599,7 +183127,12 @@ "sF": "20", "sU": "49", "spread": "1", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 22.25, + "sF": 23.25 + }, + "week": "2013 Regular Season - Week 9" }, { "date": "Nov 3, 2013", @@ -123608,8 +183141,13 @@ "und": "Tampa Bay Buccaneers", "sF": "27", "sU": "24", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 40.0, + "pScore": { + "sU": 12.75, + "sF": 27.25 + }, + "week": "2013 Regular Season - Week 9" }, { "date": "Nov 3, 2013", @@ -123619,7 +183157,12 @@ "sF": "18", "sU": "24", "spread": "1", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 20.25, + "sF": 21.25 + }, + "week": "2013 Regular Season - Week 9" }, { "date": "Nov 3, 2013", @@ -123628,8 +183171,13 @@ "und": "Pittsburgh Steelers", "sF": "55", "sU": "31", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.5, + "pScore": { + "sU": 18.5, + "sF": 24.0 + }, + "week": "2013 Regular Season - Week 9" }, { "date": "Nov 3, 2013", @@ -123639,7 +183187,12 @@ "sF": "27", "sU": "24", "spread": "1", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.75, + "sF": 21.75 + }, + "week": "2013 Regular Season - Week 9" }, { "date": "Nov 4, 2013", @@ -123648,8 +183201,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "27", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 50.5, + "pScore": { + "sU": 20.5, + "sF": 30.0 + }, + "week": "2013 Regular Season - Week 9" }, { "date": "Nov 7, 2013", @@ -123659,7 +183217,12 @@ "sF": "27", "sU": "34", "spread": "1", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.5, + "sF": 24.5 + }, + "week": "2013 Regular Season - Week 10" }, { "date": "Nov 10, 2013", @@ -123669,7 +183232,12 @@ "sF": "20", "sU": "17", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "2013 Regular Season - Week 10" }, { "date": "Nov 10, 2013", @@ -123679,7 +183247,12 @@ "sF": "27", "sU": "13", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "2013 Regular Season - Week 10" }, { "date": "Nov 10, 2013", @@ -123688,8 +183261,13 @@ "und": "Buffalo Bills", "sF": "23", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2013 Regular Season - Week 10" }, { "date": "Nov 10, 2013", @@ -123698,8 +183276,13 @@ "und": "Jacksonville Jaguars", "sF": "27", "sU": "29", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 42.0, + "pScore": { + "sU": 15.25, + "sF": 26.75 + }, + "week": "2013 Regular Season - Week 10" }, { "date": "Nov 10, 2013", @@ -123709,7 +183292,12 @@ "sF": "33", "sU": "10", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2013 Regular Season - Week 10" }, { "date": "Nov 10, 2013", @@ -123718,8 +183306,13 @@ "und": "Chicago Bears", "sF": "21", "sU": "19", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 52.0, + "pScore": { + "sU": 25.25, + "sF": 26.75 + }, + "week": "2013 Regular Season - Week 10" }, { "date": "Nov 10, 2013", @@ -123729,7 +183322,12 @@ "sF": "8", "sU": "38", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2013 Regular Season - Week 10" }, { "date": "Nov 10, 2013", @@ -123739,7 +183337,12 @@ "sF": "24", "sU": "20", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2013 Regular Season - Week 10" }, { "date": "Nov 10, 2013", @@ -123748,8 +183351,13 @@ "und": "Carolina Panthers", "sF": "9", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "2013 Regular Season - Week 10" }, { "date": "Nov 10, 2013", @@ -123758,8 +183366,13 @@ "und": "Houston Texans", "sF": "27", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2013 Regular Season - Week 10" }, { "date": "Nov 10, 2013", @@ -123769,7 +183382,12 @@ "sF": "28", "sU": "20", "spread": "7", - "ou": -1 + "ou": 56.0, + "pScore": { + "sU": 24.5, + "sF": 31.5 + }, + "week": "2013 Regular Season - Week 10" }, { "date": "Nov 10, 2013", @@ -123778,8 +183396,13 @@ "und": "Dallas Cowboys", "sF": "49", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 54.0, + "pScore": { + "sU": 24.25, + "sF": 29.75 + }, + "week": "2013 Regular Season - Week 10" }, { "date": "Nov 11, 2013", @@ -123788,8 +183411,13 @@ "und": "Tampa Bay Buccaneers", "sF": "19", "sU": "22", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "2013 Regular Season - Week 10" }, { "date": "Nov 14, 2013", @@ -123799,7 +183427,12 @@ "sF": "30", "sU": "27", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2013 Regular Season - Week 11" }, { "date": "Nov 17, 2013", @@ -123809,7 +183442,12 @@ "sF": "14", "sU": "37", "spread": "2", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.75, + "sF": 20.75 + }, + "week": "2013 Regular Season - Week 11" }, { "date": "Nov 17, 2013", @@ -123818,8 +183456,13 @@ "und": "Baltimore Ravens", "sF": "23", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "2013 Regular Season - Week 11" }, { "date": "Nov 17, 2013", @@ -123828,8 +183471,13 @@ "und": "Cleveland Browns", "sF": "41", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "2013 Regular Season - Week 11" }, { "date": "Nov 17, 2013", @@ -123839,7 +183487,12 @@ "sF": "24", "sU": "16", "spread": "4", - "ou": -1 + "ou": 54.5, + "pScore": { + "sU": 25.25, + "sF": 29.25 + }, + "week": "2013 Regular Season - Week 11" }, { "date": "Nov 17, 2013", @@ -123849,7 +183502,12 @@ "sF": "27", "sU": "37", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2013 Regular Season - Week 11" }, { "date": "Nov 17, 2013", @@ -123858,8 +183516,13 @@ "und": "Oakland Raiders", "sF": "23", "sU": "28", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 41.0, + "pScore": { + "sU": 15.25, + "sF": 25.75 + }, + "week": "2013 Regular Season - Week 11" }, { "date": "Nov 17, 2013", @@ -123869,7 +183532,12 @@ "sF": "41", "sU": "28", "spread": "2", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.75, + "sF": 22.75 + }, + "week": "2013 Regular Season - Week 11" }, { "date": "Nov 17, 2013", @@ -123879,7 +183547,12 @@ "sF": "27", "sU": "14", "spread": "9", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.75, + "sF": 24.75 + }, + "week": "2013 Regular Season - Week 11" }, { "date": "Nov 17, 2013", @@ -123889,7 +183562,12 @@ "sF": "16", "sU": "20", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2013 Regular Season - Week 11" }, { "date": "Nov 17, 2013", @@ -123898,12 +183576,13 @@ "und": "San Francisco 49ers", "sF": "23", "sU": "20", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": 50.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 23.25, + "sF": 26.75 + }, + "week": "2013 Regular Season - Week 11" }, { "date": "Nov 17, 2013", @@ -123913,7 +183592,12 @@ "sF": "27", "sU": "13", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2013 Regular Season - Week 11" }, { "date": "Nov 17, 2013", @@ -123923,7 +183607,12 @@ "sF": "41", "sU": "20", "spread": "13", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 16.0, + "sF": 29.0 + }, + "week": "2013 Regular Season - Week 11" }, { "date": "Nov 17, 2013", @@ -123932,8 +183621,13 @@ "und": "Kansas City Chiefs", "sF": "27", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 49.0, + "pScore": { + "sU": 20.75, + "sF": 28.25 + }, + "week": "2013 Regular Season - Week 11" }, { "date": "Nov 18, 2013", @@ -123943,7 +183637,12 @@ "sF": "24", "sU": "20", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2013 Regular Season - Week 11" }, { "date": "Nov 21, 2013", @@ -123953,7 +183652,12 @@ "sF": "17", "sU": "13", "spread": "7", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 22.75, + "sF": 29.75 + }, + "week": "2013 Regular Season - Week 12" }, { "date": "Nov 24, 2013", @@ -123962,8 +183666,13 @@ "und": "Chicago Bears", "sF": "42", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.0, + "pScore": { + "sU": 22.25, + "sF": 23.75 + }, + "week": "2013 Regular Season - Week 12" }, { "date": "Nov 24, 2013", @@ -123972,8 +183681,13 @@ "und": "New York Jets", "sF": "19", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "2013 Regular Season - Week 12" }, { "date": "Nov 24, 2013", @@ -123982,8 +183696,13 @@ "und": "Minnesota Vikings", "sF": "26", "sU": "26", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.5, + "pScore": { + "sU": 19.5, + "sF": 25.0 + }, + "week": "2013 Regular Season - Week 12" }, { "date": "Nov 24, 2013", @@ -123993,7 +183712,12 @@ "sF": "13", "sU": "6", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "2013 Regular Season - Week 12" }, { "date": "Nov 24, 2013", @@ -124003,7 +183727,12 @@ "sF": "11", "sU": "27", "spread": "2", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.0, + "sF": 21.0 + }, + "week": "2013 Regular Season - Week 12" }, { "date": "Nov 24, 2013", @@ -124013,7 +183742,12 @@ "sF": "21", "sU": "24", "spread": "7", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 20.75, + "sF": 27.75 + }, + "week": "2013 Regular Season - Week 12" }, { "date": "Nov 24, 2013", @@ -124023,7 +183757,12 @@ "sF": "38", "sU": "41", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2013 Regular Season - Week 12" }, { "date": "Nov 24, 2013", @@ -124033,7 +183772,12 @@ "sF": "20", "sU": "16", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "2013 Regular Season - Week 12" }, { "date": "Nov 24, 2013", @@ -124043,7 +183787,12 @@ "sF": "40", "sU": "11", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2013 Regular Season - Week 12" }, { "date": "Nov 24, 2013", @@ -124053,7 +183802,12 @@ "sF": "23", "sU": "19", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "2013 Regular Season - Week 12" }, { "date": "Nov 24, 2013", @@ -124062,8 +183816,13 @@ "und": "Dallas Cowboys", "sF": "21", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2013 Regular Season - Week 12" }, { "date": "Nov 24, 2013", @@ -124072,8 +183831,13 @@ "und": "New England Patriots", "sF": "31", "sU": "34", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 54.0, + "pScore": { + "sU": 25.75, + "sF": 28.25 + }, + "week": "2013 Regular Season - Week 12" }, { "date": "Nov 25, 2013", @@ -124083,7 +183847,12 @@ "sF": "27", "sU": "6", "spread": "5", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 20.25, + "sF": 25.25 + }, + "week": "2013 Regular Season - Week 12" }, { "date": "Nov 28, 2013", @@ -124093,7 +183862,12 @@ "sF": "40", "sU": "10", "spread": "6", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 21.25, + "sF": 27.25 + }, + "week": "2013 Regular Season - Week 13" }, { "date": "Nov 28, 2013", @@ -124103,7 +183877,12 @@ "sF": "31", "sU": "24", "spread": "8", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 20.75, + "sF": 28.75 + }, + "week": "2013 Regular Season - Week 13" }, { "date": "Nov 28, 2013", @@ -124113,7 +183892,12 @@ "sF": "22", "sU": "20", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2013 Regular Season - Week 13" }, { "date": "Dec 1, 2013", @@ -124122,8 +183906,13 @@ "und": "Jacksonville Jaguars", "sF": "28", "sU": "32", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.5, + "pScore": { + "sU": 16.0, + "sF": 23.5 + }, + "week": "2013 Regular Season - Week 13" }, { "date": "Dec 1, 2013", @@ -124132,8 +183921,13 @@ "und": "Houston Texans", "sF": "34", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.0, + "pScore": { + "sU": 21.25, + "sF": 27.75 + }, + "week": "2013 Regular Season - Week 13" }, { "date": "Dec 1, 2013", @@ -124142,8 +183936,13 @@ "und": "Tennessee Titans", "sF": "22", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2013 Regular Season - Week 13" }, { "date": "Dec 1, 2013", @@ -124153,7 +183952,12 @@ "sF": "3", "sU": "23", "spread": "2", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.75, + "sF": 20.75 + }, + "week": "2013 Regular Season - Week 13" }, { "date": "Dec 1, 2013", @@ -124162,8 +183966,13 @@ "und": "Arizona Cardinals", "sF": "24", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "2013 Regular Season - Week 13" }, { "date": "Dec 1, 2013", @@ -124172,8 +183981,13 @@ "und": "Tampa Bay Buccaneers", "sF": "27", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "2013 Regular Season - Week 13" }, { "date": "Dec 1, 2013", @@ -124183,7 +183997,12 @@ "sF": "23", "sU": "20", "spread": "1", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.75, + "sF": 24.75 + }, + "week": "2013 Regular Season - Week 13" }, { "date": "Dec 1, 2013", @@ -124192,8 +184011,13 @@ "und": "Atlanta Falcons", "sF": "31", "sU": "34", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.0, + "pScore": { + "sU": 21.75, + "sF": 26.25 + }, + "week": "2013 Regular Season - Week 13" }, { "date": "Dec 1, 2013", @@ -124202,8 +184026,13 @@ "und": "St Louis Rams", "sF": "23", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.5, + "pScore": { + "sU": 16.5, + "sF": 24.0 + }, + "week": "2013 Regular Season - Week 13" }, { "date": "Dec 1, 2013", @@ -124212,8 +184041,13 @@ "und": "San Diego Chargers", "sF": "17", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 48.5, + "pScore": { + "sU": 23.5, + "sF": 25.0 + }, + "week": "2013 Regular Season - Week 13" }, { "date": "Dec 1, 2013", @@ -124223,7 +184057,12 @@ "sF": "35", "sU": "28", "spread": "6", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 21.75, + "sF": 27.75 + }, + "week": "2013 Regular Season - Week 13" }, { "date": "Dec 1, 2013", @@ -124233,7 +184072,12 @@ "sF": "17", "sU": "24", "spread": "1", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 22.25, + "sF": 23.25 + }, + "week": "2013 Regular Season - Week 13" }, { "date": "Dec 2, 2013", @@ -124243,7 +184087,12 @@ "sF": "34", "sU": "7", "spread": "5", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 21.75, + "sF": 26.75 + }, + "week": "2013 Regular Season - Week 13" }, { "date": "Dec 5, 2013", @@ -124252,8 +184101,13 @@ "und": "Jacksonville Jaguars", "sF": "20", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2013 Regular Season - Week 14" }, { "date": "Dec 8, 2013", @@ -124263,7 +184117,12 @@ "sF": "42", "sU": "28", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2013 Regular Season - Week 14" }, { "date": "Dec 8, 2013", @@ -124272,8 +184131,13 @@ "und": "Atlanta Falcons", "sF": "22", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2013 Regular Season - Week 14" }, { "date": "Dec 8, 2013", @@ -124282,8 +184146,13 @@ "und": "Cleveland Browns", "sF": "27", "sU": "26", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 47.5, + "pScore": { + "sU": 19.0, + "sF": 28.5 + }, + "week": "2013 Regular Season - Week 14" }, { "date": "Dec 8, 2013", @@ -124293,7 +184162,12 @@ "sF": "37", "sU": "27", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2013 Regular Season - Week 14" }, { "date": "Dec 8, 2013", @@ -124303,7 +184177,12 @@ "sF": "34", "sU": "20", "spread": "2", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.5, + "sF": 26.5 + }, + "week": "2013 Regular Season - Week 14" }, { "date": "Dec 8, 2013", @@ -124313,7 +184192,12 @@ "sF": "28", "sU": "34", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2013 Regular Season - Week 14" }, { "date": "Dec 8, 2013", @@ -124322,8 +184206,13 @@ "und": "Buffalo Bills", "sF": "27", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2013 Regular Season - Week 14" }, { "date": "Dec 8, 2013", @@ -124333,7 +184222,12 @@ "sF": "29", "sU": "26", "spread": "6", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.75, + "sF": 23.75 + }, + "week": "2013 Regular Season - Week 14" }, { "date": "Dec 8, 2013", @@ -124343,7 +184237,12 @@ "sF": "45", "sU": "10", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2013 Regular Season - Week 14" }, { "date": "Dec 8, 2013", @@ -124352,8 +184251,13 @@ "und": "Tennessee Titans", "sF": "51", "sU": "28", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 49.5, + "pScore": { + "sU": 18.0, + "sF": 31.5 + }, + "week": "2013 Regular Season - Week 14" }, { "date": "Dec 8, 2013", @@ -124362,8 +184266,13 @@ "und": "St Louis Rams", "sF": "30", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "2013 Regular Season - Week 14" }, { "date": "Dec 8, 2013", @@ -124373,7 +184282,12 @@ "sF": "37", "sU": "14", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "2013 Regular Season - Week 14" }, { "date": "Dec 8, 2013", @@ -124383,7 +184297,12 @@ "sF": "19", "sU": "17", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "2013 Regular Season - Week 14" }, { "date": "Dec 8, 2013", @@ -124393,7 +184312,12 @@ "sF": "31", "sU": "13", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2013 Regular Season - Week 14" }, { "date": "Dec 9, 2013", @@ -124402,8 +184326,13 @@ "und": "Dallas Cowboys", "sF": "45", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 49.0, + "pScore": { + "sU": 23.75, + "sF": 25.25 + }, + "week": "2013 Regular Season - Week 14" }, { "date": "Dec 12, 2013", @@ -124412,8 +184341,13 @@ "und": "San Diego Chargers", "sF": "20", "sU": "27", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 56.5, + "pScore": { + "sU": 23.5, + "sF": 33.0 + }, + "week": "2013 Regular Season - Week 15" }, { "date": "Dec 15, 2013", @@ -124423,7 +184357,12 @@ "sF": "25", "sU": "3", "spread": "6", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.5, + "sF": 26.5 + }, + "week": "2013 Regular Season - Week 15" }, { "date": "Dec 15, 2013", @@ -124433,7 +184372,12 @@ "sF": "27", "sU": "20", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "2013 Regular Season - Week 15" }, { "date": "Dec 15, 2013", @@ -124442,8 +184386,13 @@ "und": "New England Patriots", "sF": "24", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "2013 Regular Season - Week 15" }, { "date": "Dec 15, 2013", @@ -124453,7 +184402,12 @@ "sF": "30", "sU": "48", "spread": "7", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 23.0, + "sF": 30.0 + }, + "week": "2013 Regular Season - Week 15" }, { "date": "Dec 15, 2013", @@ -124462,8 +184416,13 @@ "und": "Tampa Bay Buccaneers", "sF": "33", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "2013 Regular Season - Week 15" }, { "date": "Dec 15, 2013", @@ -124472,8 +184431,13 @@ "und": "Washington Redskins", "sF": "27", "sU": "26", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 50.0, + "pScore": { + "sU": 22.25, + "sF": 27.75 + }, + "week": "2013 Regular Season - Week 15" }, { "date": "Dec 15, 2013", @@ -124483,7 +184447,12 @@ "sF": "31", "sU": "38", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "2013 Regular Season - Week 15" }, { "date": "Dec 15, 2013", @@ -124492,8 +184461,13 @@ "und": "New York Giants", "sF": "23", "sU": "0", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.5, + "pScore": { + "sU": 17.0, + "sF": 26.5 + }, + "week": "2013 Regular Season - Week 15" }, { "date": "Dec 15, 2013", @@ -124503,7 +184477,12 @@ "sF": "30", "sU": "20", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "2013 Regular Season - Week 15" }, { "date": "Dec 15, 2013", @@ -124513,7 +184492,12 @@ "sF": "56", "sU": "31", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2013 Regular Season - Week 15" }, { "date": "Dec 15, 2013", @@ -124523,7 +184507,12 @@ "sF": "36", "sU": "37", "spread": "4", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.0, + "sF": 27.0 + }, + "week": "2013 Regular Season - Week 15" }, { "date": "Dec 15, 2013", @@ -124533,7 +184522,12 @@ "sF": "16", "sU": "27", "spread": "7", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.25, + "sF": 27.25 + }, + "week": "2013 Regular Season - Week 15" }, { "date": "Dec 15, 2013", @@ -124543,7 +184537,12 @@ "sF": "37", "sU": "34", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2013 Regular Season - Week 15" }, { "date": "Dec 15, 2013", @@ -124552,8 +184551,13 @@ "und": "Pittsburgh Steelers", "sF": "20", "sU": "30", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.5, + "pScore": { + "sU": 21.5, + "sF": 23.0 + }, + "week": "2013 Regular Season - Week 15" }, { "date": "Dec 16, 2013", @@ -124562,8 +184566,13 @@ "und": "Baltimore Ravens", "sF": "16", "sU": "18", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 49.0, + "pScore": { + "sU": 21.75, + "sF": 27.25 + }, + "week": "2013 Regular Season - Week 15" }, { "date": "Dec 22, 2013", @@ -124572,8 +184581,13 @@ "und": "Tampa Bay Buccaneers", "sF": "23", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2013 Regular Season - Week 16" }, { "date": "Dec 22, 2013", @@ -124582,8 +184596,13 @@ "und": "Buffalo Bills", "sF": "0", "sU": "19", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "2013 Regular Season - Week 16" }, { "date": "Dec 22, 2013", @@ -124592,8 +184611,13 @@ "und": "Minnesota Vikings", "sF": "42", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2013 Regular Season - Week 16" }, { "date": "Dec 22, 2013", @@ -124602,8 +184626,13 @@ "und": "Houston Texans", "sF": "37", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 53.0, + "pScore": { + "sU": 21.75, + "sF": 31.25 + }, + "week": "2013 Regular Season - Week 16" }, { "date": "Dec 22, 2013", @@ -124613,7 +184642,12 @@ "sF": "20", "sU": "16", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2013 Regular Season - Week 16" }, { "date": "Dec 22, 2013", @@ -124623,7 +184657,12 @@ "sF": "7", "sU": "23", "spread": "7", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.75, + "sF": 26.75 + }, + "week": "2013 Regular Season - Week 16" }, { "date": "Dec 22, 2013", @@ -124632,8 +184671,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.5, + "pScore": { + "sU": 20.0, + "sF": 21.5 + }, + "week": "2013 Regular Season - Week 16" }, { "date": "Dec 22, 2013", @@ -124642,8 +184686,13 @@ "und": "Washington Redskins", "sF": "24", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 51.0, + "pScore": { + "sU": 24.25, + "sF": 26.75 + }, + "week": "2013 Regular Season - Week 16" }, { "date": "Dec 22, 2013", @@ -124653,7 +184702,12 @@ "sF": "17", "sU": "13", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2013 Regular Season - Week 16" }, { "date": "Dec 22, 2013", @@ -124663,7 +184717,12 @@ "sF": "20", "sU": "23", "spread": "9", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.0, + "sF": 28.0 + }, + "week": "2013 Regular Season - Week 16" }, { "date": "Dec 22, 2013", @@ -124673,7 +184732,12 @@ "sF": "10", "sU": "17", "spread": "9", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 16.75, + "sF": 25.75 + }, + "week": "2013 Regular Season - Week 16" }, { "date": "Dec 22, 2013", @@ -124682,8 +184746,13 @@ "und": "New England Patriots", "sF": "7", "sU": "41", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.5, + "pScore": { + "sU": 22.0, + "sF": 23.5 + }, + "week": "2013 Regular Season - Week 16" }, { "date": "Dec 22, 2013", @@ -124693,7 +184762,12 @@ "sF": "31", "sU": "38", "spread": "2", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.75, + "sF": 22.75 + }, + "week": "2013 Regular Season - Week 16" }, { "date": "Dec 22, 2013", @@ -124703,7 +184777,12 @@ "sF": "26", "sU": "13", "spread": "9", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 20.5, + "sF": 29.5 + }, + "week": "2013 Regular Season - Week 16" }, { "date": "Dec 22, 2013", @@ -124713,7 +184792,12 @@ "sF": "54", "sU": "11", "spread": "3", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 25.25, + "sF": 28.25 + }, + "week": "2013 Regular Season - Week 16" }, { "date": "Dec 23, 2013", @@ -124722,8 +184806,13 @@ "und": "Atlanta Falcons", "sF": "34", "sU": "24", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 46.0, + "pScore": { + "sU": 15.75, + "sF": 30.25 + }, + "week": "2013 Regular Season - Week 16" }, { "date": "Dec 29, 2013", @@ -124733,7 +184822,12 @@ "sF": "34", "sU": "17", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2013 Regular Season - Week 17" }, { "date": "Dec 29, 2013", @@ -124742,8 +184836,13 @@ "und": "Jacksonville Jaguars", "sF": "30", "sU": "10", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 45.0, + "pScore": { + "sU": 16.75, + "sF": 28.25 + }, + "week": "2013 Regular Season - Week 17" }, { "date": "Dec 29, 2013", @@ -124753,7 +184852,12 @@ "sF": "7", "sU": "20", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "2013 Regular Season - Week 17" }, { "date": "Dec 29, 2013", @@ -124762,8 +184866,13 @@ "und": "Cleveland Browns", "sF": "20", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.5, + "pScore": { + "sU": 17.5, + "sF": 27.0 + }, + "week": "2013 Regular Season - Week 17" }, { "date": "Dec 29, 2013", @@ -124772,8 +184881,13 @@ "und": "Houston Texans", "sF": "16", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "2013 Regular Season - Week 17" }, { "date": "Dec 29, 2013", @@ -124782,8 +184896,13 @@ "und": "Washington Redskins", "sF": "20", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2013 Regular Season - Week 17" }, { "date": "Dec 29, 2013", @@ -124792,8 +184911,13 @@ "und": "Atlanta Falcons", "sF": "21", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.5, + "pScore": { + "sU": 20.5, + "sF": 26.0 + }, + "week": "2013 Regular Season - Week 17" }, { "date": "Dec 29, 2013", @@ -124802,8 +184926,13 @@ "und": "Minnesota Vikings", "sF": "13", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 50.0, + "pScore": { + "sU": 23.75, + "sF": 26.25 + }, + "week": "2013 Regular Season - Week 17" }, { "date": "Dec 29, 2013", @@ -124813,11 +184942,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": "49", + "ou": 41.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 19.0, + "sF": 22.0 + }, + "week": "2013 Regular Season - Week 17" }, { "date": "Dec 29, 2013", @@ -124827,7 +184957,12 @@ "sF": "33", "sU": "28", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2013 Regular Season - Week 17" }, { "date": "Dec 29, 2013", @@ -124837,7 +184972,12 @@ "sF": "34", "sU": "20", "spread": "7", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.75, + "sF": 26.75 + }, + "week": "2013 Regular Season - Week 17" }, { "date": "Dec 29, 2013", @@ -124846,8 +184986,13 @@ "und": "Tampa Bay Buccaneers", "sF": "42", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 47.0, + "pScore": { + "sU": 18.25, + "sF": 28.75 + }, + "week": "2013 Regular Season - Week 17" }, { "date": "Dec 29, 2013", @@ -124857,7 +185002,12 @@ "sF": "34", "sU": "14", "spread": "10", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 21.75, + "sF": 31.75 + }, + "week": "2013 Regular Season - Week 17" }, { "date": "Dec 29, 2013", @@ -124866,8 +185016,13 @@ "und": "Kansas City Chiefs", "sF": "27", "sU": "24", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 45.0, + "pScore": { + "sU": 15.25, + "sF": 29.75 + }, + "week": "2013 Regular Season - Week 17" }, { "date": "Dec 29, 2013", @@ -124876,8 +185031,13 @@ "und": "St Louis Rams", "sF": "27", "sU": "9", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 41.0, + "pScore": { + "sU": 14.25, + "sF": 26.75 + }, + "week": "2013 Regular Season - Week 17" }, { "date": "Dec 29, 2013", @@ -124887,7 +185047,12 @@ "sF": "24", "sU": "22", "spread": "7", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 23.5, + "sF": 30.5 + }, + "week": "2013 Regular Season - Week 17" }, { "date": "Jan 4, 2014", @@ -124896,8 +185061,13 @@ "und": "Indianapolis Colts (4)", "sF": "44", "sU": "45", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 48.0, + "pScore": { + "sU": 23.25, + "sF": 24.75 + }, + "week": "2013 Playoffs" }, { "date": "Jan 4, 2014", @@ -124907,7 +185077,12 @@ "sF": "24", "sU": "26", "spread": "3", - "ou": -1 + "ou": 54.5, + "pScore": { + "sU": 25.75, + "sF": 28.75 + }, + "week": "2013 Playoffs" }, { "date": "Jan 5, 2014", @@ -124917,7 +185092,12 @@ "sF": "10", "sU": "27", "spread": "6", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.75, + "sF": 26.75 + }, + "week": "2013 Playoffs" }, { "date": "Jan 5, 2014", @@ -124927,7 +185107,12 @@ "sF": "23", "sU": "20", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2013 Playoffs" }, { "date": "Jan 11, 2014", @@ -124937,7 +185122,12 @@ "sF": "23", "sU": "15", "spread": "9", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.5, + "sF": 26.5 + }, + "week": "2013 Playoffs" }, { "date": "Jan 11, 2014", @@ -124947,7 +185137,12 @@ "sF": "43", "sU": "22", "spread": "7", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 22.0, + "sF": 29.0 + }, + "week": "2013 Playoffs" }, { "date": "Jan 12, 2014", @@ -124957,7 +185152,12 @@ "sF": "23", "sU": "10", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "2013 Playoffs" }, { "date": "Jan 12, 2014", @@ -124966,8 +185166,13 @@ "und": "San Diego Chargers (6)", "sF": "24", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 55.0, + "pScore": { + "sU": 23.75, + "sF": 31.25 + }, + "week": "2013 Playoffs" }, { "date": "Jan 19, 2014", @@ -124977,7 +185182,12 @@ "sF": "26", "sU": "16", "spread": "5", - "ou": -1 + "ou": 56.5, + "pScore": { + "sU": 25.75, + "sF": 30.75 + }, + "week": "2013 Playoffs" }, { "date": "Jan 19, 2014", @@ -124987,11 +185197,12 @@ "sF": "23", "sU": "17", "spread": "4", - "ou": "49", + "ou": 40.5, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sU": 18.25, + "sF": 22.25 + }, + "week": "2013 Playoffs" }, { "date": "Feb 2, 2014", @@ -125000,8 +185211,13 @@ "und": "Seattle Seahawks (1)", "sF": "8", "sU": "43", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.5, + "pScore": { + "sU": 22.5, + "sF": 25.0 + }, + "week": "2013 Playoffs" }, { "date": "Sep 4, 2014", @@ -125010,8 +185226,13 @@ "und": "Green Bay Packers", "sF": "36", "sU": "16", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 45.0, + "pScore": { + "sU": 18.25, + "sF": 26.75 + }, + "week": "2014 Regular Season - Week 1" }, { "date": "Sep 7, 2014", @@ -125021,7 +185242,12 @@ "sF": "20", "sU": "23", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2014 Regular Season - Week 1" }, { "date": "Sep 7, 2014", @@ -125030,8 +185256,13 @@ "und": "Minnesota Vikings", "sF": "6", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2014 Regular Season - Week 1" }, { "date": "Sep 7, 2014", @@ -125041,7 +185272,12 @@ "sF": "16", "sU": "23", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "2014 Regular Season - Week 1" }, { "date": "Sep 7, 2014", @@ -125050,8 +185286,13 @@ "und": "Tennessee Titans", "sF": "10", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2014 Regular Season - Week 1" }, { "date": "Sep 7, 2014", @@ -125060,8 +185301,13 @@ "und": "Oakland Raiders", "sF": "19", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "2014 Regular Season - Week 1" }, { "date": "Sep 7, 2014", @@ -125070,8 +185316,13 @@ "und": "Jacksonville Jaguars", "sF": "34", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 52.0, + "pScore": { + "sU": 20.75, + "sF": 31.25 + }, + "week": "2014 Regular Season - Week 1" }, { "date": "Sep 7, 2014", @@ -125081,7 +185332,12 @@ "sF": "30", "sU": "27", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2014 Regular Season - Week 1" }, { "date": "Sep 7, 2014", @@ -125091,7 +185347,12 @@ "sF": "34", "sU": "37", "spread": "3", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 24.25, + "sF": 27.25 + }, + "week": "2014 Regular Season - Week 1" }, { "date": "Sep 7, 2014", @@ -125101,7 +185362,12 @@ "sF": "17", "sU": "6", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2014 Regular Season - Week 1" }, { "date": "Sep 7, 2014", @@ -125111,7 +185377,12 @@ "sF": "20", "sU": "33", "spread": "5", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.0, + "sF": 26.0 + }, + "week": "2014 Regular Season - Week 1" }, { "date": "Sep 7, 2014", @@ -125120,8 +185391,13 @@ "und": "Dallas Cowboys", "sF": "28", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 51.0, + "pScore": { + "sU": 23.25, + "sF": 27.75 + }, + "week": "2014 Regular Season - Week 1" }, { "date": "Sep 7, 2014", @@ -125130,8 +185406,13 @@ "und": "Carolina Panthers", "sF": "14", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "2014 Regular Season - Week 1" }, { "date": "Sep 7, 2014", @@ -125140,8 +185421,13 @@ "und": "Indianapolis Colts", "sF": "31", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 55.0, + "pScore": { + "sU": 23.75, + "sF": 31.25 + }, + "week": "2014 Regular Season - Week 1" }, { "date": "Sep 8, 2014", @@ -125150,8 +185436,13 @@ "und": "New York Giants", "sF": "35", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.0, + "pScore": { + "sU": 20.75, + "sF": 26.25 + }, + "week": "2014 Regular Season - Week 1" }, { "date": "Sep 8, 2014", @@ -125161,7 +185452,12 @@ "sF": "18", "sU": "17", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2014 Regular Season - Week 1" }, { "date": "Sep 11, 2014", @@ -125170,8 +185466,13 @@ "und": "Pittsburgh Steelers", "sF": "26", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2014 Regular Season - Week 2" }, { "date": "Sep 14, 2014", @@ -125180,8 +185481,13 @@ "und": "Miami Dolphins", "sF": "29", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.5, + "pScore": { + "sU": 20.5, + "sF": 22.0 + }, + "week": "2014 Regular Season - Week 2" }, { "date": "Sep 14, 2014", @@ -125191,7 +185497,12 @@ "sF": "24", "sU": "26", "spread": "6", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 21.25, + "sF": 27.25 + }, + "week": "2014 Regular Season - Week 2" }, { "date": "Sep 14, 2014", @@ -125200,8 +185511,13 @@ "und": "Dallas Cowboys", "sF": "10", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "2014 Regular Season - Week 2" }, { "date": "Sep 14, 2014", @@ -125210,8 +185526,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2014 Regular Season - Week 2" }, { "date": "Sep 14, 2014", @@ -125221,7 +185542,12 @@ "sF": "25", "sU": "14", "spread": "2", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.25, + "sF": 22.25 + }, + "week": "2014 Regular Season - Week 2" }, { "date": "Sep 14, 2014", @@ -125231,7 +185557,12 @@ "sF": "24", "sU": "10", "spread": "6", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.5, + "sF": 27.5 + }, + "week": "2014 Regular Season - Week 2" }, { "date": "Sep 14, 2014", @@ -125240,8 +185571,13 @@ "und": "Minnesota Vikings", "sF": "30", "sU": "7", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 48.5, + "pScore": { + "sU": 21.5, + "sF": 27.0 + }, + "week": "2014 Regular Season - Week 2" }, { "date": "Sep 14, 2014", @@ -125251,7 +185587,12 @@ "sF": "41", "sU": "10", "spread": "6", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.25, + "sF": 24.25 + }, + "week": "2014 Regular Season - Week 2" }, { "date": "Sep 14, 2014", @@ -125260,8 +185601,13 @@ "und": "San Diego Chargers", "sF": "21", "sU": "30", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "2014 Regular Season - Week 2" }, { "date": "Sep 14, 2014", @@ -125270,8 +185616,13 @@ "und": "St Louis Rams", "sF": "17", "sU": "19", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "2014 Regular Season - Week 2" }, { "date": "Sep 14, 2014", @@ -125280,8 +185631,13 @@ "und": "Kansas City Chiefs", "sF": "24", "sU": "17", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 50.5, + "pScore": { + "sU": 19.5, + "sF": 31.0 + }, + "week": "2014 Regular Season - Week 2" }, { "date": "Sep 14, 2014", @@ -125290,8 +185646,13 @@ "und": "New York Jets", "sF": "31", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.0, + "pScore": { + "sU": 19.25, + "sF": 26.75 + }, + "week": "2014 Regular Season - Week 2" }, { "date": "Sep 14, 2014", @@ -125301,7 +185662,12 @@ "sF": "30", "sU": "14", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2014 Regular Season - Week 2" }, { "date": "Sep 14, 2014", @@ -125311,7 +185677,12 @@ "sF": "20", "sU": "28", "spread": "7", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.25, + "sF": 27.25 + }, + "week": "2014 Regular Season - Week 2" }, { "date": "Sep 15, 2014", @@ -125321,7 +185692,12 @@ "sF": "27", "sU": "30", "spread": "3", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 25.5, + "sF": 28.5 + }, + "week": "2014 Regular Season - Week 2" }, { "date": "Sep 18, 2014", @@ -125331,7 +185707,12 @@ "sF": "56", "sU": "14", "spread": "6", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.0, + "sF": 26.0 + }, + "week": "2014 Regular Season - Week 3" }, { "date": "Sep 21, 2014", @@ -125340,8 +185721,13 @@ "und": "St Louis Rams", "sF": "34", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.0, + "pScore": { + "sU": 21.25, + "sF": 22.75 + }, + "week": "2014 Regular Season - Week 3" }, { "date": "Sep 21, 2014", @@ -125350,8 +185736,13 @@ "und": "San Diego Chargers", "sF": "10", "sU": "22", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2014 Regular Season - Week 3" }, { "date": "Sep 21, 2014", @@ -125360,8 +185751,13 @@ "und": "Tennessee Titans", "sF": "33", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.5, + "pScore": { + "sU": 18.0, + "sF": 24.5 + }, + "week": "2014 Regular Season - Week 3" }, { "date": "Sep 21, 2014", @@ -125371,7 +185767,12 @@ "sF": "23", "sU": "21", "spread": "2", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.75, + "sF": 21.75 + }, + "week": "2014 Regular Season - Week 3" }, { "date": "Sep 21, 2014", @@ -125380,8 +185781,13 @@ "und": "Green Bay Packers", "sF": "19", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 52.5, + "pScore": { + "sU": 25.0, + "sF": 27.5 + }, + "week": "2014 Regular Season - Week 3" }, { "date": "Sep 21, 2014", @@ -125391,7 +185797,12 @@ "sF": "44", "sU": "17", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "2014 Regular Season - Week 3" }, { "date": "Sep 21, 2014", @@ -125401,7 +185812,12 @@ "sF": "16", "sU": "9", "spread": "14", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 16.25, + "sF": 30.25 + }, + "week": "2014 Regular Season - Week 3" }, { "date": "Sep 21, 2014", @@ -125410,8 +185826,13 @@ "und": "Houston Texans", "sF": "30", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.5, + "pScore": { + "sU": 20.0, + "sF": 21.5 + }, + "week": "2014 Regular Season - Week 3" }, { "date": "Sep 21, 2014", @@ -125421,7 +185842,12 @@ "sF": "37", "sU": "34", "spread": "6", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 22.25, + "sF": 28.25 + }, + "week": "2014 Regular Season - Week 3" }, { "date": "Sep 21, 2014", @@ -125431,7 +185857,12 @@ "sF": "20", "sU": "9", "spread": "10", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 19.5, + "sF": 29.5 + }, + "week": "2014 Regular Season - Week 3" }, { "date": "Sep 21, 2014", @@ -125441,7 +185872,12 @@ "sF": "14", "sU": "23", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2014 Regular Season - Week 3" }, { "date": "Sep 21, 2014", @@ -125450,8 +185886,13 @@ "und": "Kansas City Chiefs", "sF": "15", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2014 Regular Season - Week 3" }, { "date": "Sep 21, 2014", @@ -125460,8 +185901,13 @@ "und": "Denver Broncos", "sF": "26", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.5, + "pScore": { + "sU": 22.0, + "sF": 26.5 + }, + "week": "2014 Regular Season - Week 3" }, { "date": "Sep 21, 2014", @@ -125471,7 +185917,12 @@ "sF": "19", "sU": "37", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2014 Regular Season - Week 3" }, { "date": "Sep 22, 2014", @@ -125480,8 +185931,13 @@ "und": "Chicago Bears", "sF": "19", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2014 Regular Season - Week 3" }, { "date": "Sep 25, 2014", @@ -125490,8 +185946,13 @@ "und": "New York Giants", "sF": "14", "sU": "45", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2014 Regular Season - Week 4" }, { "date": "Sep 28, 2014", @@ -125501,7 +185962,12 @@ "sF": "38", "sU": "10", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2014 Regular Season - Week 4" }, { "date": "Sep 28, 2014", @@ -125510,8 +185976,13 @@ "und": "Chicago Bears", "sF": "38", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 51.5, + "pScore": { + "sU": 25.0, + "sF": 26.5 + }, + "week": "2014 Regular Season - Week 4" }, { "date": "Sep 28, 2014", @@ -125521,7 +185992,12 @@ "sF": "23", "sU": "17", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2014 Regular Season - Week 4" }, { "date": "Sep 28, 2014", @@ -125530,8 +186006,13 @@ "und": "New York Jets", "sF": "24", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.0, + "pScore": { + "sU": 21.75, + "sF": 23.25 + }, + "week": "2014 Regular Season - Week 4" }, { "date": "Sep 28, 2014", @@ -125540,8 +186021,13 @@ "und": "Tennessee Titans", "sF": "41", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.0, + "pScore": { + "sU": 19.25, + "sF": 26.75 + }, + "week": "2014 Regular Season - Week 4" }, { "date": "Sep 28, 2014", @@ -125550,8 +186036,13 @@ "und": "Tampa Bay Buccaneers", "sF": "24", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.0, + "pScore": { + "sU": 18.75, + "sF": 26.25 + }, + "week": "2014 Regular Season - Week 4" }, { "date": "Sep 28, 2014", @@ -125560,8 +186051,13 @@ "und": "Miami Dolphins", "sF": "14", "sU": "38", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "2014 Regular Season - Week 4" }, { "date": "Sep 28, 2014", @@ -125570,8 +186066,13 @@ "und": "Jacksonville Jaguars", "sF": "33", "sU": "14", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 45.0, + "pScore": { + "sU": 16.25, + "sF": 28.75 + }, + "week": "2014 Regular Season - Week 4" }, { "date": "Sep 28, 2014", @@ -125581,7 +186082,12 @@ "sF": "28", "sU": "41", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2014 Regular Season - Week 4" }, { "date": "Sep 28, 2014", @@ -125591,7 +186097,12 @@ "sF": "26", "sU": "21", "spread": "5", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 22.5, + "sF": 27.5 + }, + "week": "2014 Regular Season - Week 4" }, { "date": "Sep 28, 2014", @@ -125601,7 +186112,12 @@ "sF": "17", "sU": "38", "spread": "3", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 25.25, + "sF": 28.25 + }, + "week": "2014 Regular Season - Week 4" }, { "date": "Sep 29, 2014", @@ -125611,7 +186127,12 @@ "sF": "14", "sU": "41", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2014 Regular Season - Week 4" }, { "date": "Oct 2, 2014", @@ -125620,8 +186141,13 @@ "und": "Minnesota Vikings", "sF": "42", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.5, + "pScore": { + "sU": 20.0, + "sF": 27.5 + }, + "week": "2014 Regular Season - Week 5" }, { "date": "Oct 5, 2014", @@ -125631,7 +186157,12 @@ "sF": "17", "sU": "9", "spread": "6", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.75, + "sF": 26.75 + }, + "week": "2014 Regular Season - Week 5" }, { "date": "Oct 5, 2014", @@ -125640,8 +186171,13 @@ "und": "St Louis Rams", "sF": "34", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.5, + "pScore": { + "sU": 20.5, + "sF": 27.0 + }, + "week": "2014 Regular Season - Week 5" }, { "date": "Oct 5, 2014", @@ -125651,7 +186187,12 @@ "sF": "28", "sU": "29", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2014 Regular Season - Week 5" }, { "date": "Oct 5, 2014", @@ -125660,8 +186201,13 @@ "und": "Chicago Bears", "sF": "31", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2014 Regular Season - Week 5" }, { "date": "Oct 5, 2014", @@ -125670,8 +186216,13 @@ "und": "Houston Texans", "sF": "20", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "2014 Regular Season - Week 5" }, { "date": "Oct 5, 2014", @@ -125680,8 +186231,13 @@ "und": "Buffalo Bills", "sF": "14", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "2014 Regular Season - Week 5" }, { "date": "Oct 5, 2014", @@ -125691,7 +186247,12 @@ "sF": "20", "sU": "13", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2014 Regular Season - Week 5" }, { "date": "Oct 5, 2014", @@ -125701,7 +186262,12 @@ "sF": "37", "sU": "31", "spread": "10", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 19.0, + "sF": 29.0 + }, + "week": "2014 Regular Season - Week 5" }, { "date": "Oct 5, 2014", @@ -125711,7 +186277,12 @@ "sF": "30", "sU": "20", "spread": "4", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.0, + "sF": 27.0 + }, + "week": "2014 Regular Season - Week 5" }, { "date": "Oct 5, 2014", @@ -125720,8 +186291,13 @@ "und": "Arizona Cardinals", "sF": "41", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2014 Regular Season - Week 5" }, { "date": "Oct 5, 2014", @@ -125730,8 +186306,13 @@ "und": "New York Jets", "sF": "31", "sU": "0", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2014 Regular Season - Week 5" }, { "date": "Oct 5, 2014", @@ -125741,7 +186322,12 @@ "sF": "22", "sU": "17", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "2014 Regular Season - Week 5" }, { "date": "Oct 6, 2014", @@ -125751,7 +186337,12 @@ "sF": "27", "sU": "17", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "2014 Regular Season - Week 5" }, { "date": "Oct 9, 2014", @@ -125760,8 +186351,13 @@ "und": "Houston Texans", "sF": "33", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "2014 Regular Season - Week 6" }, { "date": "Oct 12, 2014", @@ -125771,7 +186367,12 @@ "sF": "22", "sU": "37", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2014 Regular Season - Week 6" }, { "date": "Oct 12, 2014", @@ -125780,8 +186381,13 @@ "und": "Pittsburgh Steelers", "sF": "31", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.5, + "pScore": { + "sU": 22.5, + "sF": 24.0 + }, + "week": "2014 Regular Season - Week 6" }, { "date": "Oct 12, 2014", @@ -125790,8 +186396,13 @@ "und": "Miami Dolphins", "sF": "27", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.0, + "pScore": { + "sU": 22.75, + "sF": 24.25 + }, + "week": "2014 Regular Season - Week 6" }, { "date": "Oct 12, 2014", @@ -125800,8 +186411,13 @@ "und": "Detroit Lions", "sF": "3", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.0, + "pScore": { + "sU": 20.75, + "sF": 22.25 + }, + "week": "2014 Regular Season - Week 6" }, { "date": "Oct 12, 2014", @@ -125810,8 +186426,13 @@ "und": "New York Jets", "sF": "31", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 47.5, + "pScore": { + "sU": 19.0, + "sF": 28.5 + }, + "week": "2014 Regular Season - Week 6" }, { "date": "Oct 12, 2014", @@ -125821,7 +186442,12 @@ "sF": "48", "sU": "17", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2014 Regular Season - Week 6" }, { "date": "Oct 12, 2014", @@ -125831,7 +186457,12 @@ "sF": "16", "sU": "14", "spread": "4", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.25, + "sF": 23.25 + }, + "week": "2014 Regular Season - Week 6" }, { "date": "Oct 12, 2014", @@ -125841,7 +186472,12 @@ "sF": "37", "sU": "37", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2014 Regular Season - Week 6" }, { "date": "Oct 12, 2014", @@ -125850,8 +186486,13 @@ "und": "Oakland Raiders", "sF": "31", "sU": "28", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "2014 Regular Season - Week 6" }, { "date": "Oct 12, 2014", @@ -125860,8 +186501,13 @@ "und": "Washington Redskins", "sF": "30", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.0, + "pScore": { + "sU": 20.75, + "sF": 26.25 + }, + "week": "2014 Regular Season - Week 6" }, { "date": "Oct 12, 2014", @@ -125870,8 +186516,13 @@ "und": "Chicago Bears", "sF": "13", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 55.5, + "pScore": { + "sU": 26.0, + "sF": 29.5 + }, + "week": "2014 Regular Season - Week 6" }, { "date": "Oct 12, 2014", @@ -125880,8 +186531,13 @@ "und": "Dallas Cowboys", "sF": "23", "sU": "30", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 47.0, + "pScore": { + "sU": 18.75, + "sF": 28.25 + }, + "week": "2014 Regular Season - Week 6" }, { "date": "Oct 12, 2014", @@ -125890,8 +186546,13 @@ "und": "New York Giants", "sF": "27", "sU": "0", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 51.0, + "pScore": { + "sU": 24.75, + "sF": 26.25 + }, + "week": "2014 Regular Season - Week 6" }, { "date": "Oct 13, 2014", @@ -125900,8 +186561,13 @@ "und": "St Louis Rams", "sF": "31", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "2014 Regular Season - Week 6" }, { "date": "Oct 16, 2014", @@ -125910,8 +186576,13 @@ "und": "New York Jets", "sF": "27", "sU": "25", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.5, + "pScore": { + "sU": 17.5, + "sF": 27.0 + }, + "week": "2014 Regular Season - Week 7" }, { "date": "Oct 19, 2014", @@ -125921,7 +186592,12 @@ "sF": "14", "sU": "27", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2014 Regular Season - Week 7" }, { "date": "Oct 19, 2014", @@ -125931,7 +186607,12 @@ "sF": "26", "sU": "28", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2014 Regular Season - Week 7" }, { "date": "Oct 19, 2014", @@ -125940,8 +186621,13 @@ "und": "Atlanta Falcons", "sF": "29", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.5, + "pScore": { + "sU": 21.5, + "sF": 28.0 + }, + "week": "2014 Regular Season - Week 7" }, { "date": "Oct 19, 2014", @@ -125950,8 +186636,13 @@ "und": "Minnesota Vikings", "sF": "17", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2014 Regular Season - Week 7" }, { "date": "Oct 19, 2014", @@ -125960,8 +186651,13 @@ "und": "New Orleans Saints", "sF": "24", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.5, + "pScore": { + "sU": 22.5, + "sF": 24.0 + }, + "week": "2014 Regular Season - Week 7" }, { "date": "Oct 19, 2014", @@ -125970,8 +186666,13 @@ "und": "Carolina Panthers", "sF": "38", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.0, + "pScore": { + "sU": 21.25, + "sF": 27.75 + }, + "week": "2014 Regular Season - Week 7" }, { "date": "Oct 19, 2014", @@ -125980,8 +186681,13 @@ "und": "Cincinnati Bengals", "sF": "27", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 50.5, + "pScore": { + "sU": 23.5, + "sF": 27.0 + }, + "week": "2014 Regular Season - Week 7" }, { "date": "Oct 19, 2014", @@ -125991,7 +186697,12 @@ "sF": "6", "sU": "24", "spread": "4", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.5, + "sF": 24.5 + }, + "week": "2014 Regular Season - Week 7" }, { "date": "Oct 19, 2014", @@ -126001,7 +186712,12 @@ "sF": "19", "sU": "17", "spread": "6", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.25, + "sF": 26.25 + }, + "week": "2014 Regular Season - Week 7" }, { "date": "Oct 19, 2014", @@ -126011,7 +186727,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2014 Regular Season - Week 7" }, { "date": "Oct 19, 2014", @@ -126020,8 +186741,13 @@ "und": "New York Giants", "sF": "31", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.0, + "pScore": { + "sU": 20.75, + "sF": 26.25 + }, + "week": "2014 Regular Season - Week 7" }, { "date": "Oct 19, 2014", @@ -126030,8 +186756,13 @@ "und": "Oakland Raiders", "sF": "24", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "2014 Regular Season - Week 7" }, { "date": "Oct 19, 2014", @@ -126040,12 +186771,13 @@ "und": "San Francisco 49ers", "sF": "42", "sU": "17", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": 48.5, "pScore": { - "sU": 21.5, + "sU": 21.0, "sF": 27.5 - } + }, + "week": "2014 Regular Season - Week 7" }, { "date": "Oct 20, 2014", @@ -126055,7 +186787,12 @@ "sF": "30", "sU": "23", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2014 Regular Season - Week 7" }, { "date": "Oct 23, 2014", @@ -126065,7 +186802,12 @@ "sF": "35", "sU": "21", "spread": "9", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 21.0, + "sF": 30.0 + }, + "week": "2014 Regular Season - Week 8" }, { "date": "Oct 26, 2014", @@ -126074,8 +186816,13 @@ "und": "Atlanta Falcons", "sF": "22", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "2014 Regular Season - Week 8" }, { "date": "Oct 26, 2014", @@ -126085,7 +186832,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2014 Regular Season - Week 8" }, { "date": "Oct 26, 2014", @@ -126095,7 +186847,12 @@ "sF": "27", "sU": "13", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "2014 Regular Season - Week 8" }, { "date": "Oct 26, 2014", @@ -126105,7 +186862,12 @@ "sF": "51", "sU": "23", "spread": "6", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 23.0, + "sF": 29.0 + }, + "week": "2014 Regular Season - Week 8" }, { "date": "Oct 26, 2014", @@ -126115,7 +186877,12 @@ "sF": "23", "sU": "43", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2014 Regular Season - Week 8" }, { "date": "Oct 26, 2014", @@ -126124,8 +186891,13 @@ "und": "Minnesota Vikings", "sF": "13", "sU": "19", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.0, + "pScore": { + "sU": 20.75, + "sF": 22.25 + }, + "week": "2014 Regular Season - Week 8" }, { "date": "Oct 26, 2014", @@ -126134,8 +186906,13 @@ "und": "Tennessee Titans", "sF": "30", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2014 Regular Season - Week 8" }, { "date": "Oct 26, 2014", @@ -126145,7 +186922,12 @@ "sF": "13", "sU": "9", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "2014 Regular Season - Week 8" }, { "date": "Oct 26, 2014", @@ -126155,7 +186937,12 @@ "sF": "34", "sU": "7", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2014 Regular Season - Week 8" }, { "date": "Oct 26, 2014", @@ -126165,7 +186952,12 @@ "sF": "20", "sU": "24", "spread": "1", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.75, + "sF": 24.75 + }, + "week": "2014 Regular Season - Week 8" }, { "date": "Oct 26, 2014", @@ -126174,8 +186966,13 @@ "und": "Oakland Raiders", "sF": "23", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "2014 Regular Season - Week 8" }, { "date": "Oct 26, 2014", @@ -126184,8 +186981,13 @@ "und": "Pittsburgh Steelers", "sF": "34", "sU": "51", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.5, + "pScore": { + "sU": 22.0, + "sF": 26.5 + }, + "week": "2014 Regular Season - Week 8" }, { "date": "Oct 26, 2014", @@ -126195,7 +186997,12 @@ "sF": "44", "sU": "23", "spread": "2", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 26.5, + "sF": 28.5 + }, + "week": "2014 Regular Season - Week 8" }, { "date": "Oct 27, 2014", @@ -126204,8 +187011,13 @@ "und": "Washington Redskins", "sF": "17", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 49.0, + "pScore": { + "sU": 19.75, + "sF": 29.25 + }, + "week": "2014 Regular Season - Week 8" }, { "date": "Oct 30, 2014", @@ -126215,7 +187027,12 @@ "sF": "28", "sU": "10", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2014 Regular Season - Week 9" }, { "date": "Nov 2, 2014", @@ -126225,7 +187042,12 @@ "sF": "33", "sU": "23", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "2014 Regular Season - Week 9" }, { "date": "Nov 2, 2014", @@ -126235,7 +187057,12 @@ "sF": "22", "sU": "17", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2014 Regular Season - Week 9" }, { "date": "Nov 2, 2014", @@ -126245,7 +187072,12 @@ "sF": "37", "sU": "0", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2014 Regular Season - Week 9" }, { "date": "Nov 2, 2014", @@ -126255,7 +187087,12 @@ "sF": "31", "sU": "21", "spread": "2", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.25, + "sF": 25.25 + }, + "week": "2014 Regular Season - Week 9" }, { "date": "Nov 2, 2014", @@ -126264,8 +187101,13 @@ "und": "New York Jets", "sF": "24", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 41.5, + "pScore": { + "sU": 16.5, + "sF": 25.0 + }, + "week": "2014 Regular Season - Week 9" }, { "date": "Nov 2, 2014", @@ -126274,8 +187116,13 @@ "und": "Arizona Cardinals", "sF": "17", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.0, + "pScore": { + "sU": 21.75, + "sF": 23.25 + }, + "week": "2014 Regular Season - Week 9" }, { "date": "Nov 2, 2014", @@ -126284,8 +187131,13 @@ "und": "St Louis Rams", "sF": "10", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 44.0, + "pScore": { + "sU": 16.75, + "sF": 27.25 + }, + "week": "2014 Regular Season - Week 9" }, { "date": "Nov 2, 2014", @@ -126295,7 +187147,12 @@ "sF": "21", "sU": "43", "spread": "3", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 24.75, + "sF": 27.75 + }, + "week": "2014 Regular Season - Week 9" }, { "date": "Nov 2, 2014", @@ -126304,8 +187161,13 @@ "und": "Oakland Raiders", "sF": "30", "sU": "24", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 44.0, + "pScore": { + "sU": 15.25, + "sF": 28.75 + }, + "week": "2014 Regular Season - Week 9" }, { "date": "Nov 2, 2014", @@ -126314,8 +187176,13 @@ "und": "Baltimore Ravens", "sF": "43", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.5, + "pScore": { + "sU": 22.5, + "sF": 25.0 + }, + "week": "2014 Regular Season - Week 9" }, { "date": "Nov 3, 2014", @@ -126325,7 +187192,12 @@ "sF": "40", "sU": "24", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "2014 Regular Season - Week 9" }, { "date": "Nov 6, 2014", @@ -126334,8 +187206,13 @@ "und": "Cleveland Browns", "sF": "3", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.0, + "pScore": { + "sU": 19.75, + "sF": 26.25 + }, + "week": "2014 Regular Season - Week 10" }, { "date": "Nov 9, 2014", @@ -126344,8 +187221,13 @@ "und": "Kansas City Chiefs", "sF": "13", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "2014 Regular Season - Week 10" }, { "date": "Nov 9, 2014", @@ -126355,7 +187237,12 @@ "sF": "20", "sU": "16", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2014 Regular Season - Week 10" }, { "date": "Nov 9, 2014", @@ -126364,8 +187251,13 @@ "und": "New York Jets", "sF": "13", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.0, + "pScore": { + "sU": 21.25, + "sF": 25.75 + }, + "week": "2014 Regular Season - Week 10" }, { "date": "Nov 9, 2014", @@ -126374,8 +187266,13 @@ "und": "Tennessee Titans", "sF": "21", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 44.5, + "pScore": { + "sU": 17.0, + "sF": 27.5 + }, + "week": "2014 Regular Season - Week 10" }, { "date": "Nov 9, 2014", @@ -126384,12 +187281,13 @@ "und": "San Francisco 49ers", "sF": "24", "sU": "27", - "spread": "5", - "ou": "49", + "spread": "5.5", + "ou": 49.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 21.75, + "sF": 27.25 + }, + "week": "2014 Regular Season - Week 10" }, { "date": "Nov 9, 2014", @@ -126399,7 +187297,12 @@ "sF": "27", "sU": "17", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2014 Regular Season - Week 10" }, { "date": "Nov 9, 2014", @@ -126408,8 +187311,13 @@ "und": "Jacksonville Jaguars", "sF": "31", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.0, + "pScore": { + "sU": 18.75, + "sF": 26.25 + }, + "week": "2014 Regular Season - Week 10" }, { "date": "Nov 9, 2014", @@ -126418,8 +187326,13 @@ "und": "Oakland Raiders", "sF": "41", "sU": "17", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 51.0, + "pScore": { + "sU": 19.25, + "sF": 31.75 + }, + "week": "2014 Regular Season - Week 10" }, { "date": "Nov 9, 2014", @@ -126429,7 +187342,12 @@ "sF": "31", "sU": "14", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2014 Regular Season - Week 10" }, { "date": "Nov 9, 2014", @@ -126438,8 +187356,13 @@ "und": "New York Giants", "sF": "38", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 45.0, + "pScore": { + "sU": 17.75, + "sF": 27.25 + }, + "week": "2014 Regular Season - Week 10" }, { "date": "Nov 9, 2014", @@ -126448,8 +187371,13 @@ "und": "Chicago Bears", "sF": "55", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 54.0, + "pScore": { + "sU": 22.25, + "sF": 31.75 + }, + "week": "2014 Regular Season - Week 10" }, { "date": "Nov 10, 2014", @@ -126459,7 +187387,12 @@ "sF": "45", "sU": "21", "spread": "7", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 20.75, + "sF": 27.75 + }, + "week": "2014 Regular Season - Week 10" }, { "date": "Nov 13, 2014", @@ -126469,7 +187402,12 @@ "sF": "22", "sU": "9", "spread": "5", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.5, + "sF": 23.5 + }, + "week": "2014 Regular Season - Week 11" }, { "date": "Nov 16, 2014", @@ -126478,8 +187416,13 @@ "und": "St Louis Rams", "sF": "7", "sU": "22", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 51.0, + "pScore": { + "sU": 20.75, + "sF": 30.25 + }, + "week": "2014 Regular Season - Week 11" }, { "date": "Nov 16, 2014", @@ -126488,8 +187431,13 @@ "und": "Minnesota Vikings", "sF": "21", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "2014 Regular Season - Week 11" }, { "date": "Nov 16, 2014", @@ -126499,7 +187447,12 @@ "sF": "10", "sU": "27", "spread": "7", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 22.0, + "sF": 29.0 + }, + "week": "2014 Regular Season - Week 11" }, { "date": "Nov 16, 2014", @@ -126508,8 +187461,13 @@ "und": "Carolina Panthers", "sF": "19", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.0, + "pScore": { + "sU": 22.75, + "sF": 24.25 + }, + "week": "2014 Regular Season - Week 11" }, { "date": "Nov 16, 2014", @@ -126518,8 +187476,13 @@ "und": "Houston Texans", "sF": "7", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2014 Regular Season - Week 11" }, { "date": "Nov 16, 2014", @@ -126529,7 +187492,12 @@ "sF": "16", "sU": "10", "spread": "4", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.25, + "sF": 24.25 + }, + "week": "2014 Regular Season - Week 11" }, { "date": "Nov 16, 2014", @@ -126538,8 +187506,13 @@ "und": "Tampa Bay Buccaneers", "sF": "7", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.5, + "pScore": { + "sU": 19.0, + "sF": 26.5 + }, + "week": "2014 Regular Season - Week 11" }, { "date": "Nov 16, 2014", @@ -126549,7 +187522,12 @@ "sF": "13", "sU": "6", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "2014 Regular Season - Week 11" }, { "date": "Nov 16, 2014", @@ -126559,7 +187537,12 @@ "sF": "14", "sU": "6", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "2014 Regular Season - Week 11" }, { "date": "Nov 16, 2014", @@ -126568,8 +187551,13 @@ "und": "Philadelphia Eagles", "sF": "53", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 55.0, + "pScore": { + "sU": 24.75, + "sF": 30.25 + }, + "week": "2014 Regular Season - Week 11" }, { "date": "Nov 16, 2014", @@ -126579,7 +187567,12 @@ "sF": "20", "sU": "42", "spread": "3", - "ou": -1 + "ou": 57.0, + "pScore": { + "sU": 27.0, + "sF": 30.0 + }, + "week": "2014 Regular Season - Week 11" }, { "date": "Nov 17, 2014", @@ -126588,8 +187581,13 @@ "und": "Tennessee Titans", "sF": "27", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.5, + "pScore": { + "sU": 20.0, + "sF": 25.5 + }, + "week": "2014 Regular Season - Week 11" }, { "date": "Nov 20, 2014", @@ -126599,7 +187597,12 @@ "sF": "20", "sU": "24", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "2014 Regular Season - Week 12" }, { "date": "Nov 23, 2014", @@ -126608,8 +187611,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.5, + "pScore": { + "sU": 23.0, + "sF": 25.5 + }, + "week": "2014 Regular Season - Week 12" }, { "date": "Nov 23, 2014", @@ -126618,8 +187626,13 @@ "und": "Tampa Bay Buccaneers", "sF": "21", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.5, + "pScore": { + "sU": 21.0, + "sF": 25.5 + }, + "week": "2014 Regular Season - Week 12" }, { "date": "Nov 23, 2014", @@ -126628,8 +187641,13 @@ "und": "Cincinnati Bengals", "sF": "13", "sU": "22", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2014 Regular Season - Week 12" }, { "date": "Nov 23, 2014", @@ -126638,8 +187656,13 @@ "und": "Jacksonville Jaguars", "sF": "23", "sU": "3", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 49.0, + "pScore": { + "sU": 17.75, + "sF": 31.25 + }, + "week": "2014 Regular Season - Week 12" }, { "date": "Nov 23, 2014", @@ -126649,7 +187672,12 @@ "sF": "34", "sU": "9", "spread": "7", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.25, + "sF": 27.25 + }, + "week": "2014 Regular Season - Week 12" }, { "date": "Nov 23, 2014", @@ -126659,7 +187687,12 @@ "sF": "43", "sU": "24", "spread": "11", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 19.0, + "sF": 30.0 + }, + "week": "2014 Regular Season - Week 12" }, { "date": "Nov 23, 2014", @@ -126668,8 +187701,13 @@ "und": "Minnesota Vikings", "sF": "24", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 50.0, + "pScore": { + "sU": 21.25, + "sF": 28.75 + }, + "week": "2014 Regular Season - Week 12" }, { "date": "Nov 23, 2014", @@ -126679,7 +187717,12 @@ "sF": "27", "sU": "24", "spread": "5", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.25, + "sF": 24.25 + }, + "week": "2014 Regular Season - Week 12" }, { "date": "Nov 23, 2014", @@ -126689,7 +187732,12 @@ "sF": "19", "sU": "3", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2014 Regular Season - Week 12" }, { "date": "Nov 23, 2014", @@ -126699,7 +187747,12 @@ "sF": "39", "sU": "36", "spread": "7", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.25, + "sF": 27.25 + }, + "week": "2014 Regular Season - Week 12" }, { "date": "Nov 23, 2014", @@ -126708,8 +187761,13 @@ "und": "Washington Redskins", "sF": "17", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.0, + "pScore": { + "sU": 17.25, + "sF": 26.75 + }, + "week": "2014 Regular Season - Week 12" }, { "date": "Nov 23, 2014", @@ -126719,7 +187777,12 @@ "sF": "31", "sU": "28", "spread": "5", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 22.0, + "sF": 27.0 + }, + "week": "2014 Regular Season - Week 12" }, { "date": "Nov 24, 2014", @@ -126728,8 +187791,13 @@ "und": "New York Jets", "sF": "38", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2014 Regular Season - Week 12" }, { "date": "Nov 24, 2014", @@ -126739,7 +187807,12 @@ "sF": "27", "sU": "34", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2014 Regular Season - Week 12" }, { "date": "Nov 27, 2014", @@ -126749,7 +187822,12 @@ "sF": "34", "sU": "17", "spread": "7", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.75, + "sF": 26.75 + }, + "week": "2014 Regular Season - Week 13" }, { "date": "Nov 27, 2014", @@ -126758,8 +187836,13 @@ "und": "Philadelphia Eagles", "sF": "10", "sU": "33", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 57.0, + "pScore": { + "sU": 26.75, + "sF": 30.25 + }, + "week": "2014 Regular Season - Week 13" }, { "date": "Nov 27, 2014", @@ -126768,8 +187851,13 @@ "und": "Seattle Seahawks", "sF": "3", "sU": "19", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.5, + "pScore": { + "sU": 19.5, + "sF": 21.0 + }, + "week": "2014 Regular Season - Week 13" }, { "date": "Nov 30, 2014", @@ -126779,7 +187867,12 @@ "sF": "52", "sU": "0", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "2014 Regular Season - Week 13" }, { "date": "Nov 30, 2014", @@ -126788,8 +187881,13 @@ "und": "San Diego Chargers", "sF": "33", "sU": "34", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.5, + "pScore": { + "sU": 19.5, + "sF": 26.0 + }, + "week": "2014 Regular Season - Week 13" }, { "date": "Nov 30, 2014", @@ -126799,7 +187897,12 @@ "sF": "26", "sU": "10", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2014 Regular Season - Week 13" }, { "date": "Nov 30, 2014", @@ -126809,7 +187912,12 @@ "sF": "45", "sU": "21", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2014 Regular Season - Week 13" }, { "date": "Nov 30, 2014", @@ -126818,8 +187926,13 @@ "und": "Washington Redskins", "sF": "49", "sU": "27", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 49.0, + "pScore": { + "sU": 20.25, + "sF": 28.75 + }, + "week": "2014 Regular Season - Week 13" }, { "date": "Nov 30, 2014", @@ -126828,8 +187941,13 @@ "und": "Carolina Panthers", "sF": "31", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2014 Regular Season - Week 13" }, { "date": "Nov 30, 2014", @@ -126838,8 +187956,13 @@ "und": "New Orleans Saints", "sF": "32", "sU": "35", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 54.5, + "pScore": { + "sU": 25.5, + "sF": 29.0 + }, + "week": "2014 Regular Season - Week 13" }, { "date": "Nov 30, 2014", @@ -126849,7 +187972,12 @@ "sF": "14", "sU": "13", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "2014 Regular Season - Week 13" }, { "date": "Nov 30, 2014", @@ -126859,7 +187987,12 @@ "sF": "24", "sU": "25", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2014 Regular Season - Week 13" }, { "date": "Nov 30, 2014", @@ -126868,8 +188001,13 @@ "und": "Atlanta Falcons", "sF": "18", "sU": "29", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.0, + "pScore": { + "sU": 21.75, + "sF": 23.25 + }, + "week": "2014 Regular Season - Week 13" }, { "date": "Nov 30, 2014", @@ -126879,7 +188017,12 @@ "sF": "26", "sU": "21", "spread": "3", - "ou": -1 + "ou": 58.0, + "pScore": { + "sU": 27.5, + "sF": 30.5 + }, + "week": "2014 Regular Season - Week 13" }, { "date": "Dec 1, 2014", @@ -126889,7 +188032,12 @@ "sF": "16", "sU": "13", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2014 Regular Season - Week 13" }, { "date": "Dec 4, 2014", @@ -126899,7 +188047,12 @@ "sF": "41", "sU": "28", "spread": "4", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 23.25, + "sF": 27.25 + }, + "week": "2014 Regular Season - Week 14" }, { "date": "Dec 7, 2014", @@ -126909,7 +188062,12 @@ "sF": "21", "sU": "42", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2014 Regular Season - Week 14" }, { "date": "Dec 7, 2014", @@ -126918,8 +188076,13 @@ "und": "Tampa Bay Buccaneers", "sF": "34", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 42.0, + "pScore": { + "sU": 15.75, + "sF": 26.25 + }, + "week": "2014 Regular Season - Week 14" }, { "date": "Dec 7, 2014", @@ -126929,7 +188092,12 @@ "sF": "13", "sU": "28", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2014 Regular Season - Week 14" }, { "date": "Dec 7, 2014", @@ -126938,8 +188106,13 @@ "und": "New York Jets", "sF": "30", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "2014 Regular Season - Week 14" }, { "date": "Dec 7, 2014", @@ -126949,7 +188122,12 @@ "sF": "25", "sU": "24", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "2014 Regular Season - Week 14" }, { "date": "Dec 7, 2014", @@ -126958,8 +188136,13 @@ "und": "Jacksonville Jaguars", "sF": "27", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "2014 Regular Season - Week 14" }, { "date": "Dec 7, 2014", @@ -126969,7 +188152,12 @@ "sF": "10", "sU": "41", "spread": "9", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 20.75, + "sF": 29.75 + }, + "week": "2014 Regular Season - Week 14" }, { "date": "Dec 7, 2014", @@ -126979,7 +188167,12 @@ "sF": "36", "sU": "7", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2014 Regular Season - Week 14" }, { "date": "Dec 7, 2014", @@ -126989,7 +188182,12 @@ "sF": "24", "sU": "0", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2014 Regular Season - Week 14" }, { "date": "Dec 7, 2014", @@ -126998,8 +188196,13 @@ "und": "Arizona Cardinals", "sF": "14", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "2014 Regular Season - Week 14" }, { "date": "Dec 7, 2014", @@ -127008,8 +188211,13 @@ "und": "Buffalo Bills", "sF": "24", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 47.5, + "pScore": { + "sU": 19.0, + "sF": 28.5 + }, + "week": "2014 Regular Season - Week 14" }, { "date": "Dec 7, 2014", @@ -127019,7 +188227,12 @@ "sF": "13", "sU": "24", "spread": "9", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.75, + "sF": 24.75 + }, + "week": "2014 Regular Season - Week 14" }, { "date": "Dec 7, 2014", @@ -127029,7 +188242,12 @@ "sF": "24", "sU": "14", "spread": "2", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.0, + "sF": 25.0 + }, + "week": "2014 Regular Season - Week 14" }, { "date": "Dec 7, 2014", @@ -127039,7 +188257,12 @@ "sF": "23", "sU": "14", "spread": "4", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 25.0, + "sF": 29.0 + }, + "week": "2014 Regular Season - Week 14" }, { "date": "Dec 8, 2014", @@ -127048,8 +188271,13 @@ "und": "Atlanta Falcons", "sF": "43", "sU": "37", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 54.5, + "pScore": { + "sU": 20.5, + "sF": 34.0 + }, + "week": "2014 Regular Season - Week 14" }, { "date": "Dec 11, 2014", @@ -127058,8 +188286,13 @@ "und": "Arizona Cardinals", "sF": "6", "sU": "12", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "2014 Regular Season - Week 15" }, { "date": "Dec 14, 2014", @@ -127069,7 +188302,12 @@ "sF": "27", "sU": "20", "spread": "3", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 26.0, + "sF": 29.0 + }, + "week": "2014 Regular Season - Week 15" }, { "date": "Dec 14, 2014", @@ -127078,8 +188316,13 @@ "und": "Jacksonville Jaguars", "sF": "20", "sU": "12", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 45.0, + "pScore": { + "sU": 15.75, + "sF": 29.25 + }, + "week": "2014 Regular Season - Week 15" }, { "date": "Dec 14, 2014", @@ -127089,7 +188332,12 @@ "sF": "13", "sU": "21", "spread": "4", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.0, + "sF": 27.0 + }, + "week": "2014 Regular Season - Week 15" }, { "date": "Dec 14, 2014", @@ -127099,7 +188347,12 @@ "sF": "0", "sU": "30", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2014 Regular Season - Week 15" }, { "date": "Dec 14, 2014", @@ -127108,8 +188361,13 @@ "und": "Houston Texans", "sF": "17", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.0, + "pScore": { + "sU": 21.25, + "sF": 27.75 + }, + "week": "2014 Regular Season - Week 15" }, { "date": "Dec 14, 2014", @@ -127118,8 +188376,13 @@ "und": "Miami Dolphins", "sF": "41", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2014 Regular Season - Week 15" }, { "date": "Dec 14, 2014", @@ -127128,8 +188391,13 @@ "und": "Washington Redskins", "sF": "24", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "2014 Regular Season - Week 15" }, { "date": "Dec 14, 2014", @@ -127139,7 +188407,12 @@ "sF": "19", "sU": "17", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2014 Regular Season - Week 15" }, { "date": "Dec 14, 2014", @@ -127149,7 +188422,12 @@ "sF": "31", "sU": "13", "spread": "10", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 15.75, + "sF": 25.75 + }, + "week": "2014 Regular Season - Week 15" }, { "date": "Dec 14, 2014", @@ -127158,8 +188436,13 @@ "und": "San Diego Chargers", "sF": "22", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 50.5, + "pScore": { + "sU": 23.0, + "sF": 27.5 + }, + "week": "2014 Regular Season - Week 15" }, { "date": "Dec 14, 2014", @@ -127169,7 +188452,12 @@ "sF": "16", "sU": "11", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2014 Regular Season - Week 15" }, { "date": "Dec 14, 2014", @@ -127178,8 +188466,13 @@ "und": "Minnesota Vikings", "sF": "16", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.5, + "pScore": { + "sU": 17.0, + "sF": 24.5 + }, + "week": "2014 Regular Season - Week 15" }, { "date": "Dec 14, 2014", @@ -127188,12 +188481,13 @@ "und": "San Francisco 49ers", "sF": "17", "sU": "7", - "spread": "9", - "ou": "49", + "spread": "9.5", + "ou": 38.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 14.25, + "sF": 23.75 + }, + "week": "2014 Regular Season - Week 15" }, { "date": "Dec 14, 2014", @@ -127203,7 +188497,12 @@ "sF": "27", "sU": "38", "spread": "3", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 26.0, + "sF": 29.0 + }, + "week": "2014 Regular Season - Week 15" }, { "date": "Dec 15, 2014", @@ -127213,7 +188512,12 @@ "sF": "31", "sU": "15", "spread": "3", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 25.25, + "sF": 28.25 + }, + "week": "2014 Regular Season - Week 15" }, { "date": "Dec 18, 2014", @@ -127222,8 +188526,13 @@ "und": "Tennessee Titans", "sF": "21", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "2014 Regular Season - Week 16" }, { "date": "Dec 20, 2014", @@ -127233,7 +188542,12 @@ "sF": "24", "sU": "27", "spread": "7", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 22.0, + "sF": 29.0 + }, + "week": "2014 Regular Season - Week 16" }, { "date": "Dec 20, 2014", @@ -127242,8 +188556,13 @@ "und": "San Diego Chargers", "sF": "35", "sU": "38", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.5, + "pScore": { + "sU": 19.5, + "sF": 21.0 + }, + "week": "2014 Regular Season - Week 16" }, { "date": "Dec 21, 2014", @@ -127252,8 +188571,13 @@ "und": "Houston Texans", "sF": "13", "sU": "25", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "2014 Regular Season - Week 16" }, { "date": "Dec 21, 2014", @@ -127263,7 +188587,12 @@ "sF": "17", "sU": "16", "spread": "10", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 18.5, + "sF": 28.5 + }, + "week": "2014 Regular Season - Week 16" }, { "date": "Dec 21, 2014", @@ -127272,8 +188601,13 @@ "und": "Kansas City Chiefs", "sF": "20", "sU": "12", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.5, + "pScore": { + "sU": 23.5, + "sF": 26.0 + }, + "week": "2014 Regular Season - Week 16" }, { "date": "Dec 21, 2014", @@ -127283,7 +188617,12 @@ "sF": "20", "sU": "14", "spread": "10", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.25, + "sF": 27.25 + }, + "week": "2014 Regular Season - Week 16" }, { "date": "Dec 21, 2014", @@ -127292,8 +188631,13 @@ "und": "Minnesota Vikings", "sF": "37", "sU": "35", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.5, + "pScore": { + "sU": 19.0, + "sF": 23.5 + }, + "week": "2014 Regular Season - Week 16" }, { "date": "Dec 21, 2014", @@ -127303,7 +188647,12 @@ "sF": "14", "sU": "30", "spread": "6", - "ou": -1 + "ou": 56.5, + "pScore": { + "sU": 25.25, + "sF": 31.25 + }, + "week": "2014 Regular Season - Week 16" }, { "date": "Dec 21, 2014", @@ -127313,7 +188662,12 @@ "sF": "20", "sU": "3", "spread": "12", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 18.5, + "sF": 30.5 + }, + "week": "2014 Regular Season - Week 16" }, { "date": "Dec 21, 2014", @@ -127323,7 +188677,12 @@ "sF": "17", "sU": "13", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "2014 Regular Season - Week 16" }, { "date": "Dec 21, 2014", @@ -127332,8 +188691,13 @@ "und": "New York Giants", "sF": "27", "sU": "37", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2014 Regular Season - Week 16" }, { "date": "Dec 21, 2014", @@ -127342,8 +188706,13 @@ "und": "Oakland Raiders", "sF": "24", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "2014 Regular Season - Week 16" }, { "date": "Dec 21, 2014", @@ -127353,7 +188722,12 @@ "sF": "42", "sU": "7", "spread": "3", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 25.5, + "sF": 28.5 + }, + "week": "2014 Regular Season - Week 16" }, { "date": "Dec 21, 2014", @@ -127363,7 +188737,12 @@ "sF": "35", "sU": "6", "spread": "9", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 13.5, + "sF": 22.5 + }, + "week": "2014 Regular Season - Week 16" }, { "date": "Dec 22, 2014", @@ -127372,8 +188751,13 @@ "und": "Cincinnati Bengals", "sF": "28", "sU": "37", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2014 Regular Season - Week 16" }, { "date": "Dec 28, 2014", @@ -127382,8 +188766,13 @@ "und": "Cleveland Browns", "sF": "20", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 39.5, + "pScore": { + "sU": 13.0, + "sF": 26.5 + }, + "week": "2014 Regular Season - Week 17" }, { "date": "Dec 28, 2014", @@ -127392,8 +188781,13 @@ "und": "New York Jets", "sF": "24", "sU": "37", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "2014 Regular Season - Week 17" }, { "date": "Dec 28, 2014", @@ -127403,7 +188797,12 @@ "sF": "13", "sU": "9", "spread": "7", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.75, + "sF": 26.75 + }, + "week": "2014 Regular Season - Week 17" }, { "date": "Dec 28, 2014", @@ -127412,8 +188811,13 @@ "und": "Buffalo Bills", "sF": "9", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2014 Regular Season - Week 17" }, { "date": "Dec 28, 2014", @@ -127422,8 +188826,13 @@ "und": "Tennessee Titans", "sF": "27", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.5, + "pScore": { + "sU": 19.5, + "sF": 27.0 + }, + "week": "2014 Regular Season - Week 17" }, { "date": "Dec 28, 2014", @@ -127432,8 +188841,13 @@ "und": "Jacksonville Jaguars", "sF": "23", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.0, + "pScore": { + "sU": 15.25, + "sF": 22.75 + }, + "week": "2014 Regular Season - Week 17" }, { "date": "Dec 28, 2014", @@ -127442,8 +188856,13 @@ "und": "San Diego Chargers", "sF": "19", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2014 Regular Season - Week 17" }, { "date": "Dec 28, 2014", @@ -127452,8 +188871,13 @@ "und": "Tampa Bay Buccaneers", "sF": "23", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.5, + "pScore": { + "sU": 20.5, + "sF": 26.0 + }, + "week": "2014 Regular Season - Week 17" }, { "date": "Dec 28, 2014", @@ -127463,7 +188887,12 @@ "sF": "44", "sU": "17", "spread": "6", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.75, + "sF": 26.75 + }, + "week": "2014 Regular Season - Week 17" }, { "date": "Dec 28, 2014", @@ -127473,7 +188902,12 @@ "sF": "3", "sU": "34", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2014 Regular Season - Week 17" }, { "date": "Dec 28, 2014", @@ -127483,7 +188917,12 @@ "sF": "47", "sU": "14", "spread": "14", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 17.0, + "sF": 31.0 + }, + "week": "2014 Regular Season - Week 17" }, { "date": "Dec 28, 2014", @@ -127493,7 +188932,12 @@ "sF": "30", "sU": "20", "spread": "7", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.75, + "sF": 26.75 + }, + "week": "2014 Regular Season - Week 17" }, { "date": "Dec 28, 2014", @@ -127502,8 +188946,13 @@ "und": "Arizona Cardinals", "sF": "20", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.5, + "pScore": { + "sU": 15.5, + "sF": 22.0 + }, + "week": "2014 Regular Season - Week 17" }, { "date": "Dec 28, 2014", @@ -127513,7 +188962,12 @@ "sF": "20", "sU": "6", "spread": "11", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 15.25, + "sF": 26.25 + }, + "week": "2014 Regular Season - Week 17" }, { "date": "Dec 28, 2014", @@ -127522,8 +188976,13 @@ "und": "Cincinnati Bengals", "sF": "27", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "2014 Regular Season - Week 17" }, { "date": "Jan 3, 2015", @@ -127532,8 +188991,13 @@ "und": "Arizona Cardinals (5)", "sF": "27", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.5, + "pScore": { + "sU": 16.0, + "sF": 21.5 + }, + "week": "2014 Playoffs" }, { "date": "Jan 3, 2015", @@ -127543,7 +189007,12 @@ "sF": "17", "sU": "30", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2014 Playoffs" }, { "date": "Jan 4, 2015", @@ -127552,8 +189021,13 @@ "und": "Cincinnati Bengals (5)", "sF": "26", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "2014 Playoffs" }, { "date": "Jan 4, 2015", @@ -127562,8 +189036,13 @@ "und": "Detroit Lions (6)", "sF": "24", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.5, + "pScore": { + "sU": 21.0, + "sF": 27.5 + }, + "week": "2014 Playoffs" }, { "date": "Jan 10, 2015", @@ -127573,7 +189052,12 @@ "sF": "35", "sU": "31", "spread": "7", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.25, + "sF": 27.25 + }, + "week": "2014 Playoffs" }, { "date": "Jan 10, 2015", @@ -127582,8 +189066,13 @@ "und": "Carolina Panthers (4)", "sF": "31", "sU": "17", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 39.5, + "pScore": { + "sU": 13.0, + "sF": 26.5 + }, + "week": "2014 Playoffs" }, { "date": "Jan 11, 2015", @@ -127593,7 +189082,12 @@ "sF": "26", "sU": "21", "spread": "6", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 22.75, + "sF": 28.75 + }, + "week": "2014 Playoffs" }, { "date": "Jan 11, 2015", @@ -127603,7 +189097,12 @@ "sF": "13", "sU": "24", "spread": "7", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 23.25, + "sF": 30.25 + }, + "week": "2014 Playoffs" }, { "date": "Jan 18, 2015", @@ -127612,8 +189111,13 @@ "und": "Green Bay Packers (2)", "sF": "28", "sU": "22", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 45.0, + "pScore": { + "sU": 18.25, + "sF": 26.75 + }, + "week": "2014 Playoffs" }, { "date": "Jan 18, 2015", @@ -127623,7 +189127,12 @@ "sF": "45", "sU": "7", "spread": "7", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 22.75, + "sF": 29.75 + }, + "week": "2014 Playoffs" }, { "date": "Feb 1, 2015", @@ -127633,7 +189142,12 @@ "sF": "24", "sU": "28", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "2014 Playoffs" }, { "date": "Sep 10, 2015", @@ -127643,7 +189157,12 @@ "sF": "28", "sU": "21", "spread": "7", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 22.5, + "sF": 29.5 + }, + "week": "2015 Regular Season - Week 1" }, { "date": "Sep 13, 2015", @@ -127652,8 +189171,13 @@ "und": "Chicago Bears", "sF": "31", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.0, + "pScore": { + "sU": 21.25, + "sF": 27.75 + }, + "week": "2015 Regular Season - Week 1" }, { "date": "Sep 13, 2015", @@ -127663,7 +189187,12 @@ "sF": "31", "sU": "34", "spread": "4", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.25, + "sF": 22.25 + }, + "week": "2015 Regular Season - Week 1" }, { "date": "Sep 13, 2015", @@ -127673,7 +189202,12 @@ "sF": "20", "sU": "27", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "2015 Regular Season - Week 1" }, { "date": "Sep 13, 2015", @@ -127683,7 +189217,12 @@ "sF": "17", "sU": "10", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2015 Regular Season - Week 1" }, { "date": "Sep 13, 2015", @@ -127692,8 +189231,13 @@ "und": "Buffalo Bills", "sF": "14", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "2015 Regular Season - Week 1" }, { "date": "Sep 13, 2015", @@ -127703,7 +189247,12 @@ "sF": "20", "sU": "9", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2015 Regular Season - Week 1" }, { "date": "Sep 13, 2015", @@ -127712,8 +189261,13 @@ "und": "Cleveland Browns", "sF": "31", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "2015 Regular Season - Week 1" }, { "date": "Sep 13, 2015", @@ -127723,7 +189277,12 @@ "sF": "31", "sU": "19", "spread": "2", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.25, + "sF": 25.25 + }, + "week": "2015 Regular Season - Week 1" }, { "date": "Sep 13, 2015", @@ -127732,8 +189291,13 @@ "und": "Detroit Lions", "sF": "33", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2015 Regular Season - Week 1" }, { "date": "Sep 13, 2015", @@ -127742,8 +189306,13 @@ "und": "Baltimore Ravens", "sF": "19", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.0, + "pScore": { + "sU": 21.75, + "sF": 26.25 + }, + "week": "2015 Regular Season - Week 1" }, { "date": "Sep 13, 2015", @@ -127753,7 +189322,12 @@ "sF": "33", "sU": "13", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2015 Regular Season - Week 1" }, { "date": "Sep 13, 2015", @@ -127763,7 +189337,12 @@ "sF": "14", "sU": "42", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2015 Regular Season - Week 1" }, { "date": "Sep 13, 2015", @@ -127773,7 +189352,12 @@ "sF": "27", "sU": "26", "spread": "6", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 22.75, + "sF": 28.75 + }, + "week": "2015 Regular Season - Week 1" }, { "date": "Sep 14, 2015", @@ -127782,8 +189366,13 @@ "und": "Atlanta Falcons", "sF": "24", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 54.5, + "pScore": { + "sU": 26.0, + "sF": 28.5 + }, + "week": "2015 Regular Season - Week 1" }, { "date": "Sep 14, 2015", @@ -127792,12 +189381,13 @@ "und": "San Francisco 49ers", "sF": "3", "sU": "20", - "spread": "1", - "ou": "49", + "spread": "1.5", + "ou": 41.5, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 20.0, + "sF": 21.5 + }, + "week": "2015 Regular Season - Week 1" }, { "date": "Sep 17, 2015", @@ -127807,7 +189397,12 @@ "sF": "24", "sU": "31", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2015 Regular Season - Week 2" }, { "date": "Sep 20, 2015", @@ -127817,7 +189412,12 @@ "sF": "48", "sU": "23", "spread": "2", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.0, + "sF": 24.0 + }, + "week": "2015 Regular Season - Week 2" }, { "date": "Sep 20, 2015", @@ -127827,7 +189427,12 @@ "sF": "40", "sU": "32", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2015 Regular Season - Week 2" }, { "date": "Sep 20, 2015", @@ -127837,7 +189442,12 @@ "sF": "24", "sU": "17", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2015 Regular Season - Week 2" }, { "date": "Sep 20, 2015", @@ -127847,7 +189457,12 @@ "sF": "14", "sU": "28", "spread": "2", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.5, + "sF": 21.5 + }, + "week": "2015 Regular Season - Week 2" }, { "date": "Sep 20, 2015", @@ -127857,7 +189472,12 @@ "sF": "19", "sU": "26", "spread": "10", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 18.75, + "sF": 28.75 + }, + "week": "2015 Regular Season - Week 2" }, { "date": "Sep 20, 2015", @@ -127866,8 +189486,13 @@ "und": "Atlanta Falcons", "sF": "20", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 51.0, + "pScore": { + "sU": 24.25, + "sF": 26.75 + }, + "week": "2015 Regular Season - Week 2" }, { "date": "Sep 20, 2015", @@ -127876,12 +189501,13 @@ "und": "San Francisco 49ers", "sF": "43", "sU": "18", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": 45.5, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 19.5, + "sF": 26.0 + }, + "week": "2015 Regular Season - Week 2" }, { "date": "Sep 20, 2015", @@ -127891,7 +189517,12 @@ "sF": "24", "sU": "19", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2015 Regular Season - Week 2" }, { "date": "Sep 20, 2015", @@ -127901,7 +189532,12 @@ "sF": "26", "sU": "16", "spread": "2", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.75, + "sF": 22.75 + }, + "week": "2015 Regular Season - Week 2" }, { "date": "Sep 20, 2015", @@ -127911,7 +189547,12 @@ "sF": "10", "sU": "24", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2015 Regular Season - Week 2" }, { "date": "Sep 20, 2015", @@ -127921,7 +189562,12 @@ "sF": "20", "sU": "23", "spread": "6", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.75, + "sF": 23.75 + }, + "week": "2015 Regular Season - Week 2" }, { "date": "Sep 20, 2015", @@ -127931,7 +189577,12 @@ "sF": "33", "sU": "37", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "2015 Regular Season - Week 2" }, { "date": "Sep 20, 2015", @@ -127941,7 +189592,12 @@ "sF": "10", "sU": "20", "spread": "5", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 25.0, + "sF": 30.0 + }, + "week": "2015 Regular Season - Week 2" }, { "date": "Sep 20, 2015", @@ -127951,7 +189607,12 @@ "sF": "27", "sU": "17", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2015 Regular Season - Week 2" }, { "date": "Sep 21, 2015", @@ -127961,7 +189622,12 @@ "sF": "7", "sU": "20", "spread": "7", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.75, + "sF": 26.75 + }, + "week": "2015 Regular Season - Week 2" }, { "date": "Sep 24, 2015", @@ -127970,8 +189636,13 @@ "und": "Washington Redskins", "sF": "32", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2015 Regular Season - Week 3" }, { "date": "Sep 27, 2015", @@ -127981,7 +189652,12 @@ "sF": "12", "sU": "6", "spread": "1", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.5, + "sF": 24.5 + }, + "week": "2015 Regular Season - Week 3" }, { "date": "Sep 27, 2015", @@ -127990,8 +189666,13 @@ "und": "Cincinnati Bengals", "sF": "24", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2015 Regular Season - Week 3" }, { "date": "Sep 27, 2015", @@ -128000,8 +189681,13 @@ "und": "Oakland Raiders", "sF": "20", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2015 Regular Season - Week 3" }, { "date": "Sep 27, 2015", @@ -128011,7 +189697,12 @@ "sF": "31", "sU": "14", "spread": "1", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.75, + "sF": 22.75 + }, + "week": "2015 Regular Season - Week 3" }, { "date": "Sep 27, 2015", @@ -128020,8 +189711,13 @@ "und": "New Orleans Saints", "sF": "27", "sU": "22", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.5, + "pScore": { + "sU": 17.0, + "sF": 26.5 + }, + "week": "2015 Regular Season - Week 3" }, { "date": "Sep 27, 2015", @@ -128031,7 +189727,12 @@ "sF": "39", "sU": "28", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "2015 Regular Season - Week 3" }, { "date": "Sep 27, 2015", @@ -128040,8 +189741,13 @@ "und": "Tampa Bay Buccaneers", "sF": "19", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.5, + "pScore": { + "sU": 17.0, + "sF": 23.5 + }, + "week": "2015 Regular Season - Week 3" }, { "date": "Sep 27, 2015", @@ -128050,8 +189756,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.5, + "pScore": { + "sU": 22.0, + "sF": 23.5 + }, + "week": "2015 Regular Season - Week 3" }, { "date": "Sep 27, 2015", @@ -128060,8 +189771,13 @@ "und": "Tennessee Titans", "sF": "35", "sU": "33", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2015 Regular Season - Week 3" }, { "date": "Sep 27, 2015", @@ -128070,8 +189786,13 @@ "und": "Jacksonville Jaguars", "sF": "51", "sU": "17", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 49.0, + "pScore": { + "sU": 17.75, + "sF": 31.25 + }, + "week": "2015 Regular Season - Week 3" }, { "date": "Sep 27, 2015", @@ -128080,12 +189801,13 @@ "und": "San Francisco 49ers", "sF": "47", "sU": "7", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": 45.0, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 19.25, + "sF": 25.75 + }, + "week": "2015 Regular Season - Week 3" }, { "date": "Sep 27, 2015", @@ -128094,8 +189816,13 @@ "und": "Buffalo Bills", "sF": "14", "sU": "41", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2015 Regular Season - Week 3" }, { "date": "Sep 27, 2015", @@ -128104,8 +189831,13 @@ "und": "Chicago Bears", "sF": "26", "sU": "0", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 43.5, + "pScore": { + "sU": 14.5, + "sF": 29.0 + }, + "week": "2015 Regular Season - Week 3" }, { "date": "Sep 27, 2015", @@ -128115,7 +189847,12 @@ "sF": "24", "sU": "12", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2015 Regular Season - Week 3" }, { "date": "Sep 28, 2015", @@ -128125,7 +189862,12 @@ "sF": "38", "sU": "28", "spread": "6", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.5, + "sF": 27.5 + }, + "week": "2015 Regular Season - Week 3" }, { "date": "Oct 1, 2015", @@ -128134,8 +189876,13 @@ "und": "Pittsburgh Steelers", "sF": "23", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2015 Regular Season - Week 4" }, { "date": "Oct 4, 2015", @@ -128144,8 +189891,13 @@ "und": "New York Jets", "sF": "14", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "2015 Regular Season - Week 4" }, { "date": "Oct 4, 2015", @@ -128155,7 +189907,12 @@ "sF": "48", "sU": "21", "spread": "6", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.5, + "sF": 26.5 + }, + "week": "2015 Regular Season - Week 4" }, { "date": "Oct 4, 2015", @@ -128164,8 +189921,13 @@ "und": "New York Giants", "sF": "10", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.5, + "pScore": { + "sU": 20.0, + "sF": 25.5 + }, + "week": "2015 Regular Season - Week 4" }, { "date": "Oct 4, 2015", @@ -128175,7 +189937,12 @@ "sF": "20", "sU": "22", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2015 Regular Season - Week 4" }, { "date": "Oct 4, 2015", @@ -128184,8 +189951,13 @@ "und": "Jacksonville Jaguars", "sF": "16", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 48.0, + "pScore": { + "sU": 19.25, + "sF": 28.75 + }, + "week": "2015 Regular Season - Week 4" }, { "date": "Oct 4, 2015", @@ -128194,8 +189966,13 @@ "und": "Kansas City Chiefs", "sF": "36", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2015 Regular Season - Week 4" }, { "date": "Oct 4, 2015", @@ -128205,7 +189982,12 @@ "sF": "37", "sU": "23", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2015 Regular Season - Week 4" }, { "date": "Oct 4, 2015", @@ -128215,7 +189997,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2015 Regular Season - Week 4" }, { "date": "Oct 4, 2015", @@ -128225,7 +190012,12 @@ "sF": "30", "sU": "27", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "2015 Regular Season - Week 4" }, { "date": "Oct 4, 2015", @@ -128235,7 +190027,12 @@ "sF": "22", "sU": "24", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2015 Regular Season - Week 4" }, { "date": "Oct 4, 2015", @@ -128245,7 +190042,12 @@ "sF": "23", "sU": "20", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "2015 Regular Season - Week 4" }, { "date": "Oct 4, 2015", @@ -128254,12 +190056,13 @@ "und": "San Francisco 49ers", "sF": "17", "sU": "3", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": 48.0, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 20.25, + "sF": 27.75 + }, + "week": "2015 Regular Season - Week 4" }, { "date": "Oct 4, 2015", @@ -128269,7 +190072,12 @@ "sF": "26", "sU": "20", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2015 Regular Season - Week 4" }, { "date": "Oct 5, 2015", @@ -128278,8 +190086,13 @@ "und": "Detroit Lions", "sF": "13", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "2015 Regular Season - Week 4" }, { "date": "Oct 8, 2015", @@ -128289,7 +190102,12 @@ "sF": "20", "sU": "27", "spread": "2", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.25, + "sF": 23.25 + }, + "week": "2015 Regular Season - Week 5" }, { "date": "Oct 11, 2015", @@ -128299,7 +190117,12 @@ "sF": "25", "sU": "19", "spread": "7", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.5, + "sF": 27.5 + }, + "week": "2015 Regular Season - Week 5" }, { "date": "Oct 11, 2015", @@ -128309,7 +190132,12 @@ "sF": "30", "sU": "33", "spread": "6", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.25, + "sF": 24.25 + }, + "week": "2015 Regular Season - Week 5" }, { "date": "Oct 11, 2015", @@ -128319,7 +190147,12 @@ "sF": "24", "sU": "10", "spread": "9", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 18.25, + "sF": 27.25 + }, + "week": "2015 Regular Season - Week 5" }, { "date": "Oct 11, 2015", @@ -128329,7 +190162,12 @@ "sF": "17", "sU": "18", "spread": "9", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 18.0, + "sF": 27.0 + }, + "week": "2015 Regular Season - Week 5" }, { "date": "Oct 11, 2015", @@ -128338,8 +190176,13 @@ "und": "Jacksonville Jaguars", "sF": "38", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2015 Regular Season - Week 5" }, { "date": "Oct 11, 2015", @@ -128349,7 +190192,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2015 Regular Season - Week 5" }, { "date": "Oct 11, 2015", @@ -128359,7 +190207,12 @@ "sF": "14", "sU": "13", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "2015 Regular Season - Week 5" }, { "date": "Oct 11, 2015", @@ -128369,7 +190222,12 @@ "sF": "39", "sU": "17", "spread": "6", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 21.75, + "sF": 27.75 + }, + "week": "2015 Regular Season - Week 5" }, { "date": "Oct 11, 2015", @@ -128379,7 +190237,12 @@ "sF": "42", "sU": "17", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2015 Regular Season - Week 5" }, { "date": "Oct 11, 2015", @@ -128389,7 +190252,12 @@ "sF": "30", "sU": "6", "spread": "9", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 20.25, + "sF": 29.25 + }, + "week": "2015 Regular Season - Week 5" }, { "date": "Oct 11, 2015", @@ -128399,7 +190267,12 @@ "sF": "16", "sU": "10", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2015 Regular Season - Week 5" }, { "date": "Oct 11, 2015", @@ -128408,12 +190281,13 @@ "und": "San Francisco 49ers", "sF": "30", "sU": "27", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": 43.0, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 18.25, + "sF": 24.75 + }, + "week": "2015 Regular Season - Week 5" }, { "date": "Oct 12, 2015", @@ -128422,8 +190296,13 @@ "und": "Pittsburgh Steelers", "sF": "20", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2015 Regular Season - Week 5" }, { "date": "Oct 15, 2015", @@ -128433,7 +190312,12 @@ "sF": "21", "sU": "31", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2015 Regular Season - Week 6" }, { "date": "Oct 18, 2015", @@ -128443,7 +190327,12 @@ "sF": "34", "sU": "21", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2015 Regular Season - Week 6" }, { "date": "Oct 18, 2015", @@ -128452,8 +190341,13 @@ "und": "Cleveland Browns", "sF": "26", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "2015 Regular Season - Week 6" }, { "date": "Oct 18, 2015", @@ -128463,7 +190357,12 @@ "sF": "37", "sU": "34", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2015 Regular Season - Week 6" }, { "date": "Oct 18, 2015", @@ -128472,8 +190371,13 @@ "und": "Houston Texans", "sF": "20", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2015 Regular Season - Week 6" }, { "date": "Oct 18, 2015", @@ -128482,8 +190386,13 @@ "und": "Kansas City Chiefs", "sF": "16", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2015 Regular Season - Week 6" }, { "date": "Oct 18, 2015", @@ -128493,7 +190402,12 @@ "sF": "34", "sU": "20", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "2015 Regular Season - Week 6" }, { "date": "Oct 18, 2015", @@ -128503,7 +190417,12 @@ "sF": "10", "sU": "38", "spread": "2", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.75, + "sF": 22.75 + }, + "week": "2015 Regular Season - Week 6" }, { "date": "Oct 18, 2015", @@ -128512,8 +190431,13 @@ "und": "Pittsburgh Steelers", "sF": "13", "sU": "25", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2015 Regular Season - Week 6" }, { "date": "Oct 18, 2015", @@ -128523,7 +190447,12 @@ "sF": "23", "sU": "27", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "2015 Regular Season - Week 6" }, { "date": "Oct 18, 2015", @@ -128532,8 +190461,13 @@ "und": "San Diego Chargers", "sF": "27", "sU": "20", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 51.0, + "pScore": { + "sU": 20.25, + "sF": 30.75 + }, + "week": "2015 Regular Season - Week 6" }, { "date": "Oct 18, 2015", @@ -128543,11 +190477,12 @@ "sF": "20", "sU": "25", "spread": "2", - "ou": "49", + "ou": 43.5, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 20.75, + "sF": 22.75 + }, + "week": "2015 Regular Season - Week 6" }, { "date": "Oct 18, 2015", @@ -128556,8 +190491,13 @@ "und": "Indianapolis Colts", "sF": "34", "sU": "27", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 54.5, + "pScore": { + "sU": 22.5, + "sF": 32.0 + }, + "week": "2015 Regular Season - Week 6" }, { "date": "Oct 19, 2015", @@ -128567,7 +190507,12 @@ "sF": "27", "sU": "7", "spread": "5", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 22.25, + "sF": 27.25 + }, + "week": "2015 Regular Season - Week 6" }, { "date": "Oct 22, 2015", @@ -128576,12 +190521,13 @@ "und": "San Francisco 49ers", "sF": "20", "sU": "3", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": 42.0, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 17.75, + "sF": 24.25 + }, + "week": "2015 Regular Season - Week 7" }, { "date": "Oct 25, 2015", @@ -128591,7 +190537,12 @@ "sF": "31", "sU": "34", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "2015 Regular Season - Week 7" }, { "date": "Oct 25, 2015", @@ -128600,8 +190551,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "2015 Regular Season - Week 7" }, { "date": "Oct 25, 2015", @@ -128611,7 +190567,12 @@ "sF": "28", "sU": "19", "spread": "2", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.25, + "sF": 23.25 + }, + "week": "2015 Regular Season - Week 7" }, { "date": "Oct 25, 2015", @@ -128620,8 +190581,13 @@ "und": "Houston Texans", "sF": "44", "sU": "26", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.5, + "pScore": { + "sU": 20.0, + "sF": 24.5 + }, + "week": "2015 Regular Season - Week 7" }, { "date": "Oct 25, 2015", @@ -128630,8 +190596,13 @@ "und": "New York Jets", "sF": "30", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.5, + "pScore": { + "sU": 20.0, + "sF": 27.5 + }, + "week": "2015 Regular Season - Week 7" }, { "date": "Oct 25, 2015", @@ -128641,7 +190612,12 @@ "sF": "10", "sU": "7", "spread": "6", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.5, + "sF": 26.5 + }, + "week": "2015 Regular Season - Week 7" }, { "date": "Oct 25, 2015", @@ -128651,7 +190627,12 @@ "sF": "21", "sU": "27", "spread": "4", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 24.0, + "sF": 28.0 + }, + "week": "2015 Regular Season - Week 7" }, { "date": "Oct 25, 2015", @@ -128661,7 +190642,12 @@ "sF": "23", "sU": "13", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2015 Regular Season - Week 7" }, { "date": "Oct 25, 2015", @@ -128671,7 +190657,12 @@ "sF": "31", "sU": "30", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2015 Regular Season - Week 7" }, { "date": "Oct 25, 2015", @@ -128680,8 +190671,13 @@ "und": "Oakland Raiders", "sF": "29", "sU": "37", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2015 Regular Season - Week 7" }, { "date": "Oct 25, 2015", @@ -128691,7 +190687,12 @@ "sF": "27", "sU": "20", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2015 Regular Season - Week 7" }, { "date": "Oct 25, 2015", @@ -128701,7 +190702,12 @@ "sF": "27", "sU": "16", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2015 Regular Season - Week 7" }, { "date": "Oct 26, 2015", @@ -128711,7 +190717,12 @@ "sF": "26", "sU": "18", "spread": "8", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 20.5, + "sF": 28.5 + }, + "week": "2015 Regular Season - Week 7" }, { "date": "Oct 29, 2015", @@ -128720,8 +190731,13 @@ "und": "Miami Dolphins", "sF": "36", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 50.5, + "pScore": { + "sU": 21.5, + "sF": 29.0 + }, + "week": "2015 Regular Season - Week 8" }, { "date": "Nov 1, 2015", @@ -128730,8 +190746,13 @@ "und": "Detroit Lions", "sF": "45", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2015 Regular Season - Week 8" }, { "date": "Nov 1, 2015", @@ -128741,7 +190762,12 @@ "sF": "23", "sU": "20", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "2015 Regular Season - Week 8" }, { "date": "Nov 1, 2015", @@ -128750,12 +190776,13 @@ "und": "San Francisco 49ers", "sF": "27", "sU": "6", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": 39.5, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 16.0, + "sF": 23.5 + }, + "week": "2015 Regular Season - Week 8" }, { "date": "Nov 1, 2015", @@ -128765,7 +190792,12 @@ "sF": "20", "sU": "23", "spread": "7", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 20.75, + "sF": 27.75 + }, + "week": "2015 Regular Season - Week 8" }, { "date": "Nov 1, 2015", @@ -128774,8 +190806,13 @@ "und": "San Diego Chargers", "sF": "29", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 51.0, + "pScore": { + "sU": 23.75, + "sF": 27.25 + }, + "week": "2015 Regular Season - Week 8" }, { "date": "Nov 1, 2015", @@ -128785,7 +190822,12 @@ "sF": "34", "sU": "20", "spread": "6", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.0, + "sF": 26.0 + }, + "week": "2015 Regular Season - Week 8" }, { "date": "Nov 1, 2015", @@ -128794,8 +190836,13 @@ "und": "Tennessee Titans", "sF": "20", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2015 Regular Season - Week 8" }, { "date": "Nov 1, 2015", @@ -128805,7 +190852,12 @@ "sF": "52", "sU": "49", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "2015 Regular Season - Week 8" }, { "date": "Nov 1, 2015", @@ -128815,7 +190867,12 @@ "sF": "10", "sU": "16", "spread": "1", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.75, + "sF": 24.75 + }, + "week": "2015 Regular Season - Week 8" }, { "date": "Nov 1, 2015", @@ -128825,7 +190882,12 @@ "sF": "20", "sU": "34", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2015 Regular Season - Week 8" }, { "date": "Nov 1, 2015", @@ -128834,8 +190896,13 @@ "und": "Dallas Cowboys", "sF": "13", "sU": "12", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "2015 Regular Season - Week 8" }, { "date": "Nov 1, 2015", @@ -128844,8 +190911,13 @@ "und": "Denver Broncos", "sF": "10", "sU": "29", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2015 Regular Season - Week 8" }, { "date": "Nov 2, 2015", @@ -128854,8 +190926,13 @@ "und": "Indianapolis Colts", "sF": "29", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.5, + "pScore": { + "sU": 20.0, + "sF": 26.5 + }, + "week": "2015 Regular Season - Week 8" }, { "date": "Nov 5, 2015", @@ -128865,7 +190942,12 @@ "sF": "31", "sU": "10", "spread": "11", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.0, + "sF": 28.0 + }, + "week": "2015 Regular Season - Week 9" }, { "date": "Nov 8, 2015", @@ -128875,7 +190957,12 @@ "sF": "33", "sU": "17", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2015 Regular Season - Week 9" }, { "date": "Nov 8, 2015", @@ -128885,7 +190972,12 @@ "sF": "21", "sU": "18", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "2015 Regular Season - Week 9" }, { "date": "Nov 8, 2015", @@ -128895,7 +190987,12 @@ "sF": "27", "sU": "10", "spread": "14", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 19.0, + "sF": 33.0 + }, + "week": "2015 Regular Season - Week 9" }, { "date": "Nov 8, 2015", @@ -128904,8 +191001,13 @@ "und": "Tennessee Titans", "sF": "28", "sU": "34", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2015 Regular Season - Week 9" }, { "date": "Nov 8, 2015", @@ -128915,7 +191017,12 @@ "sF": "28", "sU": "23", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "2015 Regular Season - Week 9" }, { "date": "Nov 8, 2015", @@ -128924,8 +191031,13 @@ "und": "Oakland Raiders", "sF": "38", "sU": "35", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.5, + "pScore": { + "sU": 22.0, + "sF": 26.5 + }, + "week": "2015 Regular Season - Week 9" }, { "date": "Nov 8, 2015", @@ -128934,8 +191046,13 @@ "und": "Carolina Panthers", "sF": "29", "sU": "37", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "2015 Regular Season - Week 9" }, { "date": "Nov 8, 2015", @@ -128944,12 +191061,13 @@ "und": "San Francisco 49ers", "sF": "16", "sU": "17", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": 44.0, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 18.25, + "sF": 25.75 + }, + "week": "2015 Regular Season - Week 9" }, { "date": "Nov 8, 2015", @@ -128959,7 +191077,12 @@ "sF": "32", "sU": "18", "spread": "1", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 24.25, + "sF": 25.25 + }, + "week": "2015 Regular Season - Week 9" }, { "date": "Nov 8, 2015", @@ -128968,8 +191091,13 @@ "und": "Indianapolis Colts", "sF": "24", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.5, + "pScore": { + "sU": 20.0, + "sF": 25.5 + }, + "week": "2015 Regular Season - Week 9" }, { "date": "Nov 8, 2015", @@ -128979,7 +191107,12 @@ "sF": "33", "sU": "27", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2015 Regular Season - Week 9" }, { "date": "Nov 9, 2015", @@ -128988,8 +191121,13 @@ "und": "Chicago Bears", "sF": "19", "sU": "22", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 49.5, + "pScore": { + "sU": 22.5, + "sF": 27.0 + }, + "week": "2015 Regular Season - Week 9" }, { "date": "Nov 12, 2015", @@ -128998,8 +191136,13 @@ "und": "Buffalo Bills", "sF": "17", "sU": "22", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2015 Regular Season - Week 10" }, { "date": "Nov 15, 2015", @@ -129008,8 +191151,13 @@ "und": "Chicago Bears", "sF": "13", "sU": "37", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.5, + "pScore": { + "sU": 18.0, + "sF": 24.5 + }, + "week": "2015 Regular Season - Week 10" }, { "date": "Nov 15, 2015", @@ -129019,7 +191167,12 @@ "sF": "27", "sU": "10", "spread": "4", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.25, + "sF": 24.25 + }, + "week": "2015 Regular Season - Week 10" }, { "date": "Nov 15, 2015", @@ -129028,8 +191181,13 @@ "und": "Detroit Lions", "sF": "16", "sU": "18", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 49.5, + "pScore": { + "sU": 19.5, + "sF": 30.0 + }, + "week": "2015 Regular Season - Week 10" }, { "date": "Nov 15, 2015", @@ -129039,7 +191197,12 @@ "sF": "30", "sU": "9", "spread": "6", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.75, + "sF": 23.75 + }, + "week": "2015 Regular Season - Week 10" }, { "date": "Nov 15, 2015", @@ -129049,7 +191212,12 @@ "sF": "20", "sU": "22", "spread": "5", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 21.25, + "sF": 26.25 + }, + "week": "2015 Regular Season - Week 10" }, { "date": "Nov 15, 2015", @@ -129059,7 +191227,12 @@ "sF": "19", "sU": "20", "spread": "6", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 21.75, + "sF": 27.75 + }, + "week": "2015 Regular Season - Week 10" }, { "date": "Nov 15, 2015", @@ -129069,7 +191242,12 @@ "sF": "10", "sU": "6", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "2015 Regular Season - Week 10" }, { "date": "Nov 15, 2015", @@ -129079,7 +191257,12 @@ "sF": "14", "sU": "47", "spread": "1", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 24.5, + "sF": 25.5 + }, + "week": "2015 Regular Season - Week 10" }, { "date": "Nov 15, 2015", @@ -129089,7 +191272,12 @@ "sF": "14", "sU": "30", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2015 Regular Season - Week 10" }, { "date": "Nov 15, 2015", @@ -129098,8 +191286,13 @@ "und": "Kansas City Chiefs", "sF": "13", "sU": "29", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.0, + "pScore": { + "sU": 18.75, + "sF": 23.25 + }, + "week": "2015 Regular Season - Week 10" }, { "date": "Nov 15, 2015", @@ -129108,8 +191301,13 @@ "und": "New York Giants", "sF": "27", "sU": "26", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 54.0, + "pScore": { + "sU": 23.25, + "sF": 30.75 + }, + "week": "2015 Regular Season - Week 10" }, { "date": "Nov 15, 2015", @@ -129119,7 +191317,12 @@ "sF": "32", "sU": "39", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2015 Regular Season - Week 10" }, { "date": "Nov 16, 2015", @@ -129128,8 +191331,13 @@ "und": "Houston Texans", "sF": "6", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 47.0, + "pScore": { + "sU": 18.25, + "sF": 28.75 + }, + "week": "2015 Regular Season - Week 10" }, { "date": "Nov 19, 2015", @@ -129138,8 +191346,13 @@ "und": "Tennessee Titans", "sF": "19", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2015 Regular Season - Week 11" }, { "date": "Nov 22, 2015", @@ -129148,8 +191361,13 @@ "und": "Indianapolis Colts", "sF": "21", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.5, + "pScore": { + "sU": 21.5, + "sF": 26.0 + }, + "week": "2015 Regular Season - Week 11" }, { "date": "Nov 22, 2015", @@ -129158,8 +191376,13 @@ "und": "St Louis Rams", "sF": "16", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "2015 Regular Season - Week 11" }, { "date": "Nov 22, 2015", @@ -129169,7 +191392,12 @@ "sF": "44", "sU": "16", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "2015 Regular Season - Week 11" }, { "date": "Nov 22, 2015", @@ -129179,7 +191407,12 @@ "sF": "17", "sU": "15", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "2015 Regular Season - Week 11" }, { "date": "Nov 22, 2015", @@ -129189,7 +191422,12 @@ "sF": "13", "sU": "18", "spread": "1", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 24.0, + "sF": 25.0 + }, + "week": "2015 Regular Season - Week 11" }, { "date": "Nov 22, 2015", @@ -129199,7 +191437,12 @@ "sF": "17", "sU": "45", "spread": "6", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.25, + "sF": 25.25 + }, + "week": "2015 Regular Season - Week 11" }, { "date": "Nov 22, 2015", @@ -129209,7 +191452,12 @@ "sF": "17", "sU": "24", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2015 Regular Season - Week 11" }, { "date": "Nov 22, 2015", @@ -129218,8 +191466,13 @@ "und": "Miami Dolphins", "sF": "24", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.0, + "pScore": { + "sU": 22.25, + "sF": 23.75 + }, + "week": "2015 Regular Season - Week 11" }, { "date": "Nov 22, 2015", @@ -129229,7 +191482,12 @@ "sF": "33", "sU": "3", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2015 Regular Season - Week 11" }, { "date": "Nov 22, 2015", @@ -129239,7 +191497,12 @@ "sF": "13", "sU": "30", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2015 Regular Season - Week 11" }, { "date": "Nov 22, 2015", @@ -129248,12 +191511,13 @@ "und": "San Francisco 49ers", "sF": "29", "sU": "13", - "spread": "13", - "ou": "49", + "spread": "13.5", + "ou": 40.0, "pScore": { - "sU": 18, - "sF": 31 - } + "sU": 13.25, + "sF": 26.75 + }, + "week": "2015 Regular Season - Week 11" }, { "date": "Nov 22, 2015", @@ -129262,8 +191526,13 @@ "und": "Cincinnati Bengals", "sF": "34", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.5, + "pScore": { + "sU": 22.0, + "sF": 26.5 + }, + "week": "2015 Regular Season - Week 11" }, { "date": "Nov 23, 2015", @@ -129273,7 +191542,12 @@ "sF": "20", "sU": "13", "spread": "7", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.5, + "sF": 27.5 + }, + "week": "2015 Regular Season - Week 11" }, { "date": "Nov 26, 2015", @@ -129283,7 +191557,12 @@ "sF": "45", "sU": "14", "spread": "2", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.0, + "sF": 24.0 + }, + "week": "2015 Regular Season - Week 12" }, { "date": "Nov 26, 2015", @@ -129292,8 +191571,13 @@ "und": "Carolina Panthers", "sF": "14", "sU": "33", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.5, + "pScore": { + "sU": 22.0, + "sF": 23.5 + }, + "week": "2015 Regular Season - Week 12" }, { "date": "Nov 26, 2015", @@ -129302,8 +191586,13 @@ "und": "Chicago Bears", "sF": "13", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 44.5, + "pScore": { + "sU": 18.0, + "sF": 26.5 + }, + "week": "2015 Regular Season - Week 12" }, { "date": "Nov 29, 2015", @@ -129312,8 +191601,13 @@ "und": "Minnesota Vikings", "sF": "10", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2015 Regular Season - Week 12" }, { "date": "Nov 29, 2015", @@ -129322,8 +191616,13 @@ "und": "St Louis Rams", "sF": "31", "sU": "7", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 42.0, + "pScore": { + "sU": 16.75, + "sF": 25.25 + }, + "week": "2015 Regular Season - Week 12" }, { "date": "Nov 29, 2015", @@ -129333,7 +191632,12 @@ "sF": "24", "sU": "6", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2015 Regular Season - Week 12" }, { "date": "Nov 29, 2015", @@ -129343,7 +191647,12 @@ "sF": "25", "sU": "12", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2015 Regular Season - Week 12" }, { "date": "Nov 29, 2015", @@ -129353,7 +191662,12 @@ "sF": "38", "sU": "20", "spread": "4", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.25, + "sF": 23.25 + }, + "week": "2015 Regular Season - Week 12" }, { "date": "Nov 29, 2015", @@ -129363,7 +191677,12 @@ "sF": "24", "sU": "21", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2015 Regular Season - Week 12" }, { "date": "Nov 29, 2015", @@ -129372,8 +191691,13 @@ "und": "San Diego Chargers", "sF": "25", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.5, + "pScore": { + "sU": 21.0, + "sF": 25.5 + }, + "week": "2015 Regular Season - Week 12" }, { "date": "Nov 29, 2015", @@ -129382,8 +191706,13 @@ "und": "Buffalo Bills", "sF": "30", "sU": "22", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.5, + "pScore": { + "sU": 18.0, + "sF": 23.5 + }, + "week": "2015 Regular Season - Week 12" }, { "date": "Nov 29, 2015", @@ -129392,8 +191721,13 @@ "und": "Washington Redskins", "sF": "14", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.0, + "pScore": { + "sU": 22.25, + "sF": 24.75 + }, + "week": "2015 Regular Season - Week 12" }, { "date": "Nov 29, 2015", @@ -129402,12 +191736,13 @@ "und": "San Francisco 49ers", "sF": "19", "sU": "13", - "spread": "9", - "ou": "49", + "spread": "9.5", + "ou": 45.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 17.75, + "sF": 27.25 + }, + "week": "2015 Regular Season - Week 12" }, { "date": "Nov 29, 2015", @@ -129416,8 +191751,13 @@ "und": "Pittsburgh Steelers", "sF": "39", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "2015 Regular Season - Week 12" }, { "date": "Nov 29, 2015", @@ -129426,8 +191766,13 @@ "und": "Denver Broncos", "sF": "24", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2015 Regular Season - Week 12" }, { "date": "Nov 30, 2015", @@ -129436,8 +191781,13 @@ "und": "Baltimore Ravens", "sF": "27", "sU": "33", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2015 Regular Season - Week 12" }, { "date": "Dec 3, 2015", @@ -129447,7 +191797,12 @@ "sF": "27", "sU": "23", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2015 Regular Season - Week 13" }, { "date": "Dec 6, 2015", @@ -129456,8 +191811,13 @@ "und": "St Louis Rams", "sF": "27", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "2015 Regular Season - Week 13" }, { "date": "Dec 6, 2015", @@ -129466,8 +191826,13 @@ "und": "Houston Texans", "sF": "30", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2015 Regular Season - Week 13" }, { "date": "Dec 6, 2015", @@ -129476,12 +191841,13 @@ "und": "San Francisco 49ers", "sF": "20", "sU": "26", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": 43.5, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 18.5, + "sF": 25.0 + }, + "week": "2015 Regular Season - Week 13" }, { "date": "Dec 6, 2015", @@ -129490,8 +191856,13 @@ "und": "Minnesota Vikings", "sF": "38", "sU": "7", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "2015 Regular Season - Week 13" }, { "date": "Dec 6, 2015", @@ -129500,8 +191871,13 @@ "und": "Jacksonville Jaguars", "sF": "42", "sU": "39", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2015 Regular Season - Week 13" }, { "date": "Dec 6, 2015", @@ -129511,7 +191887,12 @@ "sF": "37", "sU": "3", "spread": "9", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 17.25, + "sF": 26.25 + }, + "week": "2015 Regular Season - Week 13" }, { "date": "Dec 6, 2015", @@ -129520,8 +191901,13 @@ "und": "Baltimore Ravens", "sF": "15", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2015 Regular Season - Week 13" }, { "date": "Dec 6, 2015", @@ -129530,8 +191916,13 @@ "und": "New York Giants", "sF": "23", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "2015 Regular Season - Week 13" }, { "date": "Dec 6, 2015", @@ -129541,7 +191932,12 @@ "sF": "23", "sU": "19", "spread": "1", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.5, + "sF": 23.5 + }, + "week": "2015 Regular Season - Week 13" }, { "date": "Dec 6, 2015", @@ -129551,7 +191947,12 @@ "sF": "34", "sU": "20", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2015 Regular Season - Week 13" }, { "date": "Dec 6, 2015", @@ -129560,8 +191961,13 @@ "und": "San Diego Chargers", "sF": "17", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2015 Regular Season - Week 13" }, { "date": "Dec 6, 2015", @@ -129571,7 +191977,12 @@ "sF": "28", "sU": "35", "spread": "8", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 20.5, + "sF": 28.5 + }, + "week": "2015 Regular Season - Week 13" }, { "date": "Dec 6, 2015", @@ -129580,8 +191991,13 @@ "und": "New Orleans Saints", "sF": "41", "sU": "38", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 50.0, + "pScore": { + "sU": 21.75, + "sF": 28.25 + }, + "week": "2015 Regular Season - Week 13" }, { "date": "Dec 6, 2015", @@ -129590,8 +192006,13 @@ "und": "Indianapolis Colts", "sF": "45", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 49.0, + "pScore": { + "sU": 20.75, + "sF": 28.25 + }, + "week": "2015 Regular Season - Week 13" }, { "date": "Dec 7, 2015", @@ -129600,8 +192021,13 @@ "und": "Dallas Cowboys", "sF": "16", "sU": "19", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "2015 Regular Season - Week 13" }, { "date": "Dec 10, 2015", @@ -129610,8 +192036,13 @@ "und": "Minnesota Vikings", "sF": "23", "sU": "20", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 46.5, + "pScore": { + "sU": 19.0, + "sF": 27.5 + }, + "week": "2015 Regular Season - Week 14" }, { "date": "Dec 13, 2015", @@ -129621,7 +192052,12 @@ "sF": "23", "sU": "20", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "2015 Regular Season - Week 14" }, { "date": "Dec 13, 2015", @@ -129631,7 +192067,12 @@ "sF": "35", "sU": "6", "spread": "11", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.0, + "sF": 26.0 + }, + "week": "2015 Regular Season - Week 14" }, { "date": "Dec 13, 2015", @@ -129640,8 +192081,13 @@ "und": "Washington Redskins", "sF": "21", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2015 Regular Season - Week 14" }, { "date": "Dec 13, 2015", @@ -129650,8 +192096,13 @@ "und": "Pittsburgh Steelers", "sF": "20", "sU": "33", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 50.0, + "pScore": { + "sU": 23.75, + "sF": 26.25 + }, + "week": "2015 Regular Season - Week 14" }, { "date": "Dec 13, 2015", @@ -129660,12 +192111,13 @@ "und": "San Francisco 49ers", "sF": "24", "sU": "10", - "spread": "1", - "ou": "49", + "spread": "1.5", + "ou": 41.5, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 20.0, + "sF": 21.5 + }, + "week": "2015 Regular Season - Week 14" }, { "date": "Dec 13, 2015", @@ -129674,8 +192126,13 @@ "und": "Indianapolis Colts", "sF": "51", "sU": "16", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.0, + "pScore": { + "sU": 22.25, + "sF": 23.75 + }, + "week": "2015 Regular Season - Week 14" }, { "date": "Dec 13, 2015", @@ -129685,7 +192142,12 @@ "sF": "30", "sU": "8", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2015 Regular Season - Week 14" }, { "date": "Dec 13, 2015", @@ -129694,8 +192156,13 @@ "und": "St Louis Rams", "sF": "14", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2015 Regular Season - Week 14" }, { "date": "Dec 13, 2015", @@ -129704,8 +192171,13 @@ "und": "New Orleans Saints", "sF": "17", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 50.5, + "pScore": { + "sU": 23.0, + "sF": 27.5 + }, + "week": "2015 Regular Season - Week 14" }, { "date": "Dec 13, 2015", @@ -129714,8 +192186,13 @@ "und": "Atlanta Falcons", "sF": "38", "sU": "0", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.5, + "pScore": { + "sU": 19.5, + "sF": 27.0 + }, + "week": "2015 Regular Season - Week 14" }, { "date": "Dec 13, 2015", @@ -129724,8 +192201,13 @@ "und": "San Diego Chargers", "sF": "10", "sU": "3", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 44.0, + "pScore": { + "sU": 16.75, + "sF": 27.25 + }, + "week": "2015 Regular Season - Week 14" }, { "date": "Dec 13, 2015", @@ -129734,8 +192216,13 @@ "und": "Oakland Raiders", "sF": "12", "sU": "15", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2015 Regular Season - Week 14" }, { "date": "Dec 13, 2015", @@ -129744,8 +192231,13 @@ "und": "Dallas Cowboys", "sF": "28", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.5, + "pScore": { + "sU": 18.0, + "sF": 24.5 + }, + "week": "2015 Regular Season - Week 14" }, { "date": "Dec 13, 2015", @@ -129754,8 +192246,13 @@ "und": "Houston Texans", "sF": "27", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2015 Regular Season - Week 14" }, { "date": "Dec 14, 2015", @@ -129765,7 +192262,12 @@ "sF": "31", "sU": "24", "spread": "1", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.75, + "sF": 23.75 + }, + "week": "2015 Regular Season - Week 14" }, { "date": "Dec 17, 2015", @@ -129774,8 +192276,13 @@ "und": "Tampa Bay Buccaneers", "sF": "31", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "2015 Regular Season - Week 15" }, { "date": "Dec 19, 2015", @@ -129785,7 +192292,12 @@ "sF": "19", "sU": "16", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2015 Regular Season - Week 15" }, { "date": "Dec 20, 2015", @@ -129794,8 +192306,13 @@ "und": "Baltimore Ravens", "sF": "34", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.0, + "pScore": { + "sU": 17.25, + "sF": 23.75 + }, + "week": "2015 Regular Season - Week 15" }, { "date": "Dec 20, 2015", @@ -129804,8 +192321,13 @@ "und": "Houston Texans", "sF": "10", "sU": "16", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "2015 Regular Season - Week 15" }, { "date": "Dec 20, 2015", @@ -129815,7 +192337,12 @@ "sF": "17", "sU": "23", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2015 Regular Season - Week 15" }, { "date": "Dec 20, 2015", @@ -129824,8 +192351,13 @@ "und": "Chicago Bears", "sF": "38", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "2015 Regular Season - Week 15" }, { "date": "Dec 20, 2015", @@ -129835,7 +192367,12 @@ "sF": "33", "sU": "16", "spread": "14", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 16.25, + "sF": 30.25 + }, + "week": "2015 Regular Season - Week 15" }, { "date": "Dec 20, 2015", @@ -129845,7 +192382,12 @@ "sF": "38", "sU": "35", "spread": "4", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.0, + "sF": 26.0 + }, + "week": "2015 Regular Season - Week 15" }, { "date": "Dec 20, 2015", @@ -129854,8 +192396,13 @@ "und": "Washington Redskins", "sF": "25", "sU": "35", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2015 Regular Season - Week 15" }, { "date": "Dec 20, 2015", @@ -129865,7 +192412,12 @@ "sF": "30", "sU": "20", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2015 Regular Season - Week 15" }, { "date": "Dec 20, 2015", @@ -129875,7 +192427,12 @@ "sF": "30", "sU": "13", "spread": "14", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 14.5, + "sF": 28.5 + }, + "week": "2015 Regular Season - Week 15" }, { "date": "Dec 20, 2015", @@ -129885,7 +192442,12 @@ "sF": "34", "sU": "27", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "2015 Regular Season - Week 15" }, { "date": "Dec 20, 2015", @@ -129894,8 +192456,13 @@ "und": "Miami Dolphins", "sF": "30", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.0, + "pScore": { + "sU": 22.25, + "sF": 23.75 + }, + "week": "2015 Regular Season - Week 15" }, { "date": "Dec 20, 2015", @@ -129904,12 +192471,13 @@ "und": "San Francisco 49ers", "sF": "24", "sU": "14", - "spread": "5", - "ou": "49", + "spread": "5.5", + "ou": 40.5, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 17.5, + "sF": 23.0 + }, + "week": "2015 Regular Season - Week 15" }, { "date": "Dec 20, 2015", @@ -129918,8 +192486,13 @@ "und": "Philadelphia Eagles", "sF": "40", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 51.5, + "pScore": { + "sU": 24.0, + "sF": 27.5 + }, + "week": "2015 Regular Season - Week 15" }, { "date": "Dec 21, 2015", @@ -129928,8 +192501,13 @@ "und": "Detroit Lions", "sF": "27", "sU": "35", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 51.5, + "pScore": { + "sU": 24.5, + "sF": 27.0 + }, + "week": "2015 Regular Season - Week 15" }, { "date": "Dec 24, 2015", @@ -129939,7 +192517,12 @@ "sF": "23", "sU": "20", "spread": "6", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.25, + "sF": 26.25 + }, + "week": "2015 Regular Season - Week 16" }, { "date": "Dec 26, 2015", @@ -129949,7 +192532,12 @@ "sF": "24", "sU": "38", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2015 Regular Season - Week 16" }, { "date": "Dec 27, 2015", @@ -129958,8 +192546,13 @@ "und": "Atlanta Falcons", "sF": "13", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.5, + "pScore": { + "sU": 20.5, + "sF": 27.0 + }, + "week": "2015 Regular Season - Week 16" }, { "date": "Dec 27, 2015", @@ -129969,7 +192562,12 @@ "sF": "17", "sU": "20", "spread": "10", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 18.5, + "sF": 28.5 + }, + "week": "2015 Regular Season - Week 16" }, { "date": "Dec 27, 2015", @@ -129978,8 +192576,13 @@ "und": "Dallas Cowboys", "sF": "16", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "2015 Regular Season - Week 16" }, { "date": "Dec 27, 2015", @@ -129988,8 +192591,13 @@ "und": "Indianapolis Colts", "sF": "12", "sU": "18", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2015 Regular Season - Week 16" }, { "date": "Dec 27, 2015", @@ -129999,7 +192607,12 @@ "sF": "20", "sU": "26", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2015 Regular Season - Week 16" }, { "date": "Dec 27, 2015", @@ -130008,8 +192621,13 @@ "und": "Tennessee Titans", "sF": "34", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2015 Regular Season - Week 16" }, { "date": "Dec 27, 2015", @@ -130018,12 +192636,13 @@ "und": "San Francisco 49ers", "sF": "32", "sU": "17", - "spread": "9", - "ou": "49", + "spread": "9.5", + "ou": 42.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 16.25, + "sF": 25.75 + }, + "week": "2015 Regular Season - Week 16" }, { "date": "Dec 27, 2015", @@ -130032,8 +192651,13 @@ "und": "Cleveland Browns", "sF": "17", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 42.5, + "pScore": { + "sU": 16.0, + "sF": 26.5 + }, + "week": "2015 Regular Season - Week 16" }, { "date": "Dec 27, 2015", @@ -130043,7 +192667,12 @@ "sF": "21", "sU": "26", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2015 Regular Season - Week 16" }, { "date": "Dec 27, 2015", @@ -130053,7 +192682,12 @@ "sF": "38", "sU": "27", "spread": "3", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 24.25, + "sF": 27.25 + }, + "week": "2015 Regular Season - Week 16" }, { "date": "Dec 27, 2015", @@ -130062,8 +192696,13 @@ "und": "Green Bay Packers", "sF": "38", "sU": "8", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 50.5, + "pScore": { + "sU": 23.0, + "sF": 27.5 + }, + "week": "2015 Regular Season - Week 16" }, { "date": "Dec 27, 2015", @@ -130073,7 +192712,12 @@ "sF": "17", "sU": "23", "spread": "12", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 14.0, + "sF": 26.0 + }, + "week": "2015 Regular Season - Week 16" }, { "date": "Dec 27, 2015", @@ -130083,7 +192727,12 @@ "sF": "49", "sU": "17", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "2015 Regular Season - Week 16" }, { "date": "Dec 28, 2015", @@ -130093,7 +192742,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2015 Regular Season - Week 16" }, { "date": "Jan 3, 2016", @@ -130102,8 +192756,13 @@ "und": "New Orleans Saints", "sF": "17", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 52.5, + "pScore": { + "sU": 23.5, + "sF": 29.0 + }, + "week": "2015 Regular Season - Week 17" }, { "date": "Jan 3, 2016", @@ -130113,7 +192772,12 @@ "sF": "17", "sU": "22", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2015 Regular Season - Week 17" }, { "date": "Jan 3, 2016", @@ -130123,7 +192787,12 @@ "sF": "24", "sU": "20", "spread": "1", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 22.25, + "sF": 23.25 + }, + "week": "2015 Regular Season - Week 17" }, { "date": "Jan 3, 2016", @@ -130132,8 +192801,13 @@ "und": "Baltimore Ravens", "sF": "24", "sU": "16", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 41.5, + "pScore": { + "sU": 16.0, + "sF": 25.5 + }, + "week": "2015 Regular Season - Week 17" }, { "date": "Jan 3, 2016", @@ -130143,7 +192817,12 @@ "sF": "28", "sU": "12", "spread": "11", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 17.75, + "sF": 28.75 + }, + "week": "2015 Regular Season - Week 17" }, { "date": "Jan 3, 2016", @@ -130152,8 +192831,13 @@ "und": "Jacksonville Jaguars", "sF": "30", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.5, + "pScore": { + "sU": 19.5, + "sF": 26.0 + }, + "week": "2015 Regular Season - Week 17" }, { "date": "Jan 3, 2016", @@ -130162,8 +192846,13 @@ "und": "Tennessee Titans", "sF": "30", "sU": "24", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "2015 Regular Season - Week 17" }, { "date": "Jan 3, 2016", @@ -130173,7 +192862,12 @@ "sF": "10", "sU": "20", "spread": "9", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 18.75, + "sF": 27.75 + }, + "week": "2015 Regular Season - Week 17" }, { "date": "Jan 3, 2016", @@ -130182,8 +192876,13 @@ "und": "Washington Redskins", "sF": "23", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "2015 Regular Season - Week 17" }, { "date": "Jan 3, 2016", @@ -130193,7 +192892,12 @@ "sF": "30", "sU": "35", "spread": "5", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 23.0, + "sF": 28.0 + }, + "week": "2015 Regular Season - Week 17" }, { "date": "Jan 3, 2016", @@ -130202,8 +192906,13 @@ "und": "Seattle Seahawks", "sF": "6", "sU": "36", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "2015 Regular Season - Week 17" }, { "date": "Jan 3, 2016", @@ -130213,7 +192922,12 @@ "sF": "38", "sU": "10", "spread": "10", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.0, + "sF": 28.0 + }, + "week": "2015 Regular Season - Week 17" }, { "date": "Jan 3, 2016", @@ -130223,7 +192937,12 @@ "sF": "27", "sU": "20", "spread": "10", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 15.75, + "sF": 25.75 + }, + "week": "2015 Regular Season - Week 17" }, { "date": "Jan 3, 2016", @@ -130232,12 +192951,13 @@ "und": "San Francisco 49ers", "sF": "16", "sU": "19", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": 37.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 17.0, + "sF": 20.5 + }, + "week": "2015 Regular Season - Week 17" }, { "date": "Jan 3, 2016", @@ -130247,7 +192967,12 @@ "sF": "23", "sU": "17", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2015 Regular Season - Week 17" }, { "date": "Jan 3, 2016", @@ -130257,7 +192982,12 @@ "sF": "13", "sU": "20", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2015 Regular Season - Week 17" }, { "date": "Jan 9, 2016", @@ -130267,7 +192997,12 @@ "sF": "30", "sU": "0", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2015 Playoffs" }, { "date": "Jan 9, 2016", @@ -130276,8 +193011,13 @@ "und": "Cincinnati Bengals (3)", "sF": "18", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "2015 Playoffs" }, { "date": "Jan 10, 2016", @@ -130286,8 +193026,13 @@ "und": "Minnesota Vikings (3)", "sF": "10", "sU": "9", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "2015 Playoffs" }, { "date": "Jan 10, 2016", @@ -130297,7 +193042,12 @@ "sF": "18", "sU": "35", "spread": "1", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.5, + "sF": 23.5 + }, + "week": "2015 Playoffs" }, { "date": "Jan 16, 2016", @@ -130307,7 +193057,12 @@ "sF": "27", "sU": "20", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "2015 Playoffs" }, { "date": "Jan 16, 2016", @@ -130317,7 +193072,12 @@ "sF": "26", "sU": "20", "spread": "7", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.0, + "sF": 28.0 + }, + "week": "2015 Playoffs" }, { "date": "Jan 17, 2016", @@ -130326,8 +193086,13 @@ "und": "Seattle Seahawks (6)", "sF": "31", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2015 Playoffs" }, { "date": "Jan 17, 2016", @@ -130336,8 +193101,13 @@ "und": "Pittsburgh Steelers (6)", "sF": "23", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.0, + "pScore": { + "sU": 16.75, + "sF": 24.25 + }, + "week": "2015 Playoffs" }, { "date": "Jan 24, 2016", @@ -130347,7 +193117,12 @@ "sF": "18", "sU": "20", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2015 Playoffs" }, { "date": "Jan 24, 2016", @@ -130357,7 +193132,12 @@ "sF": "49", "sU": "15", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2015 Playoffs" }, { "date": "Feb 7, 2016", @@ -130367,7 +193147,12 @@ "sF": "10", "sU": "24", "spread": "5", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.25, + "sF": 24.25 + }, + "week": "2015 Playoffs" }, { "date": "Sep 8, 2016", @@ -130377,7 +193162,12 @@ "sF": "20", "sU": "21", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2016 Regular Season - Week 1" }, { "date": "Sep 11, 2016", @@ -130387,7 +193177,12 @@ "sF": "13", "sU": "7", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2016 Regular Season - Week 1" }, { "date": "Sep 11, 2016", @@ -130396,8 +193191,13 @@ "und": "Jacksonville Jaguars", "sF": "27", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2016 Regular Season - Week 1" }, { "date": "Sep 11, 2016", @@ -130406,8 +193206,13 @@ "und": "Tampa Bay Buccaneers", "sF": "24", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "2016 Regular Season - Week 1" }, { "date": "Sep 11, 2016", @@ -130416,8 +193221,13 @@ "und": "Chicago Bears", "sF": "23", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "2016 Regular Season - Week 1" }, { "date": "Sep 11, 2016", @@ -130426,8 +193236,13 @@ "und": "San Diego Chargers", "sF": "33", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.5, + "pScore": { + "sU": 19.5, + "sF": 26.0 + }, + "week": "2016 Regular Season - Week 1" }, { "date": "Sep 11, 2016", @@ -130436,8 +193251,13 @@ "und": "Oakland Raiders", "sF": "34", "sU": "35", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 50.0, + "pScore": { + "sU": 23.75, + "sF": 26.25 + }, + "week": "2016 Regular Season - Week 1" }, { "date": "Sep 11, 2016", @@ -130447,7 +193267,12 @@ "sF": "22", "sU": "23", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "2016 Regular Season - Week 1" }, { "date": "Sep 11, 2016", @@ -130457,7 +193282,12 @@ "sF": "29", "sU": "10", "spread": "4", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.75, + "sF": 22.75 + }, + "week": "2016 Regular Season - Week 1" }, { "date": "Sep 11, 2016", @@ -130466,8 +193296,13 @@ "und": "Tennessee Titans", "sF": "25", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2016 Regular Season - Week 1" }, { "date": "Sep 11, 2016", @@ -130476,8 +193311,13 @@ "und": "Miami Dolphins", "sF": "12", "sU": "10", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.5, + "pScore": { + "sU": 16.5, + "sF": 27.0 + }, + "week": "2016 Regular Season - Week 1" }, { "date": "Sep 11, 2016", @@ -130487,7 +193327,12 @@ "sF": "19", "sU": "20", "spread": "1", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 23.25, + "sF": 24.25 + }, + "week": "2016 Regular Season - Week 1" }, { "date": "Sep 11, 2016", @@ -130496,8 +193341,13 @@ "und": "Detroit Lions", "sF": "35", "sU": "39", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 51.0, + "pScore": { + "sU": 24.25, + "sF": 26.75 + }, + "week": "2016 Regular Season - Week 1" }, { "date": "Sep 11, 2016", @@ -130507,7 +193357,12 @@ "sF": "21", "sU": "23", "spread": "9", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.75, + "sF": 26.75 + }, + "week": "2016 Regular Season - Week 1" }, { "date": "Sep 12, 2016", @@ -130516,8 +193371,13 @@ "und": "Washington Redskins", "sF": "38", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.0, + "pScore": { + "sU": 23.25, + "sF": 25.75 + }, + "week": "2016 Regular Season - Week 1" }, { "date": "Sep 12, 2016", @@ -130526,12 +193386,13 @@ "und": "San Francisco 49ers", "sF": "0", "sU": "28", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": 43.0, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 20.25, + "sF": 22.75 + }, + "week": "2016 Regular Season - Week 1" }, { "date": "Sep 15, 2016", @@ -130541,7 +193402,12 @@ "sF": "31", "sU": "37", "spread": "1", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.75, + "sF": 20.75 + }, + "week": "2016 Regular Season - Week 2" }, { "date": "Sep 18, 2016", @@ -130551,7 +193417,12 @@ "sF": "25", "sU": "20", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "2016 Regular Season - Week 2" }, { "date": "Sep 18, 2016", @@ -130561,7 +193432,12 @@ "sF": "15", "sU": "16", "spread": "6", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 21.0, + "sF": 27.0 + }, + "week": "2016 Regular Season - Week 2" }, { "date": "Sep 18, 2016", @@ -130571,7 +193447,12 @@ "sF": "12", "sU": "19", "spread": "1", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 20.25, + "sF": 21.25 + }, + "week": "2016 Regular Season - Week 2" }, { "date": "Sep 18, 2016", @@ -130580,8 +193461,13 @@ "und": "Miami Dolphins", "sF": "31", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.0, + "pScore": { + "sU": 18.25, + "sF": 23.75 + }, + "week": "2016 Regular Season - Week 2" }, { "date": "Sep 18, 2016", @@ -130591,7 +193477,12 @@ "sF": "24", "sU": "16", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2016 Regular Season - Week 2" }, { "date": "Sep 18, 2016", @@ -130601,11 +193492,12 @@ "sF": "46", "sU": "27", "spread": "12", - "ou": "49", + "ou": 44.5, "pScore": { - "sU": 18.5, - "sF": 30.5 - } + "sU": 16.25, + "sF": 28.25 + }, + "week": "2016 Regular Season - Week 2" }, { "date": "Sep 18, 2016", @@ -130614,8 +193506,13 @@ "und": "New Orleans Saints", "sF": "16", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 54.0, + "pScore": { + "sU": 25.25, + "sF": 28.75 + }, + "week": "2016 Regular Season - Week 2" }, { "date": "Sep 18, 2016", @@ -130624,8 +193521,13 @@ "und": "Dallas Cowboys", "sF": "23", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2016 Regular Season - Week 2" }, { "date": "Sep 18, 2016", @@ -130634,8 +193536,13 @@ "und": "Tampa Bay Buccaneers", "sF": "40", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 49.5, + "pScore": { + "sU": 21.0, + "sF": 28.5 + }, + "week": "2016 Regular Season - Week 2" }, { "date": "Sep 18, 2016", @@ -130644,8 +193551,13 @@ "und": "Los Angeles Rams", "sF": "3", "sU": "9", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "2016 Regular Season - Week 2" }, { "date": "Sep 18, 2016", @@ -130655,7 +193567,12 @@ "sF": "34", "sU": "20", "spread": "6", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.5, + "sF": 26.5 + }, + "week": "2016 Regular Season - Week 2" }, { "date": "Sep 18, 2016", @@ -130665,7 +193582,12 @@ "sF": "28", "sU": "35", "spread": "4", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 21.75, + "sF": 25.75 + }, + "week": "2016 Regular Season - Week 2" }, { "date": "Sep 18, 2016", @@ -130675,7 +193597,12 @@ "sF": "38", "sU": "14", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2016 Regular Season - Week 2" }, { "date": "Sep 18, 2016", @@ -130684,8 +193611,13 @@ "und": "Minnesota Vikings", "sF": "14", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.0, + "pScore": { + "sU": 20.75, + "sF": 22.25 + }, + "week": "2016 Regular Season - Week 2" }, { "date": "Sep 19, 2016", @@ -130695,7 +193627,12 @@ "sF": "14", "sU": "29", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2016 Regular Season - Week 2" }, { "date": "Sep 25, 2016", @@ -130705,7 +193642,12 @@ "sF": "18", "sU": "33", "spread": "5", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 21.5, + "sF": 26.5 + }, + "week": "2016 Regular Season - Week 3" }, { "date": "Sep 25, 2016", @@ -130715,7 +193657,12 @@ "sF": "10", "sU": "22", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "2016 Regular Season - Week 3" }, { "date": "Sep 25, 2016", @@ -130724,8 +193671,13 @@ "und": "Denver Broncos", "sF": "17", "sU": "29", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "2016 Regular Season - Week 3" }, { "date": "Sep 25, 2016", @@ -130735,7 +193687,12 @@ "sF": "34", "sU": "27", "spread": "6", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.75, + "sF": 26.75 + }, + "week": "2016 Regular Season - Week 3" }, { "date": "Sep 25, 2016", @@ -130744,8 +193701,13 @@ "und": "Jacksonville Jaguars", "sF": "19", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "2016 Regular Season - Week 3" }, { "date": "Sep 25, 2016", @@ -130755,7 +193717,12 @@ "sF": "30", "sU": "24", "spread": "10", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.0, + "sF": 26.0 + }, + "week": "2016 Regular Season - Week 3" }, { "date": "Sep 25, 2016", @@ -130764,8 +193731,13 @@ "und": "Washington Redskins", "sF": "27", "sU": "29", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2016 Regular Season - Week 3" }, { "date": "Sep 25, 2016", @@ -130774,8 +193746,13 @@ "und": "Tennessee Titans", "sF": "17", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.0, + "pScore": { + "sU": 22.75, + "sF": 24.25 + }, + "week": "2016 Regular Season - Week 3" }, { "date": "Sep 25, 2016", @@ -130784,12 +193761,13 @@ "und": "San Francisco 49ers", "sF": "37", "sU": "18", - "spread": "10", - "ou": "49", + "spread": "10.5", + "ou": 42.0, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sU": 15.75, + "sF": 26.25 + }, + "week": "2016 Regular Season - Week 3" }, { "date": "Sep 25, 2016", @@ -130798,8 +193776,13 @@ "und": "Los Angeles Rams", "sF": "32", "sU": "37", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "2016 Regular Season - Week 3" }, { "date": "Sep 25, 2016", @@ -130808,8 +193791,13 @@ "und": "San Diego Chargers", "sF": "26", "sU": "22", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 51.5, + "pScore": { + "sU": 25.0, + "sF": 26.5 + }, + "week": "2016 Regular Season - Week 3" }, { "date": "Sep 25, 2016", @@ -130818,8 +193806,13 @@ "und": "Philadelphia Eagles", "sF": "3", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "2016 Regular Season - Week 3" }, { "date": "Sep 25, 2016", @@ -130829,7 +193822,12 @@ "sF": "24", "sU": "3", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2016 Regular Season - Week 3" }, { "date": "Sep 25, 2016", @@ -130838,8 +193836,13 @@ "und": "Chicago Bears", "sF": "31", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "2016 Regular Season - Week 3" }, { "date": "Sep 26, 2016", @@ -130848,8 +193851,13 @@ "und": "Atlanta Falcons", "sF": "32", "sU": "45", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 54.0, + "pScore": { + "sU": 25.75, + "sF": 28.25 + }, + "week": "2016 Regular Season - Week 3" }, { "date": "Sep 29, 2016", @@ -130858,8 +193866,13 @@ "und": "Miami Dolphins", "sF": "22", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.0, + "pScore": { + "sU": 19.25, + "sF": 26.75 + }, + "week": "2016 Regular Season - Week 4" }, { "date": "Oct 2, 2016", @@ -130869,7 +193882,12 @@ "sF": "27", "sU": "30", "spread": "1", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.5, + "sF": 24.5 + }, + "week": "2016 Regular Season - Week 4" }, { "date": "Oct 2, 2016", @@ -130879,7 +193897,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2016 Regular Season - Week 4" }, { "date": "Oct 2, 2016", @@ -130888,8 +193911,13 @@ "und": "Oakland Raiders", "sF": "27", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2016 Regular Season - Week 4" }, { "date": "Oct 2, 2016", @@ -130899,7 +193927,12 @@ "sF": "27", "sU": "20", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "2016 Regular Season - Week 4" }, { "date": "Oct 2, 2016", @@ -130908,8 +193941,13 @@ "und": "Buffalo Bills", "sF": "0", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2016 Regular Season - Week 4" }, { "date": "Oct 2, 2016", @@ -130919,7 +193957,12 @@ "sF": "27", "sU": "17", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "2016 Regular Season - Week 4" }, { "date": "Oct 2, 2016", @@ -130928,8 +193971,13 @@ "und": "Atlanta Falcons", "sF": "33", "sU": "48", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.5, + "pScore": { + "sU": 23.0, + "sF": 25.5 + }, + "week": "2016 Regular Season - Week 4" }, { "date": "Oct 2, 2016", @@ -130938,8 +193986,13 @@ "und": "Cleveland Browns", "sF": "31", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2016 Regular Season - Week 4" }, { "date": "Oct 2, 2016", @@ -130948,8 +194001,13 @@ "und": "Tampa Bay Buccaneers", "sF": "27", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2016 Regular Season - Week 4" }, { "date": "Oct 2, 2016", @@ -130959,7 +194017,12 @@ "sF": "13", "sU": "17", "spread": "10", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 16.75, + "sF": 26.75 + }, + "week": "2016 Regular Season - Week 4" }, { "date": "Oct 2, 2016", @@ -130968,8 +194031,13 @@ "und": "New Orleans Saints", "sF": "34", "sU": "35", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 54.0, + "pScore": { + "sU": 25.25, + "sF": 28.75 + }, + "week": "2016 Regular Season - Week 4" }, { "date": "Oct 2, 2016", @@ -130979,11 +194047,12 @@ "sF": "24", "sU": "17", "spread": "1", - "ou": "49", + "ou": 44.5, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 21.75, + "sF": 22.75 + }, + "week": "2016 Regular Season - Week 4" }, { "date": "Oct 2, 2016", @@ -130993,7 +194062,12 @@ "sF": "43", "sU": "14", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2016 Regular Season - Week 4" }, { "date": "Oct 3, 2016", @@ -131002,8 +194076,13 @@ "und": "New York Giants", "sF": "24", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2016 Regular Season - Week 4" }, { "date": "Oct 6, 2016", @@ -131012,12 +194091,13 @@ "und": "San Francisco 49ers", "sF": "33", "sU": "21", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": 42.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 19.5, + "sF": 23.0 + }, + "week": "2016 Regular Season - Week 5" }, { "date": "Oct 9, 2016", @@ -131027,7 +194107,12 @@ "sF": "33", "sU": "13", "spread": "10", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 18.75, + "sF": 28.75 + }, + "week": "2016 Regular Season - Week 5" }, { "date": "Oct 9, 2016", @@ -131036,8 +194121,13 @@ "und": "Detroit Lions", "sF": "23", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2016 Regular Season - Week 5" }, { "date": "Oct 9, 2016", @@ -131047,7 +194137,12 @@ "sF": "29", "sU": "23", "spread": "4", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 21.75, + "sF": 25.75 + }, + "week": "2016 Regular Season - Week 5" }, { "date": "Oct 9, 2016", @@ -131056,8 +194151,13 @@ "und": "Tennessee Titans", "sF": "17", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2016 Regular Season - Week 5" }, { "date": "Oct 9, 2016", @@ -131067,7 +194167,12 @@ "sF": "31", "sU": "13", "spread": "10", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 20.0, + "sF": 30.0 + }, + "week": "2016 Regular Season - Week 5" }, { "date": "Oct 9, 2016", @@ -131077,7 +194182,12 @@ "sF": "10", "sU": "16", "spread": "4", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.25, + "sF": 24.25 + }, + "week": "2016 Regular Season - Week 5" }, { "date": "Oct 9, 2016", @@ -131087,7 +194197,12 @@ "sF": "31", "sU": "13", "spread": "6", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.5, + "sF": 22.5 + }, + "week": "2016 Regular Season - Week 5" }, { "date": "Oct 9, 2016", @@ -131096,8 +194211,13 @@ "und": "Atlanta Falcons", "sF": "16", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "2016 Regular Season - Week 5" }, { "date": "Oct 9, 2016", @@ -131106,8 +194226,13 @@ "und": "Dallas Cowboys", "sF": "14", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "2016 Regular Season - Week 5" }, { "date": "Oct 9, 2016", @@ -131116,8 +194241,13 @@ "und": "Los Angeles Rams", "sF": "30", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2016 Regular Season - Week 5" }, { "date": "Oct 9, 2016", @@ -131126,8 +194256,13 @@ "und": "San Diego Chargers", "sF": "34", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 50.5, + "pScore": { + "sU": 23.5, + "sF": 27.0 + }, + "week": "2016 Regular Season - Week 5" }, { "date": "Oct 9, 2016", @@ -131137,7 +194272,12 @@ "sF": "23", "sU": "16", "spread": "7", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.0, + "sF": 28.0 + }, + "week": "2016 Regular Season - Week 5" }, { "date": "Oct 10, 2016", @@ -131147,7 +194287,12 @@ "sF": "14", "sU": "17", "spread": "6", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.25, + "sF": 26.25 + }, + "week": "2016 Regular Season - Week 5" }, { "date": "Oct 13, 2016", @@ -131157,7 +194302,12 @@ "sF": "13", "sU": "21", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2016 Regular Season - Week 6" }, { "date": "Oct 16, 2016", @@ -131166,12 +194316,13 @@ "und": "San Francisco 49ers", "sF": "45", "sU": "16", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": 44.0, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 18.25, + "sF": 25.75 + }, + "week": "2016 Regular Season - Week 6" }, { "date": "Oct 16, 2016", @@ -131180,8 +194331,13 @@ "und": "Jacksonville Jaguars", "sF": "16", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "2016 Regular Season - Week 6" }, { "date": "Oct 16, 2016", @@ -131190,8 +194346,13 @@ "und": "Los Angeles Rams", "sF": "31", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2016 Regular Season - Week 6" }, { "date": "Oct 16, 2016", @@ -131200,8 +194361,13 @@ "und": "Miami Dolphins", "sF": "15", "sU": "30", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 49.5, + "pScore": { + "sU": 21.0, + "sF": 28.5 + }, + "week": "2016 Regular Season - Week 6" }, { "date": "Oct 16, 2016", @@ -131210,8 +194376,13 @@ "und": "Cincinnati Bengals", "sF": "35", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2016 Regular Season - Week 6" }, { "date": "Oct 16, 2016", @@ -131220,8 +194391,13 @@ "und": "Baltimore Ravens", "sF": "27", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2016 Regular Season - Week 6" }, { "date": "Oct 16, 2016", @@ -131230,8 +194406,13 @@ "und": "Cleveland Browns", "sF": "28", "sU": "26", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.5, + "pScore": { + "sU": 18.5, + "sF": 26.0 + }, + "week": "2016 Regular Season - Week 6" }, { "date": "Oct 16, 2016", @@ -131240,8 +194421,13 @@ "und": "New Orleans Saints", "sF": "38", "sU": "41", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 53.5, + "pScore": { + "sU": 25.5, + "sF": 28.0 + }, + "week": "2016 Regular Season - Week 6" }, { "date": "Oct 16, 2016", @@ -131251,7 +194437,12 @@ "sF": "20", "sU": "27", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2016 Regular Season - Week 6" }, { "date": "Oct 16, 2016", @@ -131261,7 +194452,12 @@ "sF": "26", "sU": "10", "spread": "1", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.75, + "sF": 23.75 + }, + "week": "2016 Regular Season - Week 6" }, { "date": "Oct 16, 2016", @@ -131271,7 +194467,12 @@ "sF": "16", "sU": "30", "spread": "5", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.0, + "sF": 26.0 + }, + "week": "2016 Regular Season - Week 6" }, { "date": "Oct 16, 2016", @@ -131281,7 +194482,12 @@ "sF": "26", "sU": "24", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "2016 Regular Season - Week 6" }, { "date": "Oct 16, 2016", @@ -131291,7 +194497,12 @@ "sF": "26", "sU": "23", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2016 Regular Season - Week 6" }, { "date": "Oct 17, 2016", @@ -131301,7 +194512,12 @@ "sF": "28", "sU": "3", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "2016 Regular Season - Week 6" }, { "date": "Oct 20, 2016", @@ -131310,8 +194526,13 @@ "und": "Chicago Bears", "sF": "26", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.5, + "pScore": { + "sU": 19.5, + "sF": 27.0 + }, + "week": "2016 Regular Season - Week 7" }, { "date": "Oct 23, 2016", @@ -131320,8 +194541,13 @@ "und": "Los Angeles Rams", "sF": "17", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2016 Regular Season - Week 7" }, { "date": "Oct 23, 2016", @@ -131331,7 +194557,12 @@ "sF": "31", "sU": "17", "spread": "11", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 17.75, + "sF": 28.75 + }, + "week": "2016 Regular Season - Week 7" }, { "date": "Oct 23, 2016", @@ -131341,7 +194572,12 @@ "sF": "17", "sU": "20", "spread": "1", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 24.5, + "sF": 25.5 + }, + "week": "2016 Regular Season - Week 7" }, { "date": "Oct 23, 2016", @@ -131351,7 +194587,12 @@ "sF": "16", "sU": "33", "spread": "2", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.75, + "sF": 24.75 + }, + "week": "2016 Regular Season - Week 7" }, { "date": "Oct 23, 2016", @@ -131360,8 +194601,13 @@ "und": "Miami Dolphins", "sF": "25", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "2016 Regular Season - Week 7" }, { "date": "Oct 23, 2016", @@ -131371,7 +194617,12 @@ "sF": "10", "sU": "21", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2016 Regular Season - Week 7" }, { "date": "Oct 23, 2016", @@ -131381,7 +194632,12 @@ "sF": "26", "sU": "34", "spread": "4", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.0, + "sF": 26.0 + }, + "week": "2016 Regular Season - Week 7" }, { "date": "Oct 23, 2016", @@ -131391,7 +194647,12 @@ "sF": "27", "sU": "21", "spread": "7", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 22.25, + "sF": 29.25 + }, + "week": "2016 Regular Season - Week 7" }, { "date": "Oct 23, 2016", @@ -131400,8 +194661,13 @@ "und": "Baltimore Ravens", "sF": "24", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2016 Regular Season - Week 7" }, { "date": "Oct 23, 2016", @@ -131410,8 +194676,13 @@ "und": "San Diego Chargers", "sF": "30", "sU": "33", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 52.5, + "pScore": { + "sU": 24.0, + "sF": 28.5 + }, + "week": "2016 Regular Season - Week 7" }, { "date": "Oct 23, 2016", @@ -131421,7 +194692,12 @@ "sF": "17", "sU": "34", "spread": "1", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 22.0, + "sF": 23.0 + }, + "week": "2016 Regular Season - Week 7" }, { "date": "Oct 23, 2016", @@ -131430,8 +194706,13 @@ "und": "Pittsburgh Steelers", "sF": "27", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 49.0, + "pScore": { + "sU": 20.75, + "sF": 28.25 + }, + "week": "2016 Regular Season - Week 7" }, { "date": "Oct 23, 2016", @@ -131440,8 +194721,13 @@ "und": "Seattle Seahawks", "sF": "6", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2016 Regular Season - Week 7" }, { "date": "Oct 24, 2016", @@ -131450,8 +194736,13 @@ "und": "Houston Texans", "sF": "27", "sU": "9", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 40.0, + "pScore": { + "sU": 15.75, + "sF": 24.25 + }, + "week": "2016 Regular Season - Week 7" }, { "date": "Oct 27, 2016", @@ -131461,7 +194752,12 @@ "sF": "36", "sU": "22", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2016 Regular Season - Week 8" }, { "date": "Oct 30, 2016", @@ -131471,7 +194767,12 @@ "sF": "27", "sU": "27", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2016 Regular Season - Week 8" }, { "date": "Oct 30, 2016", @@ -131480,8 +194781,13 @@ "und": "Arizona Cardinals", "sF": "30", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2016 Regular Season - Week 8" }, { "date": "Oct 30, 2016", @@ -131490,8 +194796,13 @@ "und": "Buffalo Bills", "sF": "41", "sU": "25", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 48.0, + "pScore": { + "sU": 21.25, + "sF": 26.75 + }, + "week": "2016 Regular Season - Week 8" }, { "date": "Oct 30, 2016", @@ -131500,8 +194811,13 @@ "und": "Cleveland Browns", "sF": "31", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2016 Regular Season - Week 8" }, { "date": "Oct 30, 2016", @@ -131511,7 +194827,12 @@ "sF": "30", "sU": "14", "spread": "3", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 23.75, + "sF": 26.75 + }, + "week": "2016 Regular Season - Week 8" }, { "date": "Oct 30, 2016", @@ -131521,7 +194842,12 @@ "sF": "24", "sU": "30", "spread": "1", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.5, + "sF": 24.5 + }, + "week": "2016 Regular Season - Week 8" }, { "date": "Oct 30, 2016", @@ -131531,7 +194857,12 @@ "sF": "20", "sU": "13", "spread": "1", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.75, + "sF": 23.75 + }, + "week": "2016 Regular Season - Week 8" }, { "date": "Oct 30, 2016", @@ -131541,7 +194872,12 @@ "sF": "20", "sU": "25", "spread": "1", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 24.5, + "sF": 25.5 + }, + "week": "2016 Regular Season - Week 8" }, { "date": "Oct 30, 2016", @@ -131550,8 +194886,13 @@ "und": "San Diego Chargers", "sF": "27", "sU": "19", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2016 Regular Season - Week 8" }, { "date": "Oct 30, 2016", @@ -131561,7 +194902,12 @@ "sF": "33", "sU": "32", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2016 Regular Season - Week 8" }, { "date": "Oct 30, 2016", @@ -131571,7 +194917,12 @@ "sF": "29", "sU": "23", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "2016 Regular Season - Week 8" }, { "date": "Oct 31, 2016", @@ -131580,8 +194931,13 @@ "und": "Chicago Bears", "sF": "10", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.5, + "pScore": { + "sU": 17.5, + "sF": 22.0 + }, + "week": "2016 Regular Season - Week 8" }, { "date": "Nov 3, 2016", @@ -131590,8 +194946,13 @@ "und": "Tampa Bay Buccaneers", "sF": "43", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 49.0, + "pScore": { + "sU": 22.25, + "sF": 26.75 + }, + "week": "2016 Regular Season - Week 9" }, { "date": "Nov 6, 2016", @@ -131600,8 +194961,13 @@ "und": "Baltimore Ravens", "sF": "14", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2016 Regular Season - Week 9" }, { "date": "Nov 6, 2016", @@ -131611,7 +194977,12 @@ "sF": "35", "sU": "10", "spread": "7", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.0, + "sF": 28.0 + }, + "week": "2016 Regular Season - Week 9" }, { "date": "Nov 6, 2016", @@ -131621,7 +194992,12 @@ "sF": "19", "sU": "14", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "2016 Regular Season - Week 9" }, { "date": "Nov 6, 2016", @@ -131630,8 +195006,13 @@ "und": "New York Jets", "sF": "27", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2016 Regular Season - Week 9" }, { "date": "Nov 6, 2016", @@ -131640,8 +195021,13 @@ "und": "Detroit Lions", "sF": "16", "sU": "22", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.5, + "pScore": { + "sU": 19.0, + "sF": 23.5 + }, + "week": "2016 Regular Season - Week 9" }, { "date": "Nov 6, 2016", @@ -131651,7 +195037,12 @@ "sF": "28", "sU": "23", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2016 Regular Season - Week 9" }, { "date": "Nov 6, 2016", @@ -131661,7 +195052,12 @@ "sF": "13", "sU": "10", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2016 Regular Season - Week 9" }, { "date": "Nov 6, 2016", @@ -131671,11 +195067,12 @@ "sF": "41", "sU": "23", "spread": "5", - "ou": "49", + "ou": 53.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 24.0, + "sF": 29.0 + }, + "week": "2016 Regular Season - Week 9" }, { "date": "Nov 6, 2016", @@ -131684,8 +195081,13 @@ "und": "Indianapolis Colts", "sF": "26", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 52.0, + "pScore": { + "sU": 22.25, + "sF": 29.75 + }, + "week": "2016 Regular Season - Week 9" }, { "date": "Nov 6, 2016", @@ -131694,8 +195096,13 @@ "und": "Tennessee Titans", "sF": "43", "sU": "35", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2016 Regular Season - Week 9" }, { "date": "Nov 6, 2016", @@ -131705,7 +195112,12 @@ "sF": "30", "sU": "20", "spread": "1", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.75, + "sF": 22.75 + }, + "week": "2016 Regular Season - Week 9" }, { "date": "Nov 7, 2016", @@ -131714,8 +195126,13 @@ "und": "Buffalo Bills", "sF": "31", "sU": "25", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.5, + "pScore": { + "sU": 19.0, + "sF": 24.5 + }, + "week": "2016 Regular Season - Week 9" }, { "date": "Nov 10, 2016", @@ -131724,8 +195141,13 @@ "und": "Cleveland Browns", "sF": "28", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "2016 Regular Season - Week 10" }, { "date": "Nov 13, 2016", @@ -131735,7 +195157,12 @@ "sF": "17", "sU": "20", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2016 Regular Season - Week 10" }, { "date": "Nov 13, 2016", @@ -131745,7 +195172,12 @@ "sF": "21", "sU": "24", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2016 Regular Season - Week 10" }, { "date": "Nov 13, 2016", @@ -131755,7 +195187,12 @@ "sF": "23", "sU": "25", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "2016 Regular Season - Week 10" }, { "date": "Nov 13, 2016", @@ -131765,7 +195202,12 @@ "sF": "9", "sU": "6", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "2016 Regular Season - Week 10" }, { "date": "Nov 13, 2016", @@ -131775,7 +195217,12 @@ "sF": "24", "sU": "15", "spread": "2", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.25, + "sF": 25.25 + }, + "week": "2016 Regular Season - Week 10" }, { "date": "Nov 13, 2016", @@ -131784,8 +195231,13 @@ "und": "Tampa Bay Buccaneers", "sF": "10", "sU": "36", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "2016 Regular Season - Week 10" }, { "date": "Nov 13, 2016", @@ -131795,7 +195247,12 @@ "sF": "25", "sU": "47", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2016 Regular Season - Week 10" }, { "date": "Nov 13, 2016", @@ -131804,8 +195261,13 @@ "und": "Minnesota Vikings", "sF": "26", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "2016 Regular Season - Week 10" }, { "date": "Nov 13, 2016", @@ -131815,7 +195277,12 @@ "sF": "24", "sU": "31", "spread": "4", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.25, + "sF": 26.25 + }, + "week": "2016 Regular Season - Week 10" }, { "date": "Nov 13, 2016", @@ -131824,12 +195291,13 @@ "und": "San Francisco 49ers", "sF": "23", "sU": "20", - "spread": "13", - "ou": "49", + "spread": "13.5", + "ou": 46.5, "pScore": { - "sU": 18, - "sF": 31 - } + "sU": 16.5, + "sF": 30.0 + }, + "week": "2016 Regular Season - Week 10" }, { "date": "Nov 13, 2016", @@ -131839,7 +195307,12 @@ "sF": "30", "sU": "35", "spread": "3", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 23.75, + "sF": 26.75 + }, + "week": "2016 Regular Season - Week 10" }, { "date": "Nov 13, 2016", @@ -131848,8 +195321,13 @@ "und": "Seattle Seahawks", "sF": "24", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 49.5, + "pScore": { + "sU": 21.0, + "sF": 28.5 + }, + "week": "2016 Regular Season - Week 10" }, { "date": "Nov 14, 2016", @@ -131859,7 +195337,12 @@ "sF": "20", "sU": "21", "spread": "1", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 24.25, + "sF": 25.25 + }, + "week": "2016 Regular Season - Week 10" }, { "date": "Nov 17, 2016", @@ -131868,8 +195351,13 @@ "und": "New Orleans Saints", "sF": "23", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 52.5, + "pScore": { + "sU": 24.5, + "sF": 28.0 + }, + "week": "2016 Regular Season - Week 11" }, { "date": "Nov 20, 2016", @@ -131878,8 +195366,13 @@ "und": "Buffalo Bills", "sF": "12", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.0, + "pScore": { + "sU": 22.75, + "sF": 25.25 + }, + "week": "2016 Regular Season - Week 11" }, { "date": "Nov 20, 2016", @@ -131889,7 +195382,12 @@ "sF": "24", "sU": "9", "spread": "8", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 18.75, + "sF": 26.75 + }, + "week": "2016 Regular Season - Week 11" }, { "date": "Nov 20, 2016", @@ -131899,7 +195397,12 @@ "sF": "27", "sU": "17", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "2016 Regular Season - Week 11" }, { "date": "Nov 20, 2016", @@ -131908,8 +195411,13 @@ "und": "Jacksonville Jaguars", "sF": "26", "sU": "19", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.0, + "pScore": { + "sU": 20.75, + "sF": 26.25 + }, + "week": "2016 Regular Season - Week 11" }, { "date": "Nov 20, 2016", @@ -131919,7 +195427,12 @@ "sF": "24", "sU": "17", "spread": "3", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 25.25, + "sF": 28.25 + }, + "week": "2016 Regular Season - Week 11" }, { "date": "Nov 20, 2016", @@ -131929,7 +195442,12 @@ "sF": "17", "sU": "19", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "2016 Regular Season - Week 11" }, { "date": "Nov 20, 2016", @@ -131939,7 +195457,12 @@ "sF": "30", "sU": "24", "spread": "2", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.75, + "sF": 20.75 + }, + "week": "2016 Regular Season - Week 11" }, { "date": "Nov 20, 2016", @@ -131949,7 +195472,12 @@ "sF": "22", "sU": "16", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2016 Regular Season - Week 11" }, { "date": "Nov 20, 2016", @@ -131959,7 +195487,12 @@ "sF": "10", "sU": "14", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "2016 Regular Season - Week 11" }, { "date": "Nov 20, 2016", @@ -131968,12 +195501,13 @@ "und": "San Francisco 49ers", "sF": "30", "sU": "17", - "spread": "10", - "ou": "49", + "spread": "10.5", + "ou": 51.5, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sU": 20.5, + "sF": 31.0 + }, + "week": "2016 Regular Season - Week 11" }, { "date": "Nov 20, 2016", @@ -131982,8 +195516,13 @@ "und": "Philadelphia Eagles", "sF": "26", "sU": "15", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.5, + "pScore": { + "sU": 18.0, + "sF": 24.5 + }, + "week": "2016 Regular Season - Week 11" }, { "date": "Nov 20, 2016", @@ -131993,7 +195532,12 @@ "sF": "42", "sU": "24", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2016 Regular Season - Week 11" }, { "date": "Nov 21, 2016", @@ -132002,8 +195546,13 @@ "und": "Houston Texans", "sF": "27", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.5, + "pScore": { + "sU": 19.5, + "sF": 26.0 + }, + "week": "2016 Regular Season - Week 11" }, { "date": "Nov 24, 2016", @@ -132012,8 +195561,13 @@ "und": "Minnesota Vikings", "sF": "16", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "2016 Regular Season - Week 12" }, { "date": "Nov 24, 2016", @@ -132022,8 +195576,13 @@ "und": "Washington Redskins", "sF": "31", "sU": "26", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 53.0, + "pScore": { + "sU": 23.75, + "sF": 29.25 + }, + "week": "2016 Regular Season - Week 12" }, { "date": "Nov 24, 2016", @@ -132033,7 +195592,12 @@ "sF": "28", "sU": "7", "spread": "8", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 21.0, + "sF": 29.0 + }, + "week": "2016 Regular Season - Week 12" }, { "date": "Nov 27, 2016", @@ -132043,7 +195607,12 @@ "sF": "38", "sU": "19", "spread": "4", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 22.5, + "sF": 26.5 + }, + "week": "2016 Regular Season - Week 12" }, { "date": "Nov 27, 2016", @@ -132052,8 +195621,13 @@ "und": "Cincinnati Bengals", "sF": "19", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2016 Regular Season - Week 12" }, { "date": "Nov 27, 2016", @@ -132062,8 +195636,13 @@ "und": "Jacksonville Jaguars", "sF": "28", "sU": "21", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.5, + "pScore": { + "sU": 17.5, + "sF": 26.0 + }, + "week": "2016 Regular Season - Week 12" }, { "date": "Nov 27, 2016", @@ -132072,8 +195651,13 @@ "und": "Chicago Bears", "sF": "27", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "2016 Regular Season - Week 12" }, { "date": "Nov 27, 2016", @@ -132082,8 +195666,13 @@ "und": "Cleveland Browns", "sF": "27", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.5, + "pScore": { + "sU": 20.0, + "sF": 26.5 + }, + "week": "2016 Regular Season - Week 12" }, { "date": "Nov 27, 2016", @@ -132092,8 +195681,13 @@ "und": "Houston Texans", "sF": "21", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2016 Regular Season - Week 12" }, { "date": "Nov 27, 2016", @@ -132102,12 +195696,13 @@ "und": "San Francisco 49ers", "sF": "31", "sU": "24", - "spread": "7", - "ou": "49", + "spread": "7.5", + "ou": 44.5, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 18.5, + "sF": 26.0 + }, + "week": "2016 Regular Season - Week 12" }, { "date": "Nov 27, 2016", @@ -132117,7 +195712,12 @@ "sF": "49", "sU": "21", "spread": "8", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 18.5, + "sF": 26.5 + }, + "week": "2016 Regular Season - Week 12" }, { "date": "Nov 27, 2016", @@ -132127,7 +195727,12 @@ "sF": "5", "sU": "14", "spread": "5", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 20.5, + "sF": 25.5 + }, + "week": "2016 Regular Season - Week 12" }, { "date": "Nov 27, 2016", @@ -132136,8 +195741,13 @@ "und": "New York Jets", "sF": "22", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 48.0, + "pScore": { + "sU": 19.75, + "sF": 28.25 + }, + "week": "2016 Regular Season - Week 12" }, { "date": "Nov 27, 2016", @@ -132146,8 +195756,13 @@ "und": "Carolina Panthers", "sF": "35", "sU": "32", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.5, + "pScore": { + "sU": 22.5, + "sF": 26.0 + }, + "week": "2016 Regular Season - Week 12" }, { "date": "Nov 27, 2016", @@ -132156,8 +195771,13 @@ "und": "Kansas City Chiefs", "sF": "27", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2016 Regular Season - Week 12" }, { "date": "Nov 28, 2016", @@ -132167,7 +195787,12 @@ "sF": "13", "sU": "27", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "2016 Regular Season - Week 12" }, { "date": "Dec 1, 2016", @@ -132177,7 +195802,12 @@ "sF": "17", "sU": "15", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2016 Regular Season - Week 13" }, { "date": "Dec 4, 2016", @@ -132187,7 +195817,12 @@ "sF": "28", "sU": "29", "spread": "5", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 22.5, + "sF": 27.5 + }, + "week": "2016 Regular Season - Week 13" }, { "date": "Dec 4, 2016", @@ -132196,8 +195831,13 @@ "und": "Miami Dolphins", "sF": "38", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2016 Regular Season - Week 13" }, { "date": "Dec 4, 2016", @@ -132207,7 +195847,12 @@ "sF": "32", "sU": "14", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "2016 Regular Season - Week 13" }, { "date": "Dec 4, 2016", @@ -132216,8 +195861,13 @@ "und": "Houston Texans", "sF": "21", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "2016 Regular Season - Week 13" }, { "date": "Dec 4, 2016", @@ -132226,8 +195876,13 @@ "und": "Jacksonville Jaguars", "sF": "20", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "2016 Regular Season - Week 13" }, { "date": "Dec 4, 2016", @@ -132237,7 +195892,12 @@ "sF": "26", "sU": "10", "spread": "13", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 15.75, + "sF": 28.75 + }, + "week": "2016 Regular Season - Week 13" }, { "date": "Dec 4, 2016", @@ -132246,8 +195906,13 @@ "und": "Detroit Lions", "sF": "13", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 53.0, + "pScore": { + "sU": 23.25, + "sF": 29.75 + }, + "week": "2016 Regular Season - Week 13" }, { "date": "Dec 4, 2016", @@ -132257,7 +195922,12 @@ "sF": "38", "sU": "24", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2016 Regular Season - Week 13" }, { "date": "Dec 4, 2016", @@ -132266,8 +195936,13 @@ "und": "Washington Redskins", "sF": "31", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.5, + "pScore": { + "sU": 23.0, + "sF": 25.5 + }, + "week": "2016 Regular Season - Week 13" }, { "date": "Dec 4, 2016", @@ -132276,8 +195951,13 @@ "und": "New York Giants", "sF": "24", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.5, + "pScore": { + "sU": 21.5, + "sF": 28.0 + }, + "week": "2016 Regular Season - Week 13" }, { "date": "Dec 4, 2016", @@ -132286,8 +195966,13 @@ "und": "Tampa Bay Buccaneers", "sF": "21", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.0, + "pScore": { + "sU": 22.75, + "sF": 26.25 + }, + "week": "2016 Regular Season - Week 13" }, { "date": "Dec 4, 2016", @@ -132297,7 +195982,12 @@ "sF": "40", "sU": "7", "spread": "8", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 17.75, + "sF": 25.75 + }, + "week": "2016 Regular Season - Week 13" }, { "date": "Dec 5, 2016", @@ -132307,7 +195997,12 @@ "sF": "10", "sU": "41", "spread": "1", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.75, + "sF": 24.75 + }, + "week": "2016 Regular Season - Week 13" }, { "date": "Dec 8, 2016", @@ -132316,8 +196011,13 @@ "und": "Oakland Raiders", "sF": "21", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2016 Regular Season - Week 14" }, { "date": "Dec 11, 2016", @@ -132327,7 +196027,12 @@ "sF": "27", "sU": "20", "spread": "1", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 22.25, + "sF": 23.25 + }, + "week": "2016 Regular Season - Week 14" }, { "date": "Dec 11, 2016", @@ -132337,7 +196042,12 @@ "sF": "28", "sU": "16", "spread": "1", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.75, + "sF": 24.75 + }, + "week": "2016 Regular Season - Week 14" }, { "date": "Dec 11, 2016", @@ -132346,8 +196056,13 @@ "und": "Cleveland Browns", "sF": "23", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.0, + "pScore": { + "sU": 18.75, + "sF": 23.25 + }, + "week": "2016 Regular Season - Week 14" }, { "date": "Dec 11, 2016", @@ -132356,8 +196071,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "2016 Regular Season - Week 14" }, { "date": "Dec 11, 2016", @@ -132366,8 +196086,13 @@ "und": "Houston Texans", "sF": "17", "sU": "22", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.5, + "pScore": { + "sU": 20.5, + "sF": 27.0 + }, + "week": "2016 Regular Season - Week 14" }, { "date": "Dec 11, 2016", @@ -132377,7 +196102,12 @@ "sF": "25", "sU": "16", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2016 Regular Season - Week 14" }, { "date": "Dec 11, 2016", @@ -132387,7 +196117,12 @@ "sF": "23", "sU": "26", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "2016 Regular Season - Week 14" }, { "date": "Dec 11, 2016", @@ -132397,7 +196132,12 @@ "sF": "27", "sU": "22", "spread": "2", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.25, + "sF": 25.25 + }, + "week": "2016 Regular Season - Week 14" }, { "date": "Dec 11, 2016", @@ -132407,7 +196147,12 @@ "sF": "13", "sU": "10", "spread": "2", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.0, + "sF": 23.0 + }, + "week": "2016 Regular Season - Week 14" }, { "date": "Dec 11, 2016", @@ -132417,7 +196162,12 @@ "sF": "17", "sU": "23", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2016 Regular Season - Week 14" }, { "date": "Dec 11, 2016", @@ -132427,7 +196177,12 @@ "sF": "10", "sU": "38", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2016 Regular Season - Week 14" }, { "date": "Dec 11, 2016", @@ -132436,8 +196191,13 @@ "und": "Los Angeles Rams", "sF": "42", "sU": "14", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.0, + "pScore": { + "sU": 19.75, + "sF": 24.25 + }, + "week": "2016 Regular Season - Week 14" }, { "date": "Dec 11, 2016", @@ -132447,7 +196207,12 @@ "sF": "16", "sU": "11", "spread": "2", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 25.0, + "sF": 27.0 + }, + "week": "2016 Regular Season - Week 14" }, { "date": "Dec 11, 2016", @@ -132456,8 +196221,13 @@ "und": "New York Giants", "sF": "7", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2016 Regular Season - Week 14" }, { "date": "Dec 12, 2016", @@ -132467,7 +196237,12 @@ "sF": "30", "sU": "23", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "2016 Regular Season - Week 14" }, { "date": "Dec 15, 2016", @@ -132477,7 +196252,12 @@ "sF": "24", "sU": "3", "spread": "15", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 12.25, + "sF": 27.25 + }, + "week": "2016 Regular Season - Week 15" }, { "date": "Dec 17, 2016", @@ -132486,8 +196266,13 @@ "und": "New York Jets", "sF": "34", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2016 Regular Season - Week 15" }, { "date": "Dec 18, 2016", @@ -132497,7 +196282,12 @@ "sF": "27", "sU": "26", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "2016 Regular Season - Week 15" }, { "date": "Dec 18, 2016", @@ -132506,8 +196296,13 @@ "und": "Cleveland Browns", "sF": "33", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.0, + "pScore": { + "sU": 16.25, + "sF": 26.75 + }, + "week": "2016 Regular Season - Week 15" }, { "date": "Dec 18, 2016", @@ -132516,8 +196311,13 @@ "und": "Chicago Bears", "sF": "30", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.0, + "pScore": { + "sU": 17.75, + "sF": 22.25 + }, + "week": "2016 Regular Season - Week 15" }, { "date": "Dec 18, 2016", @@ -132527,7 +196327,12 @@ "sF": "24", "sU": "20", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2016 Regular Season - Week 15" }, { "date": "Dec 18, 2016", @@ -132536,8 +196341,13 @@ "und": "Jacksonville Jaguars", "sF": "21", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "2016 Regular Season - Week 15" }, { "date": "Dec 18, 2016", @@ -132547,7 +196357,12 @@ "sF": "17", "sU": "19", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "2016 Regular Season - Week 15" }, { "date": "Dec 18, 2016", @@ -132557,7 +196372,12 @@ "sF": "6", "sU": "34", "spread": "5", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.75, + "sF": 24.75 + }, + "week": "2016 Regular Season - Week 15" }, { "date": "Dec 18, 2016", @@ -132567,7 +196387,12 @@ "sF": "17", "sU": "6", "spread": "4", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.25, + "sF": 23.25 + }, + "week": "2016 Regular Season - Week 15" }, { "date": "Dec 18, 2016", @@ -132577,7 +196402,12 @@ "sF": "41", "sU": "48", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2016 Regular Season - Week 15" }, { "date": "Dec 18, 2016", @@ -132586,12 +196416,13 @@ "und": "San Francisco 49ers", "sF": "41", "sU": "13", - "spread": "13", - "ou": "49", + "spread": "13.5", + "ou": 51.5, "pScore": { - "sU": 18, - "sF": 31 - } + "sU": 19.0, + "sF": 32.5 + }, + "week": "2016 Regular Season - Week 15" }, { "date": "Dec 18, 2016", @@ -132601,7 +196432,12 @@ "sF": "16", "sU": "3", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2016 Regular Season - Week 15" }, { "date": "Dec 18, 2016", @@ -132610,8 +196446,13 @@ "und": "San Diego Chargers", "sF": "19", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.5, + "pScore": { + "sU": 23.5, + "sF": 26.0 + }, + "week": "2016 Regular Season - Week 15" }, { "date": "Dec 18, 2016", @@ -132621,7 +196462,12 @@ "sF": "26", "sU": "20", "spread": "7", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.25, + "sF": 27.25 + }, + "week": "2016 Regular Season - Week 15" }, { "date": "Dec 19, 2016", @@ -132631,7 +196477,12 @@ "sF": "15", "sU": "26", "spread": "7", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 21.75, + "sF": 28.75 + }, + "week": "2016 Regular Season - Week 15" }, { "date": "Dec 22, 2016", @@ -132640,8 +196491,13 @@ "und": "New York Giants", "sF": "24", "sU": "19", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.5, + "pScore": { + "sU": 20.5, + "sF": 22.0 + }, + "week": "2016 Regular Season - Week 16" }, { "date": "Dec 24, 2016", @@ -132650,8 +196506,13 @@ "und": "Miami Dolphins", "sF": "31", "sU": "34", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.5, + "pScore": { + "sU": 20.0, + "sF": 24.5 + }, + "week": "2016 Regular Season - Week 16" }, { "date": "Dec 24, 2016", @@ -132661,7 +196522,12 @@ "sF": "33", "sU": "16", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2016 Regular Season - Week 16" }, { "date": "Dec 24, 2016", @@ -132671,7 +196537,12 @@ "sF": "41", "sU": "21", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2016 Regular Season - Week 16" }, { "date": "Dec 24, 2016", @@ -132680,8 +196551,13 @@ "und": "Cleveland Browns", "sF": "17", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.0, + "pScore": { + "sU": 20.25, + "sF": 24.75 + }, + "week": "2016 Regular Season - Week 16" }, { "date": "Dec 24, 2016", @@ -132691,7 +196567,12 @@ "sF": "38", "sU": "25", "spread": "6", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.25, + "sF": 25.25 + }, + "week": "2016 Regular Season - Week 16" }, { "date": "Dec 24, 2016", @@ -132701,7 +196582,12 @@ "sF": "17", "sU": "38", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2016 Regular Season - Week 16" }, { "date": "Dec 24, 2016", @@ -132711,7 +196597,12 @@ "sF": "41", "sU": "3", "spread": "17", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 14.0, + "sF": 31.0 + }, + "week": "2016 Regular Season - Week 16" }, { "date": "Dec 24, 2016", @@ -132720,8 +196611,13 @@ "und": "Indianapolis Colts", "sF": "33", "sU": "25", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 52.0, + "pScore": { + "sU": 24.25, + "sF": 27.75 + }, + "week": "2016 Regular Season - Week 16" }, { "date": "Dec 24, 2016", @@ -132731,11 +196627,12 @@ "sF": "21", "sU": "22", "spread": "6", - "ou": "49", + "ou": 39.5, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 16.75, + "sF": 22.75 + }, + "week": "2016 Regular Season - Week 16" }, { "date": "Dec 24, 2016", @@ -132745,7 +196642,12 @@ "sF": "31", "sU": "24", "spread": "3", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 25.0, + "sF": 28.0 + }, + "week": "2016 Regular Season - Week 16" }, { "date": "Dec 24, 2016", @@ -132755,7 +196657,12 @@ "sF": "31", "sU": "34", "spread": "9", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 17.25, + "sF": 26.25 + }, + "week": "2016 Regular Season - Week 16" }, { "date": "Dec 24, 2016", @@ -132765,7 +196672,12 @@ "sF": "12", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2016 Regular Season - Week 16" }, { "date": "Dec 25, 2016", @@ -132774,8 +196686,13 @@ "und": "Baltimore Ravens", "sF": "31", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.5, + "pScore": { + "sU": 20.5, + "sF": 26.0 + }, + "week": "2016 Regular Season - Week 16" }, { "date": "Dec 25, 2016", @@ -132784,8 +196701,13 @@ "und": "Denver Broncos", "sF": "33", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "2016 Regular Season - Week 16" }, { "date": "Dec 26, 2016", @@ -132794,8 +196716,13 @@ "und": "Detroit Lions", "sF": "42", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.5, + "pScore": { + "sU": 20.0, + "sF": 26.5 + }, + "week": "2016 Regular Season - Week 16" }, { "date": "Jan 1, 2017", @@ -132804,8 +196731,13 @@ "und": "Cincinnati Bengals", "sF": "10", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "2016 Regular Season - Week 17" }, { "date": "Jan 1, 2017", @@ -132814,8 +196746,13 @@ "und": "Jacksonville Jaguars", "sF": "24", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 48.5, + "pScore": { + "sU": 21.5, + "sF": 27.0 + }, + "week": "2016 Regular Season - Week 17" }, { "date": "Jan 1, 2017", @@ -132824,8 +196761,13 @@ "und": "Miami Dolphins", "sF": "35", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.0, + "pScore": { + "sU": 19.75, + "sF": 27.25 + }, + "week": "2016 Regular Season - Week 17" }, { "date": "Jan 1, 2017", @@ -132835,7 +196777,12 @@ "sF": "38", "sU": "10", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2016 Regular Season - Week 17" }, { "date": "Jan 1, 2017", @@ -132844,8 +196791,13 @@ "und": "New York Jets", "sF": "10", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2016 Regular Season - Week 17" }, { "date": "Jan 1, 2017", @@ -132854,8 +196806,13 @@ "und": "Dallas Cowboys", "sF": "27", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2016 Regular Season - Week 17" }, { "date": "Jan 1, 2017", @@ -132865,7 +196822,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2016 Regular Season - Week 17" }, { "date": "Jan 1, 2017", @@ -132875,7 +196837,12 @@ "sF": "17", "sU": "16", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2016 Regular Season - Week 17" }, { "date": "Jan 1, 2017", @@ -132885,7 +196852,12 @@ "sF": "24", "sU": "17", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2016 Regular Season - Week 17" }, { "date": "Jan 1, 2017", @@ -132894,8 +196866,13 @@ "und": "New Orleans Saints", "sF": "38", "sU": "32", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 58.5, + "pScore": { + "sU": 25.5, + "sF": 33.0 + }, + "week": "2016 Regular Season - Week 17" }, { "date": "Jan 1, 2017", @@ -132905,7 +196882,12 @@ "sF": "24", "sU": "6", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "2016 Regular Season - Week 17" }, { "date": "Jan 1, 2017", @@ -132915,7 +196897,12 @@ "sF": "44", "sU": "6", "spread": "7", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 16.0, + "sF": 23.0 + }, + "week": "2016 Regular Season - Week 17" }, { "date": "Jan 1, 2017", @@ -132924,8 +196911,13 @@ "und": "San Diego Chargers", "sF": "37", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.0, + "pScore": { + "sU": 19.75, + "sF": 25.25 + }, + "week": "2016 Regular Season - Week 17" }, { "date": "Jan 1, 2017", @@ -132934,12 +196926,13 @@ "und": "San Francisco 49ers", "sF": "25", "sU": "23", - "spread": "11", - "ou": "49", + "spread": "11.5", + "ou": 45.0, "pScore": { - "sU": 19, - "sF": 30 - } + "sU": 16.75, + "sF": 28.25 + }, + "week": "2016 Regular Season - Week 17" }, { "date": "Jan 1, 2017", @@ -132949,7 +196942,12 @@ "sF": "10", "sU": "19", "spread": "9", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 19.25, + "sF": 28.25 + }, + "week": "2016 Regular Season - Week 17" }, { "date": "Jan 1, 2017", @@ -132958,8 +196956,13 @@ "und": "Detroit Lions", "sF": "31", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 50.0, + "pScore": { + "sU": 23.25, + "sF": 26.75 + }, + "week": "2016 Regular Season - Week 17" }, { "date": "Jan 7, 2017", @@ -132969,7 +196972,12 @@ "sF": "27", "sU": "14", "spread": "4", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.0, + "sF": 21.0 + }, + "week": "2016 Playoffs" }, { "date": "Jan 7, 2017", @@ -132979,7 +196987,12 @@ "sF": "26", "sU": "6", "spread": "8", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 18.75, + "sF": 26.75 + }, + "week": "2016 Playoffs" }, { "date": "Jan 8, 2017", @@ -132989,7 +197002,12 @@ "sF": "30", "sU": "12", "spread": "11", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 18.25, + "sF": 29.25 + }, + "week": "2016 Playoffs" }, { "date": "Jan 8, 2017", @@ -132999,7 +197017,12 @@ "sF": "38", "sU": "13", "spread": "5", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.75, + "sF": 25.75 + }, + "week": "2016 Playoffs" }, { "date": "Jan 14, 2017", @@ -133008,8 +197031,13 @@ "und": "Seattle Seahawks (3)", "sF": "36", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 51.0, + "pScore": { + "sU": 22.25, + "sF": 28.75 + }, + "week": "2016 Playoffs" }, { "date": "Jan 14, 2017", @@ -133019,7 +197047,12 @@ "sF": "34", "sU": "16", "spread": "16", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 14.0, + "sF": 30.0 + }, + "week": "2016 Playoffs" }, { "date": "Jan 15, 2017", @@ -133028,8 +197061,13 @@ "und": "Green Bay Packers (4)", "sF": "31", "sU": "34", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 52.5, + "pScore": { + "sU": 23.5, + "sF": 29.0 + }, + "week": "2016 Playoffs" }, { "date": "Jan 15, 2017", @@ -133038,8 +197076,13 @@ "und": "Pittsburgh Steelers (3)", "sF": "16", "sU": "18", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2016 Playoffs" }, { "date": "Jan 22, 2017", @@ -133048,8 +197091,13 @@ "und": "Green Bay Packers (4)", "sF": "44", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 59.5, + "pScore": { + "sU": 26.5, + "sF": 33.0 + }, + "week": "2016 Playoffs" }, { "date": "Jan 22, 2017", @@ -133058,8 +197106,13 @@ "und": "Pittsburgh Steelers (3)", "sF": "36", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 50.0, + "pScore": { + "sU": 22.25, + "sF": 27.75 + }, + "week": "2016 Playoffs" }, { "date": "Feb 5, 2017", @@ -133069,7 +197122,12 @@ "sF": "34", "sU": "28", "spread": "3", - "ou": -1 + "ou": 57.0, + "pScore": { + "sU": 27.0, + "sF": 30.0 + }, + "week": "2016 Playoffs" }, { "date": "Sep 7, 2017", @@ -133079,7 +197137,12 @@ "sF": "27", "sU": "42", "spread": "8", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 19.75, + "sF": 27.75 + }, + "week": "2017 Regular Season - Week 1" }, { "date": "Sep 10, 2017", @@ -133089,7 +197152,12 @@ "sF": "21", "sU": "12", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "2017 Regular Season - Week 1" }, { "date": "Sep 10, 2017", @@ -133098,8 +197166,13 @@ "und": "Chicago Bears", "sF": "23", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.0, + "pScore": { + "sU": 20.75, + "sF": 27.25 + }, + "week": "2017 Regular Season - Week 1" }, { "date": "Sep 10, 2017", @@ -133108,8 +197181,13 @@ "und": "Baltimore Ravens", "sF": "0", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2017 Regular Season - Week 1" }, { "date": "Sep 10, 2017", @@ -133119,7 +197197,12 @@ "sF": "21", "sU": "18", "spread": "10", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 18.5, + "sF": 28.5 + }, + "week": "2017 Regular Season - Week 1" }, { "date": "Sep 10, 2017", @@ -133128,8 +197211,13 @@ "und": "Detroit Lions", "sF": "23", "sU": "35", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.5, + "pScore": { + "sU": 23.0, + "sF": 25.5 + }, + "week": "2017 Regular Season - Week 1" }, { "date": "Sep 10, 2017", @@ -133138,8 +197226,13 @@ "und": "Jacksonville Jaguars", "sF": "7", "sU": "29", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 38.0, + "pScore": { + "sU": 16.25, + "sF": 21.75 + }, + "week": "2017 Regular Season - Week 1" }, { "date": "Sep 10, 2017", @@ -133148,8 +197241,13 @@ "und": "Oakland Raiders", "sF": "16", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.5, + "pScore": { + "sU": 23.5, + "sF": 26.0 + }, + "week": "2017 Regular Season - Week 1" }, { "date": "Sep 10, 2017", @@ -133159,7 +197257,12 @@ "sF": "30", "sU": "17", "spread": "2", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.75, + "sF": 25.75 + }, + "week": "2017 Regular Season - Week 1" }, { "date": "Sep 10, 2017", @@ -133168,8 +197271,13 @@ "und": "Indianapolis Colts", "sF": "46", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2017 Regular Season - Week 1" }, { "date": "Sep 10, 2017", @@ -133178,8 +197286,13 @@ "und": "Seattle Seahawks", "sF": "17", "sU": "9", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.5, + "pScore": { + "sU": 23.5, + "sF": 26.0 + }, + "week": "2017 Regular Season - Week 1" }, { "date": "Sep 10, 2017", @@ -133188,12 +197301,13 @@ "und": "San Francisco 49ers", "sF": "23", "sU": "3", - "spread": "4", - "ou": "49", + "spread": "4.5", + "ou": 45.5, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sU": 20.5, + "sF": 25.0 + }, + "week": "2017 Regular Season - Week 1" }, { "date": "Sep 10, 2017", @@ -133203,7 +197317,12 @@ "sF": "19", "sU": "3", "spread": "6", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.25, + "sF": 26.25 + }, + "week": "2017 Regular Season - Week 1" }, { "date": "Sep 11, 2017", @@ -133213,7 +197332,12 @@ "sF": "29", "sU": "19", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2017 Regular Season - Week 1" }, { "date": "Sep 11, 2017", @@ -133223,7 +197347,12 @@ "sF": "24", "sU": "21", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2017 Regular Season - Week 1" }, { "date": "Sep 14, 2017", @@ -133233,7 +197362,12 @@ "sF": "9", "sU": "13", "spread": "5", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.5, + "sF": 21.5 + }, + "week": "2017 Regular Season - Week 2" }, { "date": "Sep 17, 2017", @@ -133242,8 +197376,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.5, + "pScore": { + "sU": 16.0, + "sF": 23.5 + }, + "week": "2017 Regular Season - Week 2" }, { "date": "Sep 17, 2017", @@ -133252,8 +197391,13 @@ "und": "Buffalo Bills", "sF": "9", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "2017 Regular Season - Week 2" }, { "date": "Sep 17, 2017", @@ -133263,7 +197407,12 @@ "sF": "16", "sU": "13", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2017 Regular Season - Week 2" }, { "date": "Sep 17, 2017", @@ -133273,7 +197422,12 @@ "sF": "37", "sU": "16", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "2017 Regular Season - Week 2" }, { "date": "Sep 17, 2017", @@ -133283,7 +197437,12 @@ "sF": "27", "sU": "20", "spread": "4", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.25, + "sF": 25.25 + }, + "week": "2017 Regular Season - Week 2" }, { "date": "Sep 17, 2017", @@ -133292,8 +197451,13 @@ "und": "New Orleans Saints", "sF": "36", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 55.0, + "pScore": { + "sU": 24.75, + "sF": 30.25 + }, + "week": "2017 Regular Season - Week 2" }, { "date": "Sep 17, 2017", @@ -133302,8 +197466,13 @@ "und": "Minnesota Vikings", "sF": "26", "sU": "9", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.0, + "pScore": { + "sU": 17.25, + "sF": 25.75 + }, + "week": "2017 Regular Season - Week 2" }, { "date": "Sep 17, 2017", @@ -133313,7 +197482,12 @@ "sF": "29", "sU": "7", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2017 Regular Season - Week 2" }, { "date": "Sep 17, 2017", @@ -133322,8 +197496,13 @@ "und": "Miami Dolphins", "sF": "17", "sU": "19", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2017 Regular Season - Week 2" }, { "date": "Sep 17, 2017", @@ -133333,7 +197512,12 @@ "sF": "45", "sU": "20", "spread": "14", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 15.0, + "sF": 29.0 + }, + "week": "2017 Regular Season - Week 2" }, { "date": "Sep 17, 2017", @@ -133342,8 +197526,13 @@ "und": "Denver Broncos", "sF": "17", "sU": "42", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2017 Regular Season - Week 2" }, { "date": "Sep 17, 2017", @@ -133353,7 +197542,12 @@ "sF": "20", "sU": "27", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2017 Regular Season - Week 2" }, { "date": "Sep 17, 2017", @@ -133362,12 +197556,13 @@ "und": "San Francisco 49ers", "sF": "12", "sU": "9", - "spread": "13", - "ou": "49", + "spread": "13.5", + "ou": 42.0, "pScore": { - "sU": 18, - "sF": 31 - } + "sU": 14.25, + "sF": 27.75 + }, + "week": "2017 Regular Season - Week 2" }, { "date": "Sep 17, 2017", @@ -133377,7 +197572,12 @@ "sF": "34", "sU": "23", "spread": "3", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 26.0, + "sF": 29.0 + }, + "week": "2017 Regular Season - Week 2" }, { "date": "Sep 18, 2017", @@ -133387,7 +197587,12 @@ "sF": "10", "sU": "24", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2017 Regular Season - Week 2" }, { "date": "Sep 21, 2017", @@ -133397,11 +197602,12 @@ "sF": "41", "sU": "39", "spread": "3", - "ou": "49", + "ou": 40.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 18.75, + "sF": 21.75 + }, + "week": "2017 Regular Season - Week 3" }, { "date": "Sep 24, 2017", @@ -133410,8 +197616,13 @@ "und": "Buffalo Bills", "sF": "16", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2017 Regular Season - Week 3" }, { "date": "Sep 24, 2017", @@ -133421,7 +197632,12 @@ "sF": "13", "sU": "34", "spread": "5", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.75, + "sF": 25.75 + }, + "week": "2017 Regular Season - Week 3" }, { "date": "Sep 24, 2017", @@ -133431,7 +197647,12 @@ "sF": "17", "sU": "23", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2017 Regular Season - Week 3" }, { "date": "Sep 24, 2017", @@ -133441,7 +197662,12 @@ "sF": "30", "sU": "26", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2017 Regular Season - Week 3" }, { "date": "Sep 24, 2017", @@ -133451,7 +197677,12 @@ "sF": "28", "sU": "31", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "2017 Regular Season - Week 3" }, { "date": "Sep 24, 2017", @@ -133460,8 +197691,13 @@ "und": "Houston Texans", "sF": "36", "sU": "33", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 44.5, + "pScore": { + "sU": 15.5, + "sF": 29.0 + }, + "week": "2017 Regular Season - Week 3" }, { "date": "Sep 24, 2017", @@ -133470,8 +197706,13 @@ "und": "New York Jets", "sF": "6", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "2017 Regular Season - Week 3" }, { "date": "Sep 24, 2017", @@ -133481,7 +197722,12 @@ "sF": "27", "sU": "24", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "2017 Regular Season - Week 3" }, { "date": "Sep 24, 2017", @@ -133491,7 +197737,12 @@ "sF": "33", "sU": "27", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "2017 Regular Season - Week 3" }, { "date": "Sep 24, 2017", @@ -133501,7 +197752,12 @@ "sF": "27", "sU": "24", "spread": "7", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.25, + "sF": 27.25 + }, + "week": "2017 Regular Season - Week 3" }, { "date": "Sep 24, 2017", @@ -133511,7 +197767,12 @@ "sF": "24", "sU": "10", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2017 Regular Season - Week 3" }, { "date": "Sep 24, 2017", @@ -133520,8 +197781,13 @@ "und": "Washington Redskins", "sF": "10", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 53.5, + "pScore": { + "sU": 25.0, + "sF": 28.5 + }, + "week": "2017 Regular Season - Week 3" }, { "date": "Sep 24, 2017", @@ -133531,7 +197797,12 @@ "sF": "7", "sU": "44", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2017 Regular Season - Week 3" }, { "date": "Sep 25, 2017", @@ -133541,7 +197812,12 @@ "sF": "28", "sU": "17", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2017 Regular Season - Week 3" }, { "date": "Sep 28, 2017", @@ -133550,8 +197826,13 @@ "und": "Chicago Bears", "sF": "35", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "2017 Regular Season - Week 4" }, { "date": "Oct 1, 2017", @@ -133561,7 +197842,12 @@ "sF": "20", "sU": "0", "spread": "4", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 23.75, + "sF": 27.75 + }, + "week": "2017 Regular Season - Week 4" }, { "date": "Oct 1, 2017", @@ -133571,7 +197857,12 @@ "sF": "17", "sU": "23", "spread": "8", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.0, + "sF": 28.0 + }, + "week": "2017 Regular Season - Week 4" }, { "date": "Oct 1, 2017", @@ -133580,8 +197871,13 @@ "und": "Baltimore Ravens", "sF": "26", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "2017 Regular Season - Week 4" }, { "date": "Oct 1, 2017", @@ -133591,7 +197887,12 @@ "sF": "31", "sU": "7", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2017 Regular Season - Week 4" }, { "date": "Oct 1, 2017", @@ -133601,7 +197902,12 @@ "sF": "30", "sU": "35", "spread": "5", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 23.0, + "sF": 28.0 + }, + "week": "2017 Regular Season - Week 4" }, { "date": "Oct 1, 2017", @@ -133610,8 +197916,13 @@ "und": "Houston Texans", "sF": "14", "sU": "57", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2017 Regular Season - Week 4" }, { "date": "Oct 1, 2017", @@ -133620,8 +197931,13 @@ "und": "Detroit Lions", "sF": "7", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2017 Regular Season - Week 4" }, { "date": "Oct 1, 2017", @@ -133631,7 +197947,12 @@ "sF": "30", "sU": "33", "spread": "9", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 19.5, + "sF": 28.5 + }, + "week": "2017 Regular Season - Week 4" }, { "date": "Oct 1, 2017", @@ -133641,7 +197962,12 @@ "sF": "20", "sU": "23", "spread": "4", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.25, + "sF": 21.25 + }, + "week": "2017 Regular Season - Week 4" }, { "date": "Oct 1, 2017", @@ -133651,11 +197977,12 @@ "sF": "18", "sU": "15", "spread": "6", - "ou": "49", + "ou": 43.0, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 18.5, + "sF": 24.5 + }, + "week": "2017 Regular Season - Week 4" }, { "date": "Oct 1, 2017", @@ -133665,7 +197992,12 @@ "sF": "24", "sU": "26", "spread": "2", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.0, + "sF": 25.0 + }, + "week": "2017 Regular Season - Week 4" }, { "date": "Oct 1, 2017", @@ -133674,8 +198006,13 @@ "und": "New York Giants", "sF": "25", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2017 Regular Season - Week 4" }, { "date": "Oct 1, 2017", @@ -133684,8 +198021,13 @@ "und": "Oakland Raiders", "sF": "16", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2017 Regular Season - Week 4" }, { "date": "Oct 1, 2017", @@ -133694,8 +198036,13 @@ "und": "Indianapolis Colts", "sF": "46", "sU": "18", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 41.5, + "pScore": { + "sU": 14.5, + "sF": 27.0 + }, + "week": "2017 Regular Season - Week 4" }, { "date": "Oct 2, 2017", @@ -133704,8 +198051,13 @@ "und": "Washington Redskins", "sF": "29", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.0, + "pScore": { + "sU": 20.75, + "sF": 27.25 + }, + "week": "2017 Regular Season - Week 4" }, { "date": "Oct 5, 2017", @@ -133714,8 +198066,13 @@ "und": "Tampa Bay Buccaneers", "sF": "19", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 54.5, + "pScore": { + "sU": 25.5, + "sF": 29.0 + }, + "week": "2017 Regular Season - Week 5" }, { "date": "Oct 8, 2017", @@ -133725,7 +198082,12 @@ "sF": "20", "sU": "16", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2017 Regular Season - Week 5" }, { "date": "Oct 8, 2017", @@ -133734,8 +198096,13 @@ "und": "Cleveland Browns", "sF": "17", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.5, + "pScore": { + "sU": 20.0, + "sF": 21.5 + }, + "week": "2017 Regular Season - Week 5" }, { "date": "Oct 8, 2017", @@ -133745,7 +198112,12 @@ "sF": "24", "sU": "27", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "2017 Regular Season - Week 5" }, { "date": "Oct 8, 2017", @@ -133755,11 +198127,12 @@ "sF": "26", "sU": "23", "spread": "1", - "ou": "49", + "ou": 43.5, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 21.25, + "sF": 22.25 + }, + "week": "2017 Regular Season - Week 5" }, { "date": "Oct 8, 2017", @@ -133769,7 +198142,12 @@ "sF": "22", "sU": "27", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2017 Regular Season - Week 5" }, { "date": "Oct 8, 2017", @@ -133779,7 +198157,12 @@ "sF": "34", "sU": "7", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "2017 Regular Season - Week 5" }, { "date": "Oct 8, 2017", @@ -133788,8 +198171,13 @@ "und": "Jacksonville Jaguars", "sF": "9", "sU": "30", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.0, + "pScore": { + "sU": 16.75, + "sF": 24.25 + }, + "week": "2017 Regular Season - Week 5" }, { "date": "Oct 8, 2017", @@ -133799,7 +198187,12 @@ "sF": "10", "sU": "16", "spread": "2", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.5, + "sF": 24.5 + }, + "week": "2017 Regular Season - Week 5" }, { "date": "Oct 8, 2017", @@ -133809,7 +198202,12 @@ "sF": "17", "sU": "30", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2017 Regular Season - Week 5" }, { "date": "Oct 8, 2017", @@ -133818,8 +198216,13 @@ "und": "Green Bay Packers", "sF": "31", "sU": "35", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 52.0, + "pScore": { + "sU": 24.75, + "sF": 27.25 + }, + "week": "2017 Regular Season - Week 5" }, { "date": "Oct 8, 2017", @@ -133829,7 +198232,12 @@ "sF": "42", "sU": "34", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "2017 Regular Season - Week 5" }, { "date": "Oct 9, 2017", @@ -133838,8 +198246,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2017 Regular Season - Week 5" }, { "date": "Oct 12, 2017", @@ -133849,7 +198262,12 @@ "sF": "23", "sU": "28", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2017 Regular Season - Week 6" }, { "date": "Oct 15, 2017", @@ -133859,7 +198277,12 @@ "sF": "17", "sU": "20", "spread": "14", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 16.0, + "sF": 30.0 + }, + "week": "2017 Regular Season - Week 6" }, { "date": "Oct 15, 2017", @@ -133868,8 +198291,13 @@ "und": "Chicago Bears", "sF": "24", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.5, + "pScore": { + "sU": 17.0, + "sF": 22.5 + }, + "week": "2017 Regular Season - Week 6" }, { "date": "Oct 15, 2017", @@ -133878,8 +198306,13 @@ "und": "Cleveland Browns", "sF": "33", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.0, + "pScore": { + "sU": 19.25, + "sF": 26.75 + }, + "week": "2017 Regular Season - Week 6" }, { "date": "Oct 15, 2017", @@ -133889,7 +198322,12 @@ "sF": "10", "sU": "23", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2017 Regular Season - Week 6" }, { "date": "Oct 15, 2017", @@ -133899,7 +198337,12 @@ "sF": "52", "sU": "38", "spread": "6", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 22.25, + "sF": 28.25 + }, + "week": "2017 Regular Season - Week 6" }, { "date": "Oct 15, 2017", @@ -133909,7 +198352,12 @@ "sF": "24", "sU": "17", "spread": "9", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 19.75, + "sF": 28.75 + }, + "week": "2017 Regular Season - Week 6" }, { "date": "Oct 15, 2017", @@ -133919,11 +198367,12 @@ "sF": "26", "sU": "24", "spread": "12", - "ou": "49", + "ou": 46.0, "pScore": { - "sU": 18.5, - "sF": 30.5 - } + "sU": 17.0, + "sF": 29.0 + }, + "week": "2017 Regular Season - Week 6" }, { "date": "Oct 15, 2017", @@ -133932,8 +198381,13 @@ "und": "Arizona Cardinals", "sF": "33", "sU": "38", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "2017 Regular Season - Week 6" }, { "date": "Oct 15, 2017", @@ -133943,7 +198397,12 @@ "sF": "17", "sU": "27", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "2017 Regular Season - Week 6" }, { "date": "Oct 15, 2017", @@ -133952,8 +198411,13 @@ "und": "Pittsburgh Steelers", "sF": "13", "sU": "19", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2017 Regular Season - Week 6" }, { "date": "Oct 15, 2017", @@ -133963,7 +198427,12 @@ "sF": "16", "sU": "17", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2017 Regular Season - Week 6" }, { "date": "Oct 15, 2017", @@ -133972,8 +198441,13 @@ "und": "New York Giants", "sF": "10", "sU": "23", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 37.5, + "pScore": { + "sU": 12.0, + "sF": 25.5 + }, + "week": "2017 Regular Season - Week 6" }, { "date": "Oct 16, 2017", @@ -133983,7 +198457,12 @@ "sF": "36", "sU": "22", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "2017 Regular Season - Week 6" }, { "date": "Oct 19, 2017", @@ -133993,7 +198472,12 @@ "sF": "30", "sU": "31", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2017 Regular Season - Week 7" }, { "date": "Oct 22, 2017", @@ -134003,7 +198487,12 @@ "sF": "30", "sU": "27", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2017 Regular Season - Week 7" }, { "date": "Oct 22, 2017", @@ -134012,8 +198501,13 @@ "und": "Chicago Bears", "sF": "3", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "2017 Regular Season - Week 7" }, { "date": "Oct 22, 2017", @@ -134022,8 +198516,13 @@ "und": "Cleveland Browns", "sF": "12", "sU": "9", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.5, + "pScore": { + "sU": 18.5, + "sF": 24.0 + }, + "week": "2017 Regular Season - Week 7" }, { "date": "Oct 22, 2017", @@ -134032,8 +198531,13 @@ "und": "Green Bay Packers", "sF": "26", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "2017 Regular Season - Week 7" }, { "date": "Oct 22, 2017", @@ -134043,7 +198547,12 @@ "sF": "27", "sU": "0", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2017 Regular Season - Week 7" }, { "date": "Oct 22, 2017", @@ -134053,7 +198562,12 @@ "sF": "33", "sU": "0", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2017 Regular Season - Week 7" }, { "date": "Oct 22, 2017", @@ -134063,7 +198577,12 @@ "sF": "31", "sU": "28", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2017 Regular Season - Week 7" }, { "date": "Oct 22, 2017", @@ -134073,7 +198592,12 @@ "sF": "24", "sU": "16", "spread": "5", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 16.25, + "sF": 21.25 + }, + "week": "2017 Regular Season - Week 7" }, { "date": "Oct 22, 2017", @@ -134082,12 +198606,13 @@ "und": "San Francisco 49ers", "sF": "40", "sU": "10", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": 48.0, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 20.75, + "sF": 27.25 + }, + "week": "2017 Regular Season - Week 7" }, { "date": "Oct 22, 2017", @@ -134097,7 +198622,12 @@ "sF": "0", "sU": "21", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "2017 Regular Season - Week 7" }, { "date": "Oct 22, 2017", @@ -134107,7 +198637,12 @@ "sF": "24", "sU": "7", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "2017 Regular Season - Week 7" }, { "date": "Oct 22, 2017", @@ -134117,7 +198652,12 @@ "sF": "29", "sU": "14", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "2017 Regular Season - Week 7" }, { "date": "Oct 22, 2017", @@ -134127,7 +198667,12 @@ "sF": "23", "sU": "7", "spread": "3", - "ou": -1 + "ou": 56.5, + "pScore": { + "sU": 26.75, + "sF": 29.75 + }, + "week": "2017 Regular Season - Week 7" }, { "date": "Oct 23, 2017", @@ -134137,7 +198682,12 @@ "sF": "34", "sU": "24", "spread": "5", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 21.75, + "sF": 26.75 + }, + "week": "2017 Regular Season - Week 7" }, { "date": "Oct 26, 2017", @@ -134147,7 +198697,12 @@ "sF": "40", "sU": "0", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2017 Regular Season - Week 8" }, { "date": "Oct 29, 2017", @@ -134157,7 +198712,12 @@ "sF": "33", "sU": "16", "spread": "11", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 13.75, + "sF": 24.75 + }, + "week": "2017 Regular Season - Week 8" }, { "date": "Oct 29, 2017", @@ -134167,7 +198727,12 @@ "sF": "34", "sU": "14", "spread": "2", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.5, + "sF": 24.5 + }, + "week": "2017 Regular Season - Week 8" }, { "date": "Oct 29, 2017", @@ -134177,7 +198742,12 @@ "sF": "24", "sU": "23", "spread": "11", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 16.5, + "sF": 27.5 + }, + "week": "2017 Regular Season - Week 8" }, { "date": "Oct 29, 2017", @@ -134186,8 +198756,13 @@ "und": "Los Angeles Chargers", "sF": "21", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.0, + "pScore": { + "sU": 21.25, + "sF": 27.75 + }, + "week": "2017 Regular Season - Week 8" }, { "date": "Oct 29, 2017", @@ -134196,8 +198771,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "12", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.0, + "pScore": { + "sU": 19.25, + "sF": 26.75 + }, + "week": "2017 Regular Season - Week 8" }, { "date": "Oct 29, 2017", @@ -134206,8 +198786,13 @@ "und": "New York Jets", "sF": "25", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2017 Regular Season - Week 8" }, { "date": "Oct 29, 2017", @@ -134217,11 +198802,12 @@ "sF": "33", "sU": "10", "spread": "13", - "ou": "49", + "ou": 45.0, "pScore": { - "sU": 18, - "sF": 31 - } + "sU": 16.0, + "sF": 29.0 + }, + "week": "2017 Regular Season - Week 8" }, { "date": "Oct 29, 2017", @@ -134230,8 +198816,13 @@ "und": "Carolina Panthers", "sF": "3", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.0, + "pScore": { + "sU": 22.25, + "sF": 23.75 + }, + "week": "2017 Regular Season - Week 8" }, { "date": "Oct 29, 2017", @@ -134241,7 +198832,12 @@ "sF": "41", "sU": "38", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "2017 Regular Season - Week 8" }, { "date": "Oct 29, 2017", @@ -134251,7 +198847,12 @@ "sF": "33", "sU": "19", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2017 Regular Season - Week 8" }, { "date": "Oct 29, 2017", @@ -134261,7 +198862,12 @@ "sF": "20", "sU": "15", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2017 Regular Season - Week 8" }, { "date": "Oct 30, 2017", @@ -134271,7 +198877,12 @@ "sF": "29", "sU": "19", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "2017 Regular Season - Week 8" }, { "date": "Nov 2, 2017", @@ -134281,7 +198892,12 @@ "sF": "21", "sU": "34", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2017 Regular Season - Week 9" }, { "date": "Nov 5, 2017", @@ -134291,7 +198907,12 @@ "sF": "17", "sU": "20", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2017 Regular Season - Week 9" }, { "date": "Nov 5, 2017", @@ -134301,7 +198922,12 @@ "sF": "14", "sU": "20", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "2017 Regular Season - Week 9" }, { "date": "Nov 5, 2017", @@ -134311,7 +198937,12 @@ "sF": "23", "sU": "7", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "2017 Regular Season - Week 9" }, { "date": "Nov 5, 2017", @@ -134321,7 +198952,12 @@ "sF": "30", "sU": "10", "spread": "7", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 23.5, + "sF": 30.5 + }, + "week": "2017 Regular Season - Week 9" }, { "date": "Nov 5, 2017", @@ -134330,8 +198966,13 @@ "und": "New York Giants", "sF": "51", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.5, + "pScore": { + "sU": 18.5, + "sF": 24.0 + }, + "week": "2017 Regular Season - Week 9" }, { "date": "Nov 5, 2017", @@ -134341,7 +198982,12 @@ "sF": "51", "sU": "23", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "2017 Regular Season - Week 9" }, { "date": "Nov 5, 2017", @@ -134351,7 +198997,12 @@ "sF": "23", "sU": "20", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2017 Regular Season - Week 9" }, { "date": "Nov 5, 2017", @@ -134360,12 +199011,13 @@ "und": "San Francisco 49ers", "sF": "20", "sU": "10", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": 39.0, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 18.25, + "sF": 20.75 + }, + "week": "2017 Regular Season - Week 9" }, { "date": "Nov 5, 2017", @@ -134375,7 +199027,12 @@ "sF": "14", "sU": "17", "spread": "8", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.25, + "sF": 26.25 + }, + "week": "2017 Regular Season - Week 9" }, { "date": "Nov 5, 2017", @@ -134384,8 +199041,13 @@ "und": "Kansas City Chiefs", "sF": "28", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 53.0, + "pScore": { + "sU": 25.25, + "sF": 27.75 + }, + "week": "2017 Regular Season - Week 9" }, { "date": "Nov 5, 2017", @@ -134395,7 +199057,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2017 Regular Season - Week 9" }, { "date": "Nov 6, 2017", @@ -134404,8 +199071,13 @@ "und": "Green Bay Packers", "sF": "30", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2017 Regular Season - Week 9" }, { "date": "Nov 9, 2017", @@ -134415,7 +199087,12 @@ "sF": "22", "sU": "16", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "2017 Regular Season - Week 10" }, { "date": "Nov 12, 2017", @@ -134425,7 +199102,12 @@ "sF": "47", "sU": "10", "spread": "2", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.25, + "sF": 25.25 + }, + "week": "2017 Regular Season - Week 10" }, { "date": "Nov 12, 2017", @@ -134434,8 +199116,13 @@ "und": "Green Bay Packers", "sF": "16", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.5, + "pScore": { + "sU": 16.5, + "sF": 21.0 + }, + "week": "2017 Regular Season - Week 10" }, { "date": "Nov 12, 2017", @@ -134444,8 +199131,13 @@ "und": "Cleveland Browns", "sF": "38", "sU": "24", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 42.5, + "pScore": { + "sU": 16.0, + "sF": 26.5 + }, + "week": "2017 Regular Season - Week 10" }, { "date": "Nov 12, 2017", @@ -134454,8 +199146,13 @@ "und": "Indianapolis Colts", "sF": "20", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 47.0, + "pScore": { + "sU": 18.25, + "sF": 28.75 + }, + "week": "2017 Regular Season - Week 10" }, { "date": "Nov 12, 2017", @@ -134465,7 +199162,12 @@ "sF": "20", "sU": "17", "spread": "5", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.75, + "sF": 22.75 + }, + "week": "2017 Regular Season - Week 10" }, { "date": "Nov 12, 2017", @@ -134475,7 +199177,12 @@ "sF": "15", "sU": "10", "spread": "1", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.75, + "sF": 22.75 + }, + "week": "2017 Regular Season - Week 10" }, { "date": "Nov 12, 2017", @@ -134484,8 +199191,13 @@ "und": "Cincinnati Bengals", "sF": "24", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "2017 Regular Season - Week 10" }, { "date": "Nov 12, 2017", @@ -134495,7 +199207,12 @@ "sF": "38", "sU": "30", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "2017 Regular Season - Week 10" }, { "date": "Nov 12, 2017", @@ -134505,7 +199222,12 @@ "sF": "33", "sU": "7", "spread": "12", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 16.5, + "sF": 28.5 + }, + "week": "2017 Regular Season - Week 10" }, { "date": "Nov 12, 2017", @@ -134514,8 +199236,13 @@ "und": "Dallas Cowboys", "sF": "27", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.0, + "pScore": { + "sU": 22.75, + "sF": 26.25 + }, + "week": "2017 Regular Season - Week 10" }, { "date": "Nov 12, 2017", @@ -134525,11 +199252,12 @@ "sF": "21", "sU": "31", "spread": "3", - "ou": "49", + "ou": 41.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 19.25, + "sF": 22.25 + }, + "week": "2017 Regular Season - Week 10" }, { "date": "Nov 12, 2017", @@ -134539,7 +199267,12 @@ "sF": "41", "sU": "16", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "2017 Regular Season - Week 10" }, { "date": "Nov 13, 2017", @@ -134549,7 +199282,12 @@ "sF": "45", "sU": "21", "spread": "8", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.25, + "sF": 23.25 + }, + "week": "2017 Regular Season - Week 10" }, { "date": "Nov 16, 2017", @@ -134559,7 +199297,12 @@ "sF": "40", "sU": "17", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "2017 Regular Season - Week 11" }, { "date": "Nov 19, 2017", @@ -134569,7 +199312,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2017 Regular Season - Week 11" }, { "date": "Nov 19, 2017", @@ -134578,8 +199326,13 @@ "und": "Cleveland Browns", "sF": "19", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.0, + "pScore": { + "sU": 14.75, + "sF": 22.25 + }, + "week": "2017 Regular Season - Week 11" }, { "date": "Nov 19, 2017", @@ -134588,8 +199341,13 @@ "und": "Green Bay Packers", "sF": "23", "sU": "0", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.5, + "pScore": { + "sU": 18.0, + "sF": 20.5 + }, + "week": "2017 Regular Season - Week 11" }, { "date": "Nov 19, 2017", @@ -134598,8 +199356,13 @@ "und": "Arizona Cardinals", "sF": "31", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "2017 Regular Season - Week 11" }, { "date": "Nov 19, 2017", @@ -134609,7 +199372,12 @@ "sF": "30", "sU": "20", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2017 Regular Season - Week 11" }, { "date": "Nov 19, 2017", @@ -134619,7 +199387,12 @@ "sF": "24", "sU": "7", "spread": "1", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.5, + "sF": 23.5 + }, + "week": "2017 Regular Season - Week 11" }, { "date": "Nov 19, 2017", @@ -134628,8 +199401,13 @@ "und": "Washington Redskins", "sF": "34", "sU": "31", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 52.5, + "pScore": { + "sU": 21.5, + "sF": 31.0 + }, + "week": "2017 Regular Season - Week 11" }, { "date": "Nov 19, 2017", @@ -134639,7 +199417,12 @@ "sF": "9", "sU": "12", "spread": "10", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.25, + "sF": 27.25 + }, + "week": "2017 Regular Season - Week 11" }, { "date": "Nov 19, 2017", @@ -134649,7 +199432,12 @@ "sF": "54", "sU": "24", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2017 Regular Season - Week 11" }, { "date": "Nov 19, 2017", @@ -134658,8 +199446,13 @@ "und": "Cincinnati Bengals", "sF": "17", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2017 Regular Season - Week 11" }, { "date": "Nov 19, 2017", @@ -134669,7 +199462,12 @@ "sF": "33", "sU": "8", "spread": "7", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 24.0, + "sF": 31.0 + }, + "week": "2017 Regular Season - Week 11" }, { "date": "Nov 19, 2017", @@ -134679,7 +199477,12 @@ "sF": "37", "sU": "9", "spread": "6", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 21.0, + "sF": 27.0 + }, + "week": "2017 Regular Season - Week 11" }, { "date": "Nov 20, 2017", @@ -134689,7 +199492,12 @@ "sF": "34", "sU": "31", "spread": "1", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.5, + "sF": 23.5 + }, + "week": "2017 Regular Season - Week 11" }, { "date": "Nov 23, 2017", @@ -134698,8 +199506,13 @@ "und": "Detroit Lions", "sF": "30", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "2017 Regular Season - Week 12" }, { "date": "Nov 23, 2017", @@ -134709,7 +199522,12 @@ "sF": "28", "sU": "6", "spread": "1", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.75, + "sF": 23.75 + }, + "week": "2017 Regular Season - Week 12" }, { "date": "Nov 23, 2017", @@ -134719,7 +199537,12 @@ "sF": "20", "sU": "10", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2017 Regular Season - Week 12" }, { "date": "Nov 26, 2017", @@ -134728,8 +199551,13 @@ "und": "Tampa Bay Buccaneers", "sF": "34", "sU": "20", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 47.0, + "pScore": { + "sU": 18.25, + "sF": 28.75 + }, + "week": "2017 Regular Season - Week 12" }, { "date": "Nov 26, 2017", @@ -134738,8 +199566,13 @@ "und": "Cleveland Browns", "sF": "30", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.0, + "pScore": { + "sU": 15.75, + "sF": 23.25 + }, + "week": "2017 Regular Season - Week 12" }, { "date": "Nov 26, 2017", @@ -134749,7 +199582,12 @@ "sF": "20", "sU": "16", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2017 Regular Season - Week 12" }, { "date": "Nov 26, 2017", @@ -134758,8 +199596,13 @@ "und": "Buffalo Bills", "sF": "10", "sU": "16", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 47.0, + "pScore": { + "sU": 19.25, + "sF": 27.75 + }, + "week": "2017 Regular Season - Week 12" }, { "date": "Nov 26, 2017", @@ -134769,7 +199612,12 @@ "sF": "35", "sU": "17", "spread": "17", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 16.0, + "sF": 33.0 + }, + "week": "2017 Regular Season - Week 12" }, { "date": "Nov 26, 2017", @@ -134778,8 +199626,13 @@ "und": "New York Jets", "sF": "35", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.5, + "pScore": { + "sU": 17.0, + "sF": 22.5 + }, + "week": "2017 Regular Season - Week 12" }, { "date": "Nov 26, 2017", @@ -134789,7 +199642,12 @@ "sF": "31", "sU": "3", "spread": "14", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 14.75, + "sF": 28.75 + }, + "week": "2017 Regular Season - Week 12" }, { "date": "Nov 26, 2017", @@ -134799,11 +199657,12 @@ "sF": "24", "sU": "13", "spread": "7", - "ou": "49", + "ou": 45.0, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 19.0, + "sF": 26.0 + }, + "week": "2017 Regular Season - Week 12" }, { "date": "Nov 26, 2017", @@ -134813,7 +199672,12 @@ "sF": "24", "sU": "27", "spread": "6", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.75, + "sF": 21.75 + }, + "week": "2017 Regular Season - Week 12" }, { "date": "Nov 26, 2017", @@ -134822,8 +199686,13 @@ "und": "New Orleans Saints", "sF": "26", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 54.0, + "pScore": { + "sU": 25.75, + "sF": 28.25 + }, + "week": "2017 Regular Season - Week 12" }, { "date": "Nov 26, 2017", @@ -134832,8 +199701,13 @@ "und": "Denver Broncos", "sF": "21", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2017 Regular Season - Week 12" }, { "date": "Nov 26, 2017", @@ -134843,7 +199717,12 @@ "sF": "31", "sU": "28", "spread": "14", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 14.25, + "sF": 28.25 + }, + "week": "2017 Regular Season - Week 12" }, { "date": "Nov 27, 2017", @@ -134852,8 +199731,13 @@ "und": "Houston Texans", "sF": "23", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.5, + "pScore": { + "sU": 16.0, + "sF": 23.5 + }, + "week": "2017 Regular Season - Week 12" }, { "date": "Nov 30, 2017", @@ -134862,8 +199746,13 @@ "und": "Dallas Cowboys", "sF": "14", "sU": "38", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.0, + "pScore": { + "sU": 22.75, + "sF": 24.25 + }, + "week": "2017 Regular Season - Week 13" }, { "date": "Dec 3, 2017", @@ -134873,7 +199762,12 @@ "sF": "9", "sU": "14", "spread": "2", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.25, + "sF": 25.25 + }, + "week": "2017 Regular Season - Week 13" }, { "date": "Dec 3, 2017", @@ -134882,8 +199776,13 @@ "und": "Detroit Lions", "sF": "44", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2017 Regular Season - Week 13" }, { "date": "Dec 3, 2017", @@ -134892,8 +199791,13 @@ "und": "Buffalo Bills", "sF": "23", "sU": "3", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.5, + "pScore": { + "sU": 20.5, + "sF": 28.0 + }, + "week": "2017 Regular Season - Week 13" }, { "date": "Dec 3, 2017", @@ -134902,12 +199806,13 @@ "und": "San Francisco 49ers", "sF": "14", "sU": "15", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": 42.0, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 19.75, + "sF": 22.25 + }, + "week": "2017 Regular Season - Week 13" }, { "date": "Dec 3, 2017", @@ -134917,7 +199822,12 @@ "sF": "26", "sU": "20", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2017 Regular Season - Week 13" }, { "date": "Dec 3, 2017", @@ -134927,7 +199837,12 @@ "sF": "30", "sU": "10", "spread": "10", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 15.5, + "sF": 25.5 + }, + "week": "2017 Regular Season - Week 13" }, { "date": "Dec 3, 2017", @@ -134937,7 +199852,12 @@ "sF": "9", "sU": "35", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "2017 Regular Season - Week 13" }, { "date": "Dec 3, 2017", @@ -134947,7 +199867,12 @@ "sF": "31", "sU": "38", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2017 Regular Season - Week 13" }, { "date": "Dec 3, 2017", @@ -134957,7 +199882,12 @@ "sF": "24", "sU": "13", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "2017 Regular Season - Week 13" }, { "date": "Dec 3, 2017", @@ -134966,8 +199896,13 @@ "und": "Cleveland Browns", "sF": "19", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 45.0, + "pScore": { + "sU": 15.75, + "sF": 29.25 + }, + "week": "2017 Regular Season - Week 13" }, { "date": "Dec 3, 2017", @@ -134976,8 +199911,13 @@ "und": "Arizona Cardinals", "sF": "32", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.0, + "pScore": { + "sU": 17.75, + "sF": 25.25 + }, + "week": "2017 Regular Season - Week 13" }, { "date": "Dec 3, 2017", @@ -134986,8 +199926,13 @@ "und": "Carolina Panthers", "sF": "31", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 48.0, + "pScore": { + "sU": 21.25, + "sF": 26.75 + }, + "week": "2017 Regular Season - Week 13" }, { "date": "Dec 3, 2017", @@ -134997,7 +199942,12 @@ "sF": "24", "sU": "17", "spread": "10", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.5, + "sF": 26.5 + }, + "week": "2017 Regular Season - Week 13" }, { "date": "Dec 3, 2017", @@ -135006,8 +199956,13 @@ "und": "Seattle Seahawks", "sF": "10", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "2017 Regular Season - Week 13" }, { "date": "Dec 4, 2017", @@ -135016,8 +199971,13 @@ "und": "Cincinnati Bengals", "sF": "23", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.5, + "pScore": { + "sU": 19.0, + "sF": 23.5 + }, + "week": "2017 Regular Season - Week 13" }, { "date": "Dec 7, 2017", @@ -135026,8 +199986,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 51.5, + "pScore": { + "sU": 24.5, + "sF": 27.0 + }, + "week": "2017 Regular Season - Week 14" }, { "date": "Dec 10, 2017", @@ -135036,8 +200001,13 @@ "und": "Indianapolis Colts", "sF": "13", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "2017 Regular Season - Week 14" }, { "date": "Dec 10, 2017", @@ -135046,8 +200016,13 @@ "und": "Carolina Panthers", "sF": "24", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "2017 Regular Season - Week 14" }, { "date": "Dec 10, 2017", @@ -135057,7 +200032,12 @@ "sF": "7", "sU": "33", "spread": "6", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.25, + "sF": 23.25 + }, + "week": "2017 Regular Season - Week 14" }, { "date": "Dec 10, 2017", @@ -135066,8 +200046,13 @@ "und": "Cleveland Browns", "sF": "27", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.5, + "pScore": { + "sU": 18.0, + "sF": 20.5 + }, + "week": "2017 Regular Season - Week 14" }, { "date": "Dec 10, 2017", @@ -135077,11 +200062,12 @@ "sF": "16", "sU": "26", "spread": "1", - "ou": "49", + "ou": 45.5, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 22.25, + "sF": 23.25 + }, + "week": "2017 Regular Season - Week 14" }, { "date": "Dec 10, 2017", @@ -135090,8 +200076,13 @@ "und": "Oakland Raiders", "sF": "26", "sU": "15", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.5, + "pScore": { + "sU": 22.0, + "sF": 26.5 + }, + "week": "2017 Regular Season - Week 14" }, { "date": "Dec 10, 2017", @@ -135101,7 +200092,12 @@ "sF": "30", "sU": "10", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "2017 Regular Season - Week 14" }, { "date": "Dec 10, 2017", @@ -135110,8 +200106,13 @@ "und": "Arizona Cardinals", "sF": "7", "sU": "12", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "2017 Regular Season - Week 14" }, { "date": "Dec 10, 2017", @@ -135121,7 +200122,12 @@ "sF": "0", "sU": "23", "spread": "1", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.75, + "sF": 20.75 + }, + "week": "2017 Regular Season - Week 14" }, { "date": "Dec 10, 2017", @@ -135131,7 +200137,12 @@ "sF": "30", "sU": "13", "spread": "6", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.25, + "sF": 26.25 + }, + "week": "2017 Regular Season - Week 14" }, { "date": "Dec 10, 2017", @@ -135141,7 +200152,12 @@ "sF": "30", "sU": "24", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2017 Regular Season - Week 14" }, { "date": "Dec 10, 2017", @@ -135151,7 +200167,12 @@ "sF": "35", "sU": "43", "spread": "1", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 23.25, + "sF": 24.25 + }, + "week": "2017 Regular Season - Week 14" }, { "date": "Dec 10, 2017", @@ -135161,7 +200182,12 @@ "sF": "39", "sU": "38", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "2017 Regular Season - Week 14" }, { "date": "Dec 11, 2017", @@ -135170,8 +200196,13 @@ "und": "Miami Dolphins", "sF": "20", "sU": "27", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 48.0, + "pScore": { + "sU": 18.75, + "sF": 29.25 + }, + "week": "2017 Regular Season - Week 14" }, { "date": "Dec 14, 2017", @@ -135181,7 +200212,12 @@ "sF": "25", "sU": "13", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2017 Regular Season - Week 15" }, { "date": "Dec 16, 2017", @@ -135191,7 +200227,12 @@ "sF": "20", "sU": "10", "spread": "5", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.25, + "sF": 24.25 + }, + "week": "2017 Regular Season - Week 15" }, { "date": "Dec 16, 2017", @@ -135201,7 +200242,12 @@ "sF": "30", "sU": "13", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "2017 Regular Season - Week 15" }, { "date": "Dec 17, 2017", @@ -135210,8 +200256,13 @@ "und": "Miami Dolphins", "sF": "24", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "2017 Regular Season - Week 15" }, { "date": "Dec 17, 2017", @@ -135221,7 +200272,12 @@ "sF": "31", "sU": "24", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2017 Regular Season - Week 15" }, { "date": "Dec 17, 2017", @@ -135230,8 +200286,13 @@ "und": "Cleveland Browns", "sF": "27", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "2017 Regular Season - Week 15" }, { "date": "Dec 17, 2017", @@ -135240,8 +200301,13 @@ "und": "Houston Texans", "sF": "45", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 39.0, + "pScore": { + "sU": 14.25, + "sF": 24.75 + }, + "week": "2017 Regular Season - Week 15" }, { "date": "Dec 17, 2017", @@ -135250,8 +200316,13 @@ "und": "Cincinnati Bengals", "sF": "34", "sU": "7", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 42.5, + "pScore": { + "sU": 15.0, + "sF": 27.5 + }, + "week": "2017 Regular Season - Week 15" }, { "date": "Dec 17, 2017", @@ -135260,8 +200331,13 @@ "und": "New York Jets", "sF": "31", "sU": "19", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 47.0, + "pScore": { + "sU": 15.25, + "sF": 31.75 + }, + "week": "2017 Regular Season - Week 15" }, { "date": "Dec 17, 2017", @@ -135270,8 +200346,13 @@ "und": "New York Giants", "sF": "34", "sU": "29", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.5, + "pScore": { + "sU": 16.5, + "sF": 24.0 + }, + "week": "2017 Regular Season - Week 15" }, { "date": "Dec 17, 2017", @@ -135281,7 +200362,12 @@ "sF": "20", "sU": "15", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "2017 Regular Season - Week 15" }, { "date": "Dec 17, 2017", @@ -135291,7 +200377,12 @@ "sF": "42", "sU": "7", "spread": "1", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 23.25, + "sF": 24.25 + }, + "week": "2017 Regular Season - Week 15" }, { "date": "Dec 17, 2017", @@ -135300,8 +200391,13 @@ "und": "Pittsburgh Steelers", "sF": "27", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 52.5, + "pScore": { + "sU": 25.0, + "sF": 27.5 + }, + "week": "2017 Regular Season - Week 15" }, { "date": "Dec 17, 2017", @@ -135310,8 +200406,13 @@ "und": "Tennessee Titans", "sF": "25", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2017 Regular Season - Week 15" }, { "date": "Dec 17, 2017", @@ -135321,7 +200422,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2017 Regular Season - Week 15" }, { "date": "Dec 18, 2017", @@ -135331,7 +200437,12 @@ "sF": "24", "sU": "21", "spread": "7", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 21.25, + "sF": 28.25 + }, + "week": "2017 Regular Season - Week 15" }, { "date": "Dec 23, 2017", @@ -135340,8 +200451,13 @@ "und": "Indianapolis Colts", "sF": "23", "sU": "16", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 41.0, + "pScore": { + "sU": 13.75, + "sF": 27.25 + }, + "week": "2017 Regular Season - Week 16" }, { "date": "Dec 23, 2017", @@ -135350,8 +200466,13 @@ "und": "Green Bay Packers", "sF": "16", "sU": "0", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 41.0, + "pScore": { + "sU": 16.25, + "sF": 24.75 + }, + "week": "2017 Regular Season - Week 16" }, { "date": "Dec 24, 2017", @@ -135361,7 +200482,12 @@ "sF": "22", "sU": "19", "spread": "10", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 18.25, + "sF": 28.25 + }, + "week": "2017 Regular Season - Week 16" }, { "date": "Dec 24, 2017", @@ -135370,8 +200496,13 @@ "und": "Cleveland Browns", "sF": "20", "sU": "3", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.0, + "pScore": { + "sU": 15.75, + "sF": 21.25 + }, + "week": "2017 Regular Season - Week 16" }, { "date": "Dec 24, 2017", @@ -135380,8 +200511,13 @@ "und": "Cincinnati Bengals", "sF": "17", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2017 Regular Season - Week 16" }, { "date": "Dec 24, 2017", @@ -135391,7 +200527,12 @@ "sF": "29", "sU": "13", "spread": "11", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 16.25, + "sF": 27.25 + }, + "week": "2017 Regular Season - Week 16" }, { "date": "Dec 24, 2017", @@ -135401,7 +200542,12 @@ "sF": "37", "sU": "16", "spread": "11", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 18.25, + "sF": 29.25 + }, + "week": "2017 Regular Season - Week 16" }, { "date": "Dec 24, 2017", @@ -135410,8 +200556,13 @@ "und": "Atlanta Falcons", "sF": "23", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 52.0, + "pScore": { + "sU": 23.25, + "sF": 28.75 + }, + "week": "2017 Regular Season - Week 16" }, { "date": "Dec 24, 2017", @@ -135420,8 +200571,13 @@ "und": "New York Jets", "sF": "14", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.5, + "pScore": { + "sU": 17.5, + "sF": 25.0 + }, + "week": "2017 Regular Season - Week 16" }, { "date": "Dec 24, 2017", @@ -135430,8 +200586,13 @@ "und": "Tennessee Titans", "sF": "27", "sU": "23", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.0, + "pScore": { + "sU": 20.25, + "sF": 25.75 + }, + "week": "2017 Regular Season - Week 16" }, { "date": "Dec 24, 2017", @@ -135441,7 +200602,12 @@ "sF": "27", "sU": "11", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2017 Regular Season - Week 16" }, { "date": "Dec 24, 2017", @@ -135451,11 +200617,12 @@ "sF": "33", "sU": "44", "spread": "4", - "ou": "49", + "ou": 43.0, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sU": 19.5, + "sF": 23.5 + }, + "week": "2017 Regular Season - Week 16" }, { "date": "Dec 24, 2017", @@ -135465,7 +200632,12 @@ "sF": "23", "sU": "0", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2017 Regular Season - Week 16" }, { "date": "Dec 24, 2017", @@ -135474,8 +200646,13 @@ "und": "Seattle Seahawks", "sF": "12", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.0, + "pScore": { + "sU": 21.25, + "sF": 25.75 + }, + "week": "2017 Regular Season - Week 16" }, { "date": "Dec 25, 2017", @@ -135485,7 +200662,12 @@ "sF": "34", "sU": "6", "spread": "8", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 18.75, + "sF": 26.75 + }, + "week": "2017 Regular Season - Week 16" }, { "date": "Dec 25, 2017", @@ -135495,7 +200677,12 @@ "sF": "19", "sU": "10", "spread": "10", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.0, + "sF": 28.0 + }, + "week": "2017 Regular Season - Week 16" }, { "date": "Dec 31, 2017", @@ -135504,8 +200691,13 @@ "und": "Green Bay Packers", "sF": "35", "sU": "11", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.5, + "pScore": { + "sU": 18.5, + "sF": 26.0 + }, + "week": "2017 Regular Season - Week 17" }, { "date": "Dec 31, 2017", @@ -135514,8 +200706,13 @@ "und": "Houston Texans", "sF": "22", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.5, + "pScore": { + "sU": 18.0, + "sF": 23.5 + }, + "week": "2017 Regular Season - Week 17" }, { "date": "Dec 31, 2017", @@ -135524,8 +200721,13 @@ "und": "Chicago Bears", "sF": "23", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 38.5, + "pScore": { + "sU": 12.5, + "sF": 26.0 + }, + "week": "2017 Regular Season - Week 17" }, { "date": "Dec 31, 2017", @@ -135535,7 +200737,12 @@ "sF": "26", "sU": "6", "spread": "17", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 13.25, + "sF": 30.25 + }, + "week": "2017 Regular Season - Week 17" }, { "date": "Dec 31, 2017", @@ -135544,8 +200751,13 @@ "und": "New York Giants", "sF": "10", "sU": "18", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "2017 Regular Season - Week 17" }, { "date": "Dec 31, 2017", @@ -135554,8 +200766,13 @@ "und": "Philadelphia Eagles", "sF": "6", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2017 Regular Season - Week 17" }, { "date": "Dec 31, 2017", @@ -135565,7 +200782,12 @@ "sF": "28", "sU": "24", "spread": "5", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 16.75, + "sF": 21.75 + }, + "week": "2017 Regular Season - Week 17" }, { "date": "Dec 31, 2017", @@ -135575,7 +200797,12 @@ "sF": "22", "sU": "10", "spread": "5", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.75, + "sF": 24.75 + }, + "week": "2017 Regular Season - Week 17" }, { "date": "Dec 31, 2017", @@ -135585,7 +200812,12 @@ "sF": "27", "sU": "31", "spread": "8", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.0, + "sF": 24.0 + }, + "week": "2017 Regular Season - Week 17" }, { "date": "Dec 31, 2017", @@ -135595,7 +200827,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2017 Regular Season - Week 17" }, { "date": "Dec 31, 2017", @@ -135605,7 +200842,12 @@ "sF": "30", "sU": "10", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2017 Regular Season - Week 17" }, { "date": "Dec 31, 2017", @@ -135615,7 +200857,12 @@ "sF": "34", "sU": "13", "spread": "6", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.25, + "sF": 25.25 + }, + "week": "2017 Regular Season - Week 17" }, { "date": "Dec 31, 2017", @@ -135624,8 +200871,13 @@ "und": "Miami Dolphins", "sF": "22", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2017 Regular Season - Week 17" }, { "date": "Dec 31, 2017", @@ -135635,7 +200887,12 @@ "sF": "24", "sU": "26", "spread": "8", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.0, + "sF": 23.0 + }, + "week": "2017 Regular Season - Week 17" }, { "date": "Dec 31, 2017", @@ -135645,7 +200902,12 @@ "sF": "24", "sU": "31", "spread": "6", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.5, + "sF": 27.5 + }, + "week": "2017 Regular Season - Week 17" }, { "date": "Dec 31, 2017", @@ -135654,8 +200916,13 @@ "und": "Jacksonville Jaguars", "sF": "15", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2017 Regular Season - Week 17" }, { "date": "Jan 6, 2018", @@ -135664,8 +200931,13 @@ "und": "Tennessee Titans (5)", "sF": "21", "sU": "22", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 44.0, + "pScore": { + "sU": 17.75, + "sF": 26.25 + }, + "week": "2017 Playoffs" }, { "date": "Jan 6, 2018", @@ -135674,8 +200946,13 @@ "und": "Atlanta Falcons (6)", "sF": "13", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.0, + "pScore": { + "sU": 20.75, + "sF": 27.25 + }, + "week": "2017 Playoffs" }, { "date": "Jan 7, 2018", @@ -135685,7 +200962,12 @@ "sF": "10", "sU": "3", "spread": "8", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 15.75, + "sF": 23.75 + }, + "week": "2017 Playoffs" }, { "date": "Jan 7, 2018", @@ -135694,8 +200976,13 @@ "und": "Carolina Panthers (5)", "sF": "31", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.5, + "pScore": { + "sU": 20.5, + "sF": 27.0 + }, + "week": "2017 Playoffs" }, { "date": "Jan 13, 2018", @@ -135704,8 +200991,13 @@ "und": "Philadelphia Eagles (1)", "sF": "10", "sU": "15", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2017 Playoffs" }, { "date": "Jan 13, 2018", @@ -135714,8 +201006,13 @@ "und": "Tennessee Titans (5)", "sF": "35", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 48.5, + "pScore": { + "sU": 17.5, + "sF": 31.0 + }, + "week": "2017 Playoffs" }, { "date": "Jan 14, 2018", @@ -135725,7 +201022,12 @@ "sF": "42", "sU": "45", "spread": "7", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.75, + "sF": 23.75 + }, + "week": "2017 Playoffs" }, { "date": "Jan 14, 2018", @@ -135734,8 +201036,13 @@ "und": "New Orleans Saints (4)", "sF": "29", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.5, + "pScore": { + "sU": 20.5, + "sF": 26.0 + }, + "week": "2017 Playoffs" }, { "date": "Jan 21, 2018", @@ -135744,8 +201051,13 @@ "und": "Jacksonville Jaguars (3)", "sF": "24", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.0, + "pScore": { + "sU": 19.25, + "sF": 26.75 + }, + "week": "2017 Playoffs" }, { "date": "Jan 21, 2018", @@ -135755,7 +201067,12 @@ "sF": "7", "sU": "38", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2017 Playoffs" }, { "date": "Feb 4, 2018", @@ -135764,8 +201081,13 @@ "und": "Philadelphia Eagles (1)", "sF": "33", "sU": "41", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.5, + "pScore": { + "sU": 22.0, + "sF": 26.5 + }, + "week": "2017 Playoffs" }, { "date": "Sep 6, 2018", @@ -135775,7 +201097,12 @@ "sF": "18", "sU": "12", "spread": "1", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.75, + "sF": 22.75 + }, + "week": "2018 Regular Season - Week 1" }, { "date": "Sep 9, 2018", @@ -135784,8 +201111,13 @@ "und": "Buffalo Bills", "sF": "47", "sU": "3", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.0, + "pScore": { + "sU": 15.75, + "sF": 23.25 + }, + "week": "2018 Regular Season - Week 1" }, { "date": "Sep 9, 2018", @@ -135794,8 +201126,13 @@ "und": "Cleveland Browns", "sF": "21", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2018 Regular Season - Week 1" }, { "date": "Sep 9, 2018", @@ -135805,7 +201142,12 @@ "sF": "34", "sU": "23", "spread": "1", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 23.25, + "sF": 24.25 + }, + "week": "2018 Regular Season - Week 1" }, { "date": "Sep 9, 2018", @@ -135815,7 +201157,12 @@ "sF": "20", "sU": "27", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "2018 Regular Season - Week 1" }, { "date": "Sep 9, 2018", @@ -135825,11 +201172,12 @@ "sF": "24", "sU": "16", "spread": "6", - "ou": "49", + "ou": 46.5, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 20.25, + "sF": 26.25 + }, + "week": "2018 Regular Season - Week 1" }, { "date": "Sep 9, 2018", @@ -135839,7 +201187,12 @@ "sF": "27", "sU": "20", "spread": "6", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 21.75, + "sF": 27.75 + }, + "week": "2018 Regular Season - Week 1" }, { "date": "Sep 9, 2018", @@ -135849,7 +201202,12 @@ "sF": "40", "sU": "48", "spread": "10", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 20.0, + "sF": 30.0 + }, + "week": "2018 Regular Season - Week 1" }, { "date": "Sep 9, 2018", @@ -135858,8 +201216,13 @@ "und": "New York Giants", "sF": "20", "sU": "15", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2018 Regular Season - Week 1" }, { "date": "Sep 9, 2018", @@ -135868,8 +201231,13 @@ "und": "Kansas City Chiefs", "sF": "28", "sU": "38", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "2018 Regular Season - Week 1" }, { "date": "Sep 9, 2018", @@ -135879,7 +201247,12 @@ "sF": "6", "sU": "24", "spread": "2", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.75, + "sF": 22.75 + }, + "week": "2018 Regular Season - Week 1" }, { "date": "Sep 9, 2018", @@ -135888,8 +201261,13 @@ "und": "Dallas Cowboys", "sF": "16", "sU": "8", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2018 Regular Season - Week 1" }, { "date": "Sep 9, 2018", @@ -135899,7 +201277,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2018 Regular Season - Week 1" }, { "date": "Sep 9, 2018", @@ -135908,8 +201291,13 @@ "und": "Chicago Bears", "sF": "24", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "2018 Regular Season - Week 1" }, { "date": "Sep 10, 2018", @@ -135919,7 +201307,12 @@ "sF": "17", "sU": "48", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2018 Regular Season - Week 1" }, { "date": "Sep 10, 2018", @@ -135928,8 +201321,13 @@ "und": "Oakland Raiders", "sF": "33", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.5, + "pScore": { + "sU": 20.5, + "sF": 27.0 + }, + "week": "2018 Regular Season - Week 1" }, { "date": "Sep 13, 2018", @@ -135939,7 +201337,12 @@ "sF": "34", "sU": "23", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "2018 Regular Season - Week 2" }, { "date": "Sep 16, 2018", @@ -135948,8 +201351,13 @@ "und": "Carolina Panthers", "sF": "31", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "2018 Regular Season - Week 2" }, { "date": "Sep 16, 2018", @@ -135958,8 +201366,13 @@ "und": "Buffalo Bills", "sF": "31", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.5, + "pScore": { + "sU": 17.0, + "sF": 24.5 + }, + "week": "2018 Regular Season - Week 2" }, { "date": "Sep 16, 2018", @@ -135969,7 +201382,12 @@ "sF": "29", "sU": "29", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "2018 Regular Season - Week 2" }, { "date": "Sep 16, 2018", @@ -135979,7 +201397,12 @@ "sF": "21", "sU": "18", "spread": "10", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 20.5, + "sF": 30.5 + }, + "week": "2018 Regular Season - Week 2" }, { "date": "Sep 16, 2018", @@ -135989,7 +201412,12 @@ "sF": "12", "sU": "20", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2018 Regular Season - Week 2" }, { "date": "Sep 16, 2018", @@ -135998,8 +201426,13 @@ "und": "Kansas City Chiefs", "sF": "37", "sU": "42", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 52.0, + "pScore": { + "sU": 23.75, + "sF": 28.25 + }, + "week": "2018 Regular Season - Week 2" }, { "date": "Sep 16, 2018", @@ -136009,7 +201442,12 @@ "sF": "21", "sU": "27", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2018 Regular Season - Week 2" }, { "date": "Sep 16, 2018", @@ -136018,8 +201456,13 @@ "und": "Tennessee Titans", "sF": "17", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2018 Regular Season - Week 2" }, { "date": "Sep 16, 2018", @@ -136029,7 +201472,12 @@ "sF": "9", "sU": "21", "spread": "6", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 21.0, + "sF": 27.0 + }, + "week": "2018 Regular Season - Week 2" }, { "date": "Sep 16, 2018", @@ -136038,8 +201486,13 @@ "und": "Arizona Cardinals", "sF": "34", "sU": "0", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 43.5, + "pScore": { + "sU": 15.0, + "sF": 28.5 + }, + "week": "2018 Regular Season - Week 2" }, { "date": "Sep 16, 2018", @@ -136049,7 +201502,12 @@ "sF": "30", "sU": "27", "spread": "6", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 21.25, + "sF": 27.25 + }, + "week": "2018 Regular Season - Week 2" }, { "date": "Sep 16, 2018", @@ -136058,8 +201516,13 @@ "und": "Oakland Raiders", "sF": "20", "sU": "19", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "2018 Regular Season - Week 2" }, { "date": "Sep 16, 2018", @@ -136069,7 +201532,12 @@ "sF": "20", "sU": "31", "spread": "2", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.25, + "sF": 23.25 + }, + "week": "2018 Regular Season - Week 2" }, { "date": "Sep 16, 2018", @@ -136079,7 +201547,12 @@ "sF": "20", "sU": "13", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2018 Regular Season - Week 2" }, { "date": "Sep 17, 2018", @@ -136088,8 +201561,13 @@ "und": "Seattle Seahawks", "sF": "24", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.5, + "pScore": { + "sU": 19.0, + "sF": 23.5 + }, + "week": "2018 Regular Season - Week 2" }, { "date": "Sep 20, 2018", @@ -136099,7 +201577,12 @@ "sF": "21", "sU": "17", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2018 Regular Season - Week 3" }, { "date": "Sep 23, 2018", @@ -136108,8 +201591,13 @@ "und": "New Orleans Saints", "sF": "37", "sU": "43", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 54.0, + "pScore": { + "sU": 26.25, + "sF": 27.75 + }, + "week": "2018 Regular Season - Week 3" }, { "date": "Sep 23, 2018", @@ -136118,8 +201606,13 @@ "und": "Denver Broncos", "sF": "27", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.0, + "pScore": { + "sU": 20.25, + "sF": 25.75 + }, + "week": "2018 Regular Season - Week 3" }, { "date": "Sep 23, 2018", @@ -136128,8 +201621,13 @@ "und": "Cincinnati Bengals", "sF": "31", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2018 Regular Season - Week 3" }, { "date": "Sep 23, 2018", @@ -136138,8 +201636,13 @@ "und": "New York Giants", "sF": "22", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2018 Regular Season - Week 3" }, { "date": "Sep 23, 2018", @@ -136149,7 +201652,12 @@ "sF": "6", "sU": "9", "spread": "10", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.5, + "sF": 24.5 + }, + "week": "2018 Regular Season - Week 3" }, { "date": "Sep 23, 2018", @@ -136158,12 +201666,13 @@ "und": "San Francisco 49ers", "sF": "38", "sU": "27", - "spread": "5", - "ou": "49", + "spread": "5.5", + "ou": 53.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 23.75, + "sF": 29.25 + }, + "week": "2018 Regular Season - Week 3" }, { "date": "Sep 23, 2018", @@ -136173,7 +201682,12 @@ "sF": "28", "sU": "20", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2018 Regular Season - Week 3" }, { "date": "Sep 23, 2018", @@ -136182,8 +201696,13 @@ "und": "Buffalo Bills", "sF": "6", "sU": "27", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 41.0, + "pScore": { + "sU": 12.25, + "sF": 28.75 + }, + "week": "2018 Regular Season - Week 3" }, { "date": "Sep 23, 2018", @@ -136192,8 +201711,13 @@ "und": "Indianapolis Colts", "sF": "20", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.5, + "pScore": { + "sU": 19.5, + "sF": 26.0 + }, + "week": "2018 Regular Season - Week 3" }, { "date": "Sep 23, 2018", @@ -136202,8 +201726,13 @@ "und": "Washington Redskins", "sF": "17", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2018 Regular Season - Week 3" }, { "date": "Sep 23, 2018", @@ -136212,8 +201741,13 @@ "und": "Los Angeles Chargers", "sF": "35", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 49.0, + "pScore": { + "sU": 20.75, + "sF": 28.25 + }, + "week": "2018 Regular Season - Week 3" }, { "date": "Sep 23, 2018", @@ -136222,8 +201756,13 @@ "und": "Arizona Cardinals", "sF": "16", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.0, + "pScore": { + "sU": 16.75, + "sF": 22.25 + }, + "week": "2018 Regular Season - Week 3" }, { "date": "Sep 23, 2018", @@ -136233,7 +201772,12 @@ "sF": "24", "sU": "13", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "2018 Regular Season - Week 3" }, { "date": "Sep 23, 2018", @@ -136243,7 +201787,12 @@ "sF": "10", "sU": "26", "spread": "7", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 24.0, + "sF": 31.0 + }, + "week": "2018 Regular Season - Week 3" }, { "date": "Sep 24, 2018", @@ -136253,7 +201802,12 @@ "sF": "27", "sU": "30", "spread": "1", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 27.0, + "sF": 28.0 + }, + "week": "2018 Regular Season - Week 3" }, { "date": "Sep 27, 2018", @@ -136262,8 +201816,13 @@ "und": "Minnesota Vikings", "sF": "38", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.5, + "pScore": { + "sU": 20.5, + "sF": 28.0 + }, + "week": "2018 Regular Season - Week 4" }, { "date": "Sep 30, 2018", @@ -136272,8 +201831,13 @@ "und": "Cincinnati Bengals", "sF": "36", "sU": "37", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 52.5, + "pScore": { + "sU": 24.5, + "sF": 28.0 + }, + "week": "2018 Regular Season - Week 4" }, { "date": "Sep 30, 2018", @@ -136283,7 +201847,12 @@ "sF": "48", "sU": "10", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2018 Regular Season - Week 4" }, { "date": "Sep 30, 2018", @@ -136292,8 +201861,13 @@ "und": "Detroit Lions", "sF": "26", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2018 Regular Season - Week 4" }, { "date": "Sep 30, 2018", @@ -136302,8 +201876,13 @@ "und": "Buffalo Bills", "sF": "22", "sU": "0", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.5, + "pScore": { + "sU": 17.5, + "sF": 26.0 + }, + "week": "2018 Regular Season - Week 4" }, { "date": "Sep 30, 2018", @@ -136313,7 +201892,12 @@ "sF": "37", "sU": "34", "spread": "1", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.5, + "sF": 24.5 + }, + "week": "2018 Regular Season - Week 4" }, { "date": "Sep 30, 2018", @@ -136322,8 +201906,13 @@ "und": "New York Jets", "sF": "31", "sU": "12", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.5, + "pScore": { + "sU": 16.5, + "sF": 24.0 + }, + "week": "2018 Regular Season - Week 4" }, { "date": "Sep 30, 2018", @@ -136332,8 +201921,13 @@ "und": "Miami Dolphins", "sF": "38", "sU": "7", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 50.5, + "pScore": { + "sU": 22.0, + "sF": 28.5 + }, + "week": "2018 Regular Season - Week 4" }, { "date": "Sep 30, 2018", @@ -136343,7 +201937,12 @@ "sF": "23", "sU": "26", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2018 Regular Season - Week 4" }, { "date": "Sep 30, 2018", @@ -136352,8 +201951,13 @@ "und": "Arizona Cardinals", "sF": "20", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2018 Regular Season - Week 4" }, { "date": "Sep 30, 2018", @@ -136362,8 +201966,13 @@ "und": "Cleveland Browns", "sF": "45", "sU": "42", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2018 Regular Season - Week 4" }, { "date": "Sep 30, 2018", @@ -136372,12 +201981,13 @@ "und": "San Francisco 49ers", "sF": "29", "sU": "27", - "spread": "10", - "ou": "49", + "spread": "10.5", + "ou": 46.0, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sU": 17.75, + "sF": 28.25 + }, + "week": "2018 Regular Season - Week 4" }, { "date": "Sep 30, 2018", @@ -136386,8 +201996,13 @@ "und": "New York Giants", "sF": "33", "sU": "18", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 51.5, + "pScore": { + "sU": 24.0, + "sF": 27.5 + }, + "week": "2018 Regular Season - Week 4" }, { "date": "Sep 30, 2018", @@ -136397,7 +202012,12 @@ "sF": "14", "sU": "26", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2018 Regular Season - Week 4" }, { "date": "Oct 1, 2018", @@ -136406,8 +202026,13 @@ "und": "Denver Broncos", "sF": "27", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 53.5, + "pScore": { + "sU": 25.0, + "sF": 28.5 + }, + "week": "2018 Regular Season - Week 4" }, { "date": "Oct 4, 2018", @@ -136416,8 +202041,13 @@ "und": "Indianapolis Colts", "sF": "38", "sU": "24", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 49.5, + "pScore": { + "sU": 19.5, + "sF": 30.0 + }, + "week": "2018 Regular Season - Week 5" }, { "date": "Oct 7, 2018", @@ -136427,7 +202057,12 @@ "sF": "12", "sU": "13", "spread": "6", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 16.25, + "sF": 22.25 + }, + "week": "2018 Regular Season - Week 5" }, { "date": "Oct 7, 2018", @@ -136437,7 +202072,12 @@ "sF": "33", "sU": "31", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2018 Regular Season - Week 5" }, { "date": "Oct 7, 2018", @@ -136446,8 +202086,13 @@ "und": "Miami Dolphins", "sF": "27", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.5, + "pScore": { + "sU": 20.5, + "sF": 27.0 + }, + "week": "2018 Regular Season - Week 5" }, { "date": "Oct 7, 2018", @@ -136457,7 +202102,12 @@ "sF": "9", "sU": "12", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2018 Regular Season - Week 5" }, { "date": "Oct 7, 2018", @@ -136467,7 +202117,12 @@ "sF": "31", "sU": "23", "spread": "1", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 24.5, + "sF": 25.5 + }, + "week": "2018 Regular Season - Week 5" }, { "date": "Oct 7, 2018", @@ -136477,7 +202132,12 @@ "sF": "30", "sU": "14", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2018 Regular Season - Week 5" }, { "date": "Oct 7, 2018", @@ -136487,7 +202147,12 @@ "sF": "34", "sU": "16", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "2018 Regular Season - Week 5" }, { "date": "Oct 7, 2018", @@ -136496,8 +202161,13 @@ "und": "Atlanta Falcons", "sF": "41", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 57.0, + "pScore": { + "sU": 26.75, + "sF": 30.25 + }, + "week": "2018 Regular Season - Week 5" }, { "date": "Oct 7, 2018", @@ -136507,7 +202177,12 @@ "sF": "26", "sU": "10", "spread": "5", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 23.5, + "sF": 28.5 + }, + "week": "2018 Regular Season - Week 5" }, { "date": "Oct 7, 2018", @@ -136516,8 +202191,13 @@ "und": "Minnesota Vikings", "sF": "21", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "2018 Regular Season - Week 5" }, { "date": "Oct 7, 2018", @@ -136527,7 +202207,12 @@ "sF": "18", "sU": "28", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2018 Regular Season - Week 5" }, { "date": "Oct 7, 2018", @@ -136536,8 +202221,13 @@ "und": "Seattle Seahawks", "sF": "33", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 50.5, + "pScore": { + "sU": 21.5, + "sF": 29.0 + }, + "week": "2018 Regular Season - Week 5" }, { "date": "Oct 7, 2018", @@ -136546,8 +202236,13 @@ "und": "Dallas Cowboys", "sF": "19", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "2018 Regular Season - Week 5" }, { "date": "Oct 8, 2018", @@ -136556,8 +202251,13 @@ "und": "Washington Redskins", "sF": "43", "sU": "19", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 51.5, + "pScore": { + "sU": 23.0, + "sF": 28.5 + }, + "week": "2018 Regular Season - Week 5" }, { "date": "Oct 11, 2018", @@ -136566,8 +202266,13 @@ "und": "New York Giants", "sF": "34", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.0, + "pScore": { + "sU": 21.75, + "sF": 23.25 + }, + "week": "2018 Regular Season - Week 6" }, { "date": "Oct 14, 2018", @@ -136577,7 +202282,12 @@ "sF": "34", "sU": "29", "spread": "3", - "ou": -1 + "ou": 57.0, + "pScore": { + "sU": 27.0, + "sF": 30.0 + }, + "week": "2018 Regular Season - Week 6" }, { "date": "Oct 14, 2018", @@ -136586,8 +202296,13 @@ "und": "Pittsburgh Steelers", "sF": "21", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 49.5, + "pScore": { + "sU": 24.0, + "sF": 25.5 + }, + "week": "2018 Regular Season - Week 6" }, { "date": "Oct 14, 2018", @@ -136597,7 +202312,12 @@ "sF": "14", "sU": "38", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "2018 Regular Season - Week 6" }, { "date": "Oct 14, 2018", @@ -136606,8 +202326,13 @@ "und": "Buffalo Bills", "sF": "20", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 40.5, + "pScore": { + "sU": 15.0, + "sF": 25.5 + }, + "week": "2018 Regular Season - Week 6" }, { "date": "Oct 14, 2018", @@ -136616,8 +202341,13 @@ "und": "Miami Dolphins", "sF": "28", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.5, + "pScore": { + "sU": 16.5, + "sF": 24.0 + }, + "week": "2018 Regular Season - Week 6" }, { "date": "Oct 14, 2018", @@ -136627,7 +202357,12 @@ "sF": "27", "sU": "17", "spread": "10", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 16.75, + "sF": 26.75 + }, + "week": "2018 Regular Season - Week 6" }, { "date": "Oct 14, 2018", @@ -136636,8 +202371,13 @@ "und": "Indianapolis Colts", "sF": "42", "sU": "34", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.5, + "pScore": { + "sU": 22.5, + "sF": 25.0 + }, + "week": "2018 Regular Season - Week 6" }, { "date": "Oct 14, 2018", @@ -136647,7 +202387,12 @@ "sF": "27", "sU": "3", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2018 Regular Season - Week 6" }, { "date": "Oct 14, 2018", @@ -136657,7 +202402,12 @@ "sF": "17", "sU": "23", "spread": "1", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.75, + "sF": 22.75 + }, + "week": "2018 Regular Season - Week 6" }, { "date": "Oct 14, 2018", @@ -136667,7 +202417,12 @@ "sF": "23", "sU": "20", "spread": "7", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 21.5, + "sF": 28.5 + }, + "week": "2018 Regular Season - Week 6" }, { "date": "Oct 14, 2018", @@ -136677,7 +202432,12 @@ "sF": "7", "sU": "40", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2018 Regular Season - Week 6" }, { "date": "Oct 14, 2018", @@ -136686,8 +202446,13 @@ "und": "Tennessee Titans", "sF": "21", "sU": "0", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2018 Regular Season - Week 6" }, { "date": "Oct 14, 2018", @@ -136696,8 +202461,13 @@ "und": "Kansas City Chiefs", "sF": "43", "sU": "40", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 59.5, + "pScore": { + "sU": 28.0, + "sF": 31.5 + }, + "week": "2018 Regular Season - Week 6" }, { "date": "Oct 15, 2018", @@ -136707,11 +202477,12 @@ "sF": "33", "sU": "30", "spread": "9", - "ou": "49", + "ou": 46.5, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 18.75, + "sF": 27.75 + }, + "week": "2018 Regular Season - Week 6" }, { "date": "Oct 18, 2018", @@ -136721,7 +202492,12 @@ "sF": "45", "sU": "10", "spread": "1", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.75, + "sF": 21.75 + }, + "week": "2018 Regular Season - Week 7" }, { "date": "Oct 21, 2018", @@ -136730,8 +202506,13 @@ "und": "Tennessee Titans", "sF": "20", "sU": "19", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.0, + "pScore": { + "sU": 19.75, + "sF": 26.25 + }, + "week": "2018 Regular Season - Week 7" }, { "date": "Oct 21, 2018", @@ -136741,7 +202522,12 @@ "sF": "38", "sU": "31", "spread": "1", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.75, + "sF": 24.75 + }, + "week": "2018 Regular Season - Week 7" }, { "date": "Oct 21, 2018", @@ -136751,7 +202537,12 @@ "sF": "37", "sU": "5", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2018 Regular Season - Week 7" }, { "date": "Oct 21, 2018", @@ -136760,8 +202551,13 @@ "und": "Houston Texans", "sF": "7", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2018 Regular Season - Week 7" }, { "date": "Oct 21, 2018", @@ -136771,7 +202567,12 @@ "sF": "32", "sU": "21", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2018 Regular Season - Week 7" }, { "date": "Oct 21, 2018", @@ -136780,8 +202581,13 @@ "und": "New York Jets", "sF": "37", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2018 Regular Season - Week 7" }, { "date": "Oct 21, 2018", @@ -136791,7 +202597,12 @@ "sF": "17", "sU": "21", "spread": "5", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.0, + "sF": 25.0 + }, + "week": "2018 Regular Season - Week 7" }, { "date": "Oct 21, 2018", @@ -136800,8 +202611,13 @@ "und": "Cleveland Browns", "sF": "26", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 52.5, + "pScore": { + "sU": 24.5, + "sF": 28.0 + }, + "week": "2018 Regular Season - Week 7" }, { "date": "Oct 21, 2018", @@ -136810,8 +202626,13 @@ "und": "New Orleans Saints", "sF": "23", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.0, + "pScore": { + "sU": 23.25, + "sF": 25.75 + }, + "week": "2018 Regular Season - Week 7" }, { "date": "Oct 21, 2018", @@ -136821,11 +202642,12 @@ "sF": "39", "sU": "10", "spread": "8", - "ou": "49", + "ou": 52.0, "pScore": { - "sU": 20.5, - "sF": 28.5 - } + "sU": 22.0, + "sF": 30.0 + }, + "week": "2018 Regular Season - Week 7" }, { "date": "Oct 21, 2018", @@ -136835,7 +202657,12 @@ "sF": "17", "sU": "20", "spread": "1", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.75, + "sF": 20.75 + }, + "week": "2018 Regular Season - Week 7" }, { "date": "Oct 21, 2018", @@ -136844,8 +202671,13 @@ "und": "Cincinnati Bengals", "sF": "45", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 56.0, + "pScore": { + "sU": 24.75, + "sF": 31.25 + }, + "week": "2018 Regular Season - Week 7" }, { "date": "Oct 22, 2018", @@ -136854,8 +202686,13 @@ "und": "New York Giants", "sF": "23", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 52.0, + "pScore": { + "sU": 23.75, + "sF": 28.25 + }, + "week": "2018 Regular Season - Week 7" }, { "date": "Oct 25, 2018", @@ -136864,8 +202701,13 @@ "und": "Miami Dolphins", "sF": "42", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.0, + "pScore": { + "sU": 18.75, + "sF": 26.25 + }, + "week": "2018 Regular Season - Week 8" }, { "date": "Oct 28, 2018", @@ -136874,8 +202716,13 @@ "und": "Carolina Panthers", "sF": "21", "sU": "36", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2018 Regular Season - Week 8" }, { "date": "Oct 28, 2018", @@ -136884,8 +202731,13 @@ "und": "New York Jets", "sF": "24", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 42.5, + "pScore": { + "sU": 17.0, + "sF": 25.5 + }, + "week": "2018 Regular Season - Week 8" }, { "date": "Oct 28, 2018", @@ -136894,8 +202746,13 @@ "und": "Tampa Bay Buccaneers", "sF": "37", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 55.0, + "pScore": { + "sU": 25.75, + "sF": 29.25 + }, + "week": "2018 Regular Season - Week 8" }, { "date": "Oct 28, 2018", @@ -136905,7 +202762,12 @@ "sF": "14", "sU": "28", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2018 Regular Season - Week 8" }, { "date": "Oct 28, 2018", @@ -136914,8 +202776,13 @@ "und": "Denver Broncos", "sF": "30", "sU": "23", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 53.0, + "pScore": { + "sU": 22.25, + "sF": 30.75 + }, + "week": "2018 Regular Season - Week 8" }, { "date": "Oct 28, 2018", @@ -136925,7 +202792,12 @@ "sF": "20", "sU": "13", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2018 Regular Season - Week 8" }, { "date": "Oct 28, 2018", @@ -136934,8 +202806,13 @@ "und": "Cleveland Browns", "sF": "33", "sU": "18", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 47.5, + "pScore": { + "sU": 19.5, + "sF": 28.0 + }, + "week": "2018 Regular Season - Week 8" }, { "date": "Oct 28, 2018", @@ -136944,8 +202821,13 @@ "und": "Oakland Raiders", "sF": "42", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 51.0, + "pScore": { + "sU": 23.75, + "sF": 27.25 + }, + "week": "2018 Regular Season - Week 8" }, { "date": "Oct 28, 2018", @@ -136954,8 +202836,13 @@ "und": "Arizona Cardinals", "sF": "15", "sU": "18", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2018 Regular Season - Week 8" }, { "date": "Oct 28, 2018", @@ -136964,8 +202851,13 @@ "und": "Green Bay Packers", "sF": "29", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 57.0, + "pScore": { + "sU": 24.75, + "sF": 32.25 + }, + "week": "2018 Regular Season - Week 8" }, { "date": "Oct 28, 2018", @@ -136974,8 +202866,13 @@ "und": "Minnesota Vikings", "sF": "30", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 53.5, + "pScore": { + "sU": 25.5, + "sF": 28.0 + }, + "week": "2018 Regular Season - Week 8" }, { "date": "Oct 28, 2018", @@ -136984,8 +202881,13 @@ "und": "Jacksonville Jaguars", "sF": "24", "sU": "18", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2018 Regular Season - Week 8" }, { "date": "Oct 29, 2018", @@ -136994,8 +202896,13 @@ "und": "Buffalo Bills", "sF": "25", "sU": "6", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 44.5, + "pScore": { + "sU": 15.5, + "sF": 29.0 + }, + "week": "2018 Regular Season - Week 8" }, { "date": "Nov 1, 2018", @@ -137004,12 +202911,13 @@ "und": "San Francisco 49ers", "sF": "3", "sU": "34", - "spread": "1", - "ou": "49", + "spread": "1.5", + "ou": 44.0, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 21.25, + "sF": 22.75 + }, + "week": "2018 Regular Season - Week 9" }, { "date": "Nov 4, 2018", @@ -137018,8 +202926,13 @@ "und": "Pittsburgh Steelers", "sF": "16", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.5, + "pScore": { + "sU": 22.5, + "sF": 24.0 + }, + "week": "2018 Regular Season - Week 9" }, { "date": "Nov 4, 2018", @@ -137028,8 +202941,13 @@ "und": "Buffalo Bills", "sF": "41", "sU": "9", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 38.0, + "pScore": { + "sU": 13.75, + "sF": 24.25 + }, + "week": "2018 Regular Season - Week 9" }, { "date": "Nov 4, 2018", @@ -137039,7 +202957,12 @@ "sF": "42", "sU": "28", "spread": "6", - "ou": -1 + "ou": 55.5, + "pScore": { + "sU": 24.75, + "sF": 30.75 + }, + "week": "2018 Regular Season - Week 9" }, { "date": "Nov 4, 2018", @@ -137048,8 +202971,13 @@ "und": "Cleveland Browns", "sF": "37", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 51.5, + "pScore": { + "sU": 22.0, + "sF": 29.5 + }, + "week": "2018 Regular Season - Week 9" }, { "date": "Nov 4, 2018", @@ -137059,7 +202987,12 @@ "sF": "13", "sU": "6", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2018 Regular Season - Week 9" }, { "date": "Nov 4, 2018", @@ -137068,8 +203001,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "9", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.5, + "pScore": { + "sU": 21.5, + "sF": 26.0 + }, + "week": "2018 Regular Season - Week 9" }, { "date": "Nov 4, 2018", @@ -137078,8 +203016,13 @@ "und": "Atlanta Falcons", "sF": "14", "sU": "38", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.5, + "pScore": { + "sU": 22.5, + "sF": 24.0 + }, + "week": "2018 Regular Season - Week 9" }, { "date": "Nov 4, 2018", @@ -137089,7 +203032,12 @@ "sF": "17", "sU": "19", "spread": "1", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.75, + "sF": 23.75 + }, + "week": "2018 Regular Season - Week 9" }, { "date": "Nov 4, 2018", @@ -137099,7 +203047,12 @@ "sF": "17", "sU": "25", "spread": "1", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.5, + "sF": 24.5 + }, + "week": "2018 Regular Season - Week 9" }, { "date": "Nov 4, 2018", @@ -137108,8 +203061,13 @@ "und": "New Orleans Saints", "sF": "35", "sU": "45", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 57.0, + "pScore": { + "sU": 27.75, + "sF": 29.25 + }, + "week": "2018 Regular Season - Week 9" }, { "date": "Nov 4, 2018", @@ -137119,7 +203077,12 @@ "sF": "31", "sU": "17", "spread": "5", - "ou": -1 + "ou": 56.0, + "pScore": { + "sU": 25.5, + "sF": 30.5 + }, + "week": "2018 Regular Season - Week 9" }, { "date": "Nov 5, 2018", @@ -137128,8 +203091,13 @@ "und": "Tennessee Titans", "sF": "14", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "2018 Regular Season - Week 9" }, { "date": "Nov 8, 2018", @@ -137138,8 +203106,13 @@ "und": "Carolina Panthers", "sF": "52", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 51.0, + "pScore": { + "sU": 23.75, + "sF": 27.25 + }, + "week": "2018 Regular Season - Week 10" }, { "date": "Nov 11, 2018", @@ -137148,8 +203121,13 @@ "und": "Detroit Lions", "sF": "34", "sU": "22", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.5, + "pScore": { + "sU": 18.5, + "sF": 26.0 + }, + "week": "2018 Regular Season - Week 10" }, { "date": "Nov 11, 2018", @@ -137159,7 +203137,12 @@ "sF": "51", "sU": "14", "spread": "6", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 23.75, + "sF": 29.75 + }, + "week": "2018 Regular Season - Week 10" }, { "date": "Nov 11, 2018", @@ -137168,8 +203151,13 @@ "und": "Cleveland Browns", "sF": "16", "sU": "28", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 49.5, + "pScore": { + "sU": 22.0, + "sF": 27.5 + }, + "week": "2018 Regular Season - Week 10" }, { "date": "Nov 11, 2018", @@ -137179,7 +203167,12 @@ "sF": "29", "sU": "26", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2018 Regular Season - Week 10" }, { "date": "Nov 11, 2018", @@ -137188,8 +203181,13 @@ "und": "Arizona Cardinals", "sF": "26", "sU": "14", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 49.5, + "pScore": { + "sU": 16.5, + "sF": 33.0 + }, + "week": "2018 Regular Season - Week 10" }, { "date": "Nov 11, 2018", @@ -137199,7 +203197,12 @@ "sF": "10", "sU": "41", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "2018 Regular Season - Week 10" }, { "date": "Nov 11, 2018", @@ -137208,8 +203211,13 @@ "und": "Washington Redskins", "sF": "3", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 51.0, + "pScore": { + "sU": 23.75, + "sF": 27.25 + }, + "week": "2018 Regular Season - Week 10" }, { "date": "Nov 11, 2018", @@ -137218,8 +203226,13 @@ "und": "Tennessee Titans", "sF": "10", "sU": "34", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "2018 Regular Season - Week 10" }, { "date": "Nov 11, 2018", @@ -137228,8 +203241,13 @@ "und": "Oakland Raiders", "sF": "20", "sU": "6", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 50.0, + "pScore": { + "sU": 19.75, + "sF": 30.25 + }, + "week": "2018 Regular Season - Week 10" }, { "date": "Nov 11, 2018", @@ -137239,7 +203257,12 @@ "sF": "31", "sU": "12", "spread": "11", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 18.75, + "sF": 29.75 + }, + "week": "2018 Regular Season - Week 10" }, { "date": "Nov 11, 2018", @@ -137249,7 +203272,12 @@ "sF": "36", "sU": "31", "spread": "10", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 20.5, + "sF": 30.5 + }, + "week": "2018 Regular Season - Week 10" }, { "date": "Nov 11, 2018", @@ -137258,8 +203286,13 @@ "und": "Dallas Cowboys", "sF": "20", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.5, + "pScore": { + "sU": 19.0, + "sF": 26.5 + }, + "week": "2018 Regular Season - Week 10" }, { "date": "Nov 12, 2018", @@ -137269,7 +203302,12 @@ "sF": "23", "sU": "27", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2018 Regular Season - Week 10" }, { "date": "Nov 15, 2018", @@ -137279,7 +203317,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2018 Regular Season - Week 11" }, { "date": "Nov 18, 2018", @@ -137288,8 +203331,13 @@ "und": "Dallas Cowboys", "sF": "19", "sU": "22", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 50.0, + "pScore": { + "sU": 23.25, + "sF": 26.75 + }, + "week": "2018 Regular Season - Week 11" }, { "date": "Nov 18, 2018", @@ -137298,8 +203346,13 @@ "und": "Cincinnati Bengals", "sF": "24", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2018 Regular Season - Week 11" }, { "date": "Nov 18, 2018", @@ -137309,7 +203362,12 @@ "sF": "19", "sU": "20", "spread": "4", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.0, + "sF": 26.0 + }, + "week": "2018 Regular Season - Week 11" }, { "date": "Nov 18, 2018", @@ -137319,7 +203377,12 @@ "sF": "38", "sU": "10", "spread": "1", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 24.5, + "sF": 25.5 + }, + "week": "2018 Regular Season - Week 11" }, { "date": "Nov 18, 2018", @@ -137329,7 +203392,12 @@ "sF": "20", "sU": "16", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "2018 Regular Season - Week 11" }, { "date": "Nov 18, 2018", @@ -137339,7 +203407,12 @@ "sF": "38", "sU": "35", "spread": "3", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 25.25, + "sF": 28.25 + }, + "week": "2018 Regular Season - Week 11" }, { "date": "Nov 18, 2018", @@ -137349,7 +203422,12 @@ "sF": "23", "sU": "21", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2018 Regular Season - Week 11" }, { "date": "Nov 18, 2018", @@ -137358,8 +203436,13 @@ "und": "Oakland Raiders", "sF": "21", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "2018 Regular Season - Week 11" }, { "date": "Nov 18, 2018", @@ -137368,8 +203451,13 @@ "und": "Denver Broncos", "sF": "22", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.5, + "pScore": { + "sU": 19.5, + "sF": 27.0 + }, + "week": "2018 Regular Season - Week 11" }, { "date": "Nov 18, 2018", @@ -137379,7 +203467,12 @@ "sF": "48", "sU": "7", "spread": "7", - "ou": -1 + "ou": 56.5, + "pScore": { + "sU": 24.75, + "sF": 31.75 + }, + "week": "2018 Regular Season - Week 11" }, { "date": "Nov 18, 2018", @@ -137388,8 +203481,13 @@ "und": "Minnesota Vikings", "sF": "25", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2018 Regular Season - Week 11" }, { "date": "Nov 19, 2018", @@ -137399,7 +203497,12 @@ "sF": "54", "sU": "51", "spread": "3", - "ou": -1 + "ou": 63.5, + "pScore": { + "sU": 30.25, + "sF": 33.25 + }, + "week": "2018 Regular Season - Week 11" }, { "date": "Nov 22, 2018", @@ -137409,7 +203512,12 @@ "sF": "23", "sU": "16", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2018 Regular Season - Week 12" }, { "date": "Nov 22, 2018", @@ -137419,7 +203527,12 @@ "sF": "31", "sU": "23", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "2018 Regular Season - Week 12" }, { "date": "Nov 22, 2018", @@ -137428,8 +203541,13 @@ "und": "Atlanta Falcons", "sF": "31", "sU": "17", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 61.5, + "pScore": { + "sU": 25.0, + "sF": 36.5 + }, + "week": "2018 Regular Season - Week 12" }, { "date": "Nov 25, 2018", @@ -137439,7 +203557,12 @@ "sF": "34", "sU": "17", "spread": "13", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 14.5, + "sF": 27.5 + }, + "week": "2018 Regular Season - Week 12" }, { "date": "Nov 25, 2018", @@ -137449,7 +203572,12 @@ "sF": "21", "sU": "24", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2018 Regular Season - Week 12" }, { "date": "Nov 25, 2018", @@ -137459,7 +203587,12 @@ "sF": "27", "sU": "30", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2018 Regular Season - Week 12" }, { "date": "Nov 25, 2018", @@ -137469,7 +203602,12 @@ "sF": "35", "sU": "20", "spread": "1", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.75, + "sF": 23.75 + }, + "week": "2018 Regular Season - Week 12" }, { "date": "Nov 25, 2018", @@ -137479,7 +203617,12 @@ "sF": "27", "sU": "13", "spread": "13", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 16.75, + "sF": 29.75 + }, + "week": "2018 Regular Season - Week 12" }, { "date": "Nov 25, 2018", @@ -137488,8 +203631,13 @@ "und": "New York Giants", "sF": "25", "sU": "22", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 49.0, + "pScore": { + "sU": 22.25, + "sF": 26.75 + }, + "week": "2018 Regular Season - Week 12" }, { "date": "Nov 25, 2018", @@ -137498,12 +203646,13 @@ "und": "San Francisco 49ers", "sF": "27", "sU": "9", - "spread": "1", - "ou": "49", + "spread": "1.5", + "ou": 54.5, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 26.5, + "sF": 28.0 + }, + "week": "2018 Regular Season - Week 12" }, { "date": "Nov 25, 2018", @@ -137513,7 +203662,12 @@ "sF": "45", "sU": "10", "spread": "14", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 14.5, + "sF": 28.5 + }, + "week": "2018 Regular Season - Week 12" }, { "date": "Nov 25, 2018", @@ -137523,7 +203677,12 @@ "sF": "17", "sU": "24", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2018 Regular Season - Week 12" }, { "date": "Nov 25, 2018", @@ -137533,7 +203692,12 @@ "sF": "27", "sU": "24", "spread": "9", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 21.75, + "sF": 30.75 + }, + "week": "2018 Regular Season - Week 12" }, { "date": "Nov 25, 2018", @@ -137542,8 +203706,13 @@ "und": "Green Bay Packers", "sF": "24", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "2018 Regular Season - Week 12" }, { "date": "Nov 26, 2018", @@ -137552,8 +203721,13 @@ "und": "Tennessee Titans", "sF": "34", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2018 Regular Season - Week 12" }, { "date": "Nov 29, 2018", @@ -137562,8 +203736,13 @@ "und": "Dallas Cowboys", "sF": "10", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 51.5, + "pScore": { + "sU": 22.0, + "sF": 29.5 + }, + "week": "2018 Regular Season - Week 13" }, { "date": "Dec 2, 2018", @@ -137572,8 +203751,13 @@ "und": "Baltimore Ravens", "sF": "16", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "2018 Regular Season - Week 13" }, { "date": "Dec 2, 2018", @@ -137583,7 +203767,12 @@ "sF": "24", "sU": "10", "spread": "4", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.5, + "sF": 24.5 + }, + "week": "2018 Regular Season - Week 13" }, { "date": "Dec 2, 2018", @@ -137592,8 +203781,13 @@ "und": "Detroit Lions", "sF": "30", "sU": "16", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 54.0, + "pScore": { + "sU": 21.75, + "sF": 32.25 + }, + "week": "2018 Regular Season - Week 13" }, { "date": "Dec 2, 2018", @@ -137602,8 +203796,13 @@ "und": "Arizona Cardinals", "sF": "17", "sU": "20", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 41.0, + "pScore": { + "sU": 13.75, + "sF": 27.25 + }, + "week": "2018 Regular Season - Week 13" }, { "date": "Dec 2, 2018", @@ -137613,7 +203812,12 @@ "sF": "29", "sU": "13", "spread": "5", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 21.25, + "sF": 26.25 + }, + "week": "2018 Regular Season - Week 13" }, { "date": "Dec 2, 2018", @@ -137623,7 +203827,12 @@ "sF": "0", "sU": "6", "spread": "4", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 20.75, + "sF": 24.75 + }, + "week": "2018 Regular Season - Week 13" }, { "date": "Dec 2, 2018", @@ -137632,8 +203841,13 @@ "und": "Buffalo Bills", "sF": "21", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2018 Regular Season - Week 13" }, { "date": "Dec 2, 2018", @@ -137643,7 +203857,12 @@ "sF": "27", "sU": "30", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2018 Regular Season - Week 13" }, { "date": "Dec 2, 2018", @@ -137652,8 +203871,13 @@ "und": "Tampa Bay Buccaneers", "sF": "17", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 52.0, + "pScore": { + "sU": 24.25, + "sF": 27.75 + }, + "week": "2018 Regular Season - Week 13" }, { "date": "Dec 2, 2018", @@ -137663,7 +203887,12 @@ "sF": "40", "sU": "33", "spread": "14", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 19.75, + "sF": 33.75 + }, + "week": "2018 Regular Season - Week 13" }, { "date": "Dec 2, 2018", @@ -137672,8 +203901,13 @@ "und": "New York Jets", "sF": "26", "sU": "22", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 40.5, + "pScore": { + "sU": 15.0, + "sF": 25.5 + }, + "week": "2018 Regular Season - Week 13" }, { "date": "Dec 2, 2018", @@ -137683,7 +203917,12 @@ "sF": "24", "sU": "10", "spread": "6", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 21.75, + "sF": 27.75 + }, + "week": "2018 Regular Season - Week 13" }, { "date": "Dec 2, 2018", @@ -137693,11 +203932,12 @@ "sF": "43", "sU": "16", "spread": "10", - "ou": "49", + "ou": 45.5, "pScore": { - "sU": 19.5, - "sF": 29.5 - } + "sU": 17.75, + "sF": 27.75 + }, + "week": "2018 Regular Season - Week 13" }, { "date": "Dec 2, 2018", @@ -137707,7 +203947,12 @@ "sF": "30", "sU": "33", "spread": "3", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 24.75, + "sF": 27.75 + }, + "week": "2018 Regular Season - Week 13" }, { "date": "Dec 3, 2018", @@ -137716,8 +203961,13 @@ "und": "Washington Redskins", "sF": "28", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.0, + "pScore": { + "sU": 19.75, + "sF": 25.25 + }, + "week": "2018 Regular Season - Week 13" }, { "date": "Dec 6, 2018", @@ -137726,8 +203976,13 @@ "und": "Jacksonville Jaguars", "sF": "30", "sU": "9", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.5, + "pScore": { + "sU": 16.0, + "sF": 21.5 + }, + "week": "2018 Regular Season - Week 14" }, { "date": "Dec 9, 2018", @@ -137736,8 +203991,13 @@ "und": "New York Jets", "sF": "23", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 37.0, + "pScore": { + "sU": 16.25, + "sF": 20.75 + }, + "week": "2018 Regular Season - Week 14" }, { "date": "Dec 9, 2018", @@ -137747,7 +204007,12 @@ "sF": "20", "sU": "26", "spread": "1", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 23.25, + "sF": 24.25 + }, + "week": "2018 Regular Season - Week 14" }, { "date": "Dec 9, 2018", @@ -137757,7 +204022,12 @@ "sF": "34", "sU": "20", "spread": "4", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 23.25, + "sF": 27.25 + }, + "week": "2018 Regular Season - Week 14" }, { "date": "Dec 9, 2018", @@ -137767,7 +204037,12 @@ "sF": "21", "sU": "24", "spread": "4", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 22.5, + "sF": 26.5 + }, + "week": "2018 Regular Season - Week 14" }, { "date": "Dec 9, 2018", @@ -137776,8 +204051,13 @@ "und": "Baltimore Ravens", "sF": "27", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.5, + "pScore": { + "sU": 21.0, + "sF": 27.5 + }, + "week": "2018 Regular Season - Week 14" }, { "date": "Dec 9, 2018", @@ -137786,8 +204066,13 @@ "und": "Miami Dolphins", "sF": "33", "sU": "34", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 49.5, + "pScore": { + "sU": 20.0, + "sF": 29.5 + }, + "week": "2018 Regular Season - Week 14" }, { "date": "Dec 9, 2018", @@ -137797,7 +204082,12 @@ "sF": "28", "sU": "14", "spread": "10", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 22.0, + "sF": 32.0 + }, + "week": "2018 Regular Season - Week 14" }, { "date": "Dec 9, 2018", @@ -137807,7 +204097,12 @@ "sF": "40", "sU": "16", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2018 Regular Season - Week 14" }, { "date": "Dec 9, 2018", @@ -137817,7 +204112,12 @@ "sF": "26", "sU": "21", "spread": "17", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 15.75, + "sF": 32.75 + }, + "week": "2018 Regular Season - Week 14" }, { "date": "Dec 9, 2018", @@ -137827,11 +204127,12 @@ "sF": "14", "sU": "20", "spread": "3", - "ou": "49", + "ou": 45.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 21.25, + "sF": 24.25 + }, + "week": "2018 Regular Season - Week 14" }, { "date": "Dec 9, 2018", @@ -137840,8 +204141,13 @@ "und": "Arizona Cardinals", "sF": "17", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "2018 Regular Season - Week 14" }, { "date": "Dec 9, 2018", @@ -137850,8 +204156,13 @@ "und": "Philadelphia Eagles", "sF": "29", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "2018 Regular Season - Week 14" }, { "date": "Dec 9, 2018", @@ -137860,8 +204171,13 @@ "und": "Oakland Raiders", "sF": "21", "sU": "24", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 51.0, + "pScore": { + "sU": 20.25, + "sF": 30.75 + }, + "week": "2018 Regular Season - Week 14" }, { "date": "Dec 9, 2018", @@ -137871,7 +204187,12 @@ "sF": "6", "sU": "15", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2018 Regular Season - Week 14" }, { "date": "Dec 10, 2018", @@ -137881,7 +204202,12 @@ "sF": "21", "sU": "7", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2018 Regular Season - Week 14" }, { "date": "Dec 13, 2018", @@ -137890,8 +204216,13 @@ "und": "Los Angeles Chargers", "sF": "28", "sU": "29", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 54.0, + "pScore": { + "sU": 25.25, + "sF": 28.75 + }, + "week": "2018 Regular Season - Week 15" }, { "date": "Dec 15, 2018", @@ -137901,7 +204232,12 @@ "sF": "29", "sU": "22", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2018 Regular Season - Week 15" }, { "date": "Dec 15, 2018", @@ -137911,7 +204247,12 @@ "sF": "16", "sU": "17", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "2018 Regular Season - Week 15" }, { "date": "Dec 16, 2018", @@ -137921,7 +204262,12 @@ "sF": "40", "sU": "14", "spread": "10", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 16.75, + "sF": 26.75 + }, + "week": "2018 Regular Season - Week 15" }, { "date": "Dec 16, 2018", @@ -137930,8 +204276,13 @@ "und": "Tampa Bay Buccaneers", "sF": "20", "sU": "12", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 45.0, + "pScore": { + "sU": 18.25, + "sF": 26.75 + }, + "week": "2018 Regular Season - Week 15" }, { "date": "Dec 16, 2018", @@ -137940,8 +204291,13 @@ "und": "Detroit Lions", "sF": "14", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2018 Regular Season - Week 15" }, { "date": "Dec 16, 2018", @@ -137950,8 +204306,13 @@ "und": "Green Bay Packers", "sF": "24", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.5, + "pScore": { + "sU": 20.5, + "sF": 26.0 + }, + "week": "2018 Regular Season - Week 15" }, { "date": "Dec 16, 2018", @@ -137961,7 +204322,12 @@ "sF": "30", "sU": "16", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2018 Regular Season - Week 15" }, { "date": "Dec 16, 2018", @@ -137971,7 +204337,12 @@ "sF": "23", "sU": "0", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2018 Regular Season - Week 15" }, { "date": "Dec 16, 2018", @@ -137980,8 +204351,13 @@ "und": "Washington Redskins", "sF": "13", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 36.5, + "pScore": { + "sU": 14.5, + "sF": 22.0 + }, + "week": "2018 Regular Season - Week 15" }, { "date": "Dec 16, 2018", @@ -137990,8 +204366,13 @@ "und": "Miami Dolphins", "sF": "41", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.0, + "pScore": { + "sU": 18.75, + "sF": 26.25 + }, + "week": "2018 Regular Season - Week 15" }, { "date": "Dec 16, 2018", @@ -138000,8 +204381,13 @@ "und": "New York Giants", "sF": "17", "sU": "0", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "2018 Regular Season - Week 15" }, { "date": "Dec 16, 2018", @@ -138010,12 +204396,13 @@ "und": "San Francisco 49ers", "sF": "23", "sU": "26", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": 44.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 20.25, + "sF": 23.75 + }, + "week": "2018 Regular Season - Week 15" }, { "date": "Dec 16, 2018", @@ -138024,8 +204411,13 @@ "und": "Pittsburgh Steelers", "sF": "10", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 56.0, + "pScore": { + "sU": 26.75, + "sF": 29.25 + }, + "week": "2018 Regular Season - Week 15" }, { "date": "Dec 16, 2018", @@ -138034,8 +204426,13 @@ "und": "Philadelphia Eagles", "sF": "23", "sU": "30", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 52.5, + "pScore": { + "sU": 19.5, + "sF": 33.0 + }, + "week": "2018 Regular Season - Week 15" }, { "date": "Dec 17, 2018", @@ -138045,7 +204442,12 @@ "sF": "12", "sU": "9", "spread": "6", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 22.25, + "sF": 28.25 + }, + "week": "2018 Regular Season - Week 15" }, { "date": "Dec 22, 2018", @@ -138054,8 +204456,13 @@ "und": "Washington Redskins", "sF": "25", "sU": "16", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 37.5, + "pScore": { + "sU": 13.0, + "sF": 24.5 + }, + "week": "2018 Regular Season - Week 16" }, { "date": "Dec 22, 2018", @@ -138065,7 +204472,12 @@ "sF": "10", "sU": "22", "spread": "4", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.25, + "sF": 23.25 + }, + "week": "2018 Regular Season - Week 16" }, { "date": "Dec 23, 2018", @@ -138075,7 +204487,12 @@ "sF": "24", "sU": "10", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2018 Regular Season - Week 16" }, { "date": "Dec 23, 2018", @@ -138085,7 +204502,12 @@ "sF": "26", "sU": "18", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "2018 Regular Season - Week 16" }, { "date": "Dec 23, 2018", @@ -138094,8 +204516,13 @@ "und": "Tampa Bay Buccaneers", "sF": "27", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2018 Regular Season - Week 16" }, { "date": "Dec 23, 2018", @@ -138104,8 +204531,13 @@ "und": "Detroit Lions", "sF": "27", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.5, + "pScore": { + "sU": 18.0, + "sF": 24.5 + }, + "week": "2018 Regular Season - Week 16" }, { "date": "Dec 23, 2018", @@ -138115,7 +204547,12 @@ "sF": "28", "sU": "27", "spread": "10", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 19.25, + "sF": 29.25 + }, + "week": "2018 Regular Season - Week 16" }, { "date": "Dec 23, 2018", @@ -138125,7 +204562,12 @@ "sF": "7", "sU": "17", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2018 Regular Season - Week 16" }, { "date": "Dec 23, 2018", @@ -138134,8 +204576,13 @@ "und": "Buffalo Bills", "sF": "24", "sU": "12", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 45.0, + "pScore": { + "sU": 15.75, + "sF": 29.25 + }, + "week": "2018 Regular Season - Week 16" }, { "date": "Dec 23, 2018", @@ -138145,7 +204592,12 @@ "sF": "44", "sU": "38", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2018 Regular Season - Week 16" }, { "date": "Dec 23, 2018", @@ -138155,7 +204607,12 @@ "sF": "32", "sU": "30", "spread": "1", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.75, + "sF": 23.75 + }, + "week": "2018 Regular Season - Week 16" }, { "date": "Dec 23, 2018", @@ -138164,8 +204621,13 @@ "und": "Arizona Cardinals", "sF": "31", "sU": "9", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 43.0, + "pScore": { + "sU": 14.25, + "sF": 28.75 + }, + "week": "2018 Regular Season - Week 16" }, { "date": "Dec 23, 2018", @@ -138175,11 +204637,12 @@ "sF": "14", "sU": "9", "spread": "4", - "ou": "49", + "ou": 44.0, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sU": 20.0, + "sF": 24.0 + }, + "week": "2018 Regular Season - Week 16" }, { "date": "Dec 23, 2018", @@ -138188,8 +204651,13 @@ "und": "Pittsburgh Steelers", "sF": "31", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 53.0, + "pScore": { + "sU": 23.25, + "sF": 29.75 + }, + "week": "2018 Regular Season - Week 16" }, { "date": "Dec 23, 2018", @@ -138199,7 +204667,12 @@ "sF": "31", "sU": "38", "spread": "1", - "ou": -1 + "ou": 54.5, + "pScore": { + "sU": 26.75, + "sF": 27.75 + }, + "week": "2018 Regular Season - Week 16" }, { "date": "Dec 24, 2018", @@ -138208,8 +204681,13 @@ "und": "Oakland Raiders", "sF": "14", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2018 Regular Season - Week 16" }, { "date": "Dec 30, 2018", @@ -138218,8 +204696,13 @@ "und": "Miami Dolphins", "sF": "42", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.5, + "pScore": { + "sU": 17.0, + "sF": 22.5 + }, + "week": "2018 Regular Season - Week 17" }, { "date": "Dec 30, 2018", @@ -138228,8 +204711,13 @@ "und": "Detroit Lions", "sF": "0", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.5, + "pScore": { + "sU": 18.5, + "sF": 26.0 + }, + "week": "2018 Regular Season - Week 17" }, { "date": "Dec 30, 2018", @@ -138239,7 +204727,12 @@ "sF": "20", "sU": "3", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "2018 Regular Season - Week 17" }, { "date": "Dec 30, 2018", @@ -138248,8 +204741,13 @@ "und": "New York Jets", "sF": "38", "sU": "3", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 46.5, + "pScore": { + "sU": 16.0, + "sF": 30.5 + }, + "week": "2018 Regular Season - Week 17" }, { "date": "Dec 30, 2018", @@ -138259,7 +204757,12 @@ "sF": "14", "sU": "33", "spread": "8", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.0, + "sF": 25.0 + }, + "week": "2018 Regular Season - Week 17" }, { "date": "Dec 30, 2018", @@ -138268,8 +204771,13 @@ "und": "Dallas Cowboys", "sF": "35", "sU": "36", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.5, + "pScore": { + "sU": 15.5, + "sF": 23.0 + }, + "week": "2018 Regular Season - Week 17" }, { "date": "Dec 30, 2018", @@ -138278,8 +204786,13 @@ "und": "Tampa Bay Buccaneers", "sF": "34", "sU": "32", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 51.5, + "pScore": { + "sU": 24.5, + "sF": 27.0 + }, + "week": "2018 Regular Season - Week 17" }, { "date": "Dec 30, 2018", @@ -138289,7 +204802,12 @@ "sF": "26", "sU": "24", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "2018 Regular Season - Week 17" }, { "date": "Dec 30, 2018", @@ -138299,7 +204817,12 @@ "sF": "23", "sU": "9", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2018 Regular Season - Week 17" }, { "date": "Dec 30, 2018", @@ -138308,8 +204831,13 @@ "und": "Oakland Raiders", "sF": "35", "sU": "3", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 52.5, + "pScore": { + "sU": 19.0, + "sF": 33.5 + }, + "week": "2018 Regular Season - Week 17" }, { "date": "Dec 30, 2018", @@ -138318,12 +204846,13 @@ "und": "San Francisco 49ers", "sF": "48", "sU": "32", - "spread": "10", - "ou": "49", + "spread": "10.5", + "ou": 49.5, "pScore": { "sU": 19.5, - "sF": 29.5 - } + "sF": 30.0 + }, + "week": "2018 Regular Season - Week 17" }, { "date": "Dec 30, 2018", @@ -138333,7 +204862,12 @@ "sF": "10", "sU": "24", "spread": "6", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.25, + "sF": 23.25 + }, + "week": "2018 Regular Season - Week 17" }, { "date": "Dec 30, 2018", @@ -138343,7 +204877,12 @@ "sF": "16", "sU": "13", "spread": "14", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 15.5, + "sF": 29.5 + }, + "week": "2018 Regular Season - Week 17" }, { "date": "Dec 30, 2018", @@ -138353,7 +204892,12 @@ "sF": "27", "sU": "24", "spread": "14", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 12.75, + "sF": 26.75 + }, + "week": "2018 Regular Season - Week 17" }, { "date": "Dec 30, 2018", @@ -138363,7 +204907,12 @@ "sF": "24", "sU": "0", "spread": "6", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.25, + "sF": 24.25 + }, + "week": "2018 Regular Season - Week 17" }, { "date": "Dec 30, 2018", @@ -138372,8 +204921,13 @@ "und": "Tennessee Titans", "sF": "33", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.5, + "pScore": { + "sU": 18.5, + "sF": 24.0 + }, + "week": "2018 Regular Season - Week 17" }, { "date": "Jan 5, 2019", @@ -138383,7 +204937,12 @@ "sF": "7", "sU": "21", "spread": "2", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.25, + "sF": 25.25 + }, + "week": "2018 Playoffs" }, { "date": "Jan 5, 2019", @@ -138392,8 +204951,13 @@ "und": "Seattle Seahawks (5)", "sF": "24", "sU": "22", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2018 Playoffs" }, { "date": "Jan 6, 2019", @@ -138403,7 +204967,12 @@ "sF": "17", "sU": "23", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2018 Playoffs" }, { "date": "Jan 6, 2019", @@ -138412,8 +204981,13 @@ "und": "Philadelphia Eagles (6)", "sF": "15", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "2018 Playoffs" }, { "date": "Jan 12, 2019", @@ -138423,7 +204997,12 @@ "sF": "31", "sU": "13", "spread": "4", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 25.0, + "sF": 29.0 + }, + "week": "2018 Playoffs" }, { "date": "Jan 12, 2019", @@ -138432,8 +205011,13 @@ "und": "Dallas Cowboys (4)", "sF": "30", "sU": "22", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2018 Playoffs" }, { "date": "Jan 13, 2019", @@ -138442,8 +205026,13 @@ "und": "Los Angeles Chargers (5)", "sF": "41", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2018 Playoffs" }, { "date": "Jan 13, 2019", @@ -138452,8 +205041,13 @@ "und": "Philadelphia Eagles (6)", "sF": "20", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 52.0, + "pScore": { + "sU": 21.75, + "sF": 30.25 + }, + "week": "2018 Playoffs" }, { "date": "Jan 20, 2019", @@ -138463,7 +205057,12 @@ "sF": "23", "sU": "26", "spread": "3", - "ou": -1 + "ou": 55.5, + "pScore": { + "sU": 26.25, + "sF": 29.25 + }, + "week": "2018 Playoffs" }, { "date": "Jan 20, 2019", @@ -138473,7 +205072,12 @@ "sF": "31", "sU": "37", "spread": "3", - "ou": -1 + "ou": 56.0, + "pScore": { + "sU": 26.5, + "sF": 29.5 + }, + "week": "2018 Playoffs" }, { "date": "Feb 3, 2019", @@ -138483,7 +205087,12 @@ "sF": "13", "sU": "3", "spread": "2", - "ou": -1 + "ou": 55.5, + "pScore": { + "sU": 26.75, + "sF": 28.75 + }, + "week": "2018 Playoffs" }, { "date": "Sep 5, 2019", @@ -138492,8 +205101,13 @@ "und": "Green Bay Packers", "sF": "3", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 1" }, { "date": "Sep 8, 2019", @@ -138502,8 +205116,13 @@ "und": "Carolina Panthers", "sF": "30", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 49.5, + "pScore": { + "sU": 24.0, + "sF": 25.5 + }, + "week": "2019 Regular Season - Week 1" }, { "date": "Sep 8, 2019", @@ -138512,8 +205131,13 @@ "und": "Tennessee Titans", "sF": "13", "sU": "43", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "2019 Regular Season - Week 1" }, { "date": "Sep 8, 2019", @@ -138522,8 +205146,13 @@ "und": "Jacksonville Jaguars", "sF": "40", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.0, + "pScore": { + "sU": 22.75, + "sF": 26.25 + }, + "week": "2019 Regular Season - Week 1" }, { "date": "Sep 8, 2019", @@ -138533,7 +205162,12 @@ "sF": "59", "sU": "10", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "2019 Regular Season - Week 1" }, { "date": "Sep 8, 2019", @@ -138542,8 +205176,13 @@ "und": "Atlanta Falcons", "sF": "28", "sU": "12", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 1" }, { "date": "Sep 8, 2019", @@ -138552,8 +205191,13 @@ "und": "Buffalo Bills", "sF": "16", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "2019 Regular Season - Week 1" }, { "date": "Sep 8, 2019", @@ -138562,8 +205206,13 @@ "und": "Washington Redskins", "sF": "32", "sU": "27", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 44.0, + "pScore": { + "sU": 16.75, + "sF": 27.25 + }, + "week": "2019 Regular Season - Week 1" }, { "date": "Sep 8, 2019", @@ -138573,7 +205222,12 @@ "sF": "30", "sU": "24", "spread": "6", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.25, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 1" }, { "date": "Sep 8, 2019", @@ -138582,8 +205236,13 @@ "und": "Cincinnati Bengals", "sF": "21", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.0, + "pScore": { + "sU": 17.25, + "sF": 26.75 + }, + "week": "2019 Regular Season - Week 1" }, { "date": "Sep 8, 2019", @@ -138592,8 +205251,13 @@ "und": "Arizona Cardinals", "sF": "27", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2019 Regular Season - Week 1" }, { "date": "Sep 8, 2019", @@ -138603,7 +205267,12 @@ "sF": "35", "sU": "17", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2019 Regular Season - Week 1" }, { "date": "Sep 8, 2019", @@ -138613,11 +205282,12 @@ "sF": "17", "sU": "31", "spread": "1", - "ou": "49", + "ou": 51.0, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 25.0, + "sF": 26.0 + }, + "week": "2019 Regular Season - Week 1" }, { "date": "Sep 8, 2019", @@ -138626,8 +205296,13 @@ "und": "Pittsburgh Steelers", "sF": "33", "sU": "3", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 49.0, + "pScore": { + "sU": 21.75, + "sF": 27.25 + }, + "week": "2019 Regular Season - Week 1" }, { "date": "Sep 9, 2019", @@ -138636,8 +205311,13 @@ "und": "Houston Texans", "sF": "30", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 52.0, + "pScore": { + "sU": 22.75, + "sF": 29.25 + }, + "week": "2019 Regular Season - Week 1" }, { "date": "Sep 9, 2019", @@ -138647,7 +205327,12 @@ "sF": "16", "sU": "24", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2019 Regular Season - Week 1" }, { "date": "Sep 12, 2019", @@ -138656,8 +205341,13 @@ "und": "Tampa Bay Buccaneers", "sF": "14", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.0, + "pScore": { + "sU": 20.75, + "sF": 27.25 + }, + "week": "2019 Regular Season - Week 2" }, { "date": "Sep 15, 2019", @@ -138667,7 +205357,12 @@ "sF": "23", "sU": "17", "spread": "13", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 16.5, + "sF": 29.5 + }, + "week": "2019 Regular Season - Week 2" }, { "date": "Sep 15, 2019", @@ -138677,11 +205372,12 @@ "sF": "17", "sU": "41", "spread": "1", - "ou": "49", + "ou": 46.0, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 22.5, + "sF": 23.5 + }, + "week": "2019 Regular Season - Week 2" }, { "date": "Sep 15, 2019", @@ -138691,7 +205387,12 @@ "sF": "10", "sU": "13", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "2019 Regular Season - Week 2" }, { "date": "Sep 15, 2019", @@ -138701,7 +205402,12 @@ "sF": "21", "sU": "16", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2019 Regular Season - Week 2" }, { "date": "Sep 15, 2019", @@ -138710,8 +205416,13 @@ "und": "Jacksonville Jaguars", "sF": "13", "sU": "12", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.0, + "pScore": { + "sU": 17.75, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 2" }, { "date": "Sep 15, 2019", @@ -138721,7 +205432,12 @@ "sF": "43", "sU": "0", "spread": "18", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 15.25, + "sF": 33.25 + }, + "week": "2019 Regular Season - Week 2" }, { "date": "Sep 15, 2019", @@ -138731,7 +205447,12 @@ "sF": "28", "sU": "14", "spread": "1", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.75, + "sF": 22.75 + }, + "week": "2019 Regular Season - Week 2" }, { "date": "Sep 15, 2019", @@ -138741,7 +205462,12 @@ "sF": "26", "sU": "28", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "2019 Regular Season - Week 2" }, { "date": "Sep 15, 2019", @@ -138751,7 +205477,12 @@ "sF": "17", "sU": "19", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2019 Regular Season - Week 2" }, { "date": "Sep 15, 2019", @@ -138761,7 +205492,12 @@ "sF": "31", "sU": "21", "spread": "6", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.25, + "sF": 26.25 + }, + "week": "2019 Regular Season - Week 2" }, { "date": "Sep 15, 2019", @@ -138771,7 +205507,12 @@ "sF": "28", "sU": "10", "spread": "7", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 23.25, + "sF": 30.25 + }, + "week": "2019 Regular Season - Week 2" }, { "date": "Sep 15, 2019", @@ -138781,7 +205522,12 @@ "sF": "16", "sU": "14", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2019 Regular Season - Week 2" }, { "date": "Sep 15, 2019", @@ -138791,7 +205537,12 @@ "sF": "27", "sU": "9", "spread": "2", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 25.25, + "sF": 27.25 + }, + "week": "2019 Regular Season - Week 2" }, { "date": "Sep 15, 2019", @@ -138801,7 +205552,12 @@ "sF": "20", "sU": "24", "spread": "1", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 26.0, + "sF": 27.0 + }, + "week": "2019 Regular Season - Week 2" }, { "date": "Sep 16, 2019", @@ -138810,8 +205566,13 @@ "und": "New York Jets", "sF": "23", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.5, + "pScore": { + "sU": 19.5, + "sF": 26.0 + }, + "week": "2019 Regular Season - Week 2" }, { "date": "Sep 19, 2019", @@ -138820,8 +205581,13 @@ "und": "Jacksonville Jaguars", "sF": "7", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.0, + "pScore": { + "sU": 18.25, + "sF": 19.75 + }, + "week": "2019 Regular Season - Week 3" }, { "date": "Sep 22, 2019", @@ -138830,8 +205596,13 @@ "und": "Cincinnati Bengals", "sF": "21", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.5, + "pScore": { + "sU": 19.0, + "sF": 24.5 + }, + "week": "2019 Regular Season - Week 3" }, { "date": "Sep 22, 2019", @@ -138841,7 +205612,12 @@ "sF": "31", "sU": "6", "spread": "22", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 12.25, + "sF": 34.25 + }, + "week": "2019 Regular Season - Week 3" }, { "date": "Sep 22, 2019", @@ -138851,7 +205627,12 @@ "sF": "27", "sU": "16", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "2019 Regular Season - Week 3" }, { "date": "Sep 22, 2019", @@ -138861,7 +205642,12 @@ "sF": "27", "sU": "24", "spread": "1", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.5, + "sF": 24.5 + }, + "week": "2019 Regular Season - Week 3" }, { "date": "Sep 22, 2019", @@ -138870,8 +205656,13 @@ "und": "Baltimore Ravens", "sF": "33", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 52.0, + "pScore": { + "sU": 23.75, + "sF": 28.25 + }, + "week": "2019 Regular Season - Week 3" }, { "date": "Sep 22, 2019", @@ -138880,8 +205671,13 @@ "und": "Oakland Raiders", "sF": "34", "sU": "14", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.0, + "pScore": { + "sU": 17.25, + "sF": 25.75 + }, + "week": "2019 Regular Season - Week 3" }, { "date": "Sep 22, 2019", @@ -138890,8 +205686,13 @@ "und": "New York Jets", "sF": "30", "sU": "14", - "spread": "20", - "ou": -1 + "spread": "20.5", + "ou": 43.0, + "pScore": { + "sU": 11.25, + "sF": 31.75 + }, + "week": "2019 Regular Season - Week 3" }, { "date": "Sep 22, 2019", @@ -138901,7 +205702,12 @@ "sF": "24", "sU": "27", "spread": "4", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.5, + "sF": 24.5 + }, + "week": "2019 Regular Season - Week 3" }, { "date": "Sep 22, 2019", @@ -138910,8 +205716,13 @@ "und": "Carolina Panthers", "sF": "20", "sU": "38", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "2019 Regular Season - Week 3" }, { "date": "Sep 22, 2019", @@ -138921,7 +205732,12 @@ "sF": "31", "sU": "32", "spread": "5", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 21.5, + "sF": 26.5 + }, + "week": "2019 Regular Season - Week 3" }, { "date": "Sep 22, 2019", @@ -138931,7 +205747,12 @@ "sF": "20", "sU": "27", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2019 Regular Season - Week 3" }, { "date": "Sep 22, 2019", @@ -138941,7 +205762,12 @@ "sF": "24", "sU": "20", "spread": "6", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.25, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 3" }, { "date": "Sep 22, 2019", @@ -138951,7 +205777,12 @@ "sF": "27", "sU": "33", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "2019 Regular Season - Week 3" }, { "date": "Sep 22, 2019", @@ -138961,7 +205792,12 @@ "sF": "20", "sU": "13", "spread": "4", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.0, + "sF": 26.0 + }, + "week": "2019 Regular Season - Week 3" }, { "date": "Sep 23, 2019", @@ -138971,7 +205807,12 @@ "sF": "31", "sU": "15", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "2019 Regular Season - Week 3" }, { "date": "Sep 26, 2019", @@ -138980,8 +205821,13 @@ "und": "Philadelphia Eagles", "sF": "27", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2019 Regular Season - Week 4" }, { "date": "Sep 29, 2019", @@ -138990,8 +205836,13 @@ "und": "Tennessee Titans", "sF": "10", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2019 Regular Season - Week 4" }, { "date": "Sep 29, 2019", @@ -139000,8 +205851,13 @@ "und": "Cleveland Browns", "sF": "25", "sU": "40", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.0, + "pScore": { + "sU": 19.75, + "sF": 27.25 + }, + "week": "2019 Regular Season - Week 4" }, { "date": "Sep 29, 2019", @@ -139011,7 +205867,12 @@ "sF": "16", "sU": "10", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2019 Regular Season - Week 4" }, { "date": "Sep 29, 2019", @@ -139020,8 +205881,13 @@ "und": "Detroit Lions", "sF": "34", "sU": "30", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 54.5, + "pScore": { + "sU": 23.5, + "sF": 31.0 + }, + "week": "2019 Regular Season - Week 4" }, { "date": "Sep 29, 2019", @@ -139030,8 +205896,13 @@ "und": "Carolina Panthers", "sF": "10", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.5, + "pScore": { + "sU": 21.0, + "sF": 26.5 + }, + "week": "2019 Regular Season - Week 4" }, { "date": "Sep 29, 2019", @@ -139040,8 +205911,13 @@ "und": "Oakland Raiders", "sF": "24", "sU": "31", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.0, + "pScore": { + "sU": 20.25, + "sF": 25.75 + }, + "week": "2019 Regular Season - Week 4" }, { "date": "Sep 29, 2019", @@ -139051,7 +205927,12 @@ "sF": "30", "sU": "10", "spread": "15", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 14.25, + "sF": 29.25 + }, + "week": "2019 Regular Season - Week 4" }, { "date": "Sep 29, 2019", @@ -139061,7 +205942,12 @@ "sF": "24", "sU": "3", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2019 Regular Season - Week 4" }, { "date": "Sep 29, 2019", @@ -139070,8 +205956,13 @@ "und": "Arizona Cardinals", "sF": "27", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 49.0, + "pScore": { + "sU": 21.75, + "sF": 27.25 + }, + "week": "2019 Regular Season - Week 4" }, { "date": "Sep 29, 2019", @@ -139081,7 +205972,12 @@ "sF": "40", "sU": "55", "spread": "9", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 19.75, + "sF": 28.75 + }, + "week": "2019 Regular Season - Week 4" }, { "date": "Sep 29, 2019", @@ -139091,7 +205987,12 @@ "sF": "6", "sU": "16", "spread": "1", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.5, + "sF": 19.5 + }, + "week": "2019 Regular Season - Week 4" }, { "date": "Sep 29, 2019", @@ -139100,8 +206001,13 @@ "und": "Jacksonville Jaguars", "sF": "24", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2019 Regular Season - Week 4" }, { "date": "Sep 29, 2019", @@ -139110,8 +206016,13 @@ "und": "New Orleans Saints", "sF": "10", "sU": "12", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.0, + "pScore": { + "sU": 22.25, + "sF": 24.75 + }, + "week": "2019 Regular Season - Week 4" }, { "date": "Sep 30, 2019", @@ -139120,8 +206031,13 @@ "und": "Cincinnati Bengals", "sF": "27", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "2019 Regular Season - Week 4" }, { "date": "Oct 3, 2019", @@ -139130,8 +206046,13 @@ "und": "Los Angeles Rams", "sF": "30", "sU": "29", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 49.0, + "pScore": { + "sU": 23.75, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 5" }, { "date": "Oct 6, 2019", @@ -139141,7 +206062,12 @@ "sF": "34", "sU": "27", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2019 Regular Season - Week 5" }, { "date": "Oct 6, 2019", @@ -139151,7 +206077,12 @@ "sF": "23", "sU": "26", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2019 Regular Season - Week 5" }, { "date": "Oct 6, 2019", @@ -139161,7 +206092,12 @@ "sF": "53", "sU": "32", "spread": "4", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 22.5, + "sF": 26.5 + }, + "week": "2019 Regular Season - Week 5" }, { "date": "Oct 6, 2019", @@ -139171,7 +206107,12 @@ "sF": "31", "sU": "24", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2019 Regular Season - Week 5" }, { "date": "Oct 6, 2019", @@ -139180,8 +206121,13 @@ "und": "New York Giants", "sF": "28", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "2019 Regular Season - Week 5" }, { "date": "Oct 6, 2019", @@ -139190,8 +206136,13 @@ "und": "Oakland Raiders", "sF": "21", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "2019 Regular Season - Week 5" }, { "date": "Oct 6, 2019", @@ -139201,7 +206152,12 @@ "sF": "31", "sU": "6", "spread": "14", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 14.5, + "sF": 28.5 + }, + "week": "2019 Regular Season - Week 5" }, { "date": "Oct 6, 2019", @@ -139210,8 +206166,13 @@ "und": "Pittsburgh Steelers", "sF": "26", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2019 Regular Season - Week 5" }, { "date": "Oct 6, 2019", @@ -139220,8 +206181,13 @@ "und": "Buffalo Bills", "sF": "7", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "2019 Regular Season - Week 5" }, { "date": "Oct 6, 2019", @@ -139230,8 +206196,13 @@ "und": "Washington Redskins", "sF": "33", "sU": "7", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 42.0, + "pScore": { + "sU": 13.25, + "sF": 28.75 + }, + "week": "2019 Regular Season - Week 5" }, { "date": "Oct 6, 2019", @@ -139241,7 +206212,12 @@ "sF": "13", "sU": "20", "spread": "4", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.0, + "sF": 25.0 + }, + "week": "2019 Regular Season - Week 5" }, { "date": "Oct 6, 2019", @@ -139250,8 +206226,13 @@ "und": "Green Bay Packers", "sF": "24", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "2019 Regular Season - Week 5" }, { "date": "Oct 6, 2019", @@ -139260,8 +206241,13 @@ "und": "Indianapolis Colts", "sF": "13", "sU": "19", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 55.5, + "pScore": { + "sU": 22.5, + "sF": 33.0 + }, + "week": "2019 Regular Season - Week 5" }, { "date": "Oct 7, 2019", @@ -139271,7 +206257,12 @@ "sF": "31", "sU": "3", "spread": "5", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 21.25, + "sF": 26.25 + }, + "week": "2019 Regular Season - Week 5" }, { "date": "Oct 10, 2019", @@ -139280,8 +206271,13 @@ "und": "New York Giants", "sF": "35", "sU": "14", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 43.0, + "pScore": { + "sU": 13.25, + "sF": 29.75 + }, + "week": "2019 Regular Season - Week 6" }, { "date": "Oct 13, 2019", @@ -139291,7 +206287,12 @@ "sF": "37", "sU": "26", "spread": "2", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.25, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 6" }, { "date": "Oct 13, 2019", @@ -139300,8 +206301,13 @@ "und": "Cincinnati Bengals", "sF": "23", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 47.0, + "pScore": { + "sU": 18.25, + "sF": 28.75 + }, + "week": "2019 Regular Season - Week 6" }, { "date": "Oct 13, 2019", @@ -139311,7 +206317,12 @@ "sF": "28", "sU": "32", "spread": "1", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 22.25, + "sF": 23.25 + }, + "week": "2019 Regular Season - Week 6" }, { "date": "Oct 13, 2019", @@ -139320,8 +206331,13 @@ "und": "New Orleans Saints", "sF": "6", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2019 Regular Season - Week 6" }, { "date": "Oct 13, 2019", @@ -139330,8 +206346,13 @@ "und": "Houston Texans", "sF": "24", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 54.5, + "pScore": { + "sU": 25.5, + "sF": 29.0 + }, + "week": "2019 Regular Season - Week 6" }, { "date": "Oct 13, 2019", @@ -139341,7 +206362,12 @@ "sF": "17", "sU": "16", "spread": "6", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 18.0, + "sF": 24.0 + }, + "week": "2019 Regular Season - Week 6" }, { "date": "Oct 13, 2019", @@ -139350,8 +206376,13 @@ "und": "Philadelphia Eagles", "sF": "38", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2019 Regular Season - Week 6" }, { "date": "Oct 13, 2019", @@ -139361,7 +206392,12 @@ "sF": "33", "sU": "34", "spread": "3", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 24.75, + "sF": 27.75 + }, + "week": "2019 Regular Season - Week 6" }, { "date": "Oct 13, 2019", @@ -139371,11 +206407,12 @@ "sF": "7", "sU": "20", "spread": "3", - "ou": "49", + "ou": 49.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 23.25, + "sF": 26.25 + }, + "week": "2019 Regular Season - Week 6" }, { "date": "Oct 13, 2019", @@ -139385,7 +206422,12 @@ "sF": "16", "sU": "0", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "2019 Regular Season - Week 6" }, { "date": "Oct 13, 2019", @@ -139395,7 +206437,12 @@ "sF": "22", "sU": "24", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 6" }, { "date": "Oct 13, 2019", @@ -139405,7 +206452,12 @@ "sF": "17", "sU": "24", "spread": "6", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.25, + "sF": 24.25 + }, + "week": "2019 Regular Season - Week 6" }, { "date": "Oct 14, 2019", @@ -139414,8 +206466,13 @@ "und": "Detroit Lions", "sF": "23", "sU": "22", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 6" }, { "date": "Oct 17, 2019", @@ -139425,7 +206482,12 @@ "sF": "30", "sU": "6", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "2019 Regular Season - Week 7" }, { "date": "Oct 20, 2019", @@ -139435,7 +206497,12 @@ "sF": "37", "sU": "10", "spread": "3", - "ou": -1 + "ou": 54.5, + "pScore": { + "sU": 25.75, + "sF": 28.75 + }, + "week": "2019 Regular Season - Week 7" }, { "date": "Oct 20, 2019", @@ -139445,7 +206512,12 @@ "sF": "31", "sU": "21", "spread": "17", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 12.75, + "sF": 29.75 + }, + "week": "2019 Regular Season - Week 7" }, { "date": "Oct 20, 2019", @@ -139455,7 +206527,12 @@ "sF": "27", "sU": "17", "spread": "4", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.25, + "sF": 24.25 + }, + "week": "2019 Regular Season - Week 7" }, { "date": "Oct 20, 2019", @@ -139464,8 +206541,13 @@ "und": "Detroit Lions", "sF": "42", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2019 Regular Season - Week 7" }, { "date": "Oct 20, 2019", @@ -139474,8 +206556,13 @@ "und": "Oakland Raiders", "sF": "42", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 48.0, + "pScore": { + "sU": 21.25, + "sF": 26.75 + }, + "week": "2019 Regular Season - Week 7" }, { "date": "Oct 20, 2019", @@ -139484,8 +206571,13 @@ "und": "Houston Texans", "sF": "30", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.5, + "pScore": { + "sU": 22.5, + "sF": 24.0 + }, + "week": "2019 Regular Season - Week 7" }, { "date": "Oct 20, 2019", @@ -139494,8 +206586,13 @@ "und": "Arizona Cardinals", "sF": "21", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "2019 Regular Season - Week 7" }, { "date": "Oct 20, 2019", @@ -139505,7 +206602,12 @@ "sF": "9", "sU": "0", "spread": "10", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 14.5, + "sF": 24.5 + }, + "week": "2019 Regular Season - Week 7" }, { "date": "Oct 20, 2019", @@ -139515,7 +206617,12 @@ "sF": "23", "sU": "20", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2019 Regular Season - Week 7" }, { "date": "Oct 20, 2019", @@ -139525,7 +206632,12 @@ "sF": "25", "sU": "36", "spread": "4", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 16.5, + "sF": 20.5 + }, + "week": "2019 Regular Season - Week 7" }, { "date": "Oct 20, 2019", @@ -139535,7 +206647,12 @@ "sF": "16", "sU": "30", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2019 Regular Season - Week 7" }, { "date": "Oct 20, 2019", @@ -139545,7 +206662,12 @@ "sF": "37", "sU": "10", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "2019 Regular Season - Week 7" }, { "date": "Oct 21, 2019", @@ -139554,8 +206676,13 @@ "und": "New York Jets", "sF": "33", "sU": "0", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "2019 Regular Season - Week 7" }, { "date": "Oct 24, 2019", @@ -139564,8 +206691,13 @@ "und": "Washington Redskins", "sF": "19", "sU": "9", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 42.0, + "pScore": { + "sU": 12.75, + "sF": 29.25 + }, + "week": "2019 Regular Season - Week 8" }, { "date": "Oct 27, 2019", @@ -139574,8 +206706,13 @@ "und": "Atlanta Falcons", "sF": "27", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.5, + "pScore": { + "sU": 20.5, + "sF": 28.0 + }, + "week": "2019 Regular Season - Week 8" }, { "date": "Oct 27, 2019", @@ -139585,7 +206722,12 @@ "sF": "13", "sU": "31", "spread": "1", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 19.25, + "sF": 20.25 + }, + "week": "2019 Regular Season - Week 8" }, { "date": "Oct 27, 2019", @@ -139594,8 +206736,13 @@ "und": "Los Angeles Chargers", "sF": "16", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2019 Regular Season - Week 8" }, { "date": "Oct 27, 2019", @@ -139604,8 +206751,13 @@ "und": "New York Giants", "sF": "31", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.0, + "pScore": { + "sU": 21.25, + "sF": 27.75 + }, + "week": "2019 Regular Season - Week 8" }, { "date": "Oct 27, 2019", @@ -139615,7 +206767,12 @@ "sF": "15", "sU": "13", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2019 Regular Season - Week 8" }, { "date": "Oct 27, 2019", @@ -139625,7 +206782,12 @@ "sF": "29", "sU": "15", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "2019 Regular Season - Week 8" }, { "date": "Oct 27, 2019", @@ -139635,7 +206797,12 @@ "sF": "24", "sU": "10", "spread": "12", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 18.25, + "sF": 30.25 + }, + "week": "2019 Regular Season - Week 8" }, { "date": "Oct 27, 2019", @@ -139644,8 +206811,13 @@ "und": "Arizona Cardinals", "sF": "31", "sU": "9", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 47.5, + "pScore": { + "sU": 17.5, + "sF": 30.0 + }, + "week": "2019 Regular Season - Week 8" }, { "date": "Oct 27, 2019", @@ -139655,7 +206827,12 @@ "sF": "27", "sU": "23", "spread": "2", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.75, + "sF": 23.75 + }, + "week": "2019 Regular Season - Week 8" }, { "date": "Oct 27, 2019", @@ -139664,8 +206841,13 @@ "und": "Carolina Panthers", "sF": "51", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "2019 Regular Season - Week 8" }, { "date": "Oct 27, 2019", @@ -139675,7 +206857,12 @@ "sF": "27", "sU": "24", "spread": "5", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 23.5, + "sF": 28.5 + }, + "week": "2019 Regular Season - Week 8" }, { "date": "Oct 27, 2019", @@ -139684,8 +206871,13 @@ "und": "Cleveland Browns", "sF": "27", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "2019 Regular Season - Week 8" }, { "date": "Oct 27, 2019", @@ -139695,7 +206887,12 @@ "sF": "31", "sU": "24", "spread": "5", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 21.5, + "sF": 26.5 + }, + "week": "2019 Regular Season - Week 8" }, { "date": "Oct 28, 2019", @@ -139705,7 +206902,12 @@ "sF": "27", "sU": "14", "spread": "14", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 15.0, + "sF": 29.0 + }, + "week": "2019 Regular Season - Week 8" }, { "date": "Oct 31, 2019", @@ -139714,8 +206916,13 @@ "und": "Arizona Cardinals", "sF": "28", "sU": "25", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.5, + "pScore": { + "sU": 16.5, + "sF": 27.0 + }, + "week": "2019 Regular Season - Week 9" }, { "date": "Nov 3, 2019", @@ -139725,7 +206932,12 @@ "sF": "3", "sU": "26", "spread": "1", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.5, + "sF": 23.5 + }, + "week": "2019 Regular Season - Week 9" }, { "date": "Nov 3, 2019", @@ -139734,8 +206946,13 @@ "und": "Washington Redskins", "sF": "24", "sU": "9", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 37.0, + "pScore": { + "sU": 13.25, + "sF": 23.75 + }, + "week": "2019 Regular Season - Week 9" }, { "date": "Nov 3, 2019", @@ -139744,8 +206961,13 @@ "und": "Tennessee Titans", "sF": "30", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2019 Regular Season - Week 9" }, { "date": "Nov 3, 2019", @@ -139754,8 +206976,13 @@ "und": "Kansas City Chiefs", "sF": "23", "sU": "26", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.0, + "pScore": { + "sU": 20.25, + "sF": 25.75 + }, + "week": "2019 Regular Season - Week 9" }, { "date": "Nov 3, 2019", @@ -139764,8 +206991,13 @@ "und": "Miami Dolphins", "sF": "18", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2019 Regular Season - Week 9" }, { "date": "Nov 3, 2019", @@ -139775,7 +207007,12 @@ "sF": "22", "sU": "14", "spread": "5", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.0, + "sF": 23.0 + }, + "week": "2019 Regular Season - Week 9" }, { "date": "Nov 3, 2019", @@ -139785,7 +207022,12 @@ "sF": "26", "sU": "24", "spread": "1", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 19.25, + "sF": 20.25 + }, + "week": "2019 Regular Season - Week 9" }, { "date": "Nov 3, 2019", @@ -139794,8 +207036,13 @@ "und": "Detroit Lions", "sF": "31", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 51.5, + "pScore": { + "sU": 24.5, + "sF": 27.0 + }, + "week": "2019 Regular Season - Week 9" }, { "date": "Nov 3, 2019", @@ -139805,7 +207052,12 @@ "sF": "40", "sU": "34", "spread": "4", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 23.5, + "sF": 27.5 + }, + "week": "2019 Regular Season - Week 9" }, { "date": "Nov 3, 2019", @@ -139815,7 +207067,12 @@ "sF": "19", "sU": "24", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "2019 Regular Season - Week 9" }, { "date": "Nov 3, 2019", @@ -139825,7 +207082,12 @@ "sF": "11", "sU": "26", "spread": "4", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.0, + "sF": 27.0 + }, + "week": "2019 Regular Season - Week 9" }, { "date": "Nov 3, 2019", @@ -139835,7 +207097,12 @@ "sF": "20", "sU": "37", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2019 Regular Season - Week 9" }, { "date": "Nov 4, 2019", @@ -139844,8 +207111,13 @@ "und": "New York Giants", "sF": "37", "sU": "18", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.5, + "pScore": { + "sU": 21.0, + "sF": 27.5 + }, + "week": "2019 Regular Season - Week 9" }, { "date": "Nov 7, 2019", @@ -139855,7 +207127,12 @@ "sF": "24", "sU": "26", "spread": "1", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 24.0, + "sF": 25.0 + }, + "week": "2019 Regular Season - Week 10" }, { "date": "Nov 10, 2019", @@ -139865,7 +207142,12 @@ "sF": "20", "sU": "13", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "2019 Regular Season - Week 10" }, { "date": "Nov 10, 2019", @@ -139874,8 +207156,13 @@ "und": "Cincinnati Bengals", "sF": "49", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 44.0, + "pScore": { + "sU": 16.75, + "sF": 27.25 + }, + "week": "2019 Regular Season - Week 10" }, { "date": "Nov 10, 2019", @@ -139885,7 +207172,12 @@ "sF": "19", "sU": "16", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2019 Regular Season - Week 10" }, { "date": "Nov 10, 2019", @@ -139895,7 +207187,12 @@ "sF": "9", "sU": "26", "spread": "14", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 18.75, + "sF": 32.75 + }, + "week": "2019 Regular Season - Week 10" }, { "date": "Nov 10, 2019", @@ -139905,7 +207202,12 @@ "sF": "27", "sU": "34", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2019 Regular Season - Week 10" }, { "date": "Nov 10, 2019", @@ -139914,8 +207216,13 @@ "und": "Arizona Cardinals", "sF": "30", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 51.0, + "pScore": { + "sU": 22.75, + "sF": 28.25 + }, + "week": "2019 Regular Season - Week 10" }, { "date": "Nov 10, 2019", @@ -139925,7 +207232,12 @@ "sF": "32", "sU": "35", "spread": "5", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 22.0, + "sF": 27.0 + }, + "week": "2019 Regular Season - Week 10" }, { "date": "Nov 10, 2019", @@ -139935,7 +207247,12 @@ "sF": "12", "sU": "16", "spread": "11", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 16.75, + "sF": 27.75 + }, + "week": "2019 Regular Season - Week 10" }, { "date": "Nov 10, 2019", @@ -139945,7 +207262,12 @@ "sF": "24", "sU": "16", "spread": "5", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 22.0, + "sF": 27.0 + }, + "week": "2019 Regular Season - Week 10" }, { "date": "Nov 10, 2019", @@ -139955,7 +207277,12 @@ "sF": "12", "sU": "17", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "2019 Regular Season - Week 10" }, { "date": "Nov 10, 2019", @@ -139964,8 +207291,13 @@ "und": "Minnesota Vikings", "sF": "24", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.5, + "pScore": { + "sU": 22.5, + "sF": 26.0 + }, + "week": "2019 Regular Season - Week 10" }, { "date": "Nov 11, 2019", @@ -139974,8 +207306,13 @@ "und": "Seattle Seahawks", "sF": "24", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "2019 Regular Season - Week 10" }, { "date": "Nov 14, 2019", @@ -139985,7 +207322,12 @@ "sF": "21", "sU": "7", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2019 Regular Season - Week 11" }, { "date": "Nov 17, 2019", @@ -139995,7 +207337,12 @@ "sF": "41", "sU": "7", "spread": "4", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 23.5, + "sF": 27.5 + }, + "week": "2019 Regular Season - Week 11" }, { "date": "Nov 17, 2019", @@ -140004,8 +207351,13 @@ "und": "Atlanta Falcons", "sF": "3", "sU": "29", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.0, + "pScore": { + "sU": 22.75, + "sF": 26.25 + }, + "week": "2019 Regular Season - Week 11" }, { "date": "Nov 17, 2019", @@ -140014,8 +207366,13 @@ "und": "Detroit Lions", "sF": "35", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.5, + "pScore": { + "sU": 19.5, + "sF": 27.0 + }, + "week": "2019 Regular Season - Week 11" }, { "date": "Nov 17, 2019", @@ -140024,8 +207381,13 @@ "und": "Jacksonville Jaguars", "sF": "33", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2019 Regular Season - Week 11" }, { "date": "Nov 17, 2019", @@ -140035,7 +207397,12 @@ "sF": "37", "sU": "20", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2019 Regular Season - Week 11" }, { "date": "Nov 17, 2019", @@ -140045,7 +207412,12 @@ "sF": "27", "sU": "23", "spread": "10", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.25, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 11" }, { "date": "Nov 17, 2019", @@ -140055,7 +207427,12 @@ "sF": "34", "sU": "17", "spread": "5", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 22.75, + "sF": 27.75 + }, + "week": "2019 Regular Season - Week 11" }, { "date": "Nov 17, 2019", @@ -140065,7 +207442,12 @@ "sF": "17", "sU": "34", "spread": "1", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 18.25, + "sF": 19.25 + }, + "week": "2019 Regular Season - Week 11" }, { "date": "Nov 17, 2019", @@ -140075,7 +207457,12 @@ "sF": "36", "sU": "26", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "2019 Regular Season - Week 11" }, { "date": "Nov 17, 2019", @@ -140085,7 +207472,12 @@ "sF": "17", "sU": "10", "spread": "13", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 17.5, + "sF": 30.5 + }, + "week": "2019 Regular Season - Week 11" }, { "date": "Nov 17, 2019", @@ -140094,8 +207486,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.0, + "pScore": { + "sU": 20.25, + "sF": 24.75 + }, + "week": "2019 Regular Season - Week 11" }, { "date": "Nov 17, 2019", @@ -140105,7 +207502,12 @@ "sF": "17", "sU": "7", "spread": "5", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.5, + "sF": 22.5 + }, + "week": "2019 Regular Season - Week 11" }, { "date": "Nov 18, 2019", @@ -140114,8 +207516,13 @@ "und": "Los Angeles Chargers", "sF": "24", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 52.5, + "pScore": { + "sU": 23.5, + "sF": 29.0 + }, + "week": "2019 Regular Season - Week 11" }, { "date": "Nov 21, 2019", @@ -140124,8 +207531,13 @@ "und": "Indianapolis Colts", "sF": "20", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2019 Regular Season - Week 12" }, { "date": "Nov 24, 2019", @@ -140134,8 +207546,13 @@ "und": "Tampa Bay Buccaneers", "sF": "22", "sU": "35", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 51.5, + "pScore": { + "sU": 24.0, + "sF": 27.5 + }, + "week": "2019 Regular Season - Week 12" }, { "date": "Nov 24, 2019", @@ -140144,8 +207561,13 @@ "und": "Denver Broncos", "sF": "20", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2019 Regular Season - Week 12" }, { "date": "Nov 24, 2019", @@ -140155,7 +207577,12 @@ "sF": "19", "sU": "14", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2019 Regular Season - Week 12" }, { "date": "Nov 24, 2019", @@ -140164,8 +207591,13 @@ "und": "Cincinnati Bengals", "sF": "16", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.5, + "pScore": { + "sU": 16.0, + "sF": 21.5 + }, + "week": "2019 Regular Season - Week 12" }, { "date": "Nov 24, 2019", @@ -140175,7 +207607,12 @@ "sF": "41", "sU": "24", "spread": "11", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 17.25, + "sF": 28.25 + }, + "week": "2019 Regular Season - Week 12" }, { "date": "Nov 24, 2019", @@ -140185,7 +207622,12 @@ "sF": "34", "sU": "31", "spread": "10", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.0, + "sF": 28.0 + }, + "week": "2019 Regular Season - Week 12" }, { "date": "Nov 24, 2019", @@ -140194,8 +207636,13 @@ "und": "New York Jets", "sF": "3", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2019 Regular Season - Week 12" }, { "date": "Nov 24, 2019", @@ -140205,7 +207652,12 @@ "sF": "17", "sU": "9", "spread": "1", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 22.25, + "sF": 23.25 + }, + "week": "2019 Regular Season - Week 12" }, { "date": "Nov 24, 2019", @@ -140215,7 +207667,12 @@ "sF": "16", "sU": "19", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "2019 Regular Season - Week 12" }, { "date": "Nov 24, 2019", @@ -140224,8 +207681,13 @@ "und": "Jacksonville Jaguars", "sF": "42", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.0, + "pScore": { + "sU": 18.75, + "sF": 23.25 + }, + "week": "2019 Regular Season - Week 12" }, { "date": "Nov 24, 2019", @@ -140234,8 +207696,13 @@ "und": "Dallas Cowboys", "sF": "13", "sU": "9", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "2019 Regular Season - Week 12" }, { "date": "Nov 24, 2019", @@ -140245,7 +207712,12 @@ "sF": "37", "sU": "8", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2019 Regular Season - Week 12" }, { "date": "Nov 25, 2019", @@ -140254,8 +207726,13 @@ "und": "Los Angeles Rams", "sF": "45", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 12" }, { "date": "Nov 28, 2019", @@ -140264,8 +207741,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.5, + "pScore": { + "sU": 16.0, + "sF": 21.5 + }, + "week": "2019 Regular Season - Week 13" }, { "date": "Nov 28, 2019", @@ -140274,8 +207756,13 @@ "und": "Buffalo Bills", "sF": "15", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.5, + "pScore": { + "sU": 20.0, + "sF": 26.5 + }, + "week": "2019 Regular Season - Week 13" }, { "date": "Nov 28, 2019", @@ -140285,7 +207772,12 @@ "sF": "26", "sU": "18", "spread": "7", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.5, + "sF": 27.5 + }, + "week": "2019 Regular Season - Week 13" }, { "date": "Dec 1, 2019", @@ -140294,12 +207786,13 @@ "und": "San Francisco 49ers", "sF": "20", "sU": "17", - "spread": "5", - "ou": "49", + "spread": "5.5", + "ou": 45.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 19.75, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 13" }, { "date": "Dec 1, 2019", @@ -140308,8 +207801,13 @@ "und": "Washington Redskins", "sF": "21", "sU": "29", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 38.5, + "pScore": { + "sU": 14.0, + "sF": 24.5 + }, + "week": "2019 Regular Season - Week 13" }, { "date": "Dec 1, 2019", @@ -140318,8 +207816,13 @@ "und": "Cincinnati Bengals", "sF": "6", "sU": "22", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2019 Regular Season - Week 13" }, { "date": "Dec 1, 2019", @@ -140329,7 +207832,12 @@ "sF": "31", "sU": "17", "spread": "1", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 20.25, + "sF": 21.25 + }, + "week": "2019 Regular Season - Week 13" }, { "date": "Dec 1, 2019", @@ -140339,7 +207847,12 @@ "sF": "28", "sU": "11", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2019 Regular Season - Week 13" }, { "date": "Dec 1, 2019", @@ -140348,8 +207861,13 @@ "und": "Miami Dolphins", "sF": "31", "sU": "37", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 45.0, + "pScore": { + "sU": 17.25, + "sF": 27.75 + }, + "week": "2019 Regular Season - Week 13" }, { "date": "Dec 1, 2019", @@ -140358,8 +207876,13 @@ "und": "New York Giants", "sF": "31", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2019 Regular Season - Week 13" }, { "date": "Dec 1, 2019", @@ -140369,7 +207892,12 @@ "sF": "13", "sU": "20", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "2019 Regular Season - Week 13" }, { "date": "Dec 1, 2019", @@ -140378,8 +207906,13 @@ "und": "Arizona Cardinals", "sF": "34", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.0, + "pScore": { + "sU": 22.25, + "sF": 24.75 + }, + "week": "2019 Regular Season - Week 13" }, { "date": "Dec 1, 2019", @@ -140388,8 +207921,13 @@ "und": "Denver Broncos", "sF": "20", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "2019 Regular Season - Week 13" }, { "date": "Dec 1, 2019", @@ -140398,8 +207936,13 @@ "und": "Oakland Raiders", "sF": "40", "sU": "9", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 49.5, + "pScore": { + "sU": 19.0, + "sF": 30.5 + }, + "week": "2019 Regular Season - Week 13" }, { "date": "Dec 1, 2019", @@ -140408,8 +207951,13 @@ "und": "Houston Texans", "sF": "22", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 13" }, { "date": "Dec 2, 2019", @@ -140418,8 +207966,13 @@ "und": "Minnesota Vikings", "sF": "37", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.0, + "pScore": { + "sU": 22.75, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 13" }, { "date": "Dec 5, 2019", @@ -140429,7 +207982,12 @@ "sF": "24", "sU": "31", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2019 Regular Season - Week 14" }, { "date": "Dec 8, 2019", @@ -140438,8 +207996,13 @@ "und": "Carolina Panthers", "sF": "40", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "2019 Regular Season - Week 14" }, { "date": "Dec 8, 2019", @@ -140448,8 +208011,13 @@ "und": "Buffalo Bills", "sF": "24", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 14" }, { "date": "Dec 8, 2019", @@ -140458,8 +208026,13 @@ "und": "Cincinnati Bengals", "sF": "27", "sU": "19", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.0, + "pScore": { + "sU": 18.25, + "sF": 24.75 + }, + "week": "2019 Regular Season - Week 14" }, { "date": "Dec 8, 2019", @@ -140469,7 +208042,12 @@ "sF": "20", "sU": "15", "spread": "13", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 14.75, + "sF": 27.75 + }, + "week": "2019 Regular Season - Week 14" }, { "date": "Dec 8, 2019", @@ -140479,7 +208057,12 @@ "sF": "24", "sU": "38", "spread": "8", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.25, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 14" }, { "date": "Dec 8, 2019", @@ -140489,7 +208072,12 @@ "sF": "20", "sU": "7", "spread": "12", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 15.75, + "sF": 27.75 + }, + "week": "2019 Regular Season - Week 14" }, { "date": "Dec 8, 2019", @@ -140499,11 +208087,12 @@ "sF": "46", "sU": "48", "spread": "1", - "ou": "49", + "ou": 45.0, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 22.0, + "sF": 23.0 + }, + "week": "2019 Regular Season - Week 14" }, { "date": "Dec 8, 2019", @@ -140513,7 +208102,12 @@ "sF": "22", "sU": "21", "spread": "5", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.0, + "sF": 26.0 + }, + "week": "2019 Regular Season - Week 14" }, { "date": "Dec 8, 2019", @@ -140523,7 +208117,12 @@ "sF": "38", "sU": "35", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2019 Regular Season - Week 14" }, { "date": "Dec 8, 2019", @@ -140532,8 +208131,13 @@ "und": "Jacksonville Jaguars", "sF": "45", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "2019 Regular Season - Week 14" }, { "date": "Dec 8, 2019", @@ -140542,8 +208146,13 @@ "und": "Arizona Cardinals", "sF": "23", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2019 Regular Season - Week 14" }, { "date": "Dec 8, 2019", @@ -140553,7 +208162,12 @@ "sF": "16", "sU": "23", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "2019 Regular Season - Week 14" }, { "date": "Dec 8, 2019", @@ -140563,7 +208177,12 @@ "sF": "42", "sU": "21", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2019 Regular Season - Week 14" }, { "date": "Dec 8, 2019", @@ -140573,7 +208192,12 @@ "sF": "28", "sU": "12", "spread": "1", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 23.25, + "sF": 24.25 + }, + "week": "2019 Regular Season - Week 14" }, { "date": "Dec 9, 2019", @@ -140582,8 +208206,13 @@ "und": "New York Giants", "sF": "23", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 45.5, + "pScore": { + "sU": 18.0, + "sF": 27.5 + }, + "week": "2019 Regular Season - Week 14" }, { "date": "Dec 12, 2019", @@ -140593,7 +208222,12 @@ "sF": "42", "sU": "21", "spread": "17", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 13.5, + "sF": 30.5 + }, + "week": "2019 Regular Season - Week 15" }, { "date": "Dec 15, 2019", @@ -140603,7 +208237,12 @@ "sF": "30", "sU": "24", "spread": "6", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 21.25, + "sF": 27.25 + }, + "week": "2019 Regular Season - Week 15" }, { "date": "Dec 15, 2019", @@ -140612,8 +208251,13 @@ "und": "Cincinnati Bengals", "sF": "34", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 42.0, + "pScore": { + "sU": 15.75, + "sF": 26.25 + }, + "week": "2019 Regular Season - Week 15" }, { "date": "Dec 15, 2019", @@ -140622,8 +208266,13 @@ "und": "Detroit Lions", "sF": "38", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.0, + "pScore": { + "sU": 20.25, + "sF": 25.75 + }, + "week": "2019 Regular Season - Week 15" }, { "date": "Dec 15, 2019", @@ -140633,7 +208282,12 @@ "sF": "21", "sU": "13", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "2019 Regular Season - Week 15" }, { "date": "Dec 15, 2019", @@ -140643,7 +208297,12 @@ "sF": "23", "sU": "3", "spread": "10", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.5, + "sF": 26.5 + }, + "week": "2019 Regular Season - Week 15" }, { "date": "Dec 15, 2019", @@ -140652,8 +208311,13 @@ "und": "Miami Dolphins", "sF": "36", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 15" }, { "date": "Dec 15, 2019", @@ -140663,7 +208327,12 @@ "sF": "21", "sU": "24", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "2019 Regular Season - Week 15" }, { "date": "Dec 15, 2019", @@ -140673,7 +208342,12 @@ "sF": "37", "sU": "27", "spread": "7", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 15.5, + "sF": 22.5 + }, + "week": "2019 Regular Season - Week 15" }, { "date": "Dec 15, 2019", @@ -140683,7 +208357,12 @@ "sF": "24", "sU": "38", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2019 Regular Season - Week 15" }, { "date": "Dec 15, 2019", @@ -140693,7 +208372,12 @@ "sF": "39", "sU": "10", "spread": "1", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 22.0, + "sF": 23.0 + }, + "week": "2019 Regular Season - Week 15" }, { "date": "Dec 15, 2019", @@ -140703,7 +208387,12 @@ "sF": "16", "sU": "20", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2019 Regular Season - Week 15" }, { "date": "Dec 15, 2019", @@ -140713,7 +208402,12 @@ "sF": "21", "sU": "44", "spread": "1", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.75, + "sF": 24.75 + }, + "week": "2019 Regular Season - Week 15" }, { "date": "Dec 15, 2019", @@ -140722,8 +208416,13 @@ "und": "Atlanta Falcons", "sF": "22", "sU": "29", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 50.0, + "pScore": { + "sU": 19.75, + "sF": 30.25 + }, + "week": "2019 Regular Season - Week 15" }, { "date": "Dec 15, 2019", @@ -140733,7 +208432,12 @@ "sF": "10", "sU": "17", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "2019 Regular Season - Week 15" }, { "date": "Dec 16, 2019", @@ -140743,7 +208447,12 @@ "sF": "34", "sU": "7", "spread": "8", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 20.25, + "sF": 28.25 + }, + "week": "2019 Regular Season - Week 15" }, { "date": "Dec 21, 2019", @@ -140753,7 +208462,12 @@ "sF": "23", "sU": "20", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "2019 Regular Season - Week 16" }, { "date": "Dec 21, 2019", @@ -140763,7 +208477,12 @@ "sF": "24", "sU": "17", "spread": "7", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.75, + "sF": 22.75 + }, + "week": "2019 Regular Season - Week 16" }, { "date": "Dec 21, 2019", @@ -140773,7 +208492,12 @@ "sF": "34", "sU": "31", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "2019 Regular Season - Week 16" }, { "date": "Dec 22, 2019", @@ -140782,8 +208506,13 @@ "und": "Jacksonville Jaguars", "sF": "24", "sU": "12", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2019 Regular Season - Week 16" }, { "date": "Dec 22, 2019", @@ -140792,8 +208521,13 @@ "und": "Cleveland Browns", "sF": "31", "sU": "15", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 48.5, + "pScore": { + "sU": 19.5, + "sF": 29.0 + }, + "week": "2019 Regular Season - Week 16" }, { "date": "Dec 22, 2019", @@ -140802,8 +208536,13 @@ "und": "Carolina Panthers", "sF": "38", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.0, + "pScore": { + "sU": 19.25, + "sF": 26.75 + }, + "week": "2019 Regular Season - Week 16" }, { "date": "Dec 22, 2019", @@ -140812,8 +208551,13 @@ "und": "Miami Dolphins", "sF": "35", "sU": "38", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.0, + "pScore": { + "sU": 22.25, + "sF": 23.75 + }, + "week": "2019 Regular Season - Week 16" }, { "date": "Dec 22, 2019", @@ -140823,7 +208567,12 @@ "sF": "10", "sU": "16", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2019 Regular Season - Week 16" }, { "date": "Dec 22, 2019", @@ -140832,8 +208581,13 @@ "und": "Tennessee Titans", "sF": "38", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.0, + "pScore": { + "sU": 22.75, + "sF": 26.25 + }, + "week": "2019 Regular Season - Week 16" }, { "date": "Dec 22, 2019", @@ -140843,7 +208597,12 @@ "sF": "41", "sU": "35", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "2019 Regular Season - Week 16" }, { "date": "Dec 22, 2019", @@ -140852,8 +208611,13 @@ "und": "Detroit Lions", "sF": "27", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 40.0, + "pScore": { + "sU": 15.25, + "sF": 24.75 + }, + "week": "2019 Regular Season - Week 16" }, { "date": "Dec 22, 2019", @@ -140862,8 +208626,13 @@ "und": "Oakland Raiders", "sF": "17", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.0, + "pScore": { + "sU": 18.75, + "sF": 26.25 + }, + "week": "2019 Regular Season - Week 16" }, { "date": "Dec 22, 2019", @@ -140873,7 +208642,12 @@ "sF": "9", "sU": "17", "spread": "2", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.5, + "sF": 24.5 + }, + "week": "2019 Regular Season - Week 16" }, { "date": "Dec 22, 2019", @@ -140883,7 +208657,12 @@ "sF": "13", "sU": "27", "spread": "8", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 21.5, + "sF": 29.5 + }, + "week": "2019 Regular Season - Week 16" }, { "date": "Dec 22, 2019", @@ -140892,8 +208671,13 @@ "und": "Chicago Bears", "sF": "26", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.5, + "pScore": { + "sU": 19.5, + "sF": 26.0 + }, + "week": "2019 Regular Season - Week 16" }, { "date": "Dec 23, 2019", @@ -140903,7 +208687,12 @@ "sF": "10", "sU": "23", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "2019 Regular Season - Week 16" }, { "date": "Dec 29, 2019", @@ -140912,8 +208701,13 @@ "und": "Buffalo Bills", "sF": "13", "sU": "6", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.0, + "pScore": { + "sU": 17.75, + "sF": 19.25 + }, + "week": "2019 Regular Season - Week 17" }, { "date": "Dec 29, 2019", @@ -140922,8 +208716,13 @@ "und": "Carolina Panthers", "sF": "42", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 45.0, + "pScore": { + "sU": 15.75, + "sF": 29.25 + }, + "week": "2019 Regular Season - Week 17" }, { "date": "Dec 29, 2019", @@ -140932,8 +208731,13 @@ "und": "Cincinnati Bengals", "sF": "23", "sU": "33", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2019 Regular Season - Week 17" }, { "date": "Dec 29, 2019", @@ -140942,8 +208746,13 @@ "und": "Detroit Lions", "sF": "23", "sU": "20", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 44.0, + "pScore": { + "sU": 15.25, + "sF": 28.75 + }, + "week": "2019 Regular Season - Week 17" }, { "date": "Dec 29, 2019", @@ -140953,7 +208762,12 @@ "sF": "31", "sU": "21", "spread": "10", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.0, + "sF": 28.0 + }, + "week": "2019 Regular Season - Week 17" }, { "date": "Dec 29, 2019", @@ -140963,7 +208777,12 @@ "sF": "21", "sU": "19", "spread": "5", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 15.75, + "sF": 20.75 + }, + "week": "2019 Regular Season - Week 17" }, { "date": "Dec 29, 2019", @@ -140972,8 +208791,13 @@ "und": "Miami Dolphins", "sF": "24", "sU": "27", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": 46.0, + "pScore": { + "sU": 14.25, + "sF": 31.75 + }, + "week": "2019 Regular Season - Week 17" }, { "date": "Dec 29, 2019", @@ -140983,7 +208807,12 @@ "sF": "22", "sU": "28", "spread": "1", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.5, + "sF": 24.5 + }, + "week": "2019 Regular Season - Week 17" }, { "date": "Dec 29, 2019", @@ -140993,7 +208822,12 @@ "sF": "10", "sU": "28", "spread": "2", - "ou": -1 + "ou": 35.0, + "pScore": { + "sU": 16.5, + "sF": 18.5 + }, + "week": "2019 Regular Season - Week 17" }, { "date": "Dec 29, 2019", @@ -141002,8 +208836,13 @@ "und": "Washington Redskins", "sF": "47", "sU": "16", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 47.5, + "pScore": { + "sU": 17.5, + "sF": 30.0 + }, + "week": "2019 Regular Season - Week 17" }, { "date": "Dec 29, 2019", @@ -141012,8 +208851,13 @@ "und": "Oakland Raiders", "sF": "16", "sU": "15", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.5, + "pScore": { + "sU": 18.0, + "sF": 23.5 + }, + "week": "2019 Regular Season - Week 17" }, { "date": "Dec 29, 2019", @@ -141023,7 +208867,12 @@ "sF": "35", "sU": "14", "spread": "10", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.5, + "sF": 26.5 + }, + "week": "2019 Regular Season - Week 17" }, { "date": "Dec 29, 2019", @@ -141033,7 +208882,12 @@ "sF": "20", "sU": "38", "spread": "5", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.25, + "sF": 23.25 + }, + "week": "2019 Regular Season - Week 17" }, { "date": "Dec 29, 2019", @@ -141043,7 +208897,12 @@ "sF": "31", "sU": "24", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "2019 Regular Season - Week 17" }, { "date": "Dec 29, 2019", @@ -141053,7 +208912,12 @@ "sF": "34", "sU": "17", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2019 Regular Season - Week 17" }, { "date": "Dec 29, 2019", @@ -141062,8 +208926,13 @@ "und": "Seattle Seahawks", "sF": "26", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2019 Regular Season - Week 17" }, { "date": "Jan 4, 2020", @@ -141072,8 +208941,13 @@ "und": "Buffalo Bills (5)", "sF": "22", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2019 Playoffs" }, { "date": "Jan 4, 2020", @@ -141082,8 +208956,13 @@ "und": "Tennessee Titans (6)", "sF": "13", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.0, + "pScore": { + "sU": 20.25, + "sF": 24.75 + }, + "week": "2019 Playoffs" }, { "date": "Jan 5, 2020", @@ -141092,8 +208971,13 @@ "und": "Minnesota Vikings (6)", "sF": "20", "sU": "26", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 50.0, + "pScore": { + "sU": 21.25, + "sF": 28.75 + }, + "week": "2019 Playoffs" }, { "date": "Jan 5, 2020", @@ -141103,7 +208987,12 @@ "sF": "9", "sU": "17", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2019 Playoffs" }, { "date": "Jan 11, 2020", @@ -141113,7 +209002,12 @@ "sF": "27", "sU": "10", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "2019 Playoffs" }, { "date": "Jan 11, 2020", @@ -141123,7 +209017,12 @@ "sF": "12", "sU": "28", "spread": "10", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 18.75, + "sF": 28.75 + }, + "week": "2019 Playoffs" }, { "date": "Jan 12, 2020", @@ -141133,7 +209032,12 @@ "sF": "51", "sU": "31", "spread": "10", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 20.25, + "sF": 30.25 + }, + "week": "2019 Playoffs" }, { "date": "Jan 12, 2020", @@ -141142,8 +209046,13 @@ "und": "Seattle Seahawks (5)", "sF": "28", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.0, + "pScore": { + "sU": 20.75, + "sF": 25.25 + }, + "week": "2019 Playoffs" }, { "date": "Jan 19, 2020", @@ -141152,8 +209061,13 @@ "und": "Tennessee Titans (6)", "sF": "35", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 51.0, + "pScore": { + "sU": 21.75, + "sF": 29.25 + }, + "week": "2019 Playoffs" }, { "date": "Jan 19, 2020", @@ -141163,7 +209077,12 @@ "sF": "37", "sU": "20", "spread": "8", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.25, + "sF": 27.25 + }, + "week": "2019 Playoffs" }, { "date": "Feb 2, 2020", @@ -141172,12 +209091,13 @@ "und": "San Francisco 49ers (1)", "sF": "31", "sU": "20", - "spread": "1", - "ou": "49", + "spread": "1.5", + "ou": 52.5, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 25.5, + "sF": 27.0 + }, + "week": "2019 Playoffs" }, { "date": "Sep 10, 2020", @@ -141186,8 +209106,13 @@ "und": "Houston Texans", "sF": "34", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 53.5, + "pScore": { + "sU": 22.0, + "sF": 31.5 + }, + "week": "2020 Regular Season - Week 1" }, { "date": "Sep 13, 2020", @@ -141197,7 +209122,12 @@ "sF": "25", "sU": "38", "spread": "1", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 24.25, + "sF": 25.25 + }, + "week": "2020 Regular Season - Week 1" }, { "date": "Sep 13, 2020", @@ -141207,7 +209137,12 @@ "sF": "38", "sU": "6", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2020 Regular Season - Week 1" }, { "date": "Sep 13, 2020", @@ -141216,8 +209151,13 @@ "und": "New York Jets", "sF": "27", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "2020 Regular Season - Week 1" }, { "date": "Sep 13, 2020", @@ -141227,7 +209167,12 @@ "sF": "34", "sU": "30", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2020 Regular Season - Week 1" }, { "date": "Sep 13, 2020", @@ -141236,8 +209181,13 @@ "und": "Chicago Bears", "sF": "23", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2020 Regular Season - Week 1" }, { "date": "Sep 13, 2020", @@ -141247,7 +209197,12 @@ "sF": "20", "sU": "27", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2020 Regular Season - Week 1" }, { "date": "Sep 13, 2020", @@ -141257,7 +209212,12 @@ "sF": "34", "sU": "43", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2020 Regular Season - Week 1" }, { "date": "Sep 13, 2020", @@ -141266,8 +209226,13 @@ "und": "Miami Dolphins", "sF": "21", "sU": "11", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.5, + "pScore": { + "sU": 17.0, + "sF": 24.5 + }, + "week": "2020 Regular Season - Week 1" }, { "date": "Sep 13, 2020", @@ -141276,8 +209241,13 @@ "und": "Washington Football Team", "sF": "17", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.5, + "pScore": { + "sU": 18.0, + "sF": 23.5 + }, + "week": "2020 Regular Season - Week 1" }, { "date": "Sep 13, 2020", @@ -141286,8 +209256,13 @@ "und": "Cincinnati Bengals", "sF": "16", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2020 Regular Season - Week 1" }, { "date": "Sep 13, 2020", @@ -141297,7 +209272,12 @@ "sF": "34", "sU": "23", "spread": "4", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.25, + "sF": 26.25 + }, + "week": "2020 Regular Season - Week 1" }, { "date": "Sep 13, 2020", @@ -141307,7 +209287,12 @@ "sF": "20", "sU": "24", "spread": "7", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 20.75, + "sF": 27.75 + }, + "week": "2020 Regular Season - Week 1" }, { "date": "Sep 13, 2020", @@ -141317,7 +209302,12 @@ "sF": "20", "sU": "17", "spread": "1", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 25.5, + "sF": 26.5 + }, + "week": "2020 Regular Season - Week 1" }, { "date": "Sep 14, 2020", @@ -141327,7 +209317,12 @@ "sF": "26", "sU": "16", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2020 Regular Season - Week 1" }, { "date": "Sep 14, 2020", @@ -141336,8 +209331,13 @@ "und": "Denver Broncos", "sF": "16", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2020 Regular Season - Week 1" }, { "date": "Sep 17, 2020", @@ -141347,7 +209347,12 @@ "sF": "35", "sU": "30", "spread": "6", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.25, + "sF": 25.25 + }, + "week": "2020 Regular Season - Week 2" }, { "date": "Sep 20, 2020", @@ -141356,8 +209361,13 @@ "und": "New York Giants", "sF": "17", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.5, + "pScore": { + "sU": 19.0, + "sF": 23.5 + }, + "week": "2020 Regular Season - Week 2" }, { "date": "Sep 20, 2020", @@ -141367,7 +209377,12 @@ "sF": "40", "sU": "39", "spread": "3", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 25.0, + "sF": 28.0 + }, + "week": "2020 Regular Season - Week 2" }, { "date": "Sep 20, 2020", @@ -141377,7 +209392,12 @@ "sF": "42", "sU": "21", "spread": "7", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 22.0, + "sF": 29.0 + }, + "week": "2020 Regular Season - Week 2" }, { "date": "Sep 20, 2020", @@ -141386,8 +209406,13 @@ "und": "Minnesota Vikings", "sF": "28", "sU": "11", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.0, + "pScore": { + "sU": 22.75, + "sF": 26.25 + }, + "week": "2020 Regular Season - Week 2" }, { "date": "Sep 20, 2020", @@ -141396,8 +209421,13 @@ "und": "Miami Dolphins", "sF": "31", "sU": "28", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.5, + "pScore": { + "sU": 18.5, + "sF": 24.0 + }, + "week": "2020 Regular Season - Week 2" }, { "date": "Sep 20, 2020", @@ -141407,7 +209437,12 @@ "sF": "31", "sU": "13", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2020 Regular Season - Week 2" }, { "date": "Sep 20, 2020", @@ -141417,7 +209452,12 @@ "sF": "19", "sU": "37", "spread": "2", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.0, + "sF": 24.0 + }, + "week": "2020 Regular Season - Week 2" }, { "date": "Sep 20, 2020", @@ -141427,7 +209467,12 @@ "sF": "26", "sU": "21", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2020 Regular Season - Week 2" }, { "date": "Sep 20, 2020", @@ -141436,8 +209481,13 @@ "und": "Carolina Panthers", "sF": "31", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.0, + "pScore": { + "sU": 19.75, + "sF": 27.25 + }, + "week": "2020 Regular Season - Week 2" }, { "date": "Sep 20, 2020", @@ -141447,7 +209497,12 @@ "sF": "33", "sU": "30", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "2020 Regular Season - Week 2" }, { "date": "Sep 20, 2020", @@ -141456,8 +209511,13 @@ "und": "Washington Football Team", "sF": "30", "sU": "15", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.5, + "pScore": { + "sU": 19.5, + "sF": 27.0 + }, + "week": "2020 Regular Season - Week 2" }, { "date": "Sep 20, 2020", @@ -141466,8 +209526,13 @@ "und": "Houston Texans", "sF": "33", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 49.5, + "pScore": { + "sU": 21.0, + "sF": 28.5 + }, + "week": "2020 Regular Season - Week 2" }, { "date": "Sep 20, 2020", @@ -141476,8 +209541,13 @@ "und": "Los Angeles Chargers", "sF": "23", "sU": "20", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 47.0, + "pScore": { + "sU": 19.25, + "sF": 27.75 + }, + "week": "2020 Regular Season - Week 2" }, { "date": "Sep 20, 2020", @@ -141487,7 +209557,12 @@ "sF": "35", "sU": "30", "spread": "4", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.5, + "sF": 24.5 + }, + "week": "2020 Regular Season - Week 2" }, { "date": "Sep 21, 2020", @@ -141497,7 +209572,12 @@ "sF": "24", "sU": "34", "spread": "4", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 21.75, + "sF": 25.75 + }, + "week": "2020 Regular Season - Week 2" }, { "date": "Sep 24, 2020", @@ -141506,8 +209586,13 @@ "und": "Miami Dolphins", "sF": "13", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.5, + "pScore": { + "sU": 23.5, + "sF": 26.0 + }, + "week": "2020 Regular Season - Week 3" }, { "date": "Sep 27, 2020", @@ -141516,8 +209601,13 @@ "und": "Chicago Bears", "sF": "26", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "2020 Regular Season - Week 3" }, { "date": "Sep 27, 2020", @@ -141526,8 +209616,13 @@ "und": "Los Angeles Rams", "sF": "35", "sU": "32", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.5, + "pScore": { + "sU": 22.5, + "sF": 24.0 + }, + "week": "2020 Regular Season - Week 3" }, { "date": "Sep 27, 2020", @@ -141536,8 +209631,13 @@ "und": "Washington Football Team", "sF": "34", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.0, + "pScore": { + "sU": 18.75, + "sF": 26.25 + }, + "week": "2020 Regular Season - Week 3" }, { "date": "Sep 27, 2020", @@ -141547,7 +209647,12 @@ "sF": "31", "sU": "30", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "2020 Regular Season - Week 3" }, { "date": "Sep 27, 2020", @@ -141557,7 +209662,12 @@ "sF": "36", "sU": "20", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2020 Regular Season - Week 3" }, { "date": "Sep 27, 2020", @@ -141567,7 +209677,12 @@ "sF": "36", "sU": "9", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2020 Regular Season - Week 3" }, { "date": "Sep 27, 2020", @@ -141576,8 +209691,13 @@ "und": "Cincinnati Bengals", "sF": "23", "sU": "23", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.5, + "pScore": { + "sU": 20.5, + "sF": 26.0 + }, + "week": "2020 Regular Season - Week 3" }, { "date": "Sep 27, 2020", @@ -141586,8 +209706,13 @@ "und": "Houston Texans", "sF": "28", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "2020 Regular Season - Week 3" }, { "date": "Sep 27, 2020", @@ -141596,8 +209721,13 @@ "und": "New York Jets", "sF": "36", "sU": "7", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 44.0, + "pScore": { + "sU": 15.75, + "sF": 28.25 + }, + "week": "2020 Regular Season - Week 3" }, { "date": "Sep 27, 2020", @@ -141607,7 +209737,12 @@ "sF": "16", "sU": "21", "spread": "6", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.75, + "sF": 24.75 + }, + "week": "2020 Regular Season - Week 3" }, { "date": "Sep 27, 2020", @@ -141616,8 +209751,13 @@ "und": "Detroit Lions", "sF": "23", "sU": "26", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 55.5, + "pScore": { + "sU": 25.5, + "sF": 30.0 + }, + "week": "2020 Regular Season - Week 3" }, { "date": "Sep 27, 2020", @@ -141627,7 +209767,12 @@ "sF": "28", "sU": "10", "spread": "6", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.25, + "sF": 24.25 + }, + "week": "2020 Regular Season - Week 3" }, { "date": "Sep 27, 2020", @@ -141636,8 +209781,13 @@ "und": "Dallas Cowboys", "sF": "38", "sU": "31", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 58.0, + "pScore": { + "sU": 26.25, + "sF": 31.75 + }, + "week": "2020 Regular Season - Week 3" }, { "date": "Sep 27, 2020", @@ -141646,8 +209796,13 @@ "und": "Green Bay Packers", "sF": "30", "sU": "37", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 52.0, + "pScore": { + "sU": 24.25, + "sF": 27.75 + }, + "week": "2020 Regular Season - Week 3" }, { "date": "Sep 28, 2020", @@ -141656,8 +209811,13 @@ "und": "Kansas City Chiefs", "sF": "20", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 55.0, + "pScore": { + "sU": 25.75, + "sF": 29.25 + }, + "week": "2020 Regular Season - Week 3" }, { "date": "Oct 1, 2020", @@ -141667,7 +209827,12 @@ "sF": "28", "sU": "37", "spread": "1", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 20.0, + "sF": 21.0 + }, + "week": "2020 Regular Season - Week 4" }, { "date": "Oct 4, 2020", @@ -141677,7 +209842,12 @@ "sF": "21", "sU": "31", "spread": "3", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 24.75, + "sF": 27.75 + }, + "week": "2020 Regular Season - Week 4" }, { "date": "Oct 4, 2020", @@ -141686,8 +209856,13 @@ "und": "Chicago Bears", "sF": "19", "sU": "11", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2020 Regular Season - Week 4" }, { "date": "Oct 4, 2020", @@ -141697,7 +209872,12 @@ "sF": "33", "sU": "25", "spread": "1", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 24.5, + "sF": 25.5 + }, + "week": "2020 Regular Season - Week 4" }, { "date": "Oct 4, 2020", @@ -141706,8 +209886,13 @@ "und": "Cleveland Browns", "sF": "38", "sU": "49", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 56.5, + "pScore": { + "sU": 26.5, + "sF": 30.0 + }, + "week": "2020 Regular Season - Week 4" }, { "date": "Oct 4, 2020", @@ -141717,7 +209902,12 @@ "sF": "35", "sU": "29", "spread": "3", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 24.25, + "sF": 27.25 + }, + "week": "2020 Regular Season - Week 4" }, { "date": "Oct 4, 2020", @@ -141726,8 +209916,13 @@ "und": "Minnesota Vikings", "sF": "23", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 52.5, + "pScore": { + "sU": 24.5, + "sF": 28.0 + }, + "week": "2020 Regular Season - Week 4" }, { "date": "Oct 4, 2020", @@ -141736,8 +209931,13 @@ "und": "Miami Dolphins", "sF": "31", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 55.0, + "pScore": { + "sU": 25.25, + "sF": 29.75 + }, + "week": "2020 Regular Season - Week 4" }, { "date": "Oct 4, 2020", @@ -141746,8 +209946,13 @@ "und": "Los Angeles Chargers", "sF": "38", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.5, + "pScore": { + "sU": 17.5, + "sF": 25.0 + }, + "week": "2020 Regular Season - Week 4" }, { "date": "Oct 4, 2020", @@ -141756,8 +209961,13 @@ "und": "Washington Football Team", "sF": "31", "sU": "17", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 45.0, + "pScore": { + "sU": 15.25, + "sF": 29.75 + }, + "week": "2020 Regular Season - Week 4" }, { "date": "Oct 4, 2020", @@ -141766,8 +209976,13 @@ "und": "New York Giants", "sF": "17", "sU": "9", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 50.0, + "pScore": { + "sU": 18.25, + "sF": 31.75 + }, + "week": "2020 Regular Season - Week 4" }, { "date": "Oct 4, 2020", @@ -141777,7 +209992,12 @@ "sF": "30", "sU": "23", "spread": "3", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 25.0, + "sF": 28.0 + }, + "week": "2020 Regular Season - Week 4" }, { "date": "Oct 4, 2020", @@ -141786,8 +210006,13 @@ "und": "Philadelphia Eagles", "sF": "20", "sU": "25", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 45.5, + "pScore": { + "sU": 18.5, + "sF": 27.0 + }, + "week": "2020 Regular Season - Week 4" }, { "date": "Oct 5, 2020", @@ -141797,7 +210022,12 @@ "sF": "26", "sU": "10", "spread": "11", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 18.75, + "sF": 29.75 + }, + "week": "2020 Regular Season - Week 4" }, { "date": "Oct 5, 2020", @@ -141807,7 +210037,12 @@ "sF": "30", "sU": "16", "spread": "5", - "ou": -1 + "ou": 56.5, + "pScore": { + "sU": 25.75, + "sF": 30.75 + }, + "week": "2020 Regular Season - Week 4" }, { "date": "Oct 8, 2020", @@ -141816,8 +210051,13 @@ "und": "Chicago Bears", "sF": "19", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2020 Regular Season - Week 5" }, { "date": "Oct 11, 2020", @@ -141826,8 +210066,13 @@ "und": "Carolina Panthers", "sF": "16", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 53.5, + "pScore": { + "sU": 25.5, + "sF": 28.0 + }, + "week": "2020 Regular Season - Week 5" }, { "date": "Oct 11, 2020", @@ -141836,8 +210081,13 @@ "und": "Cincinnati Bengals", "sF": "27", "sU": "3", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 49.0, + "pScore": { + "sU": 18.25, + "sF": 30.75 + }, + "week": "2020 Regular Season - Week 5" }, { "date": "Oct 11, 2020", @@ -141846,8 +210096,13 @@ "und": "Jacksonville Jaguars", "sF": "30", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 55.0, + "pScore": { + "sU": 24.25, + "sF": 30.75 + }, + "week": "2020 Regular Season - Week 5" }, { "date": "Oct 11, 2020", @@ -141857,7 +210112,12 @@ "sF": "32", "sU": "40", "spread": "11", - "ou": -1 + "ou": 54.5, + "pScore": { + "sU": 21.75, + "sF": 32.75 + }, + "week": "2020 Regular Season - Week 5" }, { "date": "Oct 11, 2020", @@ -141867,7 +210127,12 @@ "sF": "30", "sU": "10", "spread": "7", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 20.75, + "sF": 27.75 + }, + "week": "2020 Regular Season - Week 5" }, { "date": "Oct 11, 2020", @@ -141876,8 +210141,13 @@ "und": "Philadelphia Eagles", "sF": "38", "sU": "29", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "2020 Regular Season - Week 5" }, { "date": "Oct 11, 2020", @@ -141887,7 +210157,12 @@ "sF": "30", "sU": "10", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "2020 Regular Season - Week 5" }, { "date": "Oct 11, 2020", @@ -141896,8 +210171,13 @@ "und": "Miami Dolphins", "sF": "17", "sU": "43", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 50.5, + "pScore": { + "sU": 21.0, + "sF": 29.5 + }, + "week": "2020 Regular Season - Week 5" }, { "date": "Oct 11, 2020", @@ -141907,7 +210187,12 @@ "sF": "32", "sU": "23", "spread": "1", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.75, + "sF": 24.75 + }, + "week": "2020 Regular Season - Week 5" }, { "date": "Oct 11, 2020", @@ -141916,8 +210201,13 @@ "und": "New York Giants", "sF": "37", "sU": "34", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 52.0, + "pScore": { + "sU": 22.25, + "sF": 29.75 + }, + "week": "2020 Regular Season - Week 5" }, { "date": "Oct 11, 2020", @@ -141926,8 +210216,13 @@ "und": "Minnesota Vikings", "sF": "27", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 54.0, + "pScore": { + "sU": 23.75, + "sF": 30.25 + }, + "week": "2020 Regular Season - Week 5" }, { "date": "Oct 12, 2020", @@ -141937,7 +210232,12 @@ "sF": "30", "sU": "27", "spread": "7", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 21.25, + "sF": 28.25 + }, + "week": "2020 Regular Season - Week 5" }, { "date": "Oct 13, 2020", @@ -141947,7 +210247,12 @@ "sF": "16", "sU": "42", "spread": "3", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 24.5, + "sF": 27.5 + }, + "week": "2020 Regular Season - Week 5" }, { "date": "Oct 18, 2020", @@ -141957,7 +210262,12 @@ "sF": "16", "sU": "23", "spread": "2", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.5, + "sF": 23.5 + }, + "week": "2020 Regular Season - Week 6" }, { "date": "Oct 18, 2020", @@ -141966,8 +210276,13 @@ "und": "Cincinnati Bengals", "sF": "31", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.0, + "pScore": { + "sU": 19.25, + "sF": 26.75 + }, + "week": "2020 Regular Season - Week 6" }, { "date": "Oct 18, 2020", @@ -141977,7 +210292,12 @@ "sF": "34", "sU": "16", "spread": "3", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 24.75, + "sF": 27.75 + }, + "week": "2020 Regular Season - Week 6" }, { "date": "Oct 18, 2020", @@ -141986,8 +210306,13 @@ "und": "Atlanta Falcons", "sF": "23", "sU": "40", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 53.5, + "pScore": { + "sU": 25.0, + "sF": 28.5 + }, + "week": "2020 Regular Season - Week 6" }, { "date": "Oct 18, 2020", @@ -141997,7 +210322,12 @@ "sF": "12", "sU": "18", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2020 Regular Season - Week 6" }, { "date": "Oct 18, 2020", @@ -142007,7 +210337,12 @@ "sF": "20", "sU": "19", "spread": "2", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.25, + "sF": 22.25 + }, + "week": "2020 Regular Season - Week 6" }, { "date": "Oct 18, 2020", @@ -142016,8 +210351,13 @@ "und": "Philadelphia Eagles", "sF": "30", "sU": "28", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 46.5, + "pScore": { + "sU": 18.0, + "sF": 28.5 + }, + "week": "2020 Regular Season - Week 6" }, { "date": "Oct 18, 2020", @@ -142027,7 +210367,12 @@ "sF": "38", "sU": "7", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "2020 Regular Season - Week 6" }, { "date": "Oct 18, 2020", @@ -142037,7 +210382,12 @@ "sF": "42", "sU": "36", "spread": "4", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 24.0, + "sF": 28.0 + }, + "week": "2020 Regular Season - Week 6" }, { "date": "Oct 18, 2020", @@ -142047,7 +210397,12 @@ "sF": "24", "sU": "0", "spread": "10", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.0, + "sF": 28.0 + }, + "week": "2020 Regular Season - Week 6" }, { "date": "Oct 18, 2020", @@ -142057,7 +210412,12 @@ "sF": "10", "sU": "38", "spread": "3", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 26.0, + "sF": 29.0 + }, + "week": "2020 Regular Season - Week 6" }, { "date": "Oct 18, 2020", @@ -142066,12 +210426,13 @@ "und": "San Francisco 49ers", "sF": "16", "sU": "24", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": 51.0, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 24.25, + "sF": 26.75 + }, + "week": "2020 Regular Season - Week 6" }, { "date": "Oct 19, 2020", @@ -142080,8 +210441,13 @@ "und": "Buffalo Bills", "sF": "26", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 55.0, + "pScore": { + "sU": 24.75, + "sF": 30.25 + }, + "week": "2020 Regular Season - Week 6" }, { "date": "Oct 19, 2020", @@ -142091,7 +210457,12 @@ "sF": "10", "sU": "38", "spread": "1", - "ou": -1 + "ou": 55.5, + "pScore": { + "sU": 27.25, + "sF": 28.25 + }, + "week": "2020 Regular Season - Week 6" }, { "date": "Oct 22, 2020", @@ -142101,7 +210472,12 @@ "sF": "22", "sU": "21", "spread": "5", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.75, + "sF": 24.75 + }, + "week": "2020 Regular Season - Week 7" }, { "date": "Oct 25, 2020", @@ -142111,7 +210487,12 @@ "sF": "22", "sU": "23", "spread": "1", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 26.5, + "sF": 27.5 + }, + "week": "2020 Regular Season - Week 7" }, { "date": "Oct 25, 2020", @@ -142120,8 +210501,13 @@ "und": "Cincinnati Bengals", "sF": "37", "sU": "34", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 50.0, + "pScore": { + "sU": 22.75, + "sF": 27.25 + }, + "week": "2020 Regular Season - Week 7" }, { "date": "Oct 25, 2020", @@ -142130,8 +210516,13 @@ "und": "Houston Texans", "sF": "35", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 55.5, + "pScore": { + "sU": 26.5, + "sF": 29.0 + }, + "week": "2020 Regular Season - Week 7" }, { "date": "Oct 25, 2020", @@ -142141,7 +210532,12 @@ "sF": "27", "sU": "24", "spread": "7", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 21.25, + "sF": 28.25 + }, + "week": "2020 Regular Season - Week 7" }, { "date": "Oct 25, 2020", @@ -142150,8 +210546,13 @@ "und": "New York Jets", "sF": "18", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 47.0, + "pScore": { + "sU": 18.75, + "sF": 28.25 + }, + "week": "2020 Regular Season - Week 7" }, { "date": "Oct 25, 2020", @@ -142161,7 +210562,12 @@ "sF": "24", "sU": "27", "spread": "1", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 25.0, + "sF": 26.0 + }, + "week": "2020 Regular Season - Week 7" }, { "date": "Oct 25, 2020", @@ -142171,7 +210577,12 @@ "sF": "3", "sU": "25", "spread": "1", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.75, + "sF": 22.75 + }, + "week": "2020 Regular Season - Week 7" }, { "date": "Oct 25, 2020", @@ -142180,8 +210591,13 @@ "und": "Las Vegas Raiders", "sF": "45", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 51.5, + "pScore": { + "sU": 24.0, + "sF": 27.5 + }, + "week": "2020 Regular Season - Week 7" }, { "date": "Oct 25, 2020", @@ -142191,7 +210607,12 @@ "sF": "43", "sU": "16", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "2020 Regular Season - Week 7" }, { "date": "Oct 25, 2020", @@ -142201,7 +210622,12 @@ "sF": "39", "sU": "29", "spread": "8", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.0, + "sF": 28.0 + }, + "week": "2020 Regular Season - Week 7" }, { "date": "Oct 25, 2020", @@ -142211,11 +210637,12 @@ "sF": "6", "sU": "33", "spread": "3", - "ou": "49", + "ou": 44.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 20.75, + "sF": 23.75 + }, + "week": "2020 Regular Season - Week 7" }, { "date": "Oct 25, 2020", @@ -142224,8 +210651,13 @@ "und": "Arizona Cardinals", "sF": "34", "sU": "37", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 55.5, + "pScore": { + "sU": 26.0, + "sF": 29.5 + }, + "week": "2020 Regular Season - Week 7" }, { "date": "Oct 26, 2020", @@ -142234,8 +210666,13 @@ "und": "Chicago Bears", "sF": "24", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2020 Regular Season - Week 7" }, { "date": "Oct 29, 2020", @@ -142244,8 +210681,13 @@ "und": "Atlanta Falcons", "sF": "17", "sU": "25", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 52.0, + "pScore": { + "sU": 25.25, + "sF": 26.75 + }, + "week": "2020 Regular Season - Week 8" }, { "date": "Nov 1, 2020", @@ -142255,7 +210697,12 @@ "sF": "24", "sU": "28", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2020 Regular Season - Week 8" }, { "date": "Nov 1, 2020", @@ -142265,7 +210712,12 @@ "sF": "24", "sU": "21", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "2020 Regular Season - Week 8" }, { "date": "Nov 1, 2020", @@ -142274,8 +210726,13 @@ "und": "Cincinnati Bengals", "sF": "20", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 49.5, + "pScore": { + "sU": 21.0, + "sF": 28.5 + }, + "week": "2020 Regular Season - Week 8" }, { "date": "Nov 1, 2020", @@ -142285,7 +210742,12 @@ "sF": "6", "sU": "16", "spread": "1", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.5, + "sF": 24.5 + }, + "week": "2020 Regular Season - Week 8" }, { "date": "Nov 1, 2020", @@ -142294,8 +210756,13 @@ "und": "Detroit Lions", "sF": "41", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.0, + "pScore": { + "sU": 22.75, + "sF": 26.25 + }, + "week": "2020 Regular Season - Week 8" }, { "date": "Nov 1, 2020", @@ -142304,8 +210771,13 @@ "und": "Minnesota Vikings", "sF": "22", "sU": "28", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.0, + "pScore": { + "sU": 20.75, + "sF": 26.25 + }, + "week": "2020 Regular Season - Week 8" }, { "date": "Nov 1, 2020", @@ -142315,7 +210787,12 @@ "sF": "35", "sU": "9", "spread": "20", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 14.5, + "sF": 34.5 + }, + "week": "2020 Regular Season - Week 8" }, { "date": "Nov 1, 2020", @@ -142324,8 +210801,13 @@ "und": "Miami Dolphins", "sF": "17", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "2020 Regular Season - Week 8" }, { "date": "Nov 1, 2020", @@ -142335,7 +210817,12 @@ "sF": "30", "sU": "31", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2020 Regular Season - Week 8" }, { "date": "Nov 1, 2020", @@ -142344,8 +210831,13 @@ "und": "Chicago Bears", "sF": "26", "sU": "23", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.0, + "pScore": { + "sU": 17.75, + "sF": 23.25 + }, + "week": "2020 Regular Season - Week 8" }, { "date": "Nov 1, 2020", @@ -142355,11 +210847,12 @@ "sF": "37", "sU": "27", "spread": "1", - "ou": "49", + "ou": 54.5, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 26.75, + "sF": 27.75 + }, + "week": "2020 Regular Season - Week 8" }, { "date": "Nov 1, 2020", @@ -142368,8 +210861,13 @@ "und": "Dallas Cowboys", "sF": "23", "sU": "9", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.0, + "pScore": { + "sU": 16.25, + "sF": 26.75 + }, + "week": "2020 Regular Season - Week 8" }, { "date": "Nov 2, 2020", @@ -142379,7 +210877,12 @@ "sF": "25", "sU": "23", "spread": "13", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 17.0, + "sF": 30.0 + }, + "week": "2020 Regular Season - Week 8" }, { "date": "Nov 5, 2020", @@ -142389,11 +210892,12 @@ "sF": "34", "sU": "17", "spread": "6", - "ou": "49", + "ou": 48.5, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 21.25, + "sF": 27.25 + }, + "week": "2020 Regular Season - Week 9" }, { "date": "Nov 8, 2020", @@ -142402,8 +210906,13 @@ "und": "Denver Broncos", "sF": "34", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 50.5, + "pScore": { + "sU": 23.0, + "sF": 27.5 + }, + "week": "2020 Regular Season - Week 9" }, { "date": "Nov 8, 2020", @@ -142413,7 +210922,12 @@ "sF": "34", "sU": "44", "spread": "3", - "ou": -1 + "ou": 55.5, + "pScore": { + "sU": 26.25, + "sF": 29.25 + }, + "week": "2020 Regular Season - Week 9" }, { "date": "Nov 8, 2020", @@ -142423,7 +210937,12 @@ "sF": "10", "sU": "24", "spread": "1", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 23.25, + "sF": 24.25 + }, + "week": "2020 Regular Season - Week 9" }, { "date": "Nov 8, 2020", @@ -142433,7 +210952,12 @@ "sF": "27", "sU": "25", "spread": "7", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.0, + "sF": 28.0 + }, + "week": "2020 Regular Season - Week 9" }, { "date": "Nov 8, 2020", @@ -142443,7 +210967,12 @@ "sF": "33", "sU": "31", "spread": "10", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 20.75, + "sF": 30.75 + }, + "week": "2020 Regular Season - Week 9" }, { "date": "Nov 8, 2020", @@ -142453,7 +210982,12 @@ "sF": "34", "sU": "20", "spread": "3", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 24.25, + "sF": 27.25 + }, + "week": "2020 Regular Season - Week 9" }, { "date": "Nov 8, 2020", @@ -142462,8 +210996,13 @@ "und": "Chicago Bears", "sF": "24", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.5, + "pScore": { + "sU": 20.0, + "sF": 26.5 + }, + "week": "2020 Regular Season - Week 9" }, { "date": "Nov 8, 2020", @@ -142473,7 +211012,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2020 Regular Season - Week 9" }, { "date": "Nov 8, 2020", @@ -142483,7 +211027,12 @@ "sF": "31", "sU": "26", "spread": "1", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 25.75, + "sF": 26.75 + }, + "week": "2020 Regular Season - Week 9" }, { "date": "Nov 8, 2020", @@ -142493,7 +211042,12 @@ "sF": "31", "sU": "34", "spread": "6", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.5, + "sF": 27.5 + }, + "week": "2020 Regular Season - Week 9" }, { "date": "Nov 8, 2020", @@ -142503,7 +211057,12 @@ "sF": "24", "sU": "19", "spread": "14", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 15.0, + "sF": 29.0 + }, + "week": "2020 Regular Season - Week 9" }, { "date": "Nov 8, 2020", @@ -142513,7 +211072,12 @@ "sF": "3", "sU": "38", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2020 Regular Season - Week 9" }, { "date": "Nov 9, 2020", @@ -142523,7 +211087,12 @@ "sF": "30", "sU": "27", "spread": "9", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.5, + "sF": 25.5 + }, + "week": "2020 Regular Season - Week 9" }, { "date": "Nov 12, 2020", @@ -142533,7 +211102,12 @@ "sF": "34", "sU": "17", "spread": "1", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 24.25, + "sF": 25.25 + }, + "week": "2020 Regular Season - Week 10" }, { "date": "Nov 15, 2020", @@ -142543,7 +211117,12 @@ "sF": "46", "sU": "23", "spread": "6", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 21.75, + "sF": 27.75 + }, + "week": "2020 Regular Season - Week 10" }, { "date": "Nov 15, 2020", @@ -142552,8 +211131,13 @@ "und": "Houston Texans", "sF": "10", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.5, + "pScore": { + "sU": 21.0, + "sF": 25.5 + }, + "week": "2020 Regular Season - Week 10" }, { "date": "Nov 15, 2020", @@ -142562,8 +211146,13 @@ "und": "Washington Football Team", "sF": "30", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2020 Regular Season - Week 10" }, { "date": "Nov 15, 2020", @@ -142572,8 +211161,13 @@ "und": "Jacksonville Jaguars", "sF": "24", "sU": "20", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 47.5, + "pScore": { + "sU": 17.0, + "sF": 30.5 + }, + "week": "2020 Regular Season - Week 10" }, { "date": "Nov 15, 2020", @@ -142583,7 +211177,12 @@ "sF": "17", "sU": "27", "spread": "5", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.75, + "sF": 25.75 + }, + "week": "2020 Regular Season - Week 10" }, { "date": "Nov 15, 2020", @@ -142593,7 +211192,12 @@ "sF": "32", "sU": "30", "spread": "3", - "ou": -1 + "ou": 56.0, + "pScore": { + "sU": 26.5, + "sF": 29.5 + }, + "week": "2020 Regular Season - Week 10" }, { "date": "Nov 15, 2020", @@ -142602,8 +211206,13 @@ "und": "Denver Broncos", "sF": "37", "sU": "12", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 50.0, + "pScore": { + "sU": 23.25, + "sF": 26.75 + }, + "week": "2020 Regular Season - Week 10" }, { "date": "Nov 15, 2020", @@ -142612,8 +211221,13 @@ "und": "Los Angeles Chargers", "sF": "29", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 49.0, + "pScore": { + "sU": 23.75, + "sF": 25.25 + }, + "week": "2020 Regular Season - Week 10" }, { "date": "Nov 15, 2020", @@ -142623,7 +211237,12 @@ "sF": "23", "sU": "16", "spread": "3", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 26.0, + "sF": 29.0 + }, + "week": "2020 Regular Season - Week 10" }, { "date": "Nov 15, 2020", @@ -142632,12 +211251,13 @@ "und": "San Francisco 49ers", "sF": "27", "sU": "13", - "spread": "9", - "ou": "49", + "spread": "9.5", + "ou": 50.0, "pScore": { - "sU": 20, - "sF": 29 - } + "sU": 20.25, + "sF": 29.75 + }, + "week": "2020 Regular Season - Week 10" }, { "date": "Nov 15, 2020", @@ -142646,8 +211266,13 @@ "und": "Cincinnati Bengals", "sF": "36", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.0, + "pScore": { + "sU": 19.75, + "sF": 26.25 + }, + "week": "2020 Regular Season - Week 10" }, { "date": "Nov 15, 2020", @@ -142657,7 +211282,12 @@ "sF": "17", "sU": "23", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2020 Regular Season - Week 10" }, { "date": "Nov 16, 2020", @@ -142666,8 +211296,13 @@ "und": "Chicago Bears", "sF": "19", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "2020 Regular Season - Week 10" }, { "date": "Nov 19, 2020", @@ -142677,7 +211312,12 @@ "sF": "28", "sU": "21", "spread": "3", - "ou": -1 + "ou": 56.5, + "pScore": { + "sU": 26.75, + "sF": 29.75 + }, + "week": "2020 Regular Season - Week 11" }, { "date": "Nov 22, 2020", @@ -142687,7 +211327,12 @@ "sF": "24", "sU": "30", "spread": "6", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 22.25, + "sF": 28.25 + }, + "week": "2020 Regular Season - Week 11" }, { "date": "Nov 22, 2020", @@ -142697,7 +211342,12 @@ "sF": "0", "sU": "20", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2020 Regular Season - Week 11" }, { "date": "Nov 22, 2020", @@ -142706,8 +211356,13 @@ "und": "Philadelphia Eagles", "sF": "22", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2020 Regular Season - Week 11" }, { "date": "Nov 22, 2020", @@ -142716,8 +211371,13 @@ "und": "Houston Texans", "sF": "20", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.5, + "pScore": { + "sU": 23.5, + "sF": 26.0 + }, + "week": "2020 Regular Season - Week 11" }, { "date": "Nov 22, 2020", @@ -142727,7 +211387,12 @@ "sF": "27", "sU": "3", "spread": "11", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 18.25, + "sF": 29.25 + }, + "week": "2020 Regular Season - Week 11" }, { "date": "Nov 22, 2020", @@ -142736,8 +211401,13 @@ "und": "Atlanta Falcons", "sF": "24", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "2020 Regular Season - Week 11" }, { "date": "Nov 22, 2020", @@ -142747,7 +211417,12 @@ "sF": "20", "sU": "9", "spread": "2", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.0, + "sF": 25.0 + }, + "week": "2020 Regular Season - Week 11" }, { "date": "Nov 22, 2020", @@ -142757,7 +211432,12 @@ "sF": "13", "sU": "20", "spread": "4", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.0, + "sF": 25.0 + }, + "week": "2020 Regular Season - Week 11" }, { "date": "Nov 22, 2020", @@ -142767,7 +211447,12 @@ "sF": "34", "sU": "28", "spread": "10", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 18.5, + "sF": 28.5 + }, + "week": "2020 Regular Season - Week 11" }, { "date": "Nov 22, 2020", @@ -142776,8 +211461,13 @@ "und": "Green Bay Packers", "sF": "34", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 52.5, + "pScore": { + "sU": 25.5, + "sF": 27.0 + }, + "week": "2020 Regular Season - Week 11" }, { "date": "Nov 22, 2020", @@ -142787,7 +211477,12 @@ "sF": "28", "sU": "31", "spread": "7", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 21.25, + "sF": 28.25 + }, + "week": "2020 Regular Season - Week 11" }, { "date": "Nov 22, 2020", @@ -142796,8 +211491,13 @@ "und": "Las Vegas Raiders", "sF": "35", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 56.5, + "pScore": { + "sU": 24.5, + "sF": 32.0 + }, + "week": "2020 Regular Season - Week 11" }, { "date": "Nov 23, 2020", @@ -142807,7 +211507,12 @@ "sF": "24", "sU": "27", "spread": "4", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 21.75, + "sF": 25.75 + }, + "week": "2020 Regular Season - Week 11" }, { "date": "Nov 26, 2020", @@ -142817,7 +211522,12 @@ "sF": "41", "sU": "25", "spread": "3", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 24.75, + "sF": 27.75 + }, + "week": "2020 Regular Season - Week 12" }, { "date": "Nov 26, 2020", @@ -142826,8 +211536,13 @@ "und": "Washington Football Team", "sF": "16", "sU": "41", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "2020 Regular Season - Week 12" }, { "date": "Nov 29, 2020", @@ -142836,8 +211551,13 @@ "und": "Atlanta Falcons", "sF": "6", "sU": "43", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 53.0, + "pScore": { + "sU": 24.75, + "sF": 28.25 + }, + "week": "2020 Regular Season - Week 12" }, { "date": "Nov 29, 2020", @@ -142846,8 +211566,13 @@ "und": "Los Angeles Chargers", "sF": "27", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 51.5, + "pScore": { + "sU": 23.5, + "sF": 28.0 + }, + "week": "2020 Regular Season - Week 12" }, { "date": "Nov 29, 2020", @@ -142856,8 +211581,13 @@ "und": "Cincinnati Bengals", "sF": "19", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "2020 Regular Season - Week 12" }, { "date": "Nov 29, 2020", @@ -142867,7 +211597,12 @@ "sF": "26", "sU": "45", "spread": "3", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 24.25, + "sF": 27.25 + }, + "week": "2020 Regular Season - Week 12" }, { "date": "Nov 29, 2020", @@ -142876,8 +211611,13 @@ "und": "Jacksonville Jaguars", "sF": "27", "sU": "25", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2020 Regular Season - Week 12" }, { "date": "Nov 29, 2020", @@ -142887,7 +211627,12 @@ "sF": "28", "sU": "27", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "2020 Regular Season - Week 12" }, { "date": "Nov 29, 2020", @@ -142897,7 +211642,12 @@ "sF": "17", "sU": "20", "spread": "1", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 25.0, + "sF": 26.0 + }, + "week": "2020 Regular Season - Week 12" }, { "date": "Nov 29, 2020", @@ -142906,8 +211656,13 @@ "und": "New York Jets", "sF": "20", "sU": "3", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.5, + "pScore": { + "sU": 19.5, + "sF": 27.0 + }, + "week": "2020 Regular Season - Week 12" }, { "date": "Nov 29, 2020", @@ -142917,7 +211672,12 @@ "sF": "31", "sU": "3", "spread": "17", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 9.75, + "sF": 26.75 + }, + "week": "2020 Regular Season - Week 12" }, { "date": "Nov 29, 2020", @@ -142927,11 +211687,12 @@ "sF": "20", "sU": "23", "spread": "5", - "ou": "49", + "ou": 45.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 20.0, + "sF": 25.0 + }, + "week": "2020 Regular Season - Week 12" }, { "date": "Nov 29, 2020", @@ -142940,8 +211701,13 @@ "und": "Tampa Bay Buccaneers", "sF": "27", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 56.0, + "pScore": { + "sU": 26.25, + "sF": 29.75 + }, + "week": "2020 Regular Season - Week 12" }, { "date": "Nov 29, 2020", @@ -142950,8 +211716,13 @@ "und": "Chicago Bears", "sF": "41", "sU": "25", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "2020 Regular Season - Week 12" }, { "date": "Nov 30, 2020", @@ -142960,8 +211731,13 @@ "und": "Philadelphia Eagles", "sF": "23", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 50.0, + "pScore": { + "sU": 21.75, + "sF": 28.25 + }, + "week": "2020 Regular Season - Week 12" }, { "date": "Dec 2, 2020", @@ -142971,7 +211747,12 @@ "sF": "19", "sU": "14", "spread": "10", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.0, + "sF": 26.0 + }, + "week": "2020 Regular Season - Week 12" }, { "date": "Dec 6, 2020", @@ -142980,8 +211761,13 @@ "und": "Atlanta Falcons", "sF": "21", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "2020 Regular Season - Week 13" }, { "date": "Dec 6, 2020", @@ -142991,7 +211777,12 @@ "sF": "30", "sU": "34", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2020 Regular Season - Week 13" }, { "date": "Dec 6, 2020", @@ -143000,8 +211791,13 @@ "und": "Houston Texans", "sF": "26", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 50.0, + "pScore": { + "sU": 23.25, + "sF": 26.75 + }, + "week": "2020 Regular Season - Week 13" }, { "date": "Dec 6, 2020", @@ -143010,8 +211806,13 @@ "und": "Cincinnati Bengals", "sF": "19", "sU": "7", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.0, + "pScore": { + "sU": 16.25, + "sF": 26.75 + }, + "week": "2020 Regular Season - Week 13" }, { "date": "Dec 6, 2020", @@ -143020,8 +211821,13 @@ "und": "Jacksonville Jaguars", "sF": "27", "sU": "24", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 51.5, + "pScore": { + "sU": 20.5, + "sF": 31.0 + }, + "week": "2020 Regular Season - Week 13" }, { "date": "Dec 6, 2020", @@ -143030,8 +211836,13 @@ "und": "New York Jets", "sF": "31", "sU": "28", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.5, + "pScore": { + "sU": 20.5, + "sF": 28.0 + }, + "week": "2020 Regular Season - Week 13" }, { "date": "Dec 6, 2020", @@ -143041,7 +211852,12 @@ "sF": "35", "sU": "41", "spread": "4", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 25.0, + "sF": 29.0 + }, + "week": "2020 Regular Season - Week 13" }, { "date": "Dec 6, 2020", @@ -143050,8 +211866,13 @@ "und": "Arizona Cardinals", "sF": "38", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.0, + "pScore": { + "sU": 23.25, + "sF": 25.75 + }, + "week": "2020 Regular Season - Week 13" }, { "date": "Dec 6, 2020", @@ -143061,7 +211882,12 @@ "sF": "12", "sU": "17", "spread": "11", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 18.75, + "sF": 29.75 + }, + "week": "2020 Regular Season - Week 13" }, { "date": "Dec 6, 2020", @@ -143071,7 +211897,12 @@ "sF": "30", "sU": "16", "spread": "8", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 21.0, + "sF": 29.0 + }, + "week": "2020 Regular Season - Week 13" }, { "date": "Dec 6, 2020", @@ -143081,7 +211912,12 @@ "sF": "0", "sU": "45", "spread": "2", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.25, + "sF": 24.25 + }, + "week": "2020 Regular Season - Week 13" }, { "date": "Dec 6, 2020", @@ -143091,7 +211927,12 @@ "sF": "22", "sU": "16", "spread": "13", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 19.25, + "sF": 32.25 + }, + "week": "2020 Regular Season - Week 13" }, { "date": "Dec 7, 2020", @@ -143100,8 +211941,13 @@ "und": "Washington Football Team", "sF": "17", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2020 Regular Season - Week 13" }, { "date": "Dec 7, 2020", @@ -143110,8 +211956,13 @@ "und": "Buffalo Bills", "sF": "24", "sU": "34", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 48.0, + "pScore": { + "sU": 23.25, + "sF": 24.75 + }, + "week": "2020 Regular Season - Week 13" }, { "date": "Dec 8, 2020", @@ -143121,7 +211972,12 @@ "sF": "34", "sU": "17", "spread": "8", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 18.75, + "sF": 26.75 + }, + "week": "2020 Regular Season - Week 13" }, { "date": "Dec 10, 2020", @@ -143131,7 +211987,12 @@ "sF": "24", "sU": "3", "spread": "5", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.25, + "sF": 24.25 + }, + "week": "2020 Regular Season - Week 14" }, { "date": "Dec 13, 2020", @@ -143141,7 +212002,12 @@ "sF": "27", "sU": "32", "spread": "4", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.25, + "sF": 25.25 + }, + "week": "2020 Regular Season - Week 14" }, { "date": "Dec 13, 2020", @@ -143151,7 +212017,12 @@ "sF": "7", "sU": "36", "spread": "1", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.75, + "sF": 23.75 + }, + "week": "2020 Regular Season - Week 14" }, { "date": "Dec 13, 2020", @@ -143161,7 +212032,12 @@ "sF": "30", "sU": "7", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2020 Regular Season - Week 14" }, { "date": "Dec 13, 2020", @@ -143170,8 +212046,13 @@ "und": "Jacksonville Jaguars", "sF": "31", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 52.5, + "pScore": { + "sU": 22.5, + "sF": 30.0 + }, + "week": "2020 Regular Season - Week 14" }, { "date": "Dec 13, 2020", @@ -143180,8 +212061,13 @@ "und": "Miami Dolphins", "sF": "33", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 52.0, + "pScore": { + "sU": 22.25, + "sF": 29.75 + }, + "week": "2020 Regular Season - Week 14" }, { "date": "Dec 13, 2020", @@ -143191,7 +212077,12 @@ "sF": "26", "sU": "7", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2020 Regular Season - Week 14" }, { "date": "Dec 13, 2020", @@ -143201,7 +212092,12 @@ "sF": "26", "sU": "14", "spread": "7", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 22.5, + "sF": 29.5 + }, + "week": "2020 Regular Season - Week 14" }, { "date": "Dec 13, 2020", @@ -143210,8 +212106,13 @@ "und": "Las Vegas Raiders", "sF": "44", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 52.0, + "pScore": { + "sU": 24.75, + "sF": 27.25 + }, + "week": "2020 Regular Season - Week 14" }, { "date": "Dec 13, 2020", @@ -143220,8 +212121,13 @@ "und": "New York Jets", "sF": "40", "sU": "3", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 50.5, + "pScore": { + "sU": 17.0, + "sF": 33.5 + }, + "week": "2020 Regular Season - Week 14" }, { "date": "Dec 13, 2020", @@ -143230,8 +212136,13 @@ "und": "Detroit Lions", "sF": "31", "sU": "24", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 55.5, + "pScore": { + "sU": 23.0, + "sF": 32.5 + }, + "week": "2020 Regular Season - Week 14" }, { "date": "Dec 13, 2020", @@ -143241,7 +212152,12 @@ "sF": "20", "sU": "17", "spread": "1", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 24.25, + "sF": 25.25 + }, + "week": "2020 Regular Season - Week 14" }, { "date": "Dec 13, 2020", @@ -143250,8 +212166,13 @@ "und": "Philadelphia Eagles", "sF": "21", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.0, + "pScore": { + "sU": 17.75, + "sF": 25.25 + }, + "week": "2020 Regular Season - Week 14" }, { "date": "Dec 13, 2020", @@ -143261,7 +212182,12 @@ "sF": "15", "sU": "23", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2020 Regular Season - Week 14" }, { "date": "Dec 13, 2020", @@ -143271,7 +212197,12 @@ "sF": "26", "sU": "15", "spread": "2", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.25, + "sF": 25.25 + }, + "week": "2020 Regular Season - Week 14" }, { "date": "Dec 14, 2020", @@ -143281,7 +212212,12 @@ "sF": "47", "sU": "42", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2020 Regular Season - Week 14" }, { "date": "Dec 17, 2020", @@ -143290,8 +212226,13 @@ "und": "Los Angeles Chargers", "sF": "27", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 52.5, + "pScore": { + "sU": 24.5, + "sF": 28.0 + }, + "week": "2020 Regular Season - Week 15" }, { "date": "Dec 19, 2020", @@ -143300,8 +212241,13 @@ "und": "Denver Broncos", "sF": "48", "sU": "19", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 49.0, + "pScore": { + "sU": 21.75, + "sF": 27.25 + }, + "week": "2020 Regular Season - Week 15" }, { "date": "Dec 19, 2020", @@ -143311,7 +212257,12 @@ "sF": "24", "sU": "16", "spread": "8", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 21.75, + "sF": 29.75 + }, + "week": "2020 Regular Season - Week 15" }, { "date": "Dec 20, 2020", @@ -143321,7 +212272,12 @@ "sF": "31", "sU": "27", "spread": "6", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 21.75, + "sF": 27.75 + }, + "week": "2020 Regular Season - Week 15" }, { "date": "Dec 20, 2020", @@ -143331,7 +212287,12 @@ "sF": "40", "sU": "14", "spread": "13", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 18.0, + "sF": 31.0 + }, + "week": "2020 Regular Season - Week 15" }, { "date": "Dec 20, 2020", @@ -143341,7 +212302,12 @@ "sF": "33", "sU": "41", "spread": "4", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.0, + "sF": 25.0 + }, + "week": "2020 Regular Season - Week 15" }, { "date": "Dec 20, 2020", @@ -143350,8 +212316,13 @@ "und": "Houston Texans", "sF": "27", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 52.5, + "pScore": { + "sU": 22.5, + "sF": 30.0 + }, + "week": "2020 Regular Season - Week 15" }, { "date": "Dec 20, 2020", @@ -143360,8 +212331,13 @@ "und": "Miami Dolphins", "sF": "12", "sU": "22", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.5, + "pScore": { + "sU": 19.5, + "sF": 21.0 + }, + "week": "2020 Regular Season - Week 15" }, { "date": "Dec 20, 2020", @@ -143370,8 +212346,13 @@ "und": "Chicago Bears", "sF": "27", "sU": "33", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.5, + "pScore": { + "sU": 22.5, + "sF": 25.0 + }, + "week": "2020 Regular Season - Week 15" }, { "date": "Dec 20, 2020", @@ -143380,8 +212361,13 @@ "und": "Detroit Lions", "sF": "46", "sU": "25", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 54.5, + "pScore": { + "sU": 22.5, + "sF": 32.0 + }, + "week": "2020 Regular Season - Week 15" }, { "date": "Dec 20, 2020", @@ -143391,7 +212377,12 @@ "sF": "20", "sU": "15", "spread": "6", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.25, + "sF": 25.25 + }, + "week": "2020 Regular Season - Week 15" }, { "date": "Dec 20, 2020", @@ -143400,8 +212391,13 @@ "und": "Philadelphia Eagles", "sF": "33", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.5, + "pScore": { + "sU": 21.5, + "sF": 28.0 + }, + "week": "2020 Regular Season - Week 15" }, { "date": "Dec 20, 2020", @@ -143410,8 +212406,13 @@ "und": "New York Jets", "sF": "20", "sU": "23", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": 44.5, + "pScore": { + "sU": 13.5, + "sF": 31.0 + }, + "week": "2020 Regular Season - Week 15" }, { "date": "Dec 20, 2020", @@ -143420,8 +212421,13 @@ "und": "New Orleans Saints", "sF": "32", "sU": "29", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 54.0, + "pScore": { + "sU": 25.75, + "sF": 28.25 + }, + "week": "2020 Regular Season - Week 15" }, { "date": "Dec 20, 2020", @@ -143431,7 +212437,12 @@ "sF": "20", "sU": "6", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "2020 Regular Season - Week 15" }, { "date": "Dec 21, 2020", @@ -143440,8 +212451,13 @@ "und": "Cincinnati Bengals", "sF": "17", "sU": "27", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 40.5, + "pScore": { + "sU": 13.0, + "sF": 27.5 + }, + "week": "2020 Regular Season - Week 15" }, { "date": "Dec 25, 2020", @@ -143450,8 +212466,13 @@ "und": "Minnesota Vikings", "sF": "52", "sU": "33", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.5, + "pScore": { + "sU": 21.0, + "sF": 27.5 + }, + "week": "2020 Regular Season - Week 16" }, { "date": "Dec 26, 2020", @@ -143460,8 +212481,13 @@ "und": "Detroit Lions", "sF": "47", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 54.0, + "pScore": { + "sU": 22.25, + "sF": 31.75 + }, + "week": "2020 Regular Season - Week 16" }, { "date": "Dec 26, 2020", @@ -143471,11 +212497,12 @@ "sF": "12", "sU": "20", "spread": "5", - "ou": "49", + "ou": 48.5, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 21.75, + "sF": 26.75 + }, + "week": "2020 Regular Season - Week 16" }, { "date": "Dec 26, 2020", @@ -143485,7 +212512,12 @@ "sF": "26", "sU": "25", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2020 Regular Season - Week 16" }, { "date": "Dec 27, 2020", @@ -143495,7 +212527,12 @@ "sF": "27", "sU": "13", "spread": "10", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.5, + "sF": 26.5 + }, + "week": "2020 Regular Season - Week 16" }, { "date": "Dec 27, 2020", @@ -143504,8 +212541,13 @@ "und": "Cincinnati Bengals", "sF": "31", "sU": "37", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.0, + "pScore": { + "sU": 19.25, + "sF": 26.75 + }, + "week": "2020 Regular Season - Week 16" }, { "date": "Dec 27, 2020", @@ -143514,8 +212556,13 @@ "und": "Jacksonville Jaguars", "sF": "41", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 47.0, + "pScore": { + "sU": 18.75, + "sF": 28.25 + }, + "week": "2020 Regular Season - Week 16" }, { "date": "Dec 27, 2020", @@ -143525,7 +212572,12 @@ "sF": "17", "sU": "14", "spread": "11", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 21.5, + "sF": 32.5 + }, + "week": "2020 Regular Season - Week 16" }, { "date": "Dec 27, 2020", @@ -143534,8 +212586,13 @@ "und": "New York Jets", "sF": "16", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "2020 Regular Season - Week 16" }, { "date": "Dec 27, 2020", @@ -143545,7 +212602,12 @@ "sF": "24", "sU": "28", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "2020 Regular Season - Week 16" }, { "date": "Dec 27, 2020", @@ -143554,8 +212616,13 @@ "und": "Denver Broncos", "sF": "19", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.5, + "pScore": { + "sU": 22.5, + "sF": 25.0 + }, + "week": "2020 Regular Season - Week 16" }, { "date": "Dec 27, 2020", @@ -143565,7 +212632,12 @@ "sF": "20", "sU": "13", "spread": "1", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 20.25, + "sF": 21.25 + }, + "week": "2020 Regular Season - Week 16" }, { "date": "Dec 27, 2020", @@ -143575,7 +212647,12 @@ "sF": "17", "sU": "37", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "2020 Regular Season - Week 16" }, { "date": "Dec 27, 2020", @@ -143584,8 +212661,13 @@ "und": "Los Angeles Rams", "sF": "20", "sU": "9", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.5, + "pScore": { + "sU": 23.0, + "sF": 24.5 + }, + "week": "2020 Regular Season - Week 16" }, { "date": "Dec 27, 2020", @@ -143595,7 +212677,12 @@ "sF": "40", "sU": "14", "spread": "3", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 24.75, + "sF": 27.75 + }, + "week": "2020 Regular Season - Week 16" }, { "date": "Dec 28, 2020", @@ -143605,7 +212692,12 @@ "sF": "38", "sU": "9", "spread": "7", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.25, + "sF": 27.25 + }, + "week": "2020 Regular Season - Week 16" }, { "date": "Jan 3, 2021", @@ -143614,8 +212706,13 @@ "und": "Buffalo Bills", "sF": "26", "sU": "56", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2020 Regular Season - Week 17" }, { "date": "Jan 3, 2021", @@ -143624,8 +212721,13 @@ "und": "Cincinnati Bengals", "sF": "38", "sU": "3", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 46.0, + "pScore": { + "sU": 16.25, + "sF": 29.75 + }, + "week": "2020 Regular Season - Week 17" }, { "date": "Jan 3, 2021", @@ -143634,8 +212736,13 @@ "und": "Pittsburgh Steelers", "sF": "24", "sU": "22", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 44.5, + "pScore": { + "sU": 17.0, + "sF": 27.5 + }, + "week": "2020 Regular Season - Week 17" }, { "date": "Jan 3, 2021", @@ -143645,7 +212752,12 @@ "sF": "37", "sU": "35", "spread": "3", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 25.25, + "sF": 28.25 + }, + "week": "2020 Regular Season - Week 17" }, { "date": "Jan 3, 2021", @@ -143655,7 +212767,12 @@ "sF": "28", "sU": "14", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2020 Regular Season - Week 17" }, { "date": "Jan 3, 2021", @@ -143664,8 +212781,13 @@ "und": "New York Giants", "sF": "19", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.5, + "pScore": { + "sU": 21.5, + "sF": 23.0 + }, + "week": "2020 Regular Season - Week 17" }, { "date": "Jan 3, 2021", @@ -143674,8 +212796,13 @@ "und": "Atlanta Falcons", "sF": "44", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 51.5, + "pScore": { + "sU": 22.0, + "sF": 29.5 + }, + "week": "2020 Regular Season - Week 17" }, { "date": "Jan 3, 2021", @@ -143685,7 +212812,12 @@ "sF": "33", "sU": "7", "spread": "6", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.5, + "sF": 26.5 + }, + "week": "2020 Regular Season - Week 17" }, { "date": "Jan 3, 2021", @@ -143694,8 +212826,13 @@ "und": "Chicago Bears", "sF": "35", "sU": "16", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.0, + "pScore": { + "sU": 21.75, + "sF": 26.25 + }, + "week": "2020 Regular Season - Week 17" }, { "date": "Jan 3, 2021", @@ -143704,8 +212841,13 @@ "und": "Denver Broncos", "sF": "32", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 50.5, + "pScore": { + "sU": 24.0, + "sF": 26.5 + }, + "week": "2020 Regular Season - Week 17" }, { "date": "Jan 3, 2021", @@ -143715,7 +212857,12 @@ "sF": "41", "sU": "38", "spread": "7", - "ou": -1 + "ou": 55.5, + "pScore": { + "sU": 24.25, + "sF": 31.25 + }, + "week": "2020 Regular Season - Week 17" }, { "date": "Jan 3, 2021", @@ -143724,8 +212871,13 @@ "und": "Jacksonville Jaguars", "sF": "28", "sU": "14", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 47.5, + "pScore": { + "sU": 16.0, + "sF": 31.5 + }, + "week": "2020 Regular Season - Week 17" }, { "date": "Jan 3, 2021", @@ -143735,7 +212887,12 @@ "sF": "38", "sU": "21", "spread": "7", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.0, + "sF": 25.0 + }, + "week": "2020 Regular Season - Week 17" }, { "date": "Jan 3, 2021", @@ -143745,7 +212902,12 @@ "sF": "18", "sU": "7", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "2020 Regular Season - Week 17" }, { "date": "Jan 3, 2021", @@ -143755,11 +212917,12 @@ "sF": "26", "sU": "23", "spread": "7", - "ou": "49", + "ou": 44.5, "pScore": { - "sU": 21, - "sF": 28 - } + "sU": 18.75, + "sF": 25.75 + }, + "week": "2020 Regular Season - Week 17" }, { "date": "Jan 3, 2021", @@ -143768,8 +212931,13 @@ "und": "Philadelphia Eagles", "sF": "20", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2020 Regular Season - Week 17" }, { "date": "Jan 9, 2021", @@ -143779,7 +212947,12 @@ "sF": "27", "sU": "24", "spread": "7", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 21.75, + "sF": 28.75 + }, + "week": "2020 Playoffs" }, { "date": "Jan 9, 2021", @@ -143789,7 +212962,12 @@ "sF": "20", "sU": "30", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2020 Playoffs" }, { "date": "Jan 9, 2021", @@ -143799,7 +212977,12 @@ "sF": "31", "sU": "23", "spread": "10", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.5, + "sF": 27.5 + }, + "week": "2020 Playoffs" }, { "date": "Jan 10, 2021", @@ -143808,8 +212991,13 @@ "und": "Tennessee Titans (4)", "sF": "20", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 53.5, + "pScore": { + "sU": 25.0, + "sF": 28.5 + }, + "week": "2020 Playoffs" }, { "date": "Jan 10, 2021", @@ -143819,7 +213007,12 @@ "sF": "21", "sU": "9", "spread": "11", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 18.5, + "sF": 29.5 + }, + "week": "2020 Playoffs" }, { "date": "Jan 10, 2021", @@ -143829,7 +213022,12 @@ "sF": "37", "sU": "48", "spread": "5", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.0, + "sF": 26.0 + }, + "week": "2020 Playoffs" }, { "date": "Jan 16, 2021", @@ -143839,7 +213037,12 @@ "sF": "32", "sU": "18", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "2020 Playoffs" }, { "date": "Jan 16, 2021", @@ -143848,8 +213051,13 @@ "und": "Baltimore Ravens (5)", "sF": "17", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.5, + "pScore": { + "sU": 23.5, + "sF": 26.0 + }, + "week": "2020 Playoffs" }, { "date": "Jan 17, 2021", @@ -143858,8 +213066,13 @@ "und": "Cleveland Browns (6)", "sF": "22", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 55.5, + "pScore": { + "sU": 24.0, + "sF": 31.5 + }, + "week": "2020 Playoffs" }, { "date": "Jan 17, 2021", @@ -143868,8 +213081,13 @@ "und": "Tampa Bay Buccaneers (5)", "sF": "20", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 53.0, + "pScore": { + "sU": 25.25, + "sF": 27.75 + }, + "week": "2020 Playoffs" }, { "date": "Jan 24, 2021", @@ -143879,7 +213097,12 @@ "sF": "26", "sU": "31", "spread": "3", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 25.0, + "sF": 28.0 + }, + "week": "2020 Playoffs" }, { "date": "Jan 24, 2021", @@ -143889,7 +213112,12 @@ "sF": "38", "sU": "24", "spread": "3", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 26.0, + "sF": 29.0 + }, + "week": "2020 Playoffs" }, { "date": "Feb 7, 2021", @@ -143899,7 +213127,12 @@ "sF": "9", "sU": "31", "spread": "3", - "ou": -1 + "ou": 55.5, + "pScore": { + "sU": 26.25, + "sF": 29.25 + }, + "week": "2020 Playoffs" }, { "date": "Sep 9, 2021", @@ -143908,8 +213141,13 @@ "und": "Dallas Cowboys", "sF": "31", "sU": "29", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 52.0, + "pScore": { + "sU": 21.75, + "sF": 30.25 + }, + "week": "2021 Regular Season - Week 1" }, { "date": "Sep 12, 2021", @@ -143918,8 +213156,13 @@ "und": "Philadelphia Eagles", "sF": "6", "sU": "32", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.0, + "pScore": { + "sU": 22.75, + "sF": 26.25 + }, + "week": "2021 Regular Season - Week 1" }, { "date": "Sep 12, 2021", @@ -143928,8 +213171,13 @@ "und": "Pittsburgh Steelers", "sF": "16", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.5, + "pScore": { + "sU": 21.0, + "sF": 27.5 + }, + "week": "2021 Regular Season - Week 1" }, { "date": "Sep 12, 2021", @@ -143939,7 +213187,12 @@ "sF": "19", "sU": "14", "spread": "4", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.5, + "sF": 24.5 + }, + "week": "2021 Regular Season - Week 1" }, { "date": "Sep 12, 2021", @@ -143949,7 +213202,12 @@ "sF": "24", "sU": "27", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2021 Regular Season - Week 1" }, { "date": "Sep 12, 2021", @@ -143959,7 +213217,12 @@ "sF": "41", "sU": "33", "spread": "9", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 18.25, + "sF": 27.25 + }, + "week": "2021 Regular Season - Week 1" }, { "date": "Sep 12, 2021", @@ -143969,7 +213232,12 @@ "sF": "21", "sU": "37", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2021 Regular Season - Week 1" }, { "date": "Sep 12, 2021", @@ -143979,7 +213247,12 @@ "sF": "28", "sU": "16", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2021 Regular Season - Week 1" }, { "date": "Sep 12, 2021", @@ -143989,7 +213262,12 @@ "sF": "13", "sU": "38", "spread": "3", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 25.25, + "sF": 28.25 + }, + "week": "2021 Regular Season - Week 1" }, { "date": "Sep 12, 2021", @@ -143998,8 +213276,13 @@ "und": "Los Angeles Chargers", "sF": "16", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.0, + "pScore": { + "sU": 21.75, + "sF": 23.25 + }, + "week": "2021 Regular Season - Week 1" }, { "date": "Sep 12, 2021", @@ -144008,8 +213291,13 @@ "und": "Cleveland Browns", "sF": "33", "sU": "29", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 54.5, + "pScore": { + "sU": 24.5, + "sF": 30.0 + }, + "week": "2021 Regular Season - Week 1" }, { "date": "Sep 12, 2021", @@ -144019,7 +213307,12 @@ "sF": "16", "sU": "17", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2021 Regular Season - Week 1" }, { "date": "Sep 12, 2021", @@ -144028,8 +213321,13 @@ "und": "New Orleans Saints", "sF": "3", "sU": "38", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "2021 Regular Season - Week 1" }, { "date": "Sep 12, 2021", @@ -144039,7 +213337,12 @@ "sF": "27", "sU": "13", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2021 Regular Season - Week 1" }, { "date": "Sep 12, 2021", @@ -144049,7 +213352,12 @@ "sF": "34", "sU": "14", "spread": "8", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.25, + "sF": 27.25 + }, + "week": "2021 Regular Season - Week 1" }, { "date": "Sep 13, 2021", @@ -144059,7 +213367,12 @@ "sF": "27", "sU": "33", "spread": "4", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 23.25, + "sF": 27.25 + }, + "week": "2021 Regular Season - Week 1" }, { "date": "Sep 16, 2021", @@ -144068,8 +213381,13 @@ "und": "New York Giants", "sF": "30", "sU": "29", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "2021 Regular Season - Week 2" }, { "date": "Sep 19, 2021", @@ -144079,7 +213397,12 @@ "sF": "7", "sU": "26", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2021 Regular Season - Week 2" }, { "date": "Sep 19, 2021", @@ -144088,8 +213411,13 @@ "und": "Cincinnati Bengals", "sF": "20", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.5, + "pScore": { + "sU": 21.5, + "sF": 23.0 + }, + "week": "2021 Regular Season - Week 2" }, { "date": "Sep 19, 2021", @@ -144098,8 +213426,13 @@ "und": "Houston Texans", "sF": "31", "sU": "21", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 48.0, + "pScore": { + "sU": 17.25, + "sF": 30.75 + }, + "week": "2021 Regular Season - Week 2" }, { "date": "Sep 19, 2021", @@ -144108,8 +213441,13 @@ "und": "Indianapolis Colts", "sF": "27", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "2021 Regular Season - Week 2" }, { "date": "Sep 19, 2021", @@ -144119,7 +213457,12 @@ "sF": "23", "sU": "13", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "2021 Regular Season - Week 2" }, { "date": "Sep 19, 2021", @@ -144128,8 +213471,13 @@ "und": "Miami Dolphins", "sF": "35", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2021 Regular Season - Week 2" }, { "date": "Sep 19, 2021", @@ -144139,7 +213487,12 @@ "sF": "25", "sU": "6", "spread": "6", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 18.5, + "sF": 24.5 + }, + "week": "2021 Regular Season - Week 2" }, { "date": "Sep 19, 2021", @@ -144149,7 +213502,12 @@ "sF": "17", "sU": "11", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2021 Regular Season - Week 2" }, { "date": "Sep 19, 2021", @@ -144159,7 +213517,12 @@ "sF": "17", "sU": "26", "spread": "6", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.5, + "sF": 26.5 + }, + "week": "2021 Regular Season - Week 2" }, { "date": "Sep 19, 2021", @@ -144168,8 +213531,13 @@ "und": "Minnesota Vikings", "sF": "34", "sU": "33", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 50.5, + "pScore": { + "sU": 23.5, + "sF": 27.0 + }, + "week": "2021 Regular Season - Week 2" }, { "date": "Sep 19, 2021", @@ -144178,8 +213546,13 @@ "und": "Atlanta Falcons", "sF": "48", "sU": "25", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 51.5, + "pScore": { + "sU": 19.5, + "sF": 32.0 + }, + "week": "2021 Regular Season - Week 2" }, { "date": "Sep 19, 2021", @@ -144189,7 +213562,12 @@ "sF": "17", "sU": "20", "spread": "3", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 26.0, + "sF": 29.0 + }, + "week": "2021 Regular Season - Week 2" }, { "date": "Sep 19, 2021", @@ -144198,8 +213576,13 @@ "und": "Tennessee Titans", "sF": "30", "sU": "33", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 54.0, + "pScore": { + "sU": 23.75, + "sF": 30.25 + }, + "week": "2021 Regular Season - Week 2" }, { "date": "Sep 19, 2021", @@ -144209,7 +213592,12 @@ "sF": "35", "sU": "36", "spread": "4", - "ou": -1 + "ou": 54.5, + "pScore": { + "sU": 25.25, + "sF": 29.25 + }, + "week": "2021 Regular Season - Week 2" }, { "date": "Sep 20, 2021", @@ -144218,8 +213606,13 @@ "und": "Detroit Lions", "sF": "35", "sU": "17", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 48.0, + "pScore": { + "sU": 18.25, + "sF": 29.75 + }, + "week": "2021 Regular Season - Week 2" }, { "date": "Sep 23, 2021", @@ -144229,7 +213622,12 @@ "sF": "24", "sU": "9", "spread": "9", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 17.25, + "sF": 26.25 + }, + "week": "2021 Regular Season - Week 3" }, { "date": "Sep 26, 2021", @@ -144239,7 +213637,12 @@ "sF": "43", "sU": "21", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "2021 Regular Season - Week 3" }, { "date": "Sep 26, 2021", @@ -144248,8 +213651,13 @@ "und": "Chicago Bears", "sF": "26", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.5, + "pScore": { + "sU": 18.5, + "sF": 26.0 + }, + "week": "2021 Regular Season - Week 3" }, { "date": "Sep 26, 2021", @@ -144258,8 +213666,13 @@ "und": "Detroit Lions", "sF": "19", "sU": "17", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 50.5, + "pScore": { + "sU": 21.5, + "sF": 29.0 + }, + "week": "2021 Regular Season - Week 3" }, { "date": "Sep 26, 2021", @@ -144268,8 +213681,13 @@ "und": "Jacksonville Jaguars", "sF": "31", "sU": "19", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 51.5, + "pScore": { + "sU": 22.0, + "sF": 29.5 + }, + "week": "2021 Regular Season - Week 3" }, { "date": "Sep 26, 2021", @@ -144279,7 +213697,12 @@ "sF": "24", "sU": "30", "spread": "7", - "ou": -1 + "ou": 54.5, + "pScore": { + "sU": 23.75, + "sF": 30.75 + }, + "week": "2021 Regular Season - Week 3" }, { "date": "Sep 26, 2021", @@ -144289,7 +213712,12 @@ "sF": "13", "sU": "28", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2021 Regular Season - Week 3" }, { "date": "Sep 26, 2021", @@ -144299,7 +213727,12 @@ "sF": "14", "sU": "17", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2021 Regular Season - Week 3" }, { "date": "Sep 26, 2021", @@ -144309,7 +213742,12 @@ "sF": "10", "sU": "24", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2021 Regular Season - Week 3" }, { "date": "Sep 26, 2021", @@ -144318,8 +213756,13 @@ "und": "Indianapolis Colts", "sF": "25", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.5, + "pScore": { + "sU": 21.0, + "sF": 26.5 + }, + "week": "2021 Regular Season - Week 3" }, { "date": "Sep 26, 2021", @@ -144329,7 +213772,12 @@ "sF": "26", "sU": "0", "spread": "10", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 15.75, + "sF": 25.75 + }, + "week": "2021 Regular Season - Week 3" }, { "date": "Sep 26, 2021", @@ -144339,7 +213787,12 @@ "sF": "31", "sU": "28", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2021 Regular Season - Week 3" }, { "date": "Sep 26, 2021", @@ -144348,8 +213801,13 @@ "und": "Los Angeles Rams", "sF": "24", "sU": "34", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 55.5, + "pScore": { + "sU": 27.0, + "sF": 28.5 + }, + "week": "2021 Regular Season - Week 3" }, { "date": "Sep 26, 2021", @@ -144359,7 +213817,12 @@ "sF": "17", "sU": "30", "spread": "2", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 26.5, + "sF": 28.5 + }, + "week": "2021 Regular Season - Week 3" }, { "date": "Sep 26, 2021", @@ -144369,7 +213832,12 @@ "sF": "28", "sU": "30", "spread": "3", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 23.75, + "sF": 26.75 + }, + "week": "2021 Regular Season - Week 3" }, { "date": "Sep 27, 2021", @@ -144378,8 +213846,13 @@ "und": "Philadelphia Eagles", "sF": "41", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 51.5, + "pScore": { + "sU": 24.0, + "sF": 27.5 + }, + "week": "2021 Regular Season - Week 3" }, { "date": "Sep 30, 2021", @@ -144388,8 +213861,13 @@ "und": "Jacksonville Jaguars", "sF": "24", "sU": "21", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.5, + "pScore": { + "sU": 19.5, + "sF": 27.0 + }, + "week": "2021 Regular Season - Week 4" }, { "date": "Oct 3, 2021", @@ -144399,7 +213877,12 @@ "sF": "34", "sU": "30", "spread": "2", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.0, + "sF": 25.0 + }, + "week": "2021 Regular Season - Week 4" }, { "date": "Oct 3, 2021", @@ -144408,8 +213891,13 @@ "und": "Houston Texans", "sF": "40", "sU": "0", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": 47.0, + "pScore": { + "sU": 14.75, + "sF": 32.25 + }, + "week": "2021 Regular Season - Week 4" }, { "date": "Oct 3, 2021", @@ -144419,7 +213907,12 @@ "sF": "24", "sU": "14", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2021 Regular Season - Week 4" }, { "date": "Oct 3, 2021", @@ -144429,7 +213922,12 @@ "sF": "36", "sU": "28", "spread": "4", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 23.75, + "sF": 27.75 + }, + "week": "2021 Regular Season - Week 4" }, { "date": "Oct 3, 2021", @@ -144438,8 +213936,13 @@ "und": "Indianapolis Colts", "sF": "17", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2021 Regular Season - Week 4" }, { "date": "Oct 3, 2021", @@ -144449,7 +213952,12 @@ "sF": "14", "sU": "7", "spread": "1", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 25.25, + "sF": 26.25 + }, + "week": "2021 Regular Season - Week 4" }, { "date": "Oct 3, 2021", @@ -144459,7 +213967,12 @@ "sF": "21", "sU": "27", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2021 Regular Season - Week 4" }, { "date": "Oct 3, 2021", @@ -144469,7 +213982,12 @@ "sF": "24", "sU": "27", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2021 Regular Season - Week 4" }, { "date": "Oct 3, 2021", @@ -144479,7 +213997,12 @@ "sF": "42", "sU": "30", "spread": "7", - "ou": -1 + "ou": 54.5, + "pScore": { + "sU": 23.75, + "sF": 30.75 + }, + "week": "2021 Regular Season - Week 4" }, { "date": "Oct 3, 2021", @@ -144489,7 +214012,12 @@ "sF": "20", "sU": "37", "spread": "4", - "ou": -1 + "ou": 54.5, + "pScore": { + "sU": 25.25, + "sF": 29.25 + }, + "week": "2021 Regular Season - Week 4" }, { "date": "Oct 3, 2021", @@ -144498,8 +214026,13 @@ "und": "Seattle Seahawks", "sF": "21", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 52.0, + "pScore": { + "sU": 24.75, + "sF": 27.25 + }, + "week": "2021 Regular Season - Week 4" }, { "date": "Oct 3, 2021", @@ -144509,7 +214042,12 @@ "sF": "23", "sU": "7", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2021 Regular Season - Week 4" }, { "date": "Oct 3, 2021", @@ -144519,7 +214057,12 @@ "sF": "27", "sU": "17", "spread": "6", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.25, + "sF": 25.25 + }, + "week": "2021 Regular Season - Week 4" }, { "date": "Oct 3, 2021", @@ -144529,7 +214072,12 @@ "sF": "19", "sU": "17", "spread": "7", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 21.25, + "sF": 28.25 + }, + "week": "2021 Regular Season - Week 4" }, { "date": "Oct 4, 2021", @@ -144539,7 +214087,12 @@ "sF": "28", "sU": "14", "spread": "3", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 24.5, + "sF": 27.5 + }, + "week": "2021 Regular Season - Week 4" }, { "date": "Oct 7, 2021", @@ -144548,8 +214101,13 @@ "und": "Seattle Seahawks", "sF": "26", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 54.5, + "pScore": { + "sU": 26.0, + "sF": 28.5 + }, + "week": "2021 Regular Season - Week 5" }, { "date": "Oct 10, 2021", @@ -144558,8 +214116,13 @@ "und": "New York Jets", "sF": "27", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "2021 Regular Season - Week 5" }, { "date": "Oct 10, 2021", @@ -144569,7 +214132,12 @@ "sF": "18", "sU": "21", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2021 Regular Season - Week 5" }, { "date": "Oct 10, 2021", @@ -144579,7 +214147,12 @@ "sF": "25", "sU": "22", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2021 Regular Season - Week 5" }, { "date": "Oct 10, 2021", @@ -144589,7 +214162,12 @@ "sF": "25", "sU": "22", "spread": "8", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 15.5, + "sF": 23.5 + }, + "week": "2021 Regular Season - Week 5" }, { "date": "Oct 10, 2021", @@ -144598,8 +214176,13 @@ "und": "Jacksonville Jaguars", "sF": "37", "sU": "19", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.5, + "pScore": { + "sU": 22.0, + "sF": 26.5 + }, + "week": "2021 Regular Season - Week 5" }, { "date": "Oct 10, 2021", @@ -144609,7 +214192,12 @@ "sF": "19", "sU": "17", "spread": "10", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 19.75, + "sF": 29.75 + }, + "week": "2021 Regular Season - Week 5" }, { "date": "Oct 10, 2021", @@ -144618,8 +214206,13 @@ "und": "Pittsburgh Steelers", "sF": "19", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 39.5, + "pScore": { + "sU": 19.0, + "sF": 20.5 + }, + "week": "2021 Regular Season - Week 5" }, { "date": "Oct 10, 2021", @@ -144629,7 +214222,12 @@ "sF": "45", "sU": "17", "spread": "10", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 19.0, + "sF": 29.0 + }, + "week": "2021 Regular Season - Week 5" }, { "date": "Oct 10, 2021", @@ -144638,8 +214236,13 @@ "und": "Washington Football Team", "sF": "33", "sU": "22", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2021 Regular Season - Week 5" }, { "date": "Oct 10, 2021", @@ -144648,8 +214251,13 @@ "und": "Chicago Bears", "sF": "9", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.5, + "pScore": { + "sU": 20.0, + "sF": 25.5 + }, + "week": "2021 Regular Season - Week 5" }, { "date": "Oct 10, 2021", @@ -144658,8 +214266,13 @@ "und": "Cleveland Browns", "sF": "47", "sU": "42", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "2021 Regular Season - Week 5" }, { "date": "Oct 10, 2021", @@ -144669,11 +214282,12 @@ "sF": "17", "sU": "10", "spread": "5", - "ou": "49", + "ou": 48.5, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 21.75, + "sF": 26.75 + }, + "week": "2021 Regular Season - Week 5" }, { "date": "Oct 10, 2021", @@ -144683,7 +214297,12 @@ "sF": "44", "sU": "20", "spread": "7", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 22.75, + "sF": 29.75 + }, + "week": "2021 Regular Season - Week 5" }, { "date": "Oct 10, 2021", @@ -144692,8 +214311,13 @@ "und": "Buffalo Bills", "sF": "20", "sU": "38", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 56.5, + "pScore": { + "sU": 27.0, + "sF": 29.5 + }, + "week": "2021 Regular Season - Week 5" }, { "date": "Oct 11, 2021", @@ -144703,7 +214327,12 @@ "sF": "31", "sU": "25", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "2021 Regular Season - Week 5" }, { "date": "Oct 14, 2021", @@ -144713,7 +214342,12 @@ "sF": "28", "sU": "22", "spread": "7", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 22.75, + "sF": 29.75 + }, + "week": "2021 Regular Season - Week 6" }, { "date": "Oct 17, 2021", @@ -144723,7 +214357,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2021 Regular Season - Week 6" }, { "date": "Oct 17, 2021", @@ -144732,8 +214371,13 @@ "und": "Los Angeles Chargers", "sF": "34", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 51.5, + "pScore": { + "sU": 24.5, + "sF": 27.0 + }, + "week": "2021 Regular Season - Week 6" }, { "date": "Oct 17, 2021", @@ -144742,8 +214386,13 @@ "und": "Carolina Panthers", "sF": "34", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2021 Regular Season - Week 6" }, { "date": "Oct 17, 2021", @@ -144753,7 +214402,12 @@ "sF": "24", "sU": "14", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2021 Regular Season - Week 6" }, { "date": "Oct 17, 2021", @@ -144762,8 +214416,13 @@ "und": "Detroit Lions", "sF": "34", "sU": "11", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2021 Regular Season - Week 6" }, { "date": "Oct 17, 2021", @@ -144773,7 +214432,12 @@ "sF": "31", "sU": "3", "spread": "10", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 16.75, + "sF": 26.75 + }, + "week": "2021 Regular Season - Week 6" }, { "date": "Oct 17, 2021", @@ -144783,7 +214447,12 @@ "sF": "38", "sU": "11", "spread": "9", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 19.75, + "sF": 28.75 + }, + "week": "2021 Regular Season - Week 6" }, { "date": "Oct 17, 2021", @@ -144793,7 +214462,12 @@ "sF": "31", "sU": "13", "spread": "7", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 23.5, + "sF": 30.5 + }, + "week": "2021 Regular Season - Week 6" }, { "date": "Oct 17, 2021", @@ -144802,8 +214476,13 @@ "und": "Arizona Cardinals", "sF": "14", "sU": "37", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.5, + "pScore": { + "sU": 22.5, + "sF": 26.0 + }, + "week": "2021 Regular Season - Week 6" }, { "date": "Oct 17, 2021", @@ -144813,7 +214492,12 @@ "sF": "24", "sU": "34", "spread": "4", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.75, + "sF": 23.75 + }, + "week": "2021 Regular Season - Week 6" }, { "date": "Oct 17, 2021", @@ -144822,8 +214506,13 @@ "und": "New England Patriots", "sF": "35", "sU": "29", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 50.5, + "pScore": { + "sU": 23.5, + "sF": 27.0 + }, + "week": "2021 Regular Season - Week 6" }, { "date": "Oct 17, 2021", @@ -144833,7 +214522,12 @@ "sF": "23", "sU": "20", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "2021 Regular Season - Week 6" }, { "date": "Oct 18, 2021", @@ -144843,7 +214537,12 @@ "sF": "31", "sU": "34", "spread": "6", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 23.75, + "sF": 29.75 + }, + "week": "2021 Regular Season - Week 6" }, { "date": "Oct 21, 2021", @@ -144852,8 +214551,13 @@ "und": "Denver Broncos", "sF": "17", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.5, + "pScore": { + "sU": 20.0, + "sF": 21.5 + }, + "week": "2021 Regular Season - Week 7" }, { "date": "Oct 24, 2021", @@ -144862,8 +214566,13 @@ "und": "Cincinnati Bengals", "sF": "17", "sU": "41", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.5, + "pScore": { + "sU": 19.5, + "sF": 26.0 + }, + "week": "2021 Regular Season - Week 7" }, { "date": "Oct 24, 2021", @@ -144873,7 +214582,12 @@ "sF": "24", "sU": "10", "spread": "8", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 20.0, + "sF": 28.0 + }, + "week": "2021 Regular Season - Week 7" }, { "date": "Oct 24, 2021", @@ -144883,7 +214597,12 @@ "sF": "30", "sU": "28", "spread": "2", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.75, + "sF": 24.75 + }, + "week": "2021 Regular Season - Week 7" }, { "date": "Oct 24, 2021", @@ -144893,7 +214612,12 @@ "sF": "54", "sU": "13", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "2021 Regular Season - Week 7" }, { "date": "Oct 24, 2021", @@ -144903,7 +214627,12 @@ "sF": "3", "sU": "25", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2021 Regular Season - Week 7" }, { "date": "Oct 24, 2021", @@ -144913,7 +214642,12 @@ "sF": "3", "sU": "27", "spread": "4", - "ou": -1 + "ou": 57.5, + "pScore": { + "sU": 26.75, + "sF": 30.75 + }, + "week": "2021 Regular Season - Week 7" }, { "date": "Oct 24, 2021", @@ -144923,7 +214657,12 @@ "sF": "33", "sU": "22", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2021 Regular Season - Week 7" }, { "date": "Oct 24, 2021", @@ -144932,8 +214671,13 @@ "und": "Detroit Lions", "sF": "28", "sU": "19", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 50.5, + "pScore": { + "sU": 17.0, + "sF": 33.5 + }, + "week": "2021 Regular Season - Week 7" }, { "date": "Oct 24, 2021", @@ -144943,7 +214687,12 @@ "sF": "31", "sU": "5", "spread": "18", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 14.75, + "sF": 32.75 + }, + "week": "2021 Regular Season - Week 7" }, { "date": "Oct 24, 2021", @@ -144952,8 +214701,13 @@ "und": "Chicago Bears", "sF": "38", "sU": "3", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 47.0, + "pScore": { + "sU": 17.75, + "sF": 29.25 + }, + "week": "2021 Regular Season - Week 7" }, { "date": "Oct 24, 2021", @@ -144963,7 +214717,12 @@ "sF": "18", "sU": "30", "spread": "4", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.25, + "sF": 23.25 + }, + "week": "2021 Regular Season - Week 7" }, { "date": "Oct 25, 2021", @@ -144972,8 +214731,13 @@ "und": "Seattle Seahawks", "sF": "13", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.5, + "pScore": { + "sU": 19.0, + "sF": 23.5 + }, + "week": "2021 Regular Season - Week 7" }, { "date": "Oct 28, 2021", @@ -144982,8 +214746,13 @@ "und": "Green Bay Packers", "sF": "21", "sU": "24", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 50.5, + "pScore": { + "sU": 22.0, + "sF": 28.5 + }, + "week": "2021 Regular Season - Week 8" }, { "date": "Oct 31, 2021", @@ -144993,7 +214762,12 @@ "sF": "13", "sU": "19", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2021 Regular Season - Week 8" }, { "date": "Oct 31, 2021", @@ -145003,7 +214777,12 @@ "sF": "26", "sU": "11", "spread": "14", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 17.5, + "sF": 31.5 + }, + "week": "2021 Regular Season - Week 8" }, { "date": "Oct 31, 2021", @@ -145013,7 +214792,12 @@ "sF": "33", "sU": "22", "spread": "4", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 17.75, + "sF": 21.75 + }, + "week": "2021 Regular Season - Week 8" }, { "date": "Oct 31, 2021", @@ -145022,8 +214806,13 @@ "und": "Pittsburgh Steelers", "sF": "10", "sU": "15", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "2021 Regular Season - Week 8" }, { "date": "Oct 31, 2021", @@ -145032,8 +214821,13 @@ "und": "Detroit Lions", "sF": "44", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "2021 Regular Season - Week 8" }, { "date": "Oct 31, 2021", @@ -145043,7 +214837,12 @@ "sF": "38", "sU": "22", "spread": "16", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 15.25, + "sF": 31.25 + }, + "week": "2021 Regular Season - Week 8" }, { "date": "Oct 31, 2021", @@ -145053,7 +214852,12 @@ "sF": "31", "sU": "34", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2021 Regular Season - Week 8" }, { "date": "Oct 31, 2021", @@ -145063,7 +214867,12 @@ "sF": "31", "sU": "34", "spread": "11", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.0, + "sF": 27.0 + }, + "week": "2021 Regular Season - Week 8" }, { "date": "Oct 31, 2021", @@ -145072,8 +214881,13 @@ "und": "New England Patriots", "sF": "24", "sU": "27", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 49.5, + "pScore": { + "sU": 22.5, + "sF": 27.0 + }, + "week": "2021 Regular Season - Week 8" }, { "date": "Oct 31, 2021", @@ -145082,8 +214896,13 @@ "und": "Jacksonville Jaguars", "sF": "31", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "2021 Regular Season - Week 8" }, { "date": "Oct 31, 2021", @@ -145092,8 +214911,13 @@ "und": "Washington Football Team", "sF": "17", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2021 Regular Season - Week 8" }, { "date": "Oct 31, 2021", @@ -145102,8 +214926,13 @@ "und": "New Orleans Saints", "sF": "27", "sU": "36", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 49.0, + "pScore": { + "sU": 22.25, + "sF": 26.75 + }, + "week": "2021 Regular Season - Week 8" }, { "date": "Oct 31, 2021", @@ -145113,7 +214942,12 @@ "sF": "16", "sU": "20", "spread": "3", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 24.25, + "sF": 27.25 + }, + "week": "2021 Regular Season - Week 8" }, { "date": "Nov 1, 2021", @@ -145123,7 +214957,12 @@ "sF": "20", "sU": "17", "spread": "10", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 21.0, + "sF": 31.0 + }, + "week": "2021 Regular Season - Week 8" }, { "date": "Nov 4, 2021", @@ -145132,8 +214971,13 @@ "und": "New York Jets", "sF": "45", "sU": "30", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 46.0, + "pScore": { + "sU": 17.75, + "sF": 28.25 + }, + "week": "2021 Regular Season - Week 9" }, { "date": "Nov 7, 2021", @@ -145143,7 +214987,12 @@ "sF": "34", "sU": "31", "spread": "6", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 22.25, + "sF": 28.25 + }, + "week": "2021 Regular Season - Week 9" }, { "date": "Nov 7, 2021", @@ -145152,8 +215001,13 @@ "und": "Carolina Panthers", "sF": "24", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2021 Regular Season - Week 9" }, { "date": "Nov 7, 2021", @@ -145162,8 +215016,13 @@ "und": "Cleveland Browns", "sF": "16", "sU": "41", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.5, + "pScore": { + "sU": 22.5, + "sF": 25.0 + }, + "week": "2021 Regular Season - Week 9" }, { "date": "Nov 7, 2021", @@ -145173,7 +215032,12 @@ "sF": "16", "sU": "30", "spread": "10", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 19.25, + "sF": 29.25 + }, + "week": "2021 Regular Season - Week 9" }, { "date": "Nov 7, 2021", @@ -145182,8 +215046,13 @@ "und": "Jacksonville Jaguars", "sF": "6", "sU": "9", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 48.5, + "pScore": { + "sU": 17.0, + "sF": 31.5 + }, + "week": "2021 Regular Season - Week 9" }, { "date": "Nov 7, 2021", @@ -145192,8 +215061,13 @@ "und": "Houston Texans", "sF": "17", "sU": "9", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.5, + "pScore": { + "sU": 20.5, + "sF": 26.0 + }, + "week": "2021 Regular Season - Week 9" }, { "date": "Nov 7, 2021", @@ -145203,7 +215077,12 @@ "sF": "25", "sU": "27", "spread": "6", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.75, + "sF": 23.75 + }, + "week": "2021 Regular Season - Week 9" }, { "date": "Nov 7, 2021", @@ -145213,7 +215092,12 @@ "sF": "16", "sU": "23", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2021 Regular Season - Week 9" }, { "date": "Nov 7, 2021", @@ -145222,8 +215106,13 @@ "und": "Philadelphia Eagles", "sF": "27", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 49.0, + "pScore": { + "sU": 23.75, + "sF": 25.25 + }, + "week": "2021 Regular Season - Week 9" }, { "date": "Nov 7, 2021", @@ -145232,8 +215121,13 @@ "und": "Green Bay Packers", "sF": "13", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2021 Regular Season - Week 9" }, { "date": "Nov 7, 2021", @@ -145242,8 +215136,13 @@ "und": "Arizona Cardinals", "sF": "17", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2021 Regular Season - Week 9" }, { "date": "Nov 7, 2021", @@ -145252,8 +215151,13 @@ "und": "Tennessee Titans", "sF": "16", "sU": "28", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 52.5, + "pScore": { + "sU": 22.5, + "sF": 30.0 + }, + "week": "2021 Regular Season - Week 9" }, { "date": "Nov 8, 2021", @@ -145262,8 +215166,13 @@ "und": "Chicago Bears", "sF": "29", "sU": "27", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.5, + "pScore": { + "sU": 16.0, + "sF": 22.5 + }, + "week": "2021 Regular Season - Week 9" }, { "date": "Nov 11, 2021", @@ -145272,8 +215181,13 @@ "und": "Miami Dolphins", "sF": "10", "sU": "22", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.5, + "pScore": { + "sU": 19.5, + "sF": 27.0 + }, + "week": "2021 Regular Season - Week 10" }, { "date": "Nov 14, 2021", @@ -145283,7 +215197,12 @@ "sF": "43", "sU": "3", "spread": "8", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 23.5, + "sF": 31.5 + }, + "week": "2021 Regular Season - Week 10" }, { "date": "Nov 14, 2021", @@ -145293,7 +215212,12 @@ "sF": "23", "sU": "17", "spread": "10", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 18.75, + "sF": 28.75 + }, + "week": "2021 Regular Season - Week 10" }, { "date": "Nov 14, 2021", @@ -145302,8 +215226,13 @@ "und": "Cleveland Browns", "sF": "45", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "2021 Regular Season - Week 10" }, { "date": "Nov 14, 2021", @@ -145313,7 +215242,12 @@ "sF": "45", "sU": "17", "spread": "13", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 17.25, + "sF": 30.25 + }, + "week": "2021 Regular Season - Week 10" }, { "date": "Nov 14, 2021", @@ -145323,7 +215257,12 @@ "sF": "16", "sU": "16", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2021 Regular Season - Week 10" }, { "date": "Nov 14, 2021", @@ -145333,7 +215272,12 @@ "sF": "23", "sU": "21", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2021 Regular Season - Week 10" }, { "date": "Nov 14, 2021", @@ -145342,8 +215286,13 @@ "und": "Washington Football Team", "sF": "19", "sU": "29", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 51.0, + "pScore": { + "sU": 20.75, + "sF": 30.25 + }, + "week": "2021 Regular Season - Week 10" }, { "date": "Nov 14, 2021", @@ -145352,8 +215301,13 @@ "und": "Carolina Panthers", "sF": "10", "sU": "34", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.0, + "pScore": { + "sU": 16.25, + "sF": 26.75 + }, + "week": "2021 Regular Season - Week 10" }, { "date": "Nov 14, 2021", @@ -145363,7 +215317,12 @@ "sF": "20", "sU": "27", "spread": "3", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 25.25, + "sF": 28.25 + }, + "week": "2021 Regular Season - Week 10" }, { "date": "Nov 14, 2021", @@ -145373,7 +215332,12 @@ "sF": "13", "sU": "30", "spread": "2", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.0, + "sF": 24.0 + }, + "week": "2021 Regular Season - Week 10" }, { "date": "Nov 14, 2021", @@ -145382,8 +215346,13 @@ "und": "Seattle Seahawks", "sF": "17", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "2021 Regular Season - Week 10" }, { "date": "Nov 14, 2021", @@ -145392,8 +215361,13 @@ "und": "Las Vegas Raiders", "sF": "41", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 52.0, + "pScore": { + "sU": 24.75, + "sF": 27.25 + }, + "week": "2021 Regular Season - Week 10" }, { "date": "Nov 15, 2021", @@ -145403,11 +215377,12 @@ "sF": "10", "sU": "31", "spread": "4", - "ou": "49", + "ou": 49.5, "pScore": { - "sU": 22.5, - "sF": 26.5 - } + "sU": 22.75, + "sF": 26.75 + }, + "week": "2021 Regular Season - Week 10" }, { "date": "Nov 18, 2021", @@ -145417,7 +215392,12 @@ "sF": "25", "sU": "0", "spread": "7", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.0, + "sF": 27.0 + }, + "week": "2021 Regular Season - Week 11" }, { "date": "Nov 21, 2021", @@ -145427,7 +215407,12 @@ "sF": "15", "sU": "41", "spread": "7", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 21.25, + "sF": 28.25 + }, + "week": "2021 Regular Season - Week 11" }, { "date": "Nov 21, 2021", @@ -145436,8 +215421,13 @@ "und": "Washington Football Team", "sF": "21", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2021 Regular Season - Week 11" }, { "date": "Nov 21, 2021", @@ -145447,7 +215437,12 @@ "sF": "16", "sU": "13", "spread": "5", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.25, + "sF": 24.25 + }, + "week": "2021 Regular Season - Week 11" }, { "date": "Nov 21, 2021", @@ -145456,8 +215451,13 @@ "und": "Detroit Lions", "sF": "13", "sU": "10", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 42.5, + "pScore": { + "sU": 15.0, + "sF": 27.5 + }, + "week": "2021 Regular Season - Week 11" }, { "date": "Nov 21, 2021", @@ -145466,8 +215466,13 @@ "und": "Jacksonville Jaguars", "sF": "30", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "2021 Regular Season - Week 11" }, { "date": "Nov 21, 2021", @@ -145477,7 +215482,12 @@ "sF": "31", "sU": "34", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "2021 Regular Season - Week 11" }, { "date": "Nov 21, 2021", @@ -145486,8 +215496,13 @@ "und": "New York Jets", "sF": "24", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "2021 Regular Season - Week 11" }, { "date": "Nov 21, 2021", @@ -145496,8 +215511,13 @@ "und": "New Orleans Saints", "sF": "40", "sU": "29", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2021 Regular Season - Week 11" }, { "date": "Nov 21, 2021", @@ -145507,7 +215527,12 @@ "sF": "13", "sU": "22", "spread": "10", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.25, + "sF": 27.25 + }, + "week": "2021 Regular Season - Week 11" }, { "date": "Nov 21, 2021", @@ -145517,7 +215542,12 @@ "sF": "32", "sU": "13", "spread": "1", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 24.75, + "sF": 25.75 + }, + "week": "2021 Regular Season - Week 11" }, { "date": "Nov 21, 2021", @@ -145526,8 +215556,13 @@ "und": "Dallas Cowboys", "sF": "19", "sU": "9", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 56.5, + "pScore": { + "sU": 27.0, + "sF": 29.5 + }, + "week": "2021 Regular Season - Week 11" }, { "date": "Nov 21, 2021", @@ -145536,8 +215571,13 @@ "und": "Arizona Cardinals", "sF": "13", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.0, + "pScore": { + "sU": 22.25, + "sF": 24.75 + }, + "week": "2021 Regular Season - Week 11" }, { "date": "Nov 21, 2021", @@ -145546,8 +215586,13 @@ "und": "Pittsburgh Steelers", "sF": "41", "sU": "37", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.5, + "pScore": { + "sU": 21.0, + "sF": 26.5 + }, + "week": "2021 Regular Season - Week 11" }, { "date": "Nov 22, 2021", @@ -145557,7 +215602,12 @@ "sF": "30", "sU": "10", "spread": "11", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 19.5, + "sF": 30.5 + }, + "week": "2021 Regular Season - Week 11" }, { "date": "Nov 25, 2021", @@ -145567,7 +215617,12 @@ "sF": "16", "sU": "14", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2021 Regular Season - Week 12" }, { "date": "Nov 25, 2021", @@ -145576,8 +215631,13 @@ "und": "Las Vegas Raiders", "sF": "33", "sU": "36", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 51.5, + "pScore": { + "sU": 22.0, + "sF": 29.5 + }, + "week": "2021 Regular Season - Week 12" }, { "date": "Nov 25, 2021", @@ -145586,8 +215646,13 @@ "und": "New Orleans Saints", "sF": "31", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.0, + "pScore": { + "sU": 19.25, + "sF": 25.75 + }, + "week": "2021 Regular Season - Week 12" }, { "date": "Nov 28, 2021", @@ -145596,8 +215661,13 @@ "und": "Pittsburgh Steelers", "sF": "41", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2021 Regular Season - Week 12" }, { "date": "Nov 28, 2021", @@ -145606,8 +215676,13 @@ "und": "New York Jets", "sF": "14", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2021 Regular Season - Week 12" }, { "date": "Nov 28, 2021", @@ -145617,7 +215692,12 @@ "sF": "38", "sU": "31", "spread": "3", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 25.25, + "sF": 28.25 + }, + "week": "2021 Regular Season - Week 12" }, { "date": "Nov 28, 2021", @@ -145627,7 +215707,12 @@ "sF": "21", "sU": "14", "spread": "2", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.75, + "sF": 23.75 + }, + "week": "2021 Regular Season - Week 12" }, { "date": "Nov 28, 2021", @@ -145636,8 +215721,13 @@ "und": "Miami Dolphins", "sF": "10", "sU": "33", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "2021 Regular Season - Week 12" }, { "date": "Nov 28, 2021", @@ -145647,7 +215737,12 @@ "sF": "36", "sU": "13", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2021 Regular Season - Week 12" }, { "date": "Nov 28, 2021", @@ -145656,8 +215751,13 @@ "und": "New York Giants", "sF": "7", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "2021 Regular Season - Week 12" }, { "date": "Nov 28, 2021", @@ -145667,7 +215767,12 @@ "sF": "13", "sU": "28", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2021 Regular Season - Week 12" }, { "date": "Nov 28, 2021", @@ -145677,7 +215782,12 @@ "sF": "28", "sU": "36", "spread": "2", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.25, + "sF": 24.25 + }, + "week": "2021 Regular Season - Week 12" }, { "date": "Nov 28, 2021", @@ -145686,8 +215796,13 @@ "und": "Minnesota Vikings", "sF": "34", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.0, + "pScore": { + "sU": 22.75, + "sF": 26.25 + }, + "week": "2021 Regular Season - Week 12" }, { "date": "Nov 28, 2021", @@ -145696,8 +215811,13 @@ "und": "Cleveland Browns", "sF": "16", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2021 Regular Season - Week 12" }, { "date": "Dec 2, 2021", @@ -145707,7 +215827,12 @@ "sF": "27", "sU": "17", "spread": "5", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 21.25, + "sF": 26.25 + }, + "week": "2021 Regular Season - Week 13" }, { "date": "Dec 5, 2021", @@ -145716,8 +215841,13 @@ "und": "Atlanta Falcons", "sF": "30", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 50.5, + "pScore": { + "sU": 20.0, + "sF": 30.5 + }, + "week": "2021 Regular Season - Week 13" }, { "date": "Dec 5, 2021", @@ -145726,8 +215856,13 @@ "und": "Chicago Bears", "sF": "33", "sU": "22", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "2021 Regular Season - Week 13" }, { "date": "Dec 5, 2021", @@ -145737,7 +215872,12 @@ "sF": "22", "sU": "41", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "2021 Regular Season - Week 13" }, { "date": "Dec 5, 2021", @@ -145747,7 +215887,12 @@ "sF": "27", "sU": "29", "spread": "7", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.75, + "sF": 26.75 + }, + "week": "2021 Regular Season - Week 13" }, { "date": "Dec 5, 2021", @@ -145757,7 +215902,12 @@ "sF": "31", "sU": "0", "spread": "10", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.25, + "sF": 27.25 + }, + "week": "2021 Regular Season - Week 13" }, { "date": "Dec 5, 2021", @@ -145766,8 +215916,13 @@ "und": "New York Giants", "sF": "20", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "2021 Regular Season - Week 13" }, { "date": "Dec 5, 2021", @@ -145777,7 +215932,12 @@ "sF": "33", "sU": "18", "spread": "5", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.25, + "sF": 24.25 + }, + "week": "2021 Regular Season - Week 13" }, { "date": "Dec 5, 2021", @@ -145786,8 +215946,13 @@ "und": "Seattle Seahawks", "sF": "23", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "2021 Regular Season - Week 13" }, { "date": "Dec 5, 2021", @@ -145796,8 +215961,13 @@ "und": "Washington Football Team", "sF": "15", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 48.0, + "pScore": { + "sU": 23.25, + "sF": 24.75 + }, + "week": "2021 Regular Season - Week 13" }, { "date": "Dec 5, 2021", @@ -145807,7 +215977,12 @@ "sF": "37", "sU": "7", "spread": "13", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 17.5, + "sF": 30.5 + }, + "week": "2021 Regular Season - Week 13" }, { "date": "Dec 5, 2021", @@ -145816,8 +215991,13 @@ "und": "Pittsburgh Steelers", "sF": "19", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.0, + "pScore": { + "sU": 19.75, + "sF": 24.25 + }, + "week": "2021 Regular Season - Week 13" }, { "date": "Dec 5, 2021", @@ -145826,8 +216006,13 @@ "und": "Denver Broncos", "sF": "22", "sU": "9", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 47.0, + "pScore": { + "sU": 18.75, + "sF": 28.25 + }, + "week": "2021 Regular Season - Week 13" }, { "date": "Dec 6, 2021", @@ -145836,8 +216021,13 @@ "und": "New England Patriots", "sF": "10", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "2021 Regular Season - Week 13" }, { "date": "Dec 9, 2021", @@ -145847,7 +216037,12 @@ "sF": "36", "sU": "28", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2021 Regular Season - Week 14" }, { "date": "Dec 12, 2021", @@ -145856,8 +216051,13 @@ "und": "Atlanta Falcons", "sF": "21", "sU": "29", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "2021 Regular Season - Week 14" }, { "date": "Dec 12, 2021", @@ -145866,8 +216066,13 @@ "und": "Cincinnati Bengals", "sF": "26", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 49.0, + "pScore": { + "sU": 23.75, + "sF": 25.25 + }, + "week": "2021 Regular Season - Week 14" }, { "date": "Dec 12, 2021", @@ -145877,7 +216082,12 @@ "sF": "24", "sU": "22", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2021 Regular Season - Week 14" }, { "date": "Dec 12, 2021", @@ -145887,7 +216097,12 @@ "sF": "33", "sU": "13", "spread": "9", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.75, + "sF": 24.75 + }, + "week": "2021 Regular Season - Week 14" }, { "date": "Dec 12, 2021", @@ -145897,7 +216112,12 @@ "sF": "48", "sU": "9", "spread": "10", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 19.0, + "sF": 29.0 + }, + "week": "2021 Regular Season - Week 14" }, { "date": "Dec 12, 2021", @@ -145906,8 +216126,13 @@ "und": "New York Jets", "sF": "30", "sU": "9", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "2021 Regular Season - Week 14" }, { "date": "Dec 12, 2021", @@ -145916,8 +216141,13 @@ "und": "Jacksonville Jaguars", "sF": "20", "sU": "0", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.5, + "pScore": { + "sU": 17.5, + "sF": 26.0 + }, + "week": "2021 Regular Season - Week 14" }, { "date": "Dec 12, 2021", @@ -145926,8 +216156,13 @@ "und": "Washington Football Team", "sF": "27", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.0, + "pScore": { + "sU": 21.75, + "sF": 26.25 + }, + "week": "2021 Regular Season - Week 14" }, { "date": "Dec 12, 2021", @@ -145937,7 +216172,12 @@ "sF": "38", "sU": "10", "spread": "11", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 15.5, + "sF": 26.5 + }, + "week": "2021 Regular Season - Week 14" }, { "date": "Dec 12, 2021", @@ -145947,7 +216187,12 @@ "sF": "37", "sU": "21", "spread": "9", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.0, + "sF": 26.0 + }, + "week": "2021 Regular Season - Week 14" }, { "date": "Dec 12, 2021", @@ -145956,8 +216201,13 @@ "und": "Buffalo Bills", "sF": "33", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 54.5, + "pScore": { + "sU": 25.5, + "sF": 29.0 + }, + "week": "2021 Regular Season - Week 14" }, { "date": "Dec 12, 2021", @@ -145966,8 +216216,13 @@ "und": "Chicago Bears", "sF": "45", "sU": "30", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 43.0, + "pScore": { + "sU": 15.75, + "sF": 27.25 + }, + "week": "2021 Regular Season - Week 14" }, { "date": "Dec 13, 2021", @@ -145976,8 +216231,13 @@ "und": "Los Angeles Rams", "sF": "23", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 51.5, + "pScore": { + "sU": 24.5, + "sF": 27.0 + }, + "week": "2021 Regular Season - Week 14" }, { "date": "Dec 16, 2021", @@ -145987,7 +216247,12 @@ "sF": "34", "sU": "28", "spread": "3", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 24.75, + "sF": 27.75 + }, + "week": "2021 Regular Season - Week 15" }, { "date": "Dec 18, 2021", @@ -145996,8 +216261,13 @@ "und": "New England Patriots", "sF": "27", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2021 Regular Season - Week 15" }, { "date": "Dec 19, 2021", @@ -146006,8 +216276,13 @@ "und": "Baltimore Ravens", "sF": "31", "sU": "30", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 45.0, + "pScore": { + "sU": 17.75, + "sF": 27.25 + }, + "week": "2021 Regular Season - Week 15" }, { "date": "Dec 19, 2021", @@ -146016,8 +216291,13 @@ "und": "Carolina Panthers", "sF": "31", "sU": "14", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 43.0, + "pScore": { + "sU": 14.25, + "sF": 28.75 + }, + "week": "2021 Regular Season - Week 15" }, { "date": "Dec 19, 2021", @@ -146027,7 +216307,12 @@ "sF": "12", "sU": "30", "spread": "13", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 17.5, + "sF": 30.5 + }, + "week": "2021 Regular Season - Week 15" }, { "date": "Dec 19, 2021", @@ -146037,7 +216322,12 @@ "sF": "16", "sU": "30", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "2021 Regular Season - Week 15" }, { "date": "Dec 19, 2021", @@ -146047,7 +216337,12 @@ "sF": "31", "sU": "24", "spread": "10", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 16.0, + "sF": 26.0 + }, + "week": "2021 Regular Season - Week 15" }, { "date": "Dec 19, 2021", @@ -146056,8 +216351,13 @@ "und": "New York Giants", "sF": "21", "sU": "6", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 43.5, + "pScore": { + "sU": 16.0, + "sF": 27.5 + }, + "week": "2021 Regular Season - Week 15" }, { "date": "Dec 19, 2021", @@ -146067,7 +216367,12 @@ "sF": "19", "sU": "13", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2021 Regular Season - Week 15" }, { "date": "Dec 19, 2021", @@ -146077,7 +216382,12 @@ "sF": "10", "sU": "15", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2021 Regular Season - Week 15" }, { "date": "Dec 19, 2021", @@ -146086,8 +216396,13 @@ "und": "Atlanta Falcons", "sF": "31", "sU": "13", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 48.0, + "pScore": { + "sU": 19.75, + "sF": 28.25 + }, + "week": "2021 Regular Season - Week 15" }, { "date": "Dec 19, 2021", @@ -146096,8 +216411,13 @@ "und": "New Orleans Saints", "sF": "0", "sU": "9", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 45.5, + "pScore": { + "sU": 17.0, + "sF": 28.5 + }, + "week": "2021 Regular Season - Week 15" }, { "date": "Dec 20, 2021", @@ -146107,7 +216427,12 @@ "sF": "14", "sU": "16", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2021 Regular Season - Week 15" }, { "date": "Dec 20, 2021", @@ -146116,8 +216441,13 @@ "und": "Chicago Bears", "sF": "17", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "2021 Regular Season - Week 15" }, { "date": "Dec 21, 2021", @@ -146127,7 +216457,12 @@ "sF": "20", "sU": "10", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "2021 Regular Season - Week 15" }, { "date": "Dec 21, 2021", @@ -146136,8 +216471,13 @@ "und": "Washington Football Team", "sF": "27", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "2021 Regular Season - Week 15" }, { "date": "Dec 23, 2021", @@ -146146,8 +216486,13 @@ "und": "Tennessee Titans", "sF": "17", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.0, + "pScore": { + "sU": 20.25, + "sF": 23.75 + }, + "week": "2021 Regular Season - Week 16" }, { "date": "Dec 25, 2021", @@ -146156,8 +216501,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "22", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.5, + "pScore": { + "sU": 19.5, + "sF": 27.0 + }, + "week": "2021 Regular Season - Week 16" }, { "date": "Dec 25, 2021", @@ -146167,7 +216517,12 @@ "sF": "16", "sU": "22", "spread": "2", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.5, + "sF": 25.5 + }, + "week": "2021 Regular Season - Week 16" }, { "date": "Dec 26, 2021", @@ -146176,8 +216531,13 @@ "und": "Detroit Lions", "sF": "20", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "2021 Regular Season - Week 16" }, { "date": "Dec 26, 2021", @@ -146186,8 +216546,13 @@ "und": "Carolina Panthers", "sF": "32", "sU": "6", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "2021 Regular Season - Week 16" }, { "date": "Dec 26, 2021", @@ -146197,7 +216562,12 @@ "sF": "41", "sU": "21", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2021 Regular Season - Week 16" }, { "date": "Dec 26, 2021", @@ -146207,7 +216577,12 @@ "sF": "29", "sU": "41", "spread": "11", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 17.25, + "sF": 28.25 + }, + "week": "2021 Regular Season - Week 16" }, { "date": "Dec 26, 2021", @@ -146216,8 +216591,13 @@ "und": "Minnesota Vikings", "sF": "30", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.0, + "pScore": { + "sU": 22.75, + "sF": 26.25 + }, + "week": "2021 Regular Season - Week 16" }, { "date": "Dec 26, 2021", @@ -146226,8 +216606,13 @@ "und": "Buffalo Bills", "sF": "21", "sU": "33", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.5, + "pScore": { + "sU": 21.0, + "sF": 22.5 + }, + "week": "2021 Regular Season - Week 16" }, { "date": "Dec 26, 2021", @@ -146236,8 +216621,13 @@ "und": "Jacksonville Jaguars", "sF": "26", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.0, + "pScore": { + "sU": 19.75, + "sF": 21.25 + }, + "week": "2021 Regular Season - Week 16" }, { "date": "Dec 26, 2021", @@ -146247,7 +216637,12 @@ "sF": "34", "sU": "10", "spread": "10", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.25, + "sF": 25.25 + }, + "week": "2021 Regular Season - Week 16" }, { "date": "Dec 26, 2021", @@ -146256,8 +216651,13 @@ "und": "Chicago Bears", "sF": "24", "sU": "25", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "2021 Regular Season - Week 16" }, { "date": "Dec 26, 2021", @@ -146267,7 +216667,12 @@ "sF": "36", "sU": "10", "spread": "10", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.0, + "sF": 28.0 + }, + "week": "2021 Regular Season - Week 16" }, { "date": "Dec 26, 2021", @@ -146277,7 +216682,12 @@ "sF": "56", "sU": "14", "spread": "10", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 18.25, + "sF": 28.25 + }, + "week": "2021 Regular Season - Week 16" }, { "date": "Dec 27, 2021", @@ -146286,8 +216696,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2021 Regular Season - Week 16" }, { "date": "Jan 2, 2022", @@ -146296,8 +216711,13 @@ "und": "Atlanta Falcons", "sF": "29", "sU": "15", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 44.0, + "pScore": { + "sU": 14.75, + "sF": 29.25 + }, + "week": "2021 Regular Season - Week 17" }, { "date": "Jan 2, 2022", @@ -146306,8 +216726,13 @@ "und": "New York Giants", "sF": "29", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 36.5, + "pScore": { + "sU": 15.0, + "sF": 21.5 + }, + "week": "2021 Regular Season - Week 17" }, { "date": "Jan 2, 2022", @@ -146317,7 +216742,12 @@ "sF": "31", "sU": "34", "spread": "4", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 23.75, + "sF": 27.75 + }, + "week": "2021 Regular Season - Week 17" }, { "date": "Jan 2, 2022", @@ -146326,8 +216756,13 @@ "und": "Arizona Cardinals", "sF": "22", "sU": "25", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 52.5, + "pScore": { + "sU": 23.0, + "sF": 29.5 + }, + "week": "2021 Regular Season - Week 17" }, { "date": "Jan 2, 2022", @@ -146337,7 +216772,12 @@ "sF": "20", "sU": "23", "spread": "8", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 18.5, + "sF": 26.5 + }, + "week": "2021 Regular Season - Week 17" }, { "date": "Jan 2, 2022", @@ -146346,8 +216786,13 @@ "und": "Jacksonville Jaguars", "sF": "50", "sU": "10", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 41.5, + "pScore": { + "sU": 12.5, + "sF": 29.0 + }, + "week": "2021 Regular Season - Week 17" }, { "date": "Jan 2, 2022", @@ -146356,8 +216801,13 @@ "und": "Carolina Panthers", "sF": "18", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.5, + "pScore": { + "sU": 15.5, + "sF": 22.0 + }, + "week": "2021 Regular Season - Week 17" }, { "date": "Jan 2, 2022", @@ -146366,8 +216816,13 @@ "und": "New York Jets", "sF": "28", "sU": "24", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 45.5, + "pScore": { + "sU": 16.0, + "sF": 29.5 + }, + "week": "2021 Regular Season - Week 17" }, { "date": "Jan 2, 2022", @@ -146377,7 +216832,12 @@ "sF": "34", "sU": "3", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2021 Regular Season - Week 17" }, { "date": "Jan 2, 2022", @@ -146386,8 +216846,13 @@ "und": "Washington Football Team", "sF": "20", "sU": "16", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.5, + "pScore": { + "sU": 20.0, + "sF": 24.5 + }, + "week": "2021 Regular Season - Week 17" }, { "date": "Jan 2, 2022", @@ -146396,8 +216861,13 @@ "und": "Denver Broncos", "sF": "34", "sU": "13", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.0, + "pScore": { + "sU": 18.75, + "sF": 26.25 + }, + "week": "2021 Regular Season - Week 17" }, { "date": "Jan 2, 2022", @@ -146406,8 +216876,13 @@ "und": "Houston Texans", "sF": "23", "sU": "7", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 43.5, + "pScore": { + "sU": 15.5, + "sF": 28.0 + }, + "week": "2021 Regular Season - Week 17" }, { "date": "Jan 2, 2022", @@ -146417,7 +216892,12 @@ "sF": "20", "sU": "19", "spread": "6", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.25, + "sF": 26.25 + }, + "week": "2021 Regular Season - Week 17" }, { "date": "Jan 2, 2022", @@ -146427,7 +216907,12 @@ "sF": "51", "sU": "29", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2021 Regular Season - Week 17" }, { "date": "Jan 2, 2022", @@ -146437,7 +216922,12 @@ "sF": "37", "sU": "10", "spread": "13", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 14.75, + "sF": 27.75 + }, + "week": "2021 Regular Season - Week 17" }, { "date": "Jan 3, 2022", @@ -146447,7 +216937,12 @@ "sF": "26", "sU": "14", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "2021 Regular Season - Week 17" }, { "date": "Jan 8, 2022", @@ -146457,7 +216952,12 @@ "sF": "28", "sU": "24", "spread": "11", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 17.0, + "sF": 28.0 + }, + "week": "2021 Regular Season - Week 18" }, { "date": "Jan 8, 2022", @@ -146467,7 +216967,12 @@ "sF": "51", "sU": "26", "spread": "4", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.75, + "sF": 23.75 + }, + "week": "2021 Regular Season - Week 18" }, { "date": "Jan 9, 2022", @@ -146476,8 +216981,13 @@ "und": "Atlanta Falcons", "sF": "30", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2021 Regular Season - Week 18" }, { "date": "Jan 9, 2022", @@ -146486,8 +216996,13 @@ "und": "Pittsburgh Steelers", "sF": "13", "sU": "16", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2021 Regular Season - Week 18" }, { "date": "Jan 9, 2022", @@ -146496,8 +217011,13 @@ "und": "New York Jets", "sF": "27", "sU": "10", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 40.5, + "pScore": { + "sU": 12.0, + "sF": 28.5 + }, + "week": "2021 Regular Season - Week 18" }, { "date": "Jan 9, 2022", @@ -146506,8 +217026,13 @@ "und": "Cincinnati Bengals", "sF": "21", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.0, + "pScore": { + "sU": 15.75, + "sF": 21.25 + }, + "week": "2021 Regular Season - Week 18" }, { "date": "Jan 9, 2022", @@ -146517,7 +217042,12 @@ "sF": "30", "sU": "37", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2021 Regular Season - Week 18" }, { "date": "Jan 9, 2022", @@ -146526,8 +217056,13 @@ "und": "Houston Texans", "sF": "28", "sU": "25", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 42.5, + "pScore": { + "sU": 16.0, + "sF": 26.5 + }, + "week": "2021 Regular Season - Week 18" }, { "date": "Jan 9, 2022", @@ -146537,7 +217072,12 @@ "sF": "11", "sU": "26", "spread": "15", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 14.25, + "sF": 29.25 + }, + "week": "2021 Regular Season - Week 18" }, { "date": "Jan 9, 2022", @@ -146547,7 +217087,12 @@ "sF": "24", "sU": "33", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "2021 Regular Season - Week 18" }, { "date": "Jan 9, 2022", @@ -146557,7 +217102,12 @@ "sF": "31", "sU": "17", "spread": "4", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.25, + "sF": 24.25 + }, + "week": "2021 Regular Season - Week 18" }, { "date": "Jan 9, 2022", @@ -146567,7 +217117,12 @@ "sF": "22", "sU": "7", "spread": "7", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.25, + "sF": 22.25 + }, + "week": "2021 Regular Season - Week 18" }, { "date": "Jan 9, 2022", @@ -146577,7 +217132,12 @@ "sF": "41", "sU": "17", "spread": "9", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 16.25, + "sF": 25.25 + }, + "week": "2021 Regular Season - Week 18" }, { "date": "Jan 9, 2022", @@ -146586,8 +217146,13 @@ "und": "Seattle Seahawks", "sF": "30", "sU": "38", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 48.0, + "pScore": { + "sU": 21.25, + "sF": 26.75 + }, + "week": "2021 Regular Season - Week 18" }, { "date": "Jan 9, 2022", @@ -146597,7 +217162,12 @@ "sF": "32", "sU": "35", "spread": "3", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.0, + "sF": 26.0 + }, + "week": "2021 Regular Season - Week 18" }, { "date": "Jan 9, 2022", @@ -146606,12 +217176,13 @@ "und": "San Francisco 49ers", "sF": "24", "sU": "27", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": 44.5, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 20.5, + "sF": 24.0 + }, + "week": "2021 Regular Season - Week 18" }, { "date": "Jan 15, 2022", @@ -146620,8 +217191,13 @@ "und": "Las Vegas Raiders (5)", "sF": "26", "sU": "19", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 49.0, + "pScore": { + "sU": 21.75, + "sF": 27.25 + }, + "week": "2021 Playoffs" }, { "date": "Jan 15, 2022", @@ -146631,7 +217207,12 @@ "sF": "47", "sU": "17", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2021 Playoffs" }, { "date": "Jan 16, 2022", @@ -146640,8 +217221,13 @@ "und": "Philadelphia Eagles (7)", "sF": "31", "sU": "15", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 45.5, + "pScore": { + "sU": 18.5, + "sF": 27.0 + }, + "week": "2021 Playoffs" }, { "date": "Jan 16, 2022", @@ -146651,11 +217237,12 @@ "sF": "17", "sU": "23", "spread": "3", - "ou": "49", + "ou": 51.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 24.0, + "sF": 27.0 + }, + "week": "2021 Playoffs" }, { "date": "Jan 16, 2022", @@ -146664,8 +217251,13 @@ "und": "Pittsburgh Steelers (7)", "sF": "42", "sU": "21", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 46.5, + "pScore": { + "sU": 17.0, + "sF": 29.5 + }, + "week": "2021 Playoffs" }, { "date": "Jan 17, 2022", @@ -146674,8 +217266,13 @@ "und": "Arizona Cardinals (5)", "sF": "34", "sU": "11", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "2021 Playoffs" }, { "date": "Jan 22, 2022", @@ -146685,7 +217282,12 @@ "sF": "16", "sU": "19", "spread": "4", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 21.75, + "sF": 25.75 + }, + "week": "2021 Playoffs" }, { "date": "Jan 22, 2022", @@ -146694,12 +217296,13 @@ "und": "San Francisco 49ers (6)", "sF": "10", "sU": "13", - "spread": "5", - "ou": "49", + "spread": "5.5", + "ou": 47.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 20.75, + "sF": 26.25 + }, + "week": "2021 Playoffs" }, { "date": "Jan 23, 2022", @@ -146709,7 +217312,12 @@ "sF": "27", "sU": "30", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2021 Playoffs" }, { "date": "Jan 23, 2022", @@ -146719,7 +217327,12 @@ "sF": "42", "sU": "36", "spread": "2", - "ou": -1 + "ou": 54.5, + "pScore": { + "sU": 26.25, + "sF": 28.25 + }, + "week": "2021 Playoffs" }, { "date": "Jan 30, 2022", @@ -146729,7 +217342,12 @@ "sF": "24", "sU": "27", "spread": "7", - "ou": -1 + "ou": 55.0, + "pScore": { + "sU": 24.0, + "sF": 31.0 + }, + "week": "2021 Playoffs" }, { "date": "Jan 30, 2022", @@ -146738,12 +217356,13 @@ "und": "San Francisco 49ers (6)", "sF": "20", "sU": "17", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": 46.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 21.25, + "sF": 24.75 + }, + "week": "2021 Playoffs" }, { "date": "Feb 13, 2022", @@ -146752,8 +217371,13 @@ "und": "Cincinnati Bengals (4)", "sF": "23", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 48.5, + "pScore": { + "sU": 22.0, + "sF": 26.5 + }, + "week": "2021 Playoffs" }, { "date": "Sep 8, 2022", @@ -146762,8 +217386,13 @@ "und": "Los Angeles Rams", "sF": "31", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 52.0, + "pScore": { + "sU": 24.75, + "sF": 27.25 + }, + "week": "2022 Regular Season - Week 1" }, { "date": "Sep 11, 2022", @@ -146772,8 +217401,13 @@ "und": "Atlanta Falcons", "sF": "27", "sU": "26", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.5, + "pScore": { + "sU": 19.0, + "sF": 24.5 + }, + "week": "2022 Regular Season - Week 1" }, { "date": "Sep 11, 2022", @@ -146782,8 +217416,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "26", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "2022 Regular Season - Week 1" }, { "date": "Sep 11, 2022", @@ -146793,7 +217432,12 @@ "sF": "10", "sU": "19", "spread": "6", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 16.0, + "sF": 22.0 + }, + "week": "2022 Regular Season - Week 1" }, { "date": "Sep 11, 2022", @@ -146803,7 +217447,12 @@ "sF": "20", "sU": "23", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2022 Regular Season - Week 1" }, { "date": "Sep 11, 2022", @@ -146813,7 +217462,12 @@ "sF": "38", "sU": "35", "spread": "6", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 21.25, + "sF": 27.25 + }, + "week": "2022 Regular Season - Week 1" }, { "date": "Sep 11, 2022", @@ -146823,7 +217477,12 @@ "sF": "20", "sU": "20", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "2022 Regular Season - Week 1" }, { "date": "Sep 11, 2022", @@ -146833,7 +217492,12 @@ "sF": "20", "sU": "7", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2022 Regular Season - Week 1" }, { "date": "Sep 11, 2022", @@ -146842,8 +217506,13 @@ "und": "New York Jets", "sF": "24", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.0, + "pScore": { + "sU": 18.75, + "sF": 25.25 + }, + "week": "2022 Regular Season - Week 1" }, { "date": "Sep 11, 2022", @@ -146853,7 +217522,12 @@ "sF": "28", "sU": "22", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2022 Regular Season - Week 1" }, { "date": "Sep 11, 2022", @@ -146862,8 +217536,13 @@ "und": "Arizona Cardinals", "sF": "44", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 54.0, + "pScore": { + "sU": 23.75, + "sF": 30.25 + }, + "week": "2022 Regular Season - Week 1" }, { "date": "Sep 11, 2022", @@ -146872,8 +217551,13 @@ "und": "Las Vegas Raiders", "sF": "24", "sU": "19", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 52.5, + "pScore": { + "sU": 24.5, + "sF": 28.0 + }, + "week": "2022 Regular Season - Week 1" }, { "date": "Sep 11, 2022", @@ -146882,8 +217566,13 @@ "und": "Green Bay Packers", "sF": "23", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.0, + "pScore": { + "sU": 21.75, + "sF": 24.25 + }, + "week": "2022 Regular Season - Week 1" }, { "date": "Sep 11, 2022", @@ -146893,7 +217582,12 @@ "sF": "20", "sU": "21", "spread": "5", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.5, + "sF": 24.5 + }, + "week": "2022 Regular Season - Week 1" }, { "date": "Sep 11, 2022", @@ -146903,7 +217597,12 @@ "sF": "19", "sU": "3", "spread": "2", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 24.0, + "sF": 26.0 + }, + "week": "2022 Regular Season - Week 1" }, { "date": "Sep 12, 2022", @@ -146912,8 +217611,13 @@ "und": "Seattle Seahawks", "sF": "16", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "2022 Regular Season - Week 1" }, { "date": "Sep 15, 2022", @@ -146923,7 +217627,12 @@ "sF": "27", "sU": "24", "spread": "4", - "ou": -1 + "ou": 54.0, + "pScore": { + "sU": 25.0, + "sF": 29.0 + }, + "week": "2022 Regular Season - Week 2" }, { "date": "Sep 18, 2022", @@ -146932,8 +217641,13 @@ "und": "Miami Dolphins", "sF": "38", "sU": "42", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "2022 Regular Season - Week 2" }, { "date": "Sep 18, 2022", @@ -146942,8 +217656,13 @@ "und": "New York Jets", "sF": "30", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "2022 Regular Season - Week 2" }, { "date": "Sep 18, 2022", @@ -146952,8 +217671,13 @@ "und": "Washington Commanders", "sF": "36", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 48.5, + "pScore": { + "sU": 23.5, + "sF": 25.0 + }, + "week": "2022 Regular Season - Week 2" }, { "date": "Sep 18, 2022", @@ -146963,7 +217687,12 @@ "sF": "0", "sU": "24", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2022 Regular Season - Week 2" }, { "date": "Sep 18, 2022", @@ -146972,8 +217701,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2022 Regular Season - Week 2" }, { "date": "Sep 18, 2022", @@ -146983,7 +217717,12 @@ "sF": "19", "sU": "16", "spread": "2", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.75, + "sF": 22.75 + }, + "week": "2022 Regular Season - Week 2" }, { "date": "Sep 18, 2022", @@ -146992,8 +217731,13 @@ "und": "Pittsburgh Steelers", "sF": "17", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "2022 Regular Season - Week 2" }, { "date": "Sep 18, 2022", @@ -147003,7 +217747,12 @@ "sF": "31", "sU": "27", "spread": "10", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 18.25, + "sF": 28.25 + }, + "week": "2022 Regular Season - Week 2" }, { "date": "Sep 18, 2022", @@ -147013,7 +217762,12 @@ "sF": "27", "sU": "7", "spread": "9", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.75, + "sF": 24.75 + }, + "week": "2022 Regular Season - Week 2" }, { "date": "Sep 18, 2022", @@ -147023,7 +217777,12 @@ "sF": "17", "sU": "20", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "2022 Regular Season - Week 2" }, { "date": "Sep 18, 2022", @@ -147033,7 +217792,12 @@ "sF": "16", "sU": "9", "spread": "10", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 17.75, + "sF": 27.75 + }, + "week": "2022 Regular Season - Week 2" }, { "date": "Sep 18, 2022", @@ -147042,8 +217806,13 @@ "und": "Arizona Cardinals", "sF": "23", "sU": "29", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 51.5, + "pScore": { + "sU": 23.0, + "sF": 28.5 + }, + "week": "2022 Regular Season - Week 2" }, { "date": "Sep 18, 2022", @@ -147053,7 +217822,12 @@ "sF": "27", "sU": "10", "spread": "10", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 15.75, + "sF": 25.75 + }, + "week": "2022 Regular Season - Week 2" }, { "date": "Sep 19, 2022", @@ -147063,7 +217837,12 @@ "sF": "41", "sU": "7", "spread": "10", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 18.75, + "sF": 28.75 + }, + "week": "2022 Regular Season - Week 2" }, { "date": "Sep 19, 2022", @@ -147072,8 +217851,13 @@ "und": "Minnesota Vikings", "sF": "24", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 50.5, + "pScore": { + "sU": 24.0, + "sF": 26.5 + }, + "week": "2022 Regular Season - Week 2" }, { "date": "Sep 22, 2022", @@ -147082,8 +217866,13 @@ "und": "Pittsburgh Steelers", "sF": "29", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.5, + "pScore": { + "sU": 17.0, + "sF": 21.5 + }, + "week": "2022 Regular Season - Week 3" }, { "date": "Sep 25, 2022", @@ -147092,8 +217881,13 @@ "und": "Carolina Panthers", "sF": "14", "sU": "22", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "2022 Regular Season - Week 3" }, { "date": "Sep 25, 2022", @@ -147103,7 +217897,12 @@ "sF": "23", "sU": "20", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2022 Regular Season - Week 3" }, { "date": "Sep 25, 2022", @@ -147112,8 +217911,13 @@ "und": "Indianapolis Colts", "sF": "17", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 51.0, + "pScore": { + "sU": 22.75, + "sF": 28.25 + }, + "week": "2022 Regular Season - Week 3" }, { "date": "Sep 25, 2022", @@ -147122,8 +217926,13 @@ "und": "Miami Dolphins", "sF": "19", "sU": "21", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 53.0, + "pScore": { + "sU": 24.25, + "sF": 28.75 + }, + "week": "2022 Regular Season - Week 3" }, { "date": "Sep 25, 2022", @@ -147133,7 +217942,12 @@ "sF": "28", "sU": "24", "spread": "6", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 23.25, + "sF": 29.25 + }, + "week": "2022 Regular Season - Week 3" }, { "date": "Sep 25, 2022", @@ -147142,8 +217956,13 @@ "und": "New England Patriots", "sF": "37", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2022 Regular Season - Week 3" }, { "date": "Sep 25, 2022", @@ -147153,7 +217972,12 @@ "sF": "27", "sU": "12", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "2022 Regular Season - Week 3" }, { "date": "Sep 25, 2022", @@ -147163,7 +217987,12 @@ "sF": "22", "sU": "24", "spread": "2", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.75, + "sF": 23.75 + }, + "week": "2022 Regular Season - Week 3" }, { "date": "Sep 25, 2022", @@ -147173,7 +218002,12 @@ "sF": "24", "sU": "8", "spread": "6", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.75, + "sF": 26.75 + }, + "week": "2022 Regular Season - Week 3" }, { "date": "Sep 25, 2022", @@ -147183,7 +218017,12 @@ "sF": "10", "sU": "38", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2022 Regular Season - Week 3" }, { "date": "Sep 25, 2022", @@ -147192,8 +218031,13 @@ "und": "Arizona Cardinals", "sF": "20", "sU": "12", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.5, + "pScore": { + "sU": 22.5, + "sF": 26.0 + }, + "week": "2022 Regular Season - Week 3" }, { "date": "Sep 25, 2022", @@ -147203,7 +218047,12 @@ "sF": "23", "sU": "27", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "2022 Regular Season - Week 3" }, { "date": "Sep 25, 2022", @@ -147213,7 +218062,12 @@ "sF": "12", "sU": "14", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "2022 Regular Season - Week 3" }, { "date": "Sep 25, 2022", @@ -147222,8 +218076,13 @@ "und": "Denver Broncos", "sF": "10", "sU": "11", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.5, + "pScore": { + "sU": 21.5, + "sF": 23.0 + }, + "week": "2022 Regular Season - Week 3" }, { "date": "Sep 26, 2022", @@ -147233,7 +218092,12 @@ "sF": "16", "sU": "23", "spread": "1", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 19.0, + "sF": 20.0 + }, + "week": "2022 Regular Season - Week 3" }, { "date": "Sep 29, 2022", @@ -147242,8 +218106,13 @@ "und": "Miami Dolphins", "sF": "27", "sU": "15", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2022 Regular Season - Week 4" }, { "date": "Oct 2, 2022", @@ -147253,7 +218122,12 @@ "sF": "20", "sU": "23", "spread": "1", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 23.25, + "sF": 24.25 + }, + "week": "2022 Regular Season - Week 4" }, { "date": "Oct 2, 2022", @@ -147263,7 +218137,12 @@ "sF": "23", "sU": "20", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2022 Regular Season - Week 4" }, { "date": "Oct 2, 2022", @@ -147273,7 +218152,12 @@ "sF": "25", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2022 Regular Season - Week 4" }, { "date": "Oct 2, 2022", @@ -147282,8 +218166,13 @@ "und": "Seattle Seahawks", "sF": "45", "sU": "48", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.0, + "pScore": { + "sU": 22.25, + "sF": 25.75 + }, + "week": "2022 Regular Season - Week 4" }, { "date": "Oct 2, 2022", @@ -147293,7 +218182,12 @@ "sF": "34", "sU": "24", "spread": "6", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.5, + "sF": 25.5 + }, + "week": "2022 Regular Season - Week 4" }, { "date": "Oct 2, 2022", @@ -147302,8 +218196,13 @@ "und": "Tennessee Titans", "sF": "17", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2022 Regular Season - Week 4" }, { "date": "Oct 2, 2022", @@ -147312,8 +218211,13 @@ "und": "New Orleans Saints", "sF": "28", "sU": "25", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.0, + "pScore": { + "sU": 19.25, + "sF": 22.75 + }, + "week": "2022 Regular Season - Week 4" }, { "date": "Oct 2, 2022", @@ -147323,7 +218227,12 @@ "sF": "20", "sU": "12", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2022 Regular Season - Week 4" }, { "date": "Oct 2, 2022", @@ -147332,8 +218241,13 @@ "und": "Jacksonville Jaguars", "sF": "29", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.5, + "pScore": { + "sU": 19.5, + "sF": 26.0 + }, + "week": "2022 Regular Season - Week 4" }, { "date": "Oct 2, 2022", @@ -147342,8 +218256,13 @@ "und": "New York Jets", "sF": "20", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2022 Regular Season - Week 4" }, { "date": "Oct 2, 2022", @@ -147353,7 +218272,12 @@ "sF": "16", "sU": "26", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "2022 Regular Season - Week 4" }, { "date": "Oct 2, 2022", @@ -147362,8 +218286,13 @@ "und": "New England Patriots", "sF": "27", "sU": "24", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 40.0, + "pScore": { + "sU": 15.25, + "sF": 24.75 + }, + "week": "2022 Regular Season - Week 4" }, { "date": "Oct 2, 2022", @@ -147372,8 +218301,13 @@ "und": "Denver Broncos", "sF": "32", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2022 Regular Season - Week 4" }, { "date": "Oct 2, 2022", @@ -147383,7 +218317,12 @@ "sF": "31", "sU": "41", "spread": "1", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.5, + "sF": 23.5 + }, + "week": "2022 Regular Season - Week 4" }, { "date": "Oct 3, 2022", @@ -147392,8 +218331,13 @@ "und": "Los Angeles Rams", "sF": "24", "sU": "9", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.5, + "pScore": { + "sU": 20.5, + "sF": 22.0 + }, + "week": "2022 Regular Season - Week 4" }, { "date": "Oct 6, 2022", @@ -147403,7 +218347,12 @@ "sF": "9", "sU": "12", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2022 Regular Season - Week 5" }, { "date": "Oct 9, 2022", @@ -147413,7 +218362,12 @@ "sF": "22", "sU": "27", "spread": "8", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 16.75, + "sF": 24.75 + }, + "week": "2022 Regular Season - Week 5" }, { "date": "Oct 9, 2022", @@ -147423,7 +218377,12 @@ "sF": "38", "sU": "3", "spread": "14", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 15.75, + "sF": 29.75 + }, + "week": "2022 Regular Season - Week 5" }, { "date": "Oct 9, 2022", @@ -147433,7 +218392,12 @@ "sF": "30", "sU": "28", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "2022 Regular Season - Week 5" }, { "date": "Oct 9, 2022", @@ -147443,7 +218407,12 @@ "sF": "6", "sU": "13", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2022 Regular Season - Week 5" }, { "date": "Oct 9, 2022", @@ -147452,8 +218421,13 @@ "und": "Chicago Bears", "sF": "29", "sU": "22", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.0, + "pScore": { + "sU": 18.25, + "sF": 25.75 + }, + "week": "2022 Regular Season - Week 5" }, { "date": "Oct 9, 2022", @@ -147463,7 +218437,12 @@ "sF": "29", "sU": "0", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2022 Regular Season - Week 5" }, { "date": "Oct 9, 2022", @@ -147473,7 +218452,12 @@ "sF": "39", "sU": "32", "spread": "5", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 20.0, + "sF": 25.0 + }, + "week": "2022 Regular Season - Week 5" }, { "date": "Oct 9, 2022", @@ -147482,8 +218466,13 @@ "und": "New York Jets", "sF": "17", "sU": "40", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2022 Regular Season - Week 5" }, { "date": "Oct 9, 2022", @@ -147493,7 +218482,12 @@ "sF": "21", "sU": "15", "spread": "10", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 18.25, + "sF": 28.25 + }, + "week": "2022 Regular Season - Week 5" }, { "date": "Oct 9, 2022", @@ -147503,7 +218497,12 @@ "sF": "21", "sU": "17", "spread": "2", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.5, + "sF": 22.5 + }, + "week": "2022 Regular Season - Week 5" }, { "date": "Oct 9, 2022", @@ -147512,8 +218511,13 @@ "und": "Carolina Panthers", "sF": "37", "sU": "15", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "2022 Regular Season - Week 5" }, { "date": "Oct 9, 2022", @@ -147523,7 +218527,12 @@ "sF": "20", "sU": "17", "spread": "5", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 22.0, + "sF": 27.0 + }, + "week": "2022 Regular Season - Week 5" }, { "date": "Oct 9, 2022", @@ -147532,8 +218541,13 @@ "und": "Dallas Cowboys", "sF": "10", "sU": "22", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.0, + "pScore": { + "sU": 18.25, + "sF": 23.75 + }, + "week": "2022 Regular Season - Week 5" }, { "date": "Oct 9, 2022", @@ -147542,8 +218556,13 @@ "und": "Cincinnati Bengals", "sF": "19", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2022 Regular Season - Week 5" }, { "date": "Oct 10, 2022", @@ -147553,7 +218572,12 @@ "sF": "30", "sU": "29", "spread": "7", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 22.25, + "sF": 29.25 + }, + "week": "2022 Regular Season - Week 5" }, { "date": "Oct 13, 2022", @@ -147563,7 +218587,12 @@ "sF": "12", "sU": "7", "spread": "1", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.5, + "sF": 19.5 + }, + "week": "2022 Regular Season - Week 6" }, { "date": "Oct 16, 2022", @@ -147572,8 +218601,13 @@ "und": "Atlanta Falcons", "sF": "14", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.0, + "pScore": { + "sU": 20.25, + "sF": 24.75 + }, + "week": "2022 Regular Season - Week 6" }, { "date": "Oct 16, 2022", @@ -147582,8 +218616,13 @@ "und": "New England Patriots", "sF": "15", "sU": "38", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2022 Regular Season - Week 6" }, { "date": "Oct 16, 2022", @@ -147592,8 +218631,13 @@ "und": "New York Jets", "sF": "10", "sU": "27", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.0, + "pScore": { + "sU": 18.75, + "sF": 26.25 + }, + "week": "2022 Regular Season - Week 6" }, { "date": "Oct 16, 2022", @@ -147602,8 +218646,13 @@ "und": "Jacksonville Jaguars", "sF": "34", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.0, + "pScore": { + "sU": 19.75, + "sF": 21.25 + }, + "week": "2022 Regular Season - Week 6" }, { "date": "Oct 16, 2022", @@ -147613,7 +218662,12 @@ "sF": "24", "sU": "16", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2022 Regular Season - Week 6" }, { "date": "Oct 16, 2022", @@ -147623,7 +218677,12 @@ "sF": "30", "sU": "26", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2022 Regular Season - Week 6" }, { "date": "Oct 16, 2022", @@ -147632,8 +218691,13 @@ "und": "New York Giants", "sF": "20", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.5, + "pScore": { + "sU": 20.0, + "sF": 25.5 + }, + "week": "2022 Regular Season - Week 6" }, { "date": "Oct 16, 2022", @@ -147642,8 +218706,13 @@ "und": "Pittsburgh Steelers", "sF": "18", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 46.0, + "pScore": { + "sU": 18.25, + "sF": 27.75 + }, + "week": "2022 Regular Season - Week 6" }, { "date": "Oct 16, 2022", @@ -147653,7 +218722,12 @@ "sF": "24", "sU": "10", "spread": "10", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 15.75, + "sF": 25.75 + }, + "week": "2022 Regular Season - Week 6" }, { "date": "Oct 16, 2022", @@ -147662,8 +218736,13 @@ "und": "Seattle Seahawks", "sF": "9", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 50.5, + "pScore": { + "sU": 24.0, + "sF": 26.5 + }, + "week": "2022 Regular Season - Week 6" }, { "date": "Oct 16, 2022", @@ -147672,8 +218751,13 @@ "und": "Kansas City Chiefs", "sF": "24", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 54.0, + "pScore": { + "sU": 25.75, + "sF": 28.25 + }, + "week": "2022 Regular Season - Week 6" }, { "date": "Oct 16, 2022", @@ -147682,8 +218766,13 @@ "und": "Dallas Cowboys", "sF": "26", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.0, + "pScore": { + "sU": 17.75, + "sF": 24.25 + }, + "week": "2022 Regular Season - Week 6" }, { "date": "Oct 17, 2022", @@ -147692,8 +218781,13 @@ "und": "Denver Broncos", "sF": "19", "sU": "16", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.5, + "pScore": { + "sU": 20.5, + "sF": 25.0 + }, + "week": "2022 Regular Season - Week 6" }, { "date": "Oct 20, 2022", @@ -147702,8 +218796,13 @@ "und": "New Orleans Saints", "sF": "42", "sU": "34", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2022 Regular Season - Week 7" }, { "date": "Oct 23, 2022", @@ -147712,8 +218811,13 @@ "und": "Cleveland Browns", "sF": "23", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.5, + "pScore": { + "sU": 19.5, + "sF": 26.0 + }, + "week": "2022 Regular Season - Week 7" }, { "date": "Oct 23, 2022", @@ -147723,7 +218827,12 @@ "sF": "3", "sU": "21", "spread": "13", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 13.25, + "sF": 26.25 + }, + "week": "2022 Regular Season - Week 7" }, { "date": "Oct 23, 2022", @@ -147732,8 +218841,13 @@ "und": "Atlanta Falcons", "sF": "35", "sU": "17", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "2022 Regular Season - Week 7" }, { "date": "Oct 23, 2022", @@ -147742,8 +218856,13 @@ "und": "Detroit Lions", "sF": "24", "sU": "6", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 49.0, + "pScore": { + "sU": 21.25, + "sF": 27.75 + }, + "week": "2022 Regular Season - Week 7" }, { "date": "Oct 23, 2022", @@ -147753,7 +218872,12 @@ "sF": "17", "sU": "23", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2022 Regular Season - Week 7" }, { "date": "Oct 23, 2022", @@ -147762,8 +218886,13 @@ "und": "Indianapolis Colts", "sF": "19", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2022 Regular Season - Week 7" }, { "date": "Oct 23, 2022", @@ -147772,8 +218901,13 @@ "und": "Washington Commanders", "sF": "21", "sU": "23", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.5, + "pScore": { + "sU": 18.5, + "sF": 23.0 + }, + "week": "2022 Regular Season - Week 7" }, { "date": "Oct 23, 2022", @@ -147782,8 +218916,13 @@ "und": "Denver Broncos", "sF": "16", "sU": "9", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.0, + "pScore": { + "sU": 17.75, + "sF": 19.25 + }, + "week": "2022 Regular Season - Week 7" }, { "date": "Oct 23, 2022", @@ -147793,7 +218932,12 @@ "sF": "38", "sU": "20", "spread": "7", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 19.5, + "sF": 26.5 + }, + "week": "2022 Regular Season - Week 7" }, { "date": "Oct 23, 2022", @@ -147802,8 +218946,13 @@ "und": "Seattle Seahawks", "sF": "23", "sU": "37", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 50.5, + "pScore": { + "sU": 23.0, + "sF": 27.5 + }, + "week": "2022 Regular Season - Week 7" }, { "date": "Oct 23, 2022", @@ -147813,11 +218962,12 @@ "sF": "44", "sU": "23", "spread": "1", - "ou": "49", + "ou": 49.0, "pScore": { - "sU": 24, - "sF": 25 - } + "sU": 24.0, + "sF": 25.0 + }, + "week": "2022 Regular Season - Week 7" }, { "date": "Oct 23, 2022", @@ -147826,8 +218976,13 @@ "und": "Pittsburgh Steelers", "sF": "16", "sU": "10", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.5, + "pScore": { + "sU": 18.5, + "sF": 26.0 + }, + "week": "2022 Regular Season - Week 7" }, { "date": "Oct 24, 2022", @@ -147836,8 +218991,13 @@ "und": "Chicago Bears", "sF": "14", "sU": "33", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 40.5, + "pScore": { + "sU": 16.0, + "sF": 24.5 + }, + "week": "2022 Regular Season - Week 7" }, { "date": "Oct 27, 2022", @@ -147846,8 +219006,13 @@ "und": "Baltimore Ravens", "sF": "22", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.5, + "pScore": { + "sU": 22.0, + "sF": 23.5 + }, + "week": "2022 Regular Season - Week 8" }, { "date": "Oct 30, 2022", @@ -147857,7 +219022,12 @@ "sF": "17", "sU": "21", "spread": "2", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.25, + "sF": 21.25 + }, + "week": "2022 Regular Season - Week 8" }, { "date": "Oct 30, 2022", @@ -147867,7 +219037,12 @@ "sF": "37", "sU": "34", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "2022 Regular Season - Week 8" }, { "date": "Oct 30, 2022", @@ -147877,7 +219052,12 @@ "sF": "49", "sU": "29", "spread": "10", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 16.25, + "sF": 26.25 + }, + "week": "2022 Regular Season - Week 8" }, { "date": "Oct 30, 2022", @@ -147886,8 +219066,13 @@ "und": "Detroit Lions", "sF": "31", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 51.5, + "pScore": { + "sU": 24.0, + "sF": 27.5 + }, + "week": "2022 Regular Season - Week 8" }, { "date": "Oct 30, 2022", @@ -147896,8 +219081,13 @@ "und": "Arizona Cardinals", "sF": "34", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.5, + "pScore": { + "sU": 22.5, + "sF": 26.0 + }, + "week": "2022 Regular Season - Week 8" }, { "date": "Oct 30, 2022", @@ -147906,8 +219096,13 @@ "und": "New Orleans Saints", "sF": "0", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 49.5, + "pScore": { + "sU": 24.0, + "sF": 25.5 + }, + "week": "2022 Regular Season - Week 8" }, { "date": "Oct 30, 2022", @@ -147916,8 +219111,13 @@ "und": "New York Jets", "sF": "22", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2022 Regular Season - Week 8" }, { "date": "Oct 30, 2022", @@ -147926,8 +219126,13 @@ "und": "Pittsburgh Steelers", "sF": "35", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.0, + "pScore": { + "sU": 16.25, + "sF": 26.75 + }, + "week": "2022 Regular Season - Week 8" }, { "date": "Oct 30, 2022", @@ -147936,8 +219141,13 @@ "und": "Houston Texans", "sF": "17", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.0, + "pScore": { + "sU": 17.75, + "sF": 21.25 + }, + "week": "2022 Regular Season - Week 8" }, { "date": "Oct 30, 2022", @@ -147947,7 +219157,12 @@ "sF": "27", "sU": "13", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2022 Regular Season - Week 8" }, { "date": "Oct 30, 2022", @@ -147957,7 +219172,12 @@ "sF": "16", "sU": "17", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2022 Regular Season - Week 8" }, { "date": "Oct 30, 2022", @@ -147966,12 +219186,13 @@ "und": "San Francisco 49ers", "sF": "14", "sU": "31", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": 42.0, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 19.75, + "sF": 22.25 + }, + "week": "2022 Regular Season - Week 8" }, { "date": "Oct 30, 2022", @@ -147980,8 +219201,13 @@ "und": "Green Bay Packers", "sF": "27", "sU": "17", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 47.0, + "pScore": { + "sU": 18.25, + "sF": 28.75 + }, + "week": "2022 Regular Season - Week 8" }, { "date": "Oct 31, 2022", @@ -147991,7 +219217,12 @@ "sF": "13", "sU": "32", "spread": "3", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 21.0, + "sF": 24.0 + }, + "week": "2022 Regular Season - Week 8" }, { "date": "Nov 3, 2022", @@ -148000,8 +219231,13 @@ "und": "Houston Texans", "sF": "29", "sU": "17", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 45.5, + "pScore": { + "sU": 16.0, + "sF": 29.5 + }, + "week": "2022 Regular Season - Week 9" }, { "date": "Nov 6, 2022", @@ -148011,7 +219247,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "2022 Regular Season - Week 9" }, { "date": "Nov 6, 2022", @@ -148021,7 +219262,12 @@ "sF": "35", "sU": "32", "spread": "4", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 20.75, + "sF": 24.75 + }, + "week": "2022 Regular Season - Week 9" }, { "date": "Nov 6, 2022", @@ -148031,7 +219277,12 @@ "sF": "42", "sU": "21", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "2022 Regular Season - Week 9" }, { "date": "Nov 6, 2022", @@ -148040,8 +219291,13 @@ "und": "Detroit Lions", "sF": "9", "sU": "15", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "2022 Regular Season - Week 9" }, { "date": "Nov 6, 2022", @@ -148050,8 +219306,13 @@ "und": "Jacksonville Jaguars", "sF": "20", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.0, + "pScore": { + "sU": 22.75, + "sF": 25.25 + }, + "week": "2022 Regular Season - Week 9" }, { "date": "Nov 6, 2022", @@ -148061,7 +219322,12 @@ "sF": "26", "sU": "3", "spread": "5", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.75, + "sF": 22.75 + }, + "week": "2022 Regular Season - Week 9" }, { "date": "Nov 6, 2022", @@ -148071,7 +219337,12 @@ "sF": "17", "sU": "20", "spread": "11", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 17.5, + "sF": 28.5 + }, + "week": "2022 Regular Season - Week 9" }, { "date": "Nov 6, 2022", @@ -148081,7 +219352,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2022 Regular Season - Week 9" }, { "date": "Nov 6, 2022", @@ -148091,7 +219367,12 @@ "sF": "21", "sU": "31", "spread": "2", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 23.5, + "sF": 25.5 + }, + "week": "2022 Regular Season - Week 9" }, { "date": "Nov 6, 2022", @@ -148101,7 +219382,12 @@ "sF": "16", "sU": "13", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2022 Regular Season - Week 9" }, { "date": "Nov 6, 2022", @@ -148110,8 +219396,13 @@ "und": "Tennessee Titans", "sF": "20", "sU": "17", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 45.5, + "pScore": { + "sU": 16.5, + "sF": 29.0 + }, + "week": "2022 Regular Season - Week 9" }, { "date": "Nov 7, 2022", @@ -148120,8 +219411,13 @@ "und": "New Orleans Saints", "sF": "27", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.5, + "pScore": { + "sU": 22.5, + "sF": 24.0 + }, + "week": "2022 Regular Season - Week 9" }, { "date": "Nov 10, 2022", @@ -148130,8 +219426,13 @@ "und": "Carolina Panthers", "sF": "15", "sU": "25", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2022 Regular Season - Week 10" }, { "date": "Nov 13, 2022", @@ -148140,8 +219441,13 @@ "und": "Seattle Seahawks", "sF": "21", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "2022 Regular Season - Week 10" }, { "date": "Nov 13, 2022", @@ -148150,8 +219456,13 @@ "und": "Minnesota Vikings", "sF": "30", "sU": "33", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "2022 Regular Season - Week 10" }, { "date": "Nov 13, 2022", @@ -148160,8 +219471,13 @@ "und": "Detroit Lions", "sF": "30", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.5, + "pScore": { + "sU": 23.0, + "sF": 25.5 + }, + "week": "2022 Regular Season - Week 10" }, { "date": "Nov 13, 2022", @@ -148171,7 +219487,12 @@ "sF": "27", "sU": "17", "spread": "9", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 21.0, + "sF": 30.0 + }, + "week": "2022 Regular Season - Week 10" }, { "date": "Nov 13, 2022", @@ -148180,8 +219501,13 @@ "und": "Cleveland Browns", "sF": "39", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "2022 Regular Season - Week 10" }, { "date": "Nov 13, 2022", @@ -148190,8 +219516,13 @@ "und": "Houston Texans", "sF": "24", "sU": "16", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "2022 Regular Season - Week 10" }, { "date": "Nov 13, 2022", @@ -148201,7 +219532,12 @@ "sF": "10", "sU": "20", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "2022 Regular Season - Week 10" }, { "date": "Nov 13, 2022", @@ -148210,8 +219546,13 @@ "und": "Denver Broncos", "sF": "17", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "2022 Regular Season - Week 10" }, { "date": "Nov 13, 2022", @@ -148221,7 +219562,12 @@ "sF": "20", "sU": "25", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "2022 Regular Season - Week 10" }, { "date": "Nov 13, 2022", @@ -148231,7 +219577,12 @@ "sF": "28", "sU": "31", "spread": "4", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.25, + "sF": 24.25 + }, + "week": "2022 Regular Season - Week 10" }, { "date": "Nov 13, 2022", @@ -148240,8 +219591,13 @@ "und": "Arizona Cardinals", "sF": "17", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "2022 Regular Season - Week 10" }, { "date": "Nov 13, 2022", @@ -148250,8 +219606,13 @@ "und": "Los Angeles Chargers", "sF": "22", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.0, + "pScore": { + "sU": 18.75, + "sF": 26.25 + }, + "week": "2022 Regular Season - Week 10" }, { "date": "Nov 14, 2022", @@ -148260,8 +219621,13 @@ "und": "Washington Commanders", "sF": "21", "sU": "32", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.5, + "pScore": { + "sU": 16.5, + "sF": 27.0 + }, + "week": "2022 Regular Season - Week 10" }, { "date": "Nov 17, 2022", @@ -148271,7 +219637,12 @@ "sF": "17", "sU": "27", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2022 Regular Season - Week 11" }, { "date": "Nov 20, 2022", @@ -148280,8 +219651,13 @@ "und": "Chicago Bears", "sF": "27", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.0, + "pScore": { + "sU": 23.25, + "sF": 25.75 + }, + "week": "2022 Regular Season - Week 11" }, { "date": "Nov 20, 2022", @@ -148291,7 +219667,12 @@ "sF": "13", "sU": "3", "spread": "13", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 14.25, + "sF": 27.25 + }, + "week": "2022 Regular Season - Week 11" }, { "date": "Nov 20, 2022", @@ -148300,8 +219681,13 @@ "und": "Cleveland Browns", "sF": "31", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 50.0, + "pScore": { + "sU": 21.25, + "sF": 28.75 + }, + "week": "2022 Regular Season - Week 11" }, { "date": "Nov 20, 2022", @@ -148311,7 +219697,12 @@ "sF": "23", "sU": "10", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2022 Regular Season - Week 11" }, { "date": "Nov 20, 2022", @@ -148320,8 +219711,13 @@ "und": "Indianapolis Colts", "sF": "17", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.5, + "pScore": { + "sU": 19.5, + "sF": 26.0 + }, + "week": "2022 Regular Season - Week 11" }, { "date": "Nov 20, 2022", @@ -148330,8 +219726,13 @@ "und": "New York Jets", "sF": "10", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "2022 Regular Season - Week 11" }, { "date": "Nov 20, 2022", @@ -148340,8 +219741,13 @@ "und": "Los Angeles Rams", "sF": "27", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "2022 Regular Season - Week 11" }, { "date": "Nov 20, 2022", @@ -148351,7 +219757,12 @@ "sF": "18", "sU": "31", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2022 Regular Season - Week 11" }, { "date": "Nov 20, 2022", @@ -148360,8 +219771,13 @@ "und": "Las Vegas Raiders", "sF": "16", "sU": "22", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "2022 Regular Season - Week 11" }, { "date": "Nov 20, 2022", @@ -148370,8 +219786,13 @@ "und": "Minnesota Vikings", "sF": "40", "sU": "3", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 48.5, + "pScore": { + "sU": 23.5, + "sF": 25.0 + }, + "week": "2022 Regular Season - Week 11" }, { "date": "Nov 20, 2022", @@ -148380,8 +219801,13 @@ "und": "Pittsburgh Steelers", "sF": "37", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.0, + "pScore": { + "sU": 18.25, + "sF": 21.75 + }, + "week": "2022 Regular Season - Week 11" }, { "date": "Nov 20, 2022", @@ -148391,7 +219817,12 @@ "sF": "30", "sU": "27", "spread": "5", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 23.75, + "sF": 28.75 + }, + "week": "2022 Regular Season - Week 11" }, { "date": "Nov 21, 2022", @@ -148401,7 +219832,12 @@ "sF": "38", "sU": "10", "spread": "8", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.5, + "sF": 25.5 + }, + "week": "2022 Regular Season - Week 11" }, { "date": "Nov 24, 2022", @@ -148410,8 +219846,13 @@ "und": "Detroit Lions", "sF": "28", "sU": "25", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 54.5, + "pScore": { + "sU": 22.5, + "sF": 32.0 + }, + "week": "2022 Regular Season - Week 12" }, { "date": "Nov 24, 2022", @@ -148421,7 +219862,12 @@ "sF": "28", "sU": "20", "spread": "10", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 17.75, + "sF": 27.75 + }, + "week": "2022 Regular Season - Week 12" }, { "date": "Nov 24, 2022", @@ -148430,8 +219876,13 @@ "und": "New England Patriots", "sF": "33", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2022 Regular Season - Week 12" }, { "date": "Nov 27, 2022", @@ -148441,7 +219892,12 @@ "sF": "10", "sU": "23", "spread": "1", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 17.5, + "sF": 18.5 + }, + "week": "2022 Regular Season - Week 12" }, { "date": "Nov 27, 2022", @@ -148451,7 +219907,12 @@ "sF": "17", "sU": "23", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2022 Regular Season - Week 12" }, { "date": "Nov 27, 2022", @@ -148460,8 +219921,13 @@ "und": "Jacksonville Jaguars", "sF": "27", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2022 Regular Season - Week 12" }, { "date": "Nov 27, 2022", @@ -148471,7 +219937,12 @@ "sF": "30", "sU": "15", "spread": "14", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 16.5, + "sF": 30.5 + }, + "week": "2022 Regular Season - Week 12" }, { "date": "Nov 27, 2022", @@ -148481,7 +219952,12 @@ "sF": "31", "sU": "10", "spread": "7", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 15.75, + "sF": 22.75 + }, + "week": "2022 Regular Season - Week 12" }, { "date": "Nov 27, 2022", @@ -148490,8 +219966,13 @@ "und": "Tennessee Titans", "sF": "20", "sU": "16", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.0, + "pScore": { + "sU": 20.75, + "sF": 22.25 + }, + "week": "2022 Regular Season - Week 12" }, { "date": "Nov 27, 2022", @@ -148501,7 +219982,12 @@ "sF": "19", "sU": "13", "spread": "4", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.25, + "sF": 22.25 + }, + "week": "2022 Regular Season - Week 12" }, { "date": "Nov 27, 2022", @@ -148510,8 +219996,13 @@ "und": "Arizona Cardinals", "sF": "25", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.5, + "pScore": { + "sU": 23.0, + "sF": 25.5 + }, + "week": "2022 Regular Season - Week 12" }, { "date": "Nov 27, 2022", @@ -148521,7 +220012,12 @@ "sF": "34", "sU": "40", "spread": "4", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 21.75, + "sF": 25.75 + }, + "week": "2022 Regular Season - Week 12" }, { "date": "Nov 27, 2022", @@ -148530,8 +220026,13 @@ "und": "Los Angeles Rams", "sF": "26", "sU": "10", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 42.0, + "pScore": { + "sU": 13.25, + "sF": 28.75 + }, + "week": "2022 Regular Season - Week 12" }, { "date": "Nov 27, 2022", @@ -148541,7 +220042,12 @@ "sF": "13", "sU": "0", "spread": "9", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 17.0, + "sF": 26.0 + }, + "week": "2022 Regular Season - Week 12" }, { "date": "Nov 27, 2022", @@ -148550,8 +220056,13 @@ "und": "Green Bay Packers", "sF": "40", "sU": "33", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.0, + "pScore": { + "sU": 19.75, + "sF": 26.25 + }, + "week": "2022 Regular Season - Week 12" }, { "date": "Nov 28, 2022", @@ -148560,8 +220071,13 @@ "und": "Pittsburgh Steelers", "sF": "17", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.5, + "pScore": { + "sU": 18.5, + "sF": 21.0 + }, + "week": "2022 Regular Season - Week 12" }, { "date": "Dec 1, 2022", @@ -148570,8 +220086,13 @@ "und": "New England Patriots", "sF": "24", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2022 Regular Season - Week 13" }, { "date": "Dec 4, 2022", @@ -148581,7 +220102,12 @@ "sF": "16", "sU": "19", "spread": "1", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 21.0, + "sF": 22.0 + }, + "week": "2022 Regular Season - Week 13" }, { "date": "Dec 4, 2022", @@ -148590,8 +220116,13 @@ "und": "Denver Broncos", "sF": "10", "sU": "9", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 39.5, + "pScore": { + "sU": 15.0, + "sF": 24.5 + }, + "week": "2022 Regular Season - Week 13" }, { "date": "Dec 4, 2022", @@ -148600,8 +220131,13 @@ "und": "Chicago Bears", "sF": "28", "sU": "19", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.0, + "pScore": { + "sU": 20.25, + "sF": 24.75 + }, + "week": "2022 Regular Season - Week 13" }, { "date": "Dec 4, 2022", @@ -148611,7 +220147,12 @@ "sF": "40", "sU": "14", "spread": "1", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 25.0, + "sF": 26.0 + }, + "week": "2022 Regular Season - Week 13" }, { "date": "Dec 4, 2022", @@ -148621,7 +220162,12 @@ "sF": "27", "sU": "14", "spread": "8", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 19.25, + "sF": 27.25 + }, + "week": "2022 Regular Season - Week 13" }, { "date": "Dec 4, 2022", @@ -148631,7 +220177,12 @@ "sF": "27", "sU": "22", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2022 Regular Season - Week 13" }, { "date": "Dec 4, 2022", @@ -148641,7 +220192,12 @@ "sF": "20", "sU": "20", "spread": "2", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.25, + "sF": 21.25 + }, + "week": "2022 Regular Season - Week 13" }, { "date": "Dec 4, 2022", @@ -148651,7 +220207,12 @@ "sF": "35", "sU": "10", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2022 Regular Season - Week 13" }, { "date": "Dec 4, 2022", @@ -148661,7 +220222,12 @@ "sF": "27", "sU": "23", "spread": "7", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.0, + "sF": 24.0 + }, + "week": "2022 Regular Season - Week 13" }, { "date": "Dec 4, 2022", @@ -148670,8 +220236,13 @@ "und": "Miami Dolphins", "sF": "33", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.5, + "pScore": { + "sU": 20.5, + "sF": 25.0 + }, + "week": "2022 Regular Season - Week 13" }, { "date": "Dec 4, 2022", @@ -148680,8 +220251,13 @@ "und": "Cincinnati Bengals", "sF": "24", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 53.0, + "pScore": { + "sU": 25.25, + "sF": 27.75 + }, + "week": "2022 Regular Season - Week 13" }, { "date": "Dec 4, 2022", @@ -148690,8 +220266,13 @@ "und": "Los Angeles Chargers", "sF": "27", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.5, + "pScore": { + "sU": 23.5, + "sF": 26.0 + }, + "week": "2022 Regular Season - Week 13" }, { "date": "Dec 4, 2022", @@ -148700,8 +220281,13 @@ "und": "Indianapolis Colts", "sF": "54", "sU": "19", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 44.5, + "pScore": { + "sU": 17.0, + "sF": 27.5 + }, + "week": "2022 Regular Season - Week 13" }, { "date": "Dec 5, 2022", @@ -148711,7 +220297,12 @@ "sF": "17", "sU": "16", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2022 Regular Season - Week 13" }, { "date": "Dec 8, 2022", @@ -148721,7 +220312,12 @@ "sF": "16", "sU": "17", "spread": "6", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.25, + "sF": 25.25 + }, + "week": "2022 Regular Season - Week 14" }, { "date": "Dec 11, 2022", @@ -148731,7 +220327,12 @@ "sF": "20", "sU": "12", "spread": "10", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.5, + "sF": 26.5 + }, + "week": "2022 Regular Season - Week 14" }, { "date": "Dec 11, 2022", @@ -148740,8 +220341,13 @@ "und": "Cleveland Browns", "sF": "23", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.5, + "pScore": { + "sU": 20.5, + "sF": 26.0 + }, + "week": "2022 Regular Season - Week 14" }, { "date": "Dec 11, 2022", @@ -148751,7 +220357,12 @@ "sF": "27", "sU": "23", "spread": "17", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 13.5, + "sF": 30.5 + }, + "week": "2022 Regular Season - Week 14" }, { "date": "Dec 11, 2022", @@ -148761,7 +220372,12 @@ "sF": "34", "sU": "23", "spread": "2", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 24.75, + "sF": 26.75 + }, + "week": "2022 Regular Season - Week 14" }, { "date": "Dec 11, 2022", @@ -148771,7 +220387,12 @@ "sF": "48", "sU": "22", "spread": "7", - "ou": -1 + "ou": 45.0, + "pScore": { + "sU": 19.0, + "sF": 26.0 + }, + "week": "2022 Regular Season - Week 14" }, { "date": "Dec 11, 2022", @@ -148780,8 +220401,13 @@ "und": "Baltimore Ravens", "sF": "14", "sU": "16", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 36.5, + "pScore": { + "sU": 17.5, + "sF": 19.0 + }, + "week": "2022 Regular Season - Week 14" }, { "date": "Dec 11, 2022", @@ -148790,8 +220416,13 @@ "und": "Jacksonville Jaguars", "sF": "22", "sU": "36", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2022 Regular Season - Week 14" }, { "date": "Dec 11, 2022", @@ -148800,8 +220431,13 @@ "und": "Denver Broncos", "sF": "34", "sU": "28", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 44.0, + "pScore": { + "sU": 17.75, + "sF": 26.25 + }, + "week": "2022 Regular Season - Week 14" }, { "date": "Dec 11, 2022", @@ -148810,8 +220446,13 @@ "und": "Tampa Bay Buccaneers", "sF": "35", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.5, + "pScore": { + "sU": 17.0, + "sF": 20.5 + }, + "week": "2022 Regular Season - Week 14" }, { "date": "Dec 11, 2022", @@ -148821,7 +220462,12 @@ "sF": "24", "sU": "30", "spread": "4", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.25, + "sF": 24.25 + }, + "week": "2022 Regular Season - Week 14" }, { "date": "Dec 11, 2022", @@ -148831,7 +220477,12 @@ "sF": "17", "sU": "23", "spread": "3", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 25.25, + "sF": 28.25 + }, + "week": "2022 Regular Season - Week 14" }, { "date": "Dec 12, 2022", @@ -148840,8 +220491,13 @@ "und": "Arizona Cardinals", "sF": "27", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.5, + "pScore": { + "sU": 21.0, + "sF": 22.5 + }, + "week": "2022 Regular Season - Week 14" }, { "date": "Dec 15, 2022", @@ -148851,7 +220507,12 @@ "sF": "21", "sU": "13", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2022 Regular Season - Week 15" }, { "date": "Dec 17, 2022", @@ -148860,8 +220521,13 @@ "und": "Indianapolis Colts", "sF": "39", "sU": "36", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2022 Regular Season - Week 15" }, { "date": "Dec 17, 2022", @@ -148871,7 +220537,12 @@ "sF": "13", "sU": "3", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2022 Regular Season - Week 15" }, { "date": "Dec 17, 2022", @@ -148881,7 +220552,12 @@ "sF": "32", "sU": "29", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2022 Regular Season - Week 15" }, { "date": "Dec 18, 2022", @@ -148890,8 +220566,13 @@ "und": "Pittsburgh Steelers", "sF": "16", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2022 Regular Season - Week 15" }, { "date": "Dec 18, 2022", @@ -148900,8 +220581,13 @@ "und": "Chicago Bears", "sF": "25", "sU": "20", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 48.5, + "pScore": { + "sU": 20.0, + "sF": 28.5 + }, + "week": "2022 Regular Season - Week 15" }, { "date": "Dec 18, 2022", @@ -148910,8 +220596,13 @@ "und": "Houston Texans", "sF": "30", "sU": "24", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 48.5, + "pScore": { + "sU": 17.0, + "sF": 31.5 + }, + "week": "2022 Regular Season - Week 15" }, { "date": "Dec 18, 2022", @@ -148921,7 +220612,12 @@ "sF": "34", "sU": "40", "spread": "4", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.0, + "sF": 26.0 + }, + "week": "2022 Regular Season - Week 15" }, { "date": "Dec 18, 2022", @@ -148931,7 +220627,12 @@ "sF": "21", "sU": "18", "spread": "4", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 19.75, + "sF": 23.75 + }, + "week": "2022 Regular Season - Week 15" }, { "date": "Dec 18, 2022", @@ -148941,7 +220642,12 @@ "sF": "17", "sU": "20", "spread": "1", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 21.25, + "sF": 22.25 + }, + "week": "2022 Regular Season - Week 15" }, { "date": "Dec 18, 2022", @@ -148950,8 +220656,13 @@ "und": "Arizona Cardinals", "sF": "24", "sU": "15", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 36.5, + "pScore": { + "sU": 17.5, + "sF": 19.0 + }, + "week": "2022 Regular Season - Week 15" }, { "date": "Dec 18, 2022", @@ -148960,8 +220671,13 @@ "und": "New England Patriots", "sF": "30", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 45.0, + "pScore": { + "sU": 21.75, + "sF": 23.25 + }, + "week": "2022 Regular Season - Week 15" }, { "date": "Dec 18, 2022", @@ -148971,7 +220687,12 @@ "sF": "17", "sU": "14", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2022 Regular Season - Week 15" }, { "date": "Dec 18, 2022", @@ -148980,8 +220701,13 @@ "und": "Tampa Bay Buccaneers", "sF": "34", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2022 Regular Season - Week 15" }, { "date": "Dec 18, 2022", @@ -148990,8 +220716,13 @@ "und": "New York Giants", "sF": "12", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "2022 Regular Season - Week 15" }, { "date": "Dec 19, 2022", @@ -149001,7 +220732,12 @@ "sF": "24", "sU": "12", "spread": "7", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.25, + "sF": 23.25 + }, + "week": "2022 Regular Season - Week 15" }, { "date": "Dec 22, 2022", @@ -149011,7 +220747,12 @@ "sF": "3", "sU": "19", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "2022 Regular Season - Week 16" }, { "date": "Dec 24, 2022", @@ -149020,8 +220761,13 @@ "und": "Atlanta Falcons", "sF": "17", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 34.5, + "pScore": { + "sU": 14.0, + "sF": 20.5 + }, + "week": "2022 Regular Season - Week 16" }, { "date": "Dec 24, 2022", @@ -149030,8 +220776,13 @@ "und": "Carolina Panthers", "sF": "23", "sU": "37", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2022 Regular Season - Week 16" }, { "date": "Dec 24, 2022", @@ -149041,7 +220792,12 @@ "sF": "35", "sU": "13", "spread": "8", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.0, + "sF": 24.0 + }, + "week": "2022 Regular Season - Week 16" }, { "date": "Dec 24, 2022", @@ -149051,7 +220807,12 @@ "sF": "10", "sU": "17", "spread": "3", - "ou": -1 + "ou": 32.0, + "pScore": { + "sU": 14.5, + "sF": 17.5 + }, + "week": "2022 Regular Season - Week 16" }, { "date": "Dec 24, 2022", @@ -149061,7 +220822,12 @@ "sF": "24", "sU": "10", "spread": "10", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 19.75, + "sF": 29.75 + }, + "week": "2022 Regular Season - Week 16" }, { "date": "Dec 24, 2022", @@ -149071,7 +220837,12 @@ "sF": "27", "sU": "24", "spread": "4", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 22.75, + "sF": 26.75 + }, + "week": "2022 Regular Season - Week 16" }, { "date": "Dec 24, 2022", @@ -149081,7 +220852,12 @@ "sF": "22", "sU": "18", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2022 Regular Season - Week 16" }, { "date": "Dec 24, 2022", @@ -149091,7 +220867,12 @@ "sF": "13", "sU": "10", "spread": "2", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 18.0, + "sF": 20.0 + }, + "week": "2022 Regular Season - Week 16" }, { "date": "Dec 24, 2022", @@ -149101,7 +220882,12 @@ "sF": "14", "sU": "19", "spread": "3", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 16.25, + "sF": 19.25 + }, + "week": "2022 Regular Season - Week 16" }, { "date": "Dec 24, 2022", @@ -149110,8 +220896,13 @@ "und": "Washington Commanders", "sF": "37", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.5, + "pScore": { + "sU": 15.5, + "sF": 22.0 + }, + "week": "2022 Regular Season - Week 16" }, { "date": "Dec 24, 2022", @@ -149120,8 +220911,13 @@ "und": "Philadelphia Eagles", "sF": "40", "sU": "34", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.0, + "pScore": { + "sU": 21.25, + "sF": 25.75 + }, + "week": "2022 Regular Season - Week 16" }, { "date": "Dec 25, 2022", @@ -149130,8 +220926,13 @@ "und": "Green Bay Packers", "sF": "20", "sU": "26", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "2022 Regular Season - Week 16" }, { "date": "Dec 25, 2022", @@ -149141,7 +220942,12 @@ "sF": "14", "sU": "51", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2022 Regular Season - Week 16" }, { "date": "Dec 25, 2022", @@ -149150,8 +220956,13 @@ "und": "Arizona Cardinals", "sF": "19", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.5, + "pScore": { + "sU": 16.5, + "sF": 24.0 + }, + "week": "2022 Regular Season - Week 16" }, { "date": "Dec 26, 2022", @@ -149161,7 +220972,12 @@ "sF": "20", "sU": "3", "spread": "4", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 20.75, + "sF": 24.75 + }, + "week": "2022 Regular Season - Week 16" }, { "date": "Dec 29, 2022", @@ -149170,8 +220986,13 @@ "und": "Tennessee Titans", "sF": "27", "sU": "13", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 39.5, + "pScore": { + "sU": 13.5, + "sF": 26.0 + }, + "week": "2022 Regular Season - Week 17" }, { "date": "Jan 1, 2023", @@ -149181,7 +221002,12 @@ "sF": "20", "sU": "19", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2022 Regular Season - Week 17" }, { "date": "Jan 1, 2023", @@ -149191,7 +221017,12 @@ "sF": "41", "sU": "10", "spread": "6", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 23.25, + "sF": 29.25 + }, + "week": "2022 Regular Season - Week 17" }, { "date": "Jan 1, 2023", @@ -149201,7 +221032,12 @@ "sF": "31", "sU": "3", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2022 Regular Season - Week 17" }, { "date": "Jan 1, 2023", @@ -149210,8 +221046,13 @@ "und": "Denver Broncos", "sF": "27", "sU": "24", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 45.0, + "pScore": { + "sU": 16.25, + "sF": 28.75 + }, + "week": "2022 Regular Season - Week 17" }, { "date": "Jan 1, 2023", @@ -149220,8 +221061,13 @@ "und": "Miami Dolphins", "sF": "23", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "2022 Regular Season - Week 17" }, { "date": "Jan 1, 2023", @@ -149230,8 +221076,13 @@ "und": "Indianapolis Colts", "sF": "38", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 39.0, + "pScore": { + "sU": 16.75, + "sF": 22.25 + }, + "week": "2022 Regular Season - Week 17" }, { "date": "Jan 1, 2023", @@ -149240,8 +221091,13 @@ "und": "New Orleans Saints", "sF": "10", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.5, + "pScore": { + "sU": 18.0, + "sF": 23.5 + }, + "week": "2022 Regular Season - Week 17" }, { "date": "Jan 1, 2023", @@ -149250,8 +221106,13 @@ "und": "Carolina Panthers", "sF": "30", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 40.5, + "pScore": { + "sU": 18.5, + "sF": 22.0 + }, + "week": "2022 Regular Season - Week 17" }, { "date": "Jan 1, 2023", @@ -149261,7 +221122,12 @@ "sF": "10", "sU": "24", "spread": "2", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 19.25, + "sF": 21.25 + }, + "week": "2022 Regular Season - Week 17" }, { "date": "Jan 1, 2023", @@ -149270,8 +221136,13 @@ "und": "Las Vegas Raiders", "sF": "37", "sU": "34", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.5, + "pScore": { + "sU": 16.5, + "sF": 26.0 + }, + "week": "2022 Regular Season - Week 17" }, { "date": "Jan 1, 2023", @@ -149280,8 +221151,13 @@ "und": "Seattle Seahawks", "sF": "6", "sU": "23", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.5, + "pScore": { + "sU": 20.5, + "sF": 22.0 + }, + "week": "2022 Regular Season - Week 17" }, { "date": "Jan 1, 2023", @@ -149291,7 +221167,12 @@ "sF": "41", "sU": "17", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2022 Regular Season - Week 17" }, { "date": "Jan 1, 2023", @@ -149300,8 +221181,13 @@ "und": "Los Angeles Rams", "sF": "31", "sU": "10", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "2022 Regular Season - Week 17" }, { "date": "Jan 1, 2023", @@ -149310,8 +221196,13 @@ "und": "Pittsburgh Steelers", "sF": "13", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.0, + "pScore": { + "sU": 16.25, + "sF": 18.75 + }, + "week": "2022 Regular Season - Week 17" }, { "date": "Jan 7, 2023", @@ -149321,7 +221212,12 @@ "sF": "31", "sU": "13", "spread": "9", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 21.75, + "sF": 30.75 + }, + "week": "2022 Regular Season - Week 18" }, { "date": "Jan 7, 2023", @@ -149330,8 +221226,13 @@ "und": "Tennessee Titans", "sF": "20", "sU": "16", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "2022 Regular Season - Week 18" }, { "date": "Jan 8, 2023", @@ -149341,7 +221242,12 @@ "sF": "30", "sU": "17", "spread": "4", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.25, + "sF": 22.25 + }, + "week": "2022 Regular Season - Week 18" }, { "date": "Jan 8, 2023", @@ -149350,8 +221256,13 @@ "und": "New England Patriots", "sF": "35", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 43.5, + "pScore": { + "sU": 18.0, + "sF": 25.5 + }, + "week": "2022 Regular Season - Week 18" }, { "date": "Jan 8, 2023", @@ -149361,7 +221272,12 @@ "sF": "29", "sU": "13", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "2022 Regular Season - Week 18" }, { "date": "Jan 8, 2023", @@ -149371,7 +221287,12 @@ "sF": "27", "sU": "16", "spread": "9", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 15.25, + "sF": 24.25 + }, + "week": "2022 Regular Season - Week 18" }, { "date": "Jan 8, 2023", @@ -149380,8 +221301,13 @@ "und": "Houston Texans", "sF": "31", "sU": "32", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2022 Regular Season - Week 18" }, { "date": "Jan 8, 2023", @@ -149390,8 +221316,13 @@ "und": "New York Jets", "sF": "11", "sU": "6", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2022 Regular Season - Week 18" }, { "date": "Jan 8, 2023", @@ -149400,8 +221331,13 @@ "und": "Carolina Panthers", "sF": "7", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2022 Regular Season - Week 18" }, { "date": "Jan 8, 2023", @@ -149410,8 +221346,13 @@ "und": "Cleveland Browns", "sF": "28", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2022 Regular Season - Week 18" }, { "date": "Jan 8, 2023", @@ -149421,7 +221362,12 @@ "sF": "31", "sU": "28", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2022 Regular Season - Week 18" }, { "date": "Jan 8, 2023", @@ -149431,7 +221377,12 @@ "sF": "22", "sU": "16", "spread": "16", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 13.0, + "sF": 29.0 + }, + "week": "2022 Regular Season - Week 18" }, { "date": "Jan 8, 2023", @@ -149441,7 +221392,12 @@ "sF": "38", "sU": "13", "spread": "14", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 12.75, + "sF": 26.75 + }, + "week": "2022 Regular Season - Week 18" }, { "date": "Jan 8, 2023", @@ -149451,7 +221407,12 @@ "sF": "19", "sU": "16", "spread": "6", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.75, + "sF": 23.75 + }, + "week": "2022 Regular Season - Week 18" }, { "date": "Jan 8, 2023", @@ -149461,7 +221422,12 @@ "sF": "6", "sU": "26", "spread": "7", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 16.5, + "sF": 23.5 + }, + "week": "2022 Regular Season - Week 18" }, { "date": "Jan 8, 2023", @@ -149471,7 +221437,12 @@ "sF": "16", "sU": "20", "spread": "5", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 22.0, + "sF": 27.0 + }, + "week": "2022 Regular Season - Week 18" }, { "date": "Jan 14, 2023", @@ -149480,8 +221451,13 @@ "und": "Seattle Seahawks (7)", "sF": "41", "sU": "23", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.0, + "pScore": { + "sU": 16.25, + "sF": 25.75 + }, + "week": "2022 Playoffs" }, { "date": "Jan 14, 2023", @@ -149490,8 +221466,13 @@ "und": "Jacksonville Jaguars (4)", "sF": "30", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.5, + "pScore": { + "sU": 22.5, + "sF": 25.0 + }, + "week": "2022 Playoffs" }, { "date": "Jan 15, 2023", @@ -149500,8 +221481,13 @@ "und": "Miami Dolphins (7)", "sF": "34", "sU": "31", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 43.5, + "pScore": { + "sU": 15.0, + "sF": 28.5 + }, + "week": "2022 Playoffs" }, { "date": "Jan 15, 2023", @@ -149511,7 +221497,12 @@ "sF": "24", "sU": "31", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2022 Playoffs" }, { "date": "Jan 15, 2023", @@ -149520,8 +221511,13 @@ "und": "Baltimore Ravens (6)", "sF": "24", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 40.5, + "pScore": { + "sU": 16.0, + "sF": 24.5 + }, + "week": "2022 Playoffs" }, { "date": "Jan 16, 2023", @@ -149531,7 +221527,12 @@ "sF": "31", "sU": "14", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2022 Playoffs" }, { "date": "Jan 21, 2023", @@ -149541,7 +221542,12 @@ "sF": "27", "sU": "20", "spread": "9", - "ou": -1 + "ou": 52.5, + "pScore": { + "sU": 21.75, + "sF": 30.75 + }, + "week": "2022 Playoffs" }, { "date": "Jan 21, 2023", @@ -149550,8 +221556,13 @@ "und": "New York Giants (6)", "sF": "38", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.0, + "pScore": { + "sU": 20.25, + "sF": 27.75 + }, + "week": "2022 Playoffs" }, { "date": "Jan 22, 2023", @@ -149560,8 +221571,13 @@ "und": "Cincinnati Bengals (3)", "sF": "10", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 49.0, + "pScore": { + "sU": 21.75, + "sF": 27.25 + }, + "week": "2022 Playoffs" }, { "date": "Jan 22, 2023", @@ -149571,7 +221587,12 @@ "sF": "19", "sU": "12", "spread": "4", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 21.5, + "sF": 25.5 + }, + "week": "2022 Playoffs" }, { "date": "Jan 29, 2023", @@ -149580,12 +221601,13 @@ "und": "San Francisco 49ers (2)", "sF": "31", "sU": "7", - "spread": "2", - "ou": "49", + "spread": "2.5", + "ou": 45.5, "pScore": { - "sU": 23.5, - "sF": 25.5 - } + "sU": 21.5, + "sF": 24.0 + }, + "week": "2022 Playoffs" }, { "date": "Jan 29, 2023", @@ -149594,8 +221616,13 @@ "und": "Cincinnati Bengals (3)", "sF": "23", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 48.0, + "pScore": { + "sU": 23.25, + "sF": 24.75 + }, + "week": "2022 Playoffs" }, { "date": "Feb 12, 2023", @@ -149605,7 +221632,12 @@ "sF": "35", "sU": "38", "spread": "1", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 25.0, + "sF": 26.0 + }, + "week": "2022 Playoffs" }, { "date": "Sep 7, 2023", @@ -149615,7 +221647,12 @@ "sF": "20", "sU": "21", "spread": "4", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 24.75, + "sF": 28.75 + }, + "week": "2023 Regular Season - Week 1" }, { "date": "Sep 10, 2023", @@ -149625,7 +221662,12 @@ "sF": "24", "sU": "10", "spread": "3", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 20.0, + "sF": 23.0 + }, + "week": "2023 Regular Season - Week 1" }, { "date": "Sep 10, 2023", @@ -149635,7 +221677,12 @@ "sF": "25", "sU": "9", "spread": "9", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.75, + "sF": 26.75 + }, + "week": "2023 Regular Season - Week 1" }, { "date": "Sep 10, 2023", @@ -149644,8 +221691,13 @@ "und": "Green Bay Packers", "sF": "20", "sU": "38", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2023 Regular Season - Week 1" }, { "date": "Sep 10, 2023", @@ -149655,7 +221707,12 @@ "sF": "3", "sU": "24", "spread": "1", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.75, + "sF": 23.75 + }, + "week": "2023 Regular Season - Week 1" }, { "date": "Sep 10, 2023", @@ -149664,8 +221721,13 @@ "und": "Indianapolis Colts", "sF": "31", "sU": "21", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.5, + "pScore": { + "sU": 20.0, + "sF": 23.5 + }, + "week": "2023 Regular Season - Week 1" }, { "date": "Sep 10, 2023", @@ -149675,7 +221737,12 @@ "sF": "17", "sU": "20", "spread": "4", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 20.75, + "sF": 24.75 + }, + "week": "2023 Regular Season - Week 1" }, { "date": "Sep 10, 2023", @@ -149684,8 +221751,13 @@ "und": "Tennessee Titans", "sF": "16", "sU": "15", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2023 Regular Season - Week 1" }, { "date": "Sep 10, 2023", @@ -149694,8 +221766,13 @@ "und": "Pittsburgh Steelers", "sF": "30", "sU": "7", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 1" }, { "date": "Sep 10, 2023", @@ -149705,7 +221782,12 @@ "sF": "20", "sU": "16", "spread": "6", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.25, + "sF": 23.25 + }, + "week": "2023 Regular Season - Week 1" }, { "date": "Sep 10, 2023", @@ -149714,8 +221796,13 @@ "und": "Las Vegas Raiders", "sF": "16", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2023 Regular Season - Week 1" }, { "date": "Sep 10, 2023", @@ -149724,8 +221811,13 @@ "und": "Miami Dolphins", "sF": "34", "sU": "36", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.5, + "pScore": { + "sU": 23.5, + "sF": 26.0 + }, + "week": "2023 Regular Season - Week 1" }, { "date": "Sep 10, 2023", @@ -149735,7 +221827,12 @@ "sF": "25", "sU": "20", "spread": "4", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 20.75, + "sF": 24.75 + }, + "week": "2023 Regular Season - Week 1" }, { "date": "Sep 10, 2023", @@ -149744,8 +221841,13 @@ "und": "Los Angeles Rams", "sF": "13", "sU": "30", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.5, + "pScore": { + "sU": 20.5, + "sF": 26.0 + }, + "week": "2023 Regular Season - Week 1" }, { "date": "Sep 10, 2023", @@ -149755,7 +221857,12 @@ "sF": "40", "sU": "0", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2023 Regular Season - Week 1" }, { "date": "Sep 11, 2023", @@ -149764,8 +221871,13 @@ "und": "New York Jets", "sF": "16", "sU": "22", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.5, + "pScore": { + "sU": 23.0, + "sF": 24.5 + }, + "week": "2023 Regular Season - Week 1" }, { "date": "Sep 14, 2023", @@ -149775,7 +221887,12 @@ "sF": "34", "sU": "28", "spread": "6", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.5, + "sF": 27.5 + }, + "week": "2023 Regular Season - Week 2" }, { "date": "Sep 17, 2023", @@ -149785,7 +221902,12 @@ "sF": "25", "sU": "24", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2023 Regular Season - Week 2" }, { "date": "Sep 17, 2023", @@ -149795,7 +221917,12 @@ "sF": "38", "sU": "10", "spread": "8", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 19.5, + "sF": 27.5 + }, + "week": "2023 Regular Season - Week 2" }, { "date": "Sep 17, 2023", @@ -149804,8 +221931,13 @@ "und": "Baltimore Ravens", "sF": "24", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "2023 Regular Season - Week 2" }, { "date": "Sep 17, 2023", @@ -149814,8 +221946,13 @@ "und": "Seattle Seahawks", "sF": "31", "sU": "37", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.0, + "pScore": { + "sU": 21.25, + "sF": 25.75 + }, + "week": "2023 Regular Season - Week 2" }, { "date": "Sep 17, 2023", @@ -149825,7 +221962,12 @@ "sF": "20", "sU": "31", "spread": "1", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 19.5, + "sF": 20.5 + }, + "week": "2023 Regular Season - Week 2" }, { "date": "Sep 17, 2023", @@ -149834,8 +221976,13 @@ "und": "Jacksonville Jaguars", "sF": "17", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 51.0, + "pScore": { + "sU": 23.75, + "sF": 27.25 + }, + "week": "2023 Regular Season - Week 2" }, { "date": "Sep 17, 2023", @@ -149844,8 +221991,13 @@ "und": "Chicago Bears", "sF": "27", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "2023 Regular Season - Week 2" }, { "date": "Sep 17, 2023", @@ -149854,8 +222006,13 @@ "und": "Tennessee Titans", "sF": "24", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2023 Regular Season - Week 2" }, { "date": "Sep 17, 2023", @@ -149864,8 +222021,13 @@ "und": "Arizona Cardinals", "sF": "31", "sU": "28", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 36.5, + "pScore": { + "sU": 16.0, + "sF": 20.5 + }, + "week": "2023 Regular Season - Week 2" }, { "date": "Sep 17, 2023", @@ -149874,8 +222036,13 @@ "und": "Los Angeles Rams", "sF": "30", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.5, + "pScore": { + "sU": 18.5, + "sF": 26.0 + }, + "week": "2023 Regular Season - Week 2" }, { "date": "Sep 17, 2023", @@ -149884,8 +222051,13 @@ "und": "New York Jets", "sF": "30", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 38.5, + "pScore": { + "sU": 15.0, + "sF": 23.5 + }, + "week": "2023 Regular Season - Week 2" }, { "date": "Sep 17, 2023", @@ -149895,7 +222067,12 @@ "sF": "33", "sU": "35", "spread": "4", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.25, + "sF": 21.25 + }, + "week": "2023 Regular Season - Week 2" }, { "date": "Sep 17, 2023", @@ -149905,7 +222082,12 @@ "sF": "24", "sU": "17", "spread": "2", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.25, + "sF": 24.25 + }, + "week": "2023 Regular Season - Week 2" }, { "date": "Sep 18, 2023", @@ -149915,7 +222097,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2023 Regular Season - Week 2" }, { "date": "Sep 18, 2023", @@ -149924,8 +222111,13 @@ "und": "Pittsburgh Steelers", "sF": "22", "sU": "26", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "2023 Regular Season - Week 2" }, { "date": "Sep 21, 2023", @@ -149934,8 +222126,13 @@ "und": "New York Giants", "sF": "30", "sU": "12", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 43.5, + "pScore": { + "sU": 16.5, + "sF": 27.0 + }, + "week": "2023 Regular Season - Week 3" }, { "date": "Sep 24, 2023", @@ -149944,8 +222141,13 @@ "und": "Indianapolis Colts", "sF": "19", "sU": "22", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.5, + "pScore": { + "sU": 18.5, + "sF": 26.0 + }, + "week": "2023 Regular Season - Week 3" }, { "date": "Sep 24, 2023", @@ -149954,8 +222156,13 @@ "und": "Tennessee Titans", "sF": "27", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.0, + "pScore": { + "sU": 17.25, + "sF": 20.75 + }, + "week": "2023 Regular Season - Week 3" }, { "date": "Sep 24, 2023", @@ -149965,7 +222172,12 @@ "sF": "20", "sU": "6", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2023 Regular Season - Week 3" }, { "date": "Sep 24, 2023", @@ -149974,8 +222186,13 @@ "und": "New Orleans Saints", "sF": "18", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.5, + "pScore": { + "sU": 20.0, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 3" }, { "date": "Sep 24, 2023", @@ -149984,8 +222201,13 @@ "und": "Houston Texans", "sF": "17", "sU": "37", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.5, + "pScore": { + "sU": 17.0, + "sF": 26.5 + }, + "week": "2023 Regular Season - Week 3" }, { "date": "Sep 24, 2023", @@ -149995,7 +222217,12 @@ "sF": "70", "sU": "20", "spread": "6", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.75, + "sF": 26.75 + }, + "week": "2023 Regular Season - Week 3" }, { "date": "Sep 24, 2023", @@ -150005,7 +222232,12 @@ "sF": "24", "sU": "28", "spread": "1", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 26.0, + "sF": 27.0 + }, + "week": "2023 Regular Season - Week 3" }, { "date": "Sep 24, 2023", @@ -150014,8 +222246,13 @@ "und": "New York Jets", "sF": "15", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.5, + "pScore": { + "sU": 16.5, + "sF": 19.0 + }, + "week": "2023 Regular Season - Week 3" }, { "date": "Sep 24, 2023", @@ -150024,8 +222261,13 @@ "und": "Washington Commanders", "sF": "37", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.5, + "pScore": { + "sU": 19.5, + "sF": 24.0 + }, + "week": "2023 Regular Season - Week 3" }, { "date": "Sep 24, 2023", @@ -150035,7 +222277,12 @@ "sF": "37", "sU": "27", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "2023 Regular Season - Week 3" }, { "date": "Sep 24, 2023", @@ -150044,8 +222291,13 @@ "und": "Arizona Cardinals", "sF": "16", "sU": "28", - "spread": "11", - "ou": -1 + "spread": "11.5", + "ou": 43.5, + "pScore": { + "sU": 16.0, + "sF": 27.5 + }, + "week": "2023 Regular Season - Week 3" }, { "date": "Sep 24, 2023", @@ -150055,7 +222307,12 @@ "sF": "41", "sU": "10", "spread": "13", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 17.75, + "sF": 30.75 + }, + "week": "2023 Regular Season - Week 3" }, { "date": "Sep 24, 2023", @@ -150065,7 +222322,12 @@ "sF": "18", "sU": "23", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2023 Regular Season - Week 3" }, { "date": "Sep 25, 2023", @@ -150075,7 +222337,12 @@ "sF": "25", "sU": "11", "spread": "6", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 19.0, + "sF": 25.0 + }, + "week": "2023 Regular Season - Week 3" }, { "date": "Sep 25, 2023", @@ -150085,7 +222352,12 @@ "sF": "19", "sU": "16", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2023 Regular Season - Week 3" }, { "date": "Sep 28, 2023", @@ -150094,8 +222366,13 @@ "und": "Green Bay Packers", "sF": "34", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.0, + "pScore": { + "sU": 21.25, + "sF": 23.75 + }, + "week": "2023 Regular Season - Week 4" }, { "date": "Oct 1, 2023", @@ -150104,8 +222381,13 @@ "und": "Atlanta Falcons", "sF": "23", "sU": "7", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2023 Regular Season - Week 4" }, { "date": "Oct 1, 2023", @@ -150114,8 +222396,13 @@ "und": "Miami Dolphins", "sF": "48", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 53.0, + "pScore": { + "sU": 25.25, + "sF": 27.75 + }, + "week": "2023 Regular Season - Week 4" }, { "date": "Oct 1, 2023", @@ -150124,8 +222411,13 @@ "und": "Carolina Panthers", "sF": "21", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.5, + "pScore": { + "sU": 21.0, + "sF": 25.5 + }, + "week": "2023 Regular Season - Week 4" }, { "date": "Oct 1, 2023", @@ -150135,7 +222427,12 @@ "sF": "31", "sU": "28", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2023 Regular Season - Week 4" }, { "date": "Oct 1, 2023", @@ -150144,8 +222441,13 @@ "und": "Cleveland Browns", "sF": "28", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "2023 Regular Season - Week 4" }, { "date": "Oct 1, 2023", @@ -150155,7 +222457,12 @@ "sF": "6", "sU": "30", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2023 Regular Season - Week 4" }, { "date": "Oct 1, 2023", @@ -150165,7 +222472,12 @@ "sF": "29", "sU": "23", "spread": "1", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.75, + "sF": 22.75 + }, + "week": "2023 Regular Season - Week 4" }, { "date": "Oct 1, 2023", @@ -150174,8 +222486,13 @@ "und": "Tampa Bay Buccaneers", "sF": "9", "sU": "26", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 41.0, + "pScore": { + "sU": 18.25, + "sF": 22.75 + }, + "week": "2023 Regular Season - Week 4" }, { "date": "Oct 1, 2023", @@ -150184,8 +222501,13 @@ "und": "Washington Commanders", "sF": "34", "sU": "31", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "2023 Regular Season - Week 4" }, { "date": "Oct 1, 2023", @@ -150194,8 +222516,13 @@ "und": "Tennessee Titans", "sF": "3", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2023 Regular Season - Week 4" }, { "date": "Oct 1, 2023", @@ -150204,8 +222531,13 @@ "und": "Las Vegas Raiders", "sF": "24", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 48.5, + "pScore": { + "sU": 21.5, + "sF": 27.0 + }, + "week": "2023 Regular Season - Week 4" }, { "date": "Oct 1, 2023", @@ -150214,8 +222546,13 @@ "und": "New England Patriots", "sF": "38", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2023 Regular Season - Week 4" }, { "date": "Oct 1, 2023", @@ -150224,8 +222561,13 @@ "und": "Arizona Cardinals", "sF": "35", "sU": "16", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 44.5, + "pScore": { + "sU": 14.0, + "sF": 30.5 + }, + "week": "2023 Regular Season - Week 4" }, { "date": "Oct 1, 2023", @@ -150234,8 +222576,13 @@ "und": "New York Jets", "sF": "23", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 41.5, + "pScore": { + "sU": 16.0, + "sF": 25.5 + }, + "week": "2023 Regular Season - Week 4" }, { "date": "Oct 2, 2023", @@ -150244,8 +222591,13 @@ "und": "New York Giants", "sF": "24", "sU": "3", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "2023 Regular Season - Week 4" }, { "date": "Oct 5, 2023", @@ -150255,7 +222607,12 @@ "sF": "20", "sU": "40", "spread": "6", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.25, + "sF": 25.25 + }, + "week": "2023 Regular Season - Week 5" }, { "date": "Oct 8, 2023", @@ -150264,8 +222621,13 @@ "und": "Jacksonville Jaguars", "sF": "20", "sU": "25", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 48.5, + "pScore": { + "sU": 21.5, + "sF": 27.0 + }, + "week": "2023 Regular Season - Week 5" }, { "date": "Oct 8, 2023", @@ -150274,8 +222636,13 @@ "und": "Houston Texans", "sF": "21", "sU": "19", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "2023 Regular Season - Week 5" }, { "date": "Oct 8, 2023", @@ -150284,8 +222651,13 @@ "und": "Carolina Panthers", "sF": "42", "sU": "24", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.5, + "pScore": { + "sU": 17.0, + "sF": 26.5 + }, + "week": "2023 Regular Season - Week 5" }, { "date": "Oct 8, 2023", @@ -150294,8 +222666,13 @@ "und": "Indianapolis Colts", "sF": "16", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2023 Regular Season - Week 5" }, { "date": "Oct 8, 2023", @@ -150305,7 +222682,12 @@ "sF": "31", "sU": "16", "spread": "13", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 17.25, + "sF": 30.25 + }, + "week": "2023 Regular Season - Week 5" }, { "date": "Oct 8, 2023", @@ -150314,8 +222696,13 @@ "und": "New Orleans Saints", "sF": "0", "sU": "34", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.5, + "pScore": { + "sU": 18.5, + "sF": 20.0 + }, + "week": "2023 Regular Season - Week 5" }, { "date": "Oct 8, 2023", @@ -150324,8 +222711,13 @@ "und": "Pittsburgh Steelers", "sF": "10", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.5, + "pScore": { + "sU": 17.0, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 5" }, { "date": "Oct 8, 2023", @@ -150335,7 +222727,12 @@ "sF": "34", "sU": "20", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2023 Regular Season - Week 5" }, { "date": "Oct 8, 2023", @@ -150344,8 +222741,13 @@ "und": "Los Angeles Rams", "sF": "23", "sU": "14", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "2023 Regular Season - Week 5" }, { "date": "Oct 8, 2023", @@ -150354,8 +222756,13 @@ "und": "New York Jets", "sF": "21", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2023 Regular Season - Week 5" }, { "date": "Oct 8, 2023", @@ -150364,8 +222771,13 @@ "und": "Minnesota Vikings", "sF": "27", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 52.5, + "pScore": { + "sU": 24.5, + "sF": 28.0 + }, + "week": "2023 Regular Season - Week 5" }, { "date": "Oct 8, 2023", @@ -150374,8 +222786,13 @@ "und": "Dallas Cowboys", "sF": "42", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.0, + "pScore": { + "sU": 20.75, + "sF": 24.25 + }, + "week": "2023 Regular Season - Week 5" }, { "date": "Oct 9, 2023", @@ -150384,8 +222801,13 @@ "und": "Green Bay Packers", "sF": "17", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.5, + "pScore": { + "sU": 21.5, + "sF": 23.0 + }, + "week": "2023 Regular Season - Week 5" }, { "date": "Oct 12, 2023", @@ -150394,8 +222816,13 @@ "und": "Denver Broncos", "sF": "19", "sU": "8", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 47.5, + "pScore": { + "sU": 18.5, + "sF": 29.0 + }, + "week": "2023 Regular Season - Week 6" }, { "date": "Oct 15, 2023", @@ -150405,7 +222832,12 @@ "sF": "24", "sU": "16", "spread": "5", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.75, + "sF": 23.75 + }, + "week": "2023 Regular Season - Week 6" }, { "date": "Oct 15, 2023", @@ -150414,8 +222846,13 @@ "und": "Washington Commanders", "sF": "16", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.5, + "pScore": { + "sU": 20.0, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 6" }, { "date": "Oct 15, 2023", @@ -150425,7 +222862,12 @@ "sF": "19", "sU": "13", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2023 Regular Season - Week 6" }, { "date": "Oct 15, 2023", @@ -150435,7 +222877,12 @@ "sF": "17", "sU": "13", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2023 Regular Season - Week 6" }, { "date": "Oct 15, 2023", @@ -150444,8 +222891,13 @@ "und": "Cleveland Browns", "sF": "17", "sU": "19", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 35.5, + "pScore": { + "sU": 13.0, + "sF": 22.5 + }, + "week": "2023 Regular Season - Week 6" }, { "date": "Oct 15, 2023", @@ -150454,8 +222906,13 @@ "und": "Houston Texans", "sF": "13", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2023 Regular Season - Week 6" }, { "date": "Oct 15, 2023", @@ -150464,8 +222921,13 @@ "und": "Indianapolis Colts", "sF": "37", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.5, + "pScore": { + "sU": 19.5, + "sF": 24.0 + }, + "week": "2023 Regular Season - Week 6" }, { "date": "Oct 15, 2023", @@ -150475,7 +222937,12 @@ "sF": "42", "sU": "21", "spread": "14", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 16.75, + "sF": 30.75 + }, + "week": "2023 Regular Season - Week 6" }, { "date": "Oct 15, 2023", @@ -150484,8 +222951,13 @@ "und": "New England Patriots", "sF": "21", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2023 Regular Season - Week 6" }, { "date": "Oct 15, 2023", @@ -150495,7 +222967,12 @@ "sF": "26", "sU": "9", "spread": "7", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.25, + "sF": 27.25 + }, + "week": "2023 Regular Season - Week 6" }, { "date": "Oct 15, 2023", @@ -150504,8 +222981,13 @@ "und": "New York Jets", "sF": "14", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2023 Regular Season - Week 6" }, { "date": "Oct 15, 2023", @@ -150515,7 +222997,12 @@ "sF": "20", "sU": "6", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2023 Regular Season - Week 6" }, { "date": "Oct 15, 2023", @@ -150524,8 +223011,13 @@ "und": "New York Giants", "sF": "14", "sU": "9", - "spread": "15", - "ou": -1 + "spread": "15.5", + "ou": 43.5, + "pScore": { + "sU": 14.0, + "sF": 29.5 + }, + "week": "2023 Regular Season - Week 6" }, { "date": "Oct 16, 2023", @@ -150534,8 +223026,13 @@ "und": "Los Angeles Chargers", "sF": "20", "sU": "17", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 50.0, + "pScore": { + "sU": 24.25, + "sF": 25.75 + }, + "week": "2023 Regular Season - Week 6" }, { "date": "Oct 19, 2023", @@ -150544,8 +223041,13 @@ "und": "Jacksonville Jaguars", "sF": "24", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 7" }, { "date": "Oct 22, 2023", @@ -150555,7 +223057,12 @@ "sF": "38", "sU": "6", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2023 Regular Season - Week 7" }, { "date": "Oct 22, 2023", @@ -150564,8 +223071,13 @@ "und": "Chicago Bears", "sF": "12", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.5, + "pScore": { + "sU": 18.0, + "sF": 20.5 + }, + "week": "2023 Regular Season - Week 7" }, { "date": "Oct 22, 2023", @@ -150574,8 +223086,13 @@ "und": "Indianapolis Colts", "sF": "39", "sU": "38", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 7" }, { "date": "Oct 22, 2023", @@ -150584,8 +223101,13 @@ "und": "New England Patriots", "sF": "25", "sU": "29", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.5, + "pScore": { + "sU": 17.0, + "sF": 24.5 + }, + "week": "2023 Regular Season - Week 7" }, { "date": "Oct 22, 2023", @@ -150595,7 +223117,12 @@ "sF": "7", "sU": "14", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2023 Regular Season - Week 7" }, { "date": "Oct 22, 2023", @@ -150605,7 +223132,12 @@ "sF": "13", "sU": "16", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2023 Regular Season - Week 7" }, { "date": "Oct 22, 2023", @@ -150615,7 +223147,12 @@ "sF": "17", "sU": "24", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2023 Regular Season - Week 7" }, { "date": "Oct 22, 2023", @@ -150624,8 +223161,13 @@ "und": "Arizona Cardinals", "sF": "20", "sU": "10", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.5, + "pScore": { + "sU": 17.5, + "sF": 26.0 + }, + "week": "2023 Regular Season - Week 7" }, { "date": "Oct 22, 2023", @@ -150635,7 +223177,12 @@ "sF": "19", "sU": "17", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2023 Regular Season - Week 7" }, { "date": "Oct 22, 2023", @@ -150644,8 +223191,13 @@ "und": "Los Angeles Chargers", "sF": "31", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 48.5, + "pScore": { + "sU": 21.5, + "sF": 27.0 + }, + "week": "2023 Regular Season - Week 7" }, { "date": "Oct 22, 2023", @@ -150655,7 +223207,12 @@ "sF": "31", "sU": "17", "spread": "3", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 24.25, + "sF": 27.25 + }, + "week": "2023 Regular Season - Week 7" }, { "date": "Oct 23, 2023", @@ -150665,7 +223222,12 @@ "sF": "17", "sU": "22", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2023 Regular Season - Week 7" }, { "date": "Oct 26, 2023", @@ -150675,7 +223237,12 @@ "sF": "24", "sU": "18", "spread": "10", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 16.75, + "sF": 26.75 + }, + "week": "2023 Regular Season - Week 8" }, { "date": "Oct 29, 2023", @@ -150684,8 +223251,13 @@ "und": "Carolina Panthers", "sF": "13", "sU": "15", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2023 Regular Season - Week 8" }, { "date": "Oct 29, 2023", @@ -150694,8 +223266,13 @@ "und": "Los Angeles Rams", "sF": "43", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "2023 Regular Season - Week 8" }, { "date": "Oct 29, 2023", @@ -150704,8 +223281,13 @@ "und": "Green Bay Packers", "sF": "24", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.5, + "pScore": { + "sU": 20.0, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 8" }, { "date": "Oct 29, 2023", @@ -150714,8 +223296,13 @@ "und": "Indianapolis Colts", "sF": "38", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.5, + "pScore": { + "sU": 21.0, + "sF": 22.5 + }, + "week": "2023 Regular Season - Week 8" }, { "date": "Oct 29, 2023", @@ -150724,8 +223311,13 @@ "und": "New England Patriots", "sF": "31", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 46.5, + "pScore": { + "sU": 19.0, + "sF": 27.5 + }, + "week": "2023 Regular Season - Week 8" }, { "date": "Oct 29, 2023", @@ -150734,8 +223326,13 @@ "und": "New York Giants", "sF": "13", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 34.5, + "pScore": { + "sU": 15.5, + "sF": 19.0 + }, + "week": "2023 Regular Season - Week 8" }, { "date": "Oct 29, 2023", @@ -150744,8 +223341,13 @@ "und": "Pittsburgh Steelers", "sF": "20", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 8" }, { "date": "Oct 29, 2023", @@ -150754,8 +223356,13 @@ "und": "Tennessee Titans", "sF": "23", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.5, + "pScore": { + "sU": 16.5, + "sF": 19.0 + }, + "week": "2023 Regular Season - Week 8" }, { "date": "Oct 29, 2023", @@ -150764,8 +223371,13 @@ "und": "Washington Commanders", "sF": "38", "sU": "31", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.5, + "pScore": { + "sU": 18.0, + "sF": 24.5 + }, + "week": "2023 Regular Season - Week 8" }, { "date": "Oct 29, 2023", @@ -150774,8 +223386,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.5, + "pScore": { + "sU": 17.5, + "sF": 22.0 + }, + "week": "2023 Regular Season - Week 8" }, { "date": "Oct 29, 2023", @@ -150784,8 +223401,13 @@ "und": "Arizona Cardinals", "sF": "31", "sU": "24", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 44.5, + "pScore": { + "sU": 17.5, + "sF": 27.0 + }, + "week": "2023 Regular Season - Week 8" }, { "date": "Oct 29, 2023", @@ -150795,7 +223417,12 @@ "sF": "9", "sU": "24", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "2023 Regular Season - Week 8" }, { "date": "Oct 29, 2023", @@ -150804,8 +223431,13 @@ "und": "Cincinnati Bengals", "sF": "17", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.5, + "pScore": { + "sU": 20.0, + "sF": 24.5 + }, + "week": "2023 Regular Season - Week 8" }, { "date": "Oct 29, 2023", @@ -150814,8 +223446,13 @@ "und": "Chicago Bears", "sF": "30", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 45.5, + "pScore": { + "sU": 17.5, + "sF": 28.0 + }, + "week": "2023 Regular Season - Week 8" }, { "date": "Oct 30, 2023", @@ -150825,7 +223462,12 @@ "sF": "26", "sU": "14", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "2023 Regular Season - Week 8" }, { "date": "Nov 2, 2023", @@ -150835,7 +223477,12 @@ "sF": "20", "sU": "16", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2023 Regular Season - Week 9" }, { "date": "Nov 5, 2023", @@ -150844,8 +223491,13 @@ "und": "Miami Dolphins", "sF": "21", "sU": "14", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 51.5, + "pScore": { + "sU": 25.0, + "sF": 26.5 + }, + "week": "2023 Regular Season - Week 9" }, { "date": "Nov 5, 2023", @@ -150854,8 +223506,13 @@ "und": "Minnesota Vikings", "sF": "28", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 9" }, { "date": "Nov 5, 2023", @@ -150864,8 +223521,13 @@ "und": "Seattle Seahawks", "sF": "37", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "2023 Regular Season - Week 9" }, { "date": "Nov 5, 2023", @@ -150874,8 +223536,13 @@ "und": "Arizona Cardinals", "sF": "27", "sU": "0", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 38.5, + "pScore": { + "sU": 12.5, + "sF": 26.0 + }, + "week": "2023 Regular Season - Week 9" }, { "date": "Nov 5, 2023", @@ -150884,8 +223551,13 @@ "und": "Los Angeles Rams", "sF": "20", "sU": "3", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.5, + "pScore": { + "sU": 17.0, + "sF": 20.5 + }, + "week": "2023 Regular Season - Week 9" }, { "date": "Nov 5, 2023", @@ -150894,8 +223566,13 @@ "und": "Tampa Bay Buccaneers", "sF": "39", "sU": "37", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "2023 Regular Season - Week 9" }, { "date": "Nov 5, 2023", @@ -150904,8 +223581,13 @@ "und": "Washington Commanders", "sF": "17", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 9" }, { "date": "Nov 5, 2023", @@ -150914,8 +223596,13 @@ "und": "Chicago Bears", "sF": "24", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 42.5, + "pScore": { + "sU": 17.0, + "sF": 25.5 + }, + "week": "2023 Regular Season - Week 9" }, { "date": "Nov 5, 2023", @@ -150924,8 +223611,13 @@ "und": "Carolina Panthers", "sF": "27", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.5, + "pScore": { + "sU": 21.5, + "sF": 23.0 + }, + "week": "2023 Regular Season - Week 9" }, { "date": "Nov 5, 2023", @@ -150934,8 +223626,13 @@ "und": "New York Giants", "sF": "30", "sU": "6", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 38.5, + "pScore": { + "sU": 18.5, + "sF": 20.0 + }, + "week": "2023 Regular Season - Week 9" }, { "date": "Nov 5, 2023", @@ -150945,7 +223642,12 @@ "sF": "28", "sU": "23", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2023 Regular Season - Week 9" }, { "date": "Nov 5, 2023", @@ -150954,8 +223656,13 @@ "und": "Buffalo Bills", "sF": "24", "sU": "18", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 50.5, + "pScore": { + "sU": 24.5, + "sF": 26.0 + }, + "week": "2023 Regular Season - Week 9" }, { "date": "Nov 6, 2023", @@ -150965,7 +223672,12 @@ "sF": "27", "sU": "6", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2023 Regular Season - Week 9" }, { "date": "Nov 9, 2023", @@ -150974,8 +223686,13 @@ "und": "Carolina Panthers", "sF": "16", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "2023 Regular Season - Week 10" }, { "date": "Nov 12, 2023", @@ -150984,8 +223701,13 @@ "und": "New England Patriots", "sF": "10", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2023 Regular Season - Week 10" }, { "date": "Nov 12, 2023", @@ -150995,7 +223717,12 @@ "sF": "31", "sU": "33", "spread": "6", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 16.25, + "sF": 22.25 + }, + "week": "2023 Regular Season - Week 10" }, { "date": "Nov 12, 2023", @@ -151004,8 +223731,13 @@ "und": "Houston Texans", "sF": "27", "sU": "30", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.5, + "pScore": { + "sU": 20.0, + "sF": 25.5 + }, + "week": "2023 Regular Season - Week 10" }, { "date": "Nov 12, 2023", @@ -151015,7 +223747,12 @@ "sF": "34", "sU": "3", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2023 Regular Season - Week 10" }, { "date": "Nov 12, 2023", @@ -151024,8 +223761,13 @@ "und": "Minnesota Vikings", "sF": "19", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.5, + "pScore": { + "sU": 19.0, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 10" }, { "date": "Nov 12, 2023", @@ -151035,7 +223777,12 @@ "sF": "23", "sU": "19", "spread": "3", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 17.75, + "sF": 20.75 + }, + "week": "2023 Regular Season - Week 10" }, { "date": "Nov 12, 2023", @@ -151044,8 +223791,13 @@ "und": "Tennessee Titans", "sF": "20", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.5, + "pScore": { + "sU": 18.0, + "sF": 20.5 + }, + "week": "2023 Regular Season - Week 10" }, { "date": "Nov 12, 2023", @@ -151054,8 +223806,13 @@ "und": "Arizona Cardinals", "sF": "23", "sU": "25", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2023 Regular Season - Week 10" }, { "date": "Nov 12, 2023", @@ -151064,8 +223821,13 @@ "und": "Los Angeles Chargers", "sF": "41", "sU": "38", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.5, + "pScore": { + "sU": 23.0, + "sF": 25.5 + }, + "week": "2023 Regular Season - Week 10" }, { "date": "Nov 12, 2023", @@ -151074,8 +223836,13 @@ "und": "New York Giants", "sF": "49", "sU": "17", - "spread": "17", - "ou": -1 + "spread": "17.5", + "ou": 38.5, + "pScore": { + "sU": 10.5, + "sF": 28.0 + }, + "week": "2023 Regular Season - Week 10" }, { "date": "Nov 12, 2023", @@ -151084,8 +223851,13 @@ "und": "Washington Commanders", "sF": "29", "sU": "26", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.5, + "pScore": { + "sU": 19.5, + "sF": 25.0 + }, + "week": "2023 Regular Season - Week 10" }, { "date": "Nov 12, 2023", @@ -151094,8 +223866,13 @@ "und": "Las Vegas Raiders", "sF": "12", "sU": "16", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 35.5, + "pScore": { + "sU": 17.0, + "sF": 18.5 + }, + "week": "2023 Regular Season - Week 10" }, { "date": "Nov 13, 2023", @@ -151104,8 +223881,13 @@ "und": "Denver Broncos", "sF": "22", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 47.5, + "pScore": { + "sU": 20.0, + "sF": 27.5 + }, + "week": "2023 Regular Season - Week 10" }, { "date": "Nov 16, 2023", @@ -151114,8 +223896,13 @@ "und": "Cincinnati Bengals", "sF": "34", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "2023 Regular Season - Week 11" }, { "date": "Nov 19, 2023", @@ -151125,7 +223912,12 @@ "sF": "33", "sU": "10", "spread": "11", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 15.75, + "sF": 26.75 + }, + "week": "2023 Regular Season - Week 11" }, { "date": "Nov 19, 2023", @@ -151134,8 +223926,13 @@ "und": "Pittsburgh Steelers", "sF": "13", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 33.5, + "pScore": { + "sU": 16.0, + "sF": 17.5 + }, + "week": "2023 Regular Season - Week 11" }, { "date": "Nov 19, 2023", @@ -151144,8 +223941,13 @@ "und": "Chicago Bears", "sF": "31", "sU": "26", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.5, + "pScore": { + "sU": 20.5, + "sF": 28.0 + }, + "week": "2023 Regular Season - Week 11" }, { "date": "Nov 19, 2023", @@ -151155,7 +223957,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2023 Regular Season - Week 11" }, { "date": "Nov 19, 2023", @@ -151164,8 +223971,13 @@ "und": "Arizona Cardinals", "sF": "21", "sU": "16", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 48.5, + "pScore": { + "sU": 21.5, + "sF": 27.0 + }, + "week": "2023 Regular Season - Week 11" }, { "date": "Nov 19, 2023", @@ -151174,8 +223986,13 @@ "und": "Tennessee Titans", "sF": "34", "sU": "14", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.0, + "pScore": { + "sU": 16.75, + "sF": 23.25 + }, + "week": "2023 Regular Season - Week 11" }, { "date": "Nov 19, 2023", @@ -151184,8 +224001,13 @@ "und": "Las Vegas Raiders", "sF": "20", "sU": "13", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 46.0, + "pScore": { + "sU": 16.25, + "sF": 29.75 + }, + "week": "2023 Regular Season - Week 11" }, { "date": "Nov 19, 2023", @@ -151194,8 +224016,13 @@ "und": "New York Giants", "sF": "19", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 39.5, + "pScore": { + "sU": 16.0, + "sF": 23.5 + }, + "week": "2023 Regular Season - Week 11" }, { "date": "Nov 19, 2023", @@ -151204,8 +224031,13 @@ "und": "Tampa Bay Buccaneers", "sF": "27", "sU": "14", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 41.5, + "pScore": { + "sU": 14.0, + "sF": 27.5 + }, + "week": "2023 Regular Season - Week 11" }, { "date": "Nov 19, 2023", @@ -151214,8 +224046,13 @@ "und": "New York Jets", "sF": "32", "sU": "6", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.5, + "pScore": { + "sU": 15.5, + "sF": 23.0 + }, + "week": "2023 Regular Season - Week 11" }, { "date": "Nov 19, 2023", @@ -151225,7 +224062,12 @@ "sF": "17", "sU": "16", "spread": "2", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.75, + "sF": 23.75 + }, + "week": "2023 Regular Season - Week 11" }, { "date": "Nov 19, 2023", @@ -151234,8 +224076,13 @@ "und": "Minnesota Vikings", "sF": "21", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2023 Regular Season - Week 11" }, { "date": "Nov 20, 2023", @@ -151244,8 +224091,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2023 Regular Season - Week 11" }, { "date": "Nov 23, 2023", @@ -151254,8 +224106,13 @@ "und": "Green Bay Packers", "sF": "22", "sU": "29", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 46.5, + "pScore": { + "sU": 19.0, + "sF": 27.5 + }, + "week": "2023 Regular Season - Week 12" }, { "date": "Nov 23, 2023", @@ -151264,8 +224121,13 @@ "und": "Washington Commanders", "sF": "45", "sU": "10", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 47.5, + "pScore": { + "sU": 17.0, + "sF": 30.5 + }, + "week": "2023 Regular Season - Week 12" }, { "date": "Nov 23, 2023", @@ -151275,7 +224137,12 @@ "sF": "31", "sU": "13", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2023 Regular Season - Week 12" }, { "date": "Nov 24, 2023", @@ -151284,8 +224151,13 @@ "und": "New York Jets", "sF": "34", "sU": "13", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 39.5, + "pScore": { + "sU": 15.0, + "sF": 24.5 + }, + "week": "2023 Regular Season - Week 12" }, { "date": "Nov 26, 2023", @@ -151294,8 +224166,13 @@ "und": "Atlanta Falcons", "sF": "15", "sU": "24", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 40.5, + "pScore": { + "sU": 19.5, + "sF": 21.0 + }, + "week": "2023 Regular Season - Week 12" }, { "date": "Nov 26, 2023", @@ -151304,8 +224181,13 @@ "und": "Cincinnati Bengals", "sF": "16", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 35.5, + "pScore": { + "sU": 16.5, + "sF": 19.0 + }, + "week": "2023 Regular Season - Week 12" }, { "date": "Nov 26, 2023", @@ -151314,8 +224196,13 @@ "und": "Houston Texans", "sF": "24", "sU": "21", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 48.5, + "pScore": { + "sU": 23.5, + "sF": 25.0 + }, + "week": "2023 Regular Season - Week 12" }, { "date": "Nov 26, 2023", @@ -151324,8 +224211,13 @@ "und": "Tampa Bay Buccaneers", "sF": "27", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2023 Regular Season - Week 12" }, { "date": "Nov 26, 2023", @@ -151335,7 +224227,12 @@ "sF": "7", "sU": "10", "spread": "4", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.0, + "sF": 20.0 + }, + "week": "2023 Regular Season - Week 12" }, { "date": "Nov 26, 2023", @@ -151344,8 +224241,13 @@ "und": "Carolina Panthers", "sF": "17", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "2023 Regular Season - Week 12" }, { "date": "Nov 26, 2023", @@ -151354,8 +224256,13 @@ "und": "Arizona Cardinals", "sF": "37", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2023 Regular Season - Week 12" }, { "date": "Nov 26, 2023", @@ -151365,7 +224272,12 @@ "sF": "29", "sU": "12", "spread": "1", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 18.0, + "sF": 19.0 + }, + "week": "2023 Regular Season - Week 12" }, { "date": "Nov 26, 2023", @@ -151374,8 +224286,13 @@ "und": "Las Vegas Raiders", "sF": "31", "sU": "17", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 42.5, + "pScore": { + "sU": 16.5, + "sF": 26.0 + }, + "week": "2023 Regular Season - Week 12" }, { "date": "Nov 26, 2023", @@ -151384,8 +224301,13 @@ "und": "Buffalo Bills", "sF": "37", "sU": "34", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.5, + "pScore": { + "sU": 23.0, + "sF": 25.5 + }, + "week": "2023 Regular Season - Week 12" }, { "date": "Nov 26, 2023", @@ -151395,7 +224317,12 @@ "sF": "20", "sU": "10", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2023 Regular Season - Week 12" }, { "date": "Nov 27, 2023", @@ -151405,7 +224332,12 @@ "sF": "10", "sU": "12", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2023 Regular Season - Week 12" }, { "date": "Nov 30, 2023", @@ -151414,8 +224346,13 @@ "und": "Seattle Seahawks", "sF": "41", "sU": "35", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 47.5, + "pScore": { + "sU": 19.0, + "sF": 28.5 + }, + "week": "2023 Regular Season - Week 13" }, { "date": "Dec 3, 2023", @@ -151424,8 +224361,13 @@ "und": "Denver Broncos", "sF": "22", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.0, + "pScore": { + "sU": 21.75, + "sF": 25.25 + }, + "week": "2023 Regular Season - Week 13" }, { "date": "Dec 3, 2023", @@ -151434,8 +224376,13 @@ "und": "New England Patriots", "sF": "6", "sU": "0", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 39.0, + "pScore": { + "sU": 17.25, + "sF": 21.75 + }, + "week": "2023 Regular Season - Week 13" }, { "date": "Dec 3, 2023", @@ -151445,7 +224392,12 @@ "sF": "33", "sU": "28", "spread": "4", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.0, + "sF": 26.0 + }, + "week": "2023 Regular Season - Week 13" }, { "date": "Dec 3, 2023", @@ -151455,7 +224407,12 @@ "sF": "13", "sU": "8", "spread": "2", - "ou": -1 + "ou": 33.0, + "pScore": { + "sU": 15.5, + "sF": 17.5 + }, + "week": "2023 Regular Season - Week 13" }, { "date": "Dec 3, 2023", @@ -151465,7 +224422,12 @@ "sF": "10", "sU": "24", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2023 Regular Season - Week 13" }, { "date": "Dec 3, 2023", @@ -151474,8 +224436,13 @@ "und": "Tennessee Titans", "sF": "31", "sU": "28", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.5, + "pScore": { + "sU": 20.5, + "sF": 22.0 + }, + "week": "2023 Regular Season - Week 13" }, { "date": "Dec 3, 2023", @@ -151484,8 +224451,13 @@ "und": "Washington Commanders", "sF": "45", "sU": "15", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 49.5, + "pScore": { + "sU": 20.5, + "sF": 29.0 + }, + "week": "2023 Regular Season - Week 13" }, { "date": "Dec 3, 2023", @@ -151494,8 +224466,13 @@ "und": "Carolina Panthers", "sF": "21", "sU": "18", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2023 Regular Season - Week 13" }, { "date": "Dec 3, 2023", @@ -151504,8 +224481,13 @@ "und": "Cleveland Browns", "sF": "36", "sU": "19", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 13" }, { "date": "Dec 3, 2023", @@ -151515,7 +224497,12 @@ "sF": "42", "sU": "19", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2023 Regular Season - Week 13" }, { "date": "Dec 3, 2023", @@ -151524,8 +224511,13 @@ "und": "Green Bay Packers", "sF": "19", "sU": "27", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.5, + "pScore": { + "sU": 19.0, + "sF": 24.5 + }, + "week": "2023 Regular Season - Week 13" }, { "date": "Dec 4, 2023", @@ -151535,7 +224527,12 @@ "sF": "31", "sU": "34", "spread": "10", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 15.25, + "sF": 25.25 + }, + "week": "2023 Regular Season - Week 13" }, { "date": "Dec 7, 2023", @@ -151544,8 +224541,13 @@ "und": "New England Patriots", "sF": "18", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 30.5, + "pScore": { + "sU": 12.5, + "sF": 18.0 + }, + "week": "2023 Regular Season - Week 14" }, { "date": "Dec 10, 2023", @@ -151554,8 +224556,13 @@ "und": "Tampa Bay Buccaneers", "sF": "25", "sU": "29", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.5, + "pScore": { + "sU": 20.0, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 14" }, { "date": "Dec 10, 2023", @@ -151564,8 +224571,13 @@ "und": "Los Angeles Rams", "sF": "37", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 42.0, + "pScore": { + "sU": 17.25, + "sF": 24.75 + }, + "week": "2023 Regular Season - Week 14" }, { "date": "Dec 10, 2023", @@ -151575,7 +224587,12 @@ "sF": "13", "sU": "28", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2023 Regular Season - Week 14" }, { "date": "Dec 10, 2023", @@ -151585,7 +224602,12 @@ "sF": "34", "sU": "14", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2023 Regular Season - Week 14" }, { "date": "Dec 10, 2023", @@ -151594,8 +224616,13 @@ "und": "Jacksonville Jaguars", "sF": "31", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2023 Regular Season - Week 14" }, { "date": "Dec 10, 2023", @@ -151605,7 +224632,12 @@ "sF": "28", "sU": "6", "spread": "6", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 16.25, + "sF": 22.25 + }, + "week": "2023 Regular Season - Week 14" }, { "date": "Dec 10, 2023", @@ -151615,7 +224647,12 @@ "sF": "6", "sU": "30", "spread": "3", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 15.25, + "sF": 18.25 + }, + "week": "2023 Regular Season - Week 14" }, { "date": "Dec 10, 2023", @@ -151625,7 +224662,12 @@ "sF": "3", "sU": "0", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2023 Regular Season - Week 14" }, { "date": "Dec 10, 2023", @@ -151634,8 +224676,13 @@ "und": "Seattle Seahawks", "sF": "28", "sU": "16", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 44.5, + "pScore": { + "sU": 15.0, + "sF": 29.5 + }, + "week": "2023 Regular Season - Week 14" }, { "date": "Dec 10, 2023", @@ -151644,8 +224691,13 @@ "und": "Buffalo Bills", "sF": "17", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 49.0, + "pScore": { + "sU": 23.75, + "sF": 25.25 + }, + "week": "2023 Regular Season - Week 14" }, { "date": "Dec 10, 2023", @@ -151655,7 +224707,12 @@ "sF": "7", "sU": "24", "spread": "3", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 20.75, + "sF": 23.75 + }, + "week": "2023 Regular Season - Week 14" }, { "date": "Dec 10, 2023", @@ -151664,8 +224721,13 @@ "und": "Philadelphia Eagles", "sF": "33", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 52.5, + "pScore": { + "sU": 24.5, + "sF": 28.0 + }, + "week": "2023 Regular Season - Week 14" }, { "date": "Dec 11, 2023", @@ -151674,8 +224736,13 @@ "und": "Tennessee Titans", "sF": "27", "sU": "28", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 44.5, + "pScore": { + "sU": 15.5, + "sF": 29.0 + }, + "week": "2023 Regular Season - Week 14" }, { "date": "Dec 11, 2023", @@ -151684,8 +224751,13 @@ "und": "New York Giants", "sF": "22", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 37.5, + "pScore": { + "sU": 16.0, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 14" }, { "date": "Dec 14, 2023", @@ -151695,7 +224767,12 @@ "sF": "63", "sU": "21", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2023 Regular Season - Week 15" }, { "date": "Dec 16, 2023", @@ -151705,7 +224782,12 @@ "sF": "27", "sU": "24", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2023 Regular Season - Week 15" }, { "date": "Dec 16, 2023", @@ -151714,8 +224796,13 @@ "und": "Pittsburgh Steelers", "sF": "30", "sU": "13", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.5, + "pScore": { + "sU": 20.0, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 15" }, { "date": "Dec 16, 2023", @@ -151724,8 +224811,13 @@ "und": "Denver Broncos", "sF": "42", "sU": "17", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 49.0, + "pScore": { + "sU": 21.75, + "sF": 27.25 + }, + "week": "2023 Regular Season - Week 15" }, { "date": "Dec 17, 2023", @@ -151735,7 +224827,12 @@ "sF": "7", "sU": "9", "spread": "3", - "ou": -1 + "ou": 32.5, + "pScore": { + "sU": 14.75, + "sF": 17.75 + }, + "week": "2023 Regular Season - Week 15" }, { "date": "Dec 17, 2023", @@ -151744,8 +224841,13 @@ "und": "Chicago Bears", "sF": "20", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 38.0, + "pScore": { + "sU": 17.75, + "sF": 20.25 + }, + "week": "2023 Regular Season - Week 15" }, { "date": "Dec 17, 2023", @@ -151754,8 +224856,13 @@ "und": "Tampa Bay Buccaneers", "sF": "20", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2023 Regular Season - Week 15" }, { "date": "Dec 17, 2023", @@ -151765,7 +224872,12 @@ "sF": "30", "sU": "0", "spread": "7", - "ou": -1 + "ou": 35.5, + "pScore": { + "sU": 14.25, + "sF": 21.25 + }, + "week": "2023 Regular Season - Week 15" }, { "date": "Dec 17, 2023", @@ -151775,7 +224887,12 @@ "sF": "27", "sU": "17", "spread": "10", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 14.75, + "sF": 24.75 + }, + "week": "2023 Regular Season - Week 15" }, { "date": "Dec 17, 2023", @@ -151785,7 +224902,12 @@ "sF": "24", "sU": "6", "spread": "6", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 16.75, + "sF": 22.75 + }, + "week": "2023 Regular Season - Week 15" }, { "date": "Dec 17, 2023", @@ -151795,7 +224917,12 @@ "sF": "16", "sU": "19", "spread": "3", - "ou": -1 + "ou": 38.0, + "pScore": { + "sU": 17.5, + "sF": 20.5 + }, + "week": "2023 Regular Season - Week 15" }, { "date": "Dec 17, 2023", @@ -151805,7 +224932,12 @@ "sF": "45", "sU": "29", "spread": "12", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 18.0, + "sF": 30.0 + }, + "week": "2023 Regular Season - Week 15" }, { "date": "Dec 17, 2023", @@ -151814,8 +224946,13 @@ "und": "Washington Commanders", "sF": "28", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.5, + "pScore": { + "sU": 21.0, + "sF": 27.5 + }, + "week": "2023 Regular Season - Week 15" }, { "date": "Dec 17, 2023", @@ -151824,8 +224961,13 @@ "und": "Dallas Cowboys", "sF": "31", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.0, + "pScore": { + "sU": 23.25, + "sF": 25.75 + }, + "week": "2023 Regular Season - Week 15" }, { "date": "Dec 17, 2023", @@ -151835,7 +224977,12 @@ "sF": "23", "sU": "7", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "2023 Regular Season - Week 15" }, { "date": "Dec 18, 2023", @@ -151844,8 +224991,13 @@ "und": "Seattle Seahawks", "sF": "17", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.0, + "pScore": { + "sU": 20.25, + "sF": 25.75 + }, + "week": "2023 Regular Season - Week 15" }, { "date": "Dec 21, 2023", @@ -151855,7 +225007,12 @@ "sF": "30", "sU": "22", "spread": "4", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 20.75, + "sF": 24.75 + }, + "week": "2023 Regular Season - Week 16" }, { "date": "Dec 23, 2023", @@ -151865,7 +225022,12 @@ "sF": "11", "sU": "34", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2023 Regular Season - Week 16" }, { "date": "Dec 23, 2023", @@ -151874,8 +225036,13 @@ "und": "Los Angeles Chargers", "sF": "24", "sU": "22", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 44.5, + "pScore": { + "sU": 16.0, + "sF": 28.5 + }, + "week": "2023 Regular Season - Week 16" }, { "date": "Dec 24, 2023", @@ -151884,8 +225051,13 @@ "und": "Indianapolis Colts", "sF": "29", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.5, + "pScore": { + "sU": 21.0, + "sF": 23.5 + }, + "week": "2023 Regular Season - Week 16" }, { "date": "Dec 24, 2023", @@ -151894,8 +225066,13 @@ "und": "Carolina Panthers", "sF": "33", "sU": "30", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 16" }, { "date": "Dec 24, 2023", @@ -151905,7 +225082,12 @@ "sF": "36", "sU": "22", "spread": "3", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.5, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 16" }, { "date": "Dec 24, 2023", @@ -151914,8 +225096,13 @@ "und": "Minnesota Vikings", "sF": "30", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.5, + "pScore": { + "sU": 22.5, + "sF": 25.0 + }, + "week": "2023 Regular Season - Week 16" }, { "date": "Dec 24, 2023", @@ -151925,7 +225112,12 @@ "sF": "30", "sU": "28", "spread": "3", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.75, + "sF": 19.75 + }, + "week": "2023 Regular Season - Week 16" }, { "date": "Dec 24, 2023", @@ -151935,7 +225127,12 @@ "sF": "20", "sU": "17", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2023 Regular Season - Week 16" }, { "date": "Dec 24, 2023", @@ -151944,8 +225141,13 @@ "und": "Tampa Bay Buccaneers", "sF": "12", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.5, + "pScore": { + "sU": 20.5, + "sF": 23.0 + }, + "week": "2023 Regular Season - Week 16" }, { "date": "Dec 24, 2023", @@ -151954,8 +225156,13 @@ "und": "Arizona Cardinals", "sF": "27", "sU": "16", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.5, + "pScore": { + "sU": 19.0, + "sF": 23.5 + }, + "week": "2023 Regular Season - Week 16" }, { "date": "Dec 24, 2023", @@ -151964,8 +225171,13 @@ "und": "Dallas Cowboys", "sF": "22", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 48.5, + "pScore": { + "sU": 23.5, + "sF": 25.0 + }, + "week": "2023 Regular Season - Week 16" }, { "date": "Dec 24, 2023", @@ -151975,7 +225187,12 @@ "sF": "23", "sU": "26", "spread": "7", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 15.0, + "sF": 22.0 + }, + "week": "2023 Regular Season - Week 16" }, { "date": "Dec 25, 2023", @@ -151984,8 +225201,13 @@ "und": "Las Vegas Raiders", "sF": "14", "sU": "20", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 40.5, + "pScore": { + "sU": 15.0, + "sF": 25.5 + }, + "week": "2023 Regular Season - Week 16" }, { "date": "Dec 25, 2023", @@ -151995,7 +225217,12 @@ "sF": "33", "sU": "25", "spread": "14", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 13.75, + "sF": 27.75 + }, + "week": "2023 Regular Season - Week 16" }, { "date": "Dec 25, 2023", @@ -152004,8 +225231,13 @@ "und": "Baltimore Ravens", "sF": "19", "sU": "33", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "2023 Regular Season - Week 16" }, { "date": "Dec 28, 2023", @@ -152015,7 +225247,12 @@ "sF": "37", "sU": "20", "spread": "7", - "ou": -1 + "ou": 33.5, + "pScore": { + "sU": 13.25, + "sF": 20.25 + }, + "week": "2023 Regular Season - Week 17" }, { "date": "Dec 30, 2023", @@ -152025,7 +225262,12 @@ "sF": "20", "sU": "19", "spread": "5", - "ou": -1 + "ou": 53.5, + "pScore": { + "sU": 24.25, + "sF": 29.25 + }, + "week": "2023 Regular Season - Week 17" }, { "date": "Dec 31, 2023", @@ -152034,8 +225276,13 @@ "und": "Miami Dolphins", "sF": "56", "sU": "19", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "2023 Regular Season - Week 17" }, { "date": "Dec 31, 2023", @@ -152044,8 +225291,13 @@ "und": "New England Patriots", "sF": "27", "sU": "21", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 40.0, + "pScore": { + "sU": 12.75, + "sF": 27.25 + }, + "week": "2023 Regular Season - Week 17" }, { "date": "Dec 31, 2023", @@ -152054,8 +225306,13 @@ "und": "Atlanta Falcons", "sF": "37", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 39.0, + "pScore": { + "sU": 18.25, + "sF": 20.75 + }, + "week": "2023 Regular Season - Week 17" }, { "date": "Dec 31, 2023", @@ -152064,8 +225321,13 @@ "und": "Tennessee Titans", "sF": "26", "sU": "3", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.0, + "pScore": { + "sU": 19.25, + "sF": 24.75 + }, + "week": "2023 Regular Season - Week 17" }, { "date": "Dec 31, 2023", @@ -152074,8 +225336,13 @@ "und": "Las Vegas Raiders", "sF": "23", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2023 Regular Season - Week 17" }, { "date": "Dec 31, 2023", @@ -152084,8 +225351,13 @@ "und": "Carolina Panthers", "sF": "26", "sU": "0", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "2023 Regular Season - Week 17" }, { "date": "Dec 31, 2023", @@ -152094,8 +225366,13 @@ "und": "New York Giants", "sF": "26", "sU": "25", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 43.5, + "pScore": { + "sU": 18.5, + "sF": 25.0 + }, + "week": "2023 Regular Season - Week 17" }, { "date": "Dec 31, 2023", @@ -152104,8 +225381,13 @@ "und": "Arizona Cardinals", "sF": "31", "sU": "35", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 48.0, + "pScore": { + "sU": 17.75, + "sF": 30.25 + }, + "week": "2023 Regular Season - Week 17" }, { "date": "Dec 31, 2023", @@ -152114,8 +225396,13 @@ "und": "New Orleans Saints", "sF": "13", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2023 Regular Season - Week 17" }, { "date": "Dec 31, 2023", @@ -152125,7 +225412,12 @@ "sF": "27", "sU": "10", "spread": "14", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 17.25, + "sF": 31.25 + }, + "week": "2023 Regular Season - Week 17" }, { "date": "Dec 31, 2023", @@ -152134,8 +225426,13 @@ "und": "Pittsburgh Steelers", "sF": "23", "sU": "30", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 40.5, + "pScore": { + "sU": 18.0, + "sF": 22.5 + }, + "week": "2023 Regular Season - Week 17" }, { "date": "Dec 31, 2023", @@ -152144,8 +225441,13 @@ "und": "Los Angeles Chargers", "sF": "16", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 39.5, + "pScore": { + "sU": 18.0, + "sF": 21.5 + }, + "week": "2023 Regular Season - Week 17" }, { "date": "Dec 31, 2023", @@ -152155,7 +225457,12 @@ "sF": "25", "sU": "17", "spread": "7", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.25, + "sF": 26.25 + }, + "week": "2023 Regular Season - Week 17" }, { "date": "Dec 31, 2023", @@ -152164,8 +225471,13 @@ "und": "Green Bay Packers", "sF": "10", "sU": "33", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.5, + "pScore": { + "sU": 20.5, + "sF": 22.0 + }, + "week": "2023 Regular Season - Week 17" }, { "date": "Jan 6, 2024", @@ -152175,7 +225487,12 @@ "sF": "17", "sU": "10", "spread": "3", - "ou": -1 + "ou": 34.0, + "pScore": { + "sU": 15.5, + "sF": 18.5 + }, + "week": "2023 Regular Season - Week 18" }, { "date": "Jan 6, 2024", @@ -152184,8 +225501,13 @@ "und": "Indianapolis Colts", "sF": "23", "sU": "19", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.5, + "pScore": { + "sU": 23.0, + "sF": 24.5 + }, + "week": "2023 Regular Season - Week 18" }, { "date": "Jan 7, 2024", @@ -152195,7 +225517,12 @@ "sF": "9", "sU": "0", "spread": "4", - "ou": -1 + "ou": 36.5, + "pScore": { + "sU": 16.25, + "sF": 20.25 + }, + "week": "2023 Regular Season - Week 18" }, { "date": "Jan 7, 2024", @@ -152204,8 +225531,13 @@ "und": "Cleveland Browns", "sF": "31", "sU": "14", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.0, + "pScore": { + "sU": 14.75, + "sF": 22.25 + }, + "week": "2023 Regular Season - Week 18" }, { "date": "Jan 7, 2024", @@ -152214,8 +225546,13 @@ "und": "Minnesota Vikings", "sF": "30", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2023 Regular Season - Week 18" }, { "date": "Jan 7, 2024", @@ -152225,7 +225562,12 @@ "sF": "3", "sU": "17", "spread": "2", - "ou": -1 + "ou": 28.5, + "pScore": { + "sU": 13.25, + "sF": 15.25 + }, + "week": "2023 Regular Season - Week 18" }, { "date": "Jan 7, 2024", @@ -152235,7 +225577,12 @@ "sF": "48", "sU": "17", "spread": "3", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.5, + "sF": 22.5 + }, + "week": "2023 Regular Season - Week 18" }, { "date": "Jan 7, 2024", @@ -152244,8 +225591,13 @@ "und": "Tennessee Titans", "sF": "20", "sU": "28", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2023 Regular Season - Week 18" }, { "date": "Jan 7, 2024", @@ -152255,7 +225607,12 @@ "sF": "21", "sU": "20", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2023 Regular Season - Week 18" }, { "date": "Jan 7, 2024", @@ -152265,7 +225622,12 @@ "sF": "17", "sU": "9", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2023 Regular Season - Week 18" }, { "date": "Jan 7, 2024", @@ -152275,7 +225637,12 @@ "sF": "27", "sU": "14", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2023 Regular Season - Week 18" }, { "date": "Jan 7, 2024", @@ -152284,8 +225651,13 @@ "und": "Kansas City Chiefs", "sF": "12", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 35.0, + "pScore": { + "sU": 15.75, + "sF": 19.25 + }, + "week": "2023 Regular Season - Week 18" }, { "date": "Jan 7, 2024", @@ -152295,7 +225667,12 @@ "sF": "10", "sU": "27", "spread": "5", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.75, + "sF": 23.75 + }, + "week": "2023 Regular Season - Week 18" }, { "date": "Jan 7, 2024", @@ -152304,8 +225681,13 @@ "und": "Los Angeles Rams", "sF": "20", "sU": "21", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "2023 Regular Season - Week 18" }, { "date": "Jan 7, 2024", @@ -152315,7 +225697,12 @@ "sF": "38", "sU": "10", "spread": "13", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 17.25, + "sF": 30.25 + }, + "week": "2023 Regular Season - Week 18" }, { "date": "Jan 7, 2024", @@ -152324,8 +225711,13 @@ "und": "Miami Dolphins", "sF": "21", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.0, + "pScore": { + "sU": 22.75, + "sF": 25.25 + }, + "week": "2023 Regular Season - Week 18" }, { "date": "Jan 13, 2024", @@ -152335,7 +225727,12 @@ "sF": "14", "sU": "45", "spread": "2", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.25, + "sF": 23.25 + }, + "week": "2023 Playoffs" }, { "date": "Jan 13, 2024", @@ -152344,8 +225741,13 @@ "und": "Miami Dolphins (6)", "sF": "26", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.5, + "pScore": { + "sU": 19.5, + "sF": 24.0 + }, + "week": "2023 Playoffs" }, { "date": "Jan 14, 2024", @@ -152355,7 +225757,12 @@ "sF": "32", "sU": "48", "spread": "7", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 22.5, + "sF": 29.5 + }, + "week": "2023 Playoffs" }, { "date": "Jan 14, 2024", @@ -152365,7 +225772,12 @@ "sF": "24", "sU": "23", "spread": "3", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 25.0, + "sF": 28.0 + }, + "week": "2023 Playoffs" }, { "date": "Jan 15, 2024", @@ -152375,7 +225787,12 @@ "sF": "31", "sU": "17", "spread": "10", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 14.75, + "sF": 24.75 + }, + "week": "2023 Playoffs" }, { "date": "Jan 15, 2024", @@ -152384,8 +225801,13 @@ "und": "Tampa Bay Buccaneers (4)", "sF": "9", "sU": "32", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2023 Playoffs" }, { "date": "Jan 20, 2024", @@ -152395,7 +225817,12 @@ "sF": "34", "sU": "10", "spread": "10", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 17.0, + "sF": 27.0 + }, + "week": "2023 Playoffs" }, { "date": "Jan 20, 2024", @@ -152404,8 +225831,13 @@ "und": "Green Bay Packers (7)", "sF": "24", "sU": "21", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 50.5, + "pScore": { + "sU": 20.0, + "sF": 30.5 + }, + "week": "2023 Playoffs" }, { "date": "Jan 21, 2024", @@ -152415,7 +225847,12 @@ "sF": "31", "sU": "23", "spread": "6", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 21.75, + "sF": 27.75 + }, + "week": "2023 Playoffs" }, { "date": "Jan 21, 2024", @@ -152424,8 +225861,13 @@ "und": "Kansas City Chiefs (3)", "sF": "24", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 45.5, + "pScore": { + "sU": 21.5, + "sF": 24.0 + }, + "week": "2023 Playoffs" }, { "date": "Jan 28, 2024", @@ -152434,8 +225876,13 @@ "und": "Kansas City Chiefs (3)", "sF": "10", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.5, + "pScore": { + "sU": 20.0, + "sF": 24.5 + }, + "week": "2023 Playoffs" }, { "date": "Jan 28, 2024", @@ -152444,8 +225891,13 @@ "und": "Detroit Lions (3)", "sF": "34", "sU": "31", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 53.0, + "pScore": { + "sU": 22.75, + "sF": 30.25 + }, + "week": "2023 Playoffs" }, { "date": "Feb 11, 2024", @@ -152455,7 +225907,12 @@ "sF": "22", "sU": "25", "spread": "2", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.5, + "sF": 24.5 + }, + "week": "2023 Playoffs" }, { "date": "Sep 5, 2024", @@ -152465,7 +225922,12 @@ "sF": "27", "sU": "20", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2024 Regular Season - Week 1" }, { "date": "Sep 6, 2024", @@ -152474,8 +225936,13 @@ "und": "Green Bay Packers", "sF": "34", "sU": "29", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 49.5, + "pScore": { + "sU": 24.0, + "sF": 25.5 + }, + "week": "2024 Regular Season - Week 1" }, { "date": "Sep 8, 2024", @@ -152485,7 +225952,12 @@ "sF": "10", "sU": "18", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "2024 Regular Season - Week 1" }, { "date": "Sep 8, 2024", @@ -152494,8 +225966,13 @@ "und": "Arizona Cardinals", "sF": "34", "sU": "28", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.0, + "pScore": { + "sU": 19.75, + "sF": 26.25 + }, + "week": "2024 Regular Season - Week 1" }, { "date": "Sep 8, 2024", @@ -152505,7 +225982,12 @@ "sF": "24", "sU": "17", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "2024 Regular Season - Week 1" }, { "date": "Sep 8, 2024", @@ -152514,8 +225996,13 @@ "und": "New England Patriots", "sF": "10", "sU": "16", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.5, + "pScore": { + "sU": 16.5, + "sF": 24.0 + }, + "week": "2024 Regular Season - Week 1" }, { "date": "Sep 8, 2024", @@ -152525,7 +226012,12 @@ "sF": "29", "sU": "27", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2024 Regular Season - Week 1" }, { "date": "Sep 8, 2024", @@ -152534,8 +226026,13 @@ "und": "Jacksonville Jaguars", "sF": "20", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.5, + "pScore": { + "sU": 23.0, + "sF": 26.5 + }, + "week": "2024 Regular Season - Week 1" }, { "date": "Sep 8, 2024", @@ -152544,8 +226041,13 @@ "und": "Carolina Panthers", "sF": "47", "sU": "10", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2024 Regular Season - Week 1" }, { "date": "Sep 8, 2024", @@ -152555,7 +226057,12 @@ "sF": "28", "sU": "6", "spread": "1", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.5, + "sF": 21.5 + }, + "week": "2024 Regular Season - Week 1" }, { "date": "Sep 8, 2024", @@ -152565,7 +226072,12 @@ "sF": "22", "sU": "10", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2024 Regular Season - Week 1" }, { "date": "Sep 8, 2024", @@ -152574,8 +226086,13 @@ "und": "Denver Broncos", "sF": "26", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 42.5, + "pScore": { + "sU": 18.0, + "sF": 24.5 + }, + "week": "2024 Regular Season - Week 1" }, { "date": "Sep 8, 2024", @@ -152585,7 +226102,12 @@ "sF": "17", "sU": "33", "spread": "2", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 20.0, + "sF": 22.0 + }, + "week": "2024 Regular Season - Week 1" }, { "date": "Sep 8, 2024", @@ -152595,7 +226117,12 @@ "sF": "37", "sU": "20", "spread": "4", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.25, + "sF": 23.25 + }, + "week": "2024 Regular Season - Week 1" }, { "date": "Sep 8, 2024", @@ -152604,8 +226131,13 @@ "und": "Los Angeles Rams", "sF": "26", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 53.5, + "pScore": { + "sU": 24.0, + "sF": 29.5 + }, + "week": "2024 Regular Season - Week 1" }, { "date": "Sep 9, 2024", @@ -152614,8 +226146,13 @@ "und": "New York Jets", "sF": "32", "sU": "19", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 43.0, + "pScore": { + "sU": 19.75, + "sF": 23.25 + }, + "week": "2024 Regular Season - Week 1" }, { "date": "Sep 12, 2024", @@ -152624,8 +226161,13 @@ "und": "Buffalo Bills", "sF": "10", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.0, + "pScore": { + "sU": 23.25, + "sF": 25.75 + }, + "week": "2024 Regular Season - Week 2" }, { "date": "Sep 15, 2024", @@ -152634,8 +226176,13 @@ "und": "Las Vegas Raiders", "sF": "23", "sU": "26", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 42.5, + "pScore": { + "sU": 17.0, + "sF": 25.5 + }, + "week": "2024 Regular Season - Week 2" }, { "date": "Sep 15, 2024", @@ -152644,8 +226191,13 @@ "und": "Carolina Panthers", "sF": "26", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 38.5, + "pScore": { + "sU": 17.0, + "sF": 21.5 + }, + "week": "2024 Regular Season - Week 2" }, { "date": "Sep 15, 2024", @@ -152654,8 +226206,13 @@ "und": "New Orleans Saints", "sF": "19", "sU": "44", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "2024 Regular Season - Week 2" }, { "date": "Sep 15, 2024", @@ -152664,8 +226221,13 @@ "und": "Tampa Bay Buccaneers", "sF": "16", "sU": "20", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 51.5, + "pScore": { + "sU": 22.0, + "sF": 29.5 + }, + "week": "2024 Regular Season - Week 2" }, { "date": "Sep 15, 2024", @@ -152674,8 +226236,13 @@ "und": "Green Bay Packers", "sF": "10", "sU": "16", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2024 Regular Season - Week 2" }, { "date": "Sep 15, 2024", @@ -152685,7 +226252,12 @@ "sF": "13", "sU": "18", "spread": "3", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 19.0, + "sF": 22.0 + }, + "week": "2024 Regular Season - Week 2" }, { "date": "Sep 15, 2024", @@ -152695,7 +226267,12 @@ "sF": "17", "sU": "23", "spread": "4", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.25, + "sF": 25.25 + }, + "week": "2024 Regular Season - Week 2" }, { "date": "Sep 15, 2024", @@ -152705,7 +226282,12 @@ "sF": "23", "sU": "20", "spread": "3", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 18.0, + "sF": 21.0 + }, + "week": "2024 Regular Season - Week 2" }, { "date": "Sep 15, 2024", @@ -152714,8 +226296,13 @@ "und": "Tennessee Titans", "sF": "24", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.0, + "pScore": { + "sU": 18.75, + "sF": 22.25 + }, + "week": "2024 Regular Season - Week 2" }, { "date": "Sep 15, 2024", @@ -152724,8 +226311,13 @@ "und": "New York Giants", "sF": "21", "sU": "18", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 43.0, + "pScore": { + "sU": 20.75, + "sF": 22.25 + }, + "week": "2024 Regular Season - Week 2" }, { "date": "Sep 15, 2024", @@ -152735,7 +226327,12 @@ "sF": "41", "sU": "10", "spread": "1", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 23.25, + "sF": 24.25 + }, + "week": "2024 Regular Season - Week 2" }, { "date": "Sep 15, 2024", @@ -152744,8 +226341,13 @@ "und": "Denver Broncos", "sF": "13", "sU": "6", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "2024 Regular Season - Week 2" }, { "date": "Sep 15, 2024", @@ -152754,8 +226356,13 @@ "und": "Cincinnati Bengals", "sF": "26", "sU": "25", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.5, + "pScore": { + "sU": 20.5, + "sF": 27.0 + }, + "week": "2024 Regular Season - Week 2" }, { "date": "Sep 15, 2024", @@ -152764,8 +226371,13 @@ "und": "Chicago Bears", "sF": "19", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.5, + "pScore": { + "sU": 19.5, + "sF": 26.0 + }, + "week": "2024 Regular Season - Week 2" }, { "date": "Sep 16, 2024", @@ -152774,8 +226386,13 @@ "und": "Atlanta Falcons", "sF": "21", "sU": "22", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.5, + "pScore": { + "sU": 20.5, + "sF": 26.0 + }, + "week": "2024 Regular Season - Week 2" }, { "date": "Sep 19, 2024", @@ -152784,8 +226401,13 @@ "und": "New England Patriots", "sF": "24", "sU": "3", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "2024 Regular Season - Week 3" }, { "date": "Sep 22, 2024", @@ -152794,8 +226416,13 @@ "und": "New York Giants", "sF": "15", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 38.0, + "pScore": { + "sU": 15.75, + "sF": 22.25 + }, + "week": "2024 Regular Season - Week 3" }, { "date": "Sep 22, 2024", @@ -152805,7 +226432,12 @@ "sF": "21", "sU": "16", "spread": "2", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.75, + "sF": 22.75 + }, + "week": "2024 Regular Season - Week 3" }, { "date": "Sep 22, 2024", @@ -152814,8 +226446,13 @@ "und": "Minnesota Vikings", "sF": "7", "sU": "34", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.5, + "pScore": { + "sU": 22.5, + "sF": 24.0 + }, + "week": "2024 Regular Season - Week 3" }, { "date": "Sep 22, 2024", @@ -152824,8 +226461,13 @@ "und": "Philadelphia Eagles", "sF": "12", "sU": "15", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.0, + "pScore": { + "sU": 23.25, + "sF": 25.75 + }, + "week": "2024 Regular Season - Week 3" }, { "date": "Sep 22, 2024", @@ -152834,8 +226476,13 @@ "und": "Los Angeles Chargers", "sF": "20", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.0, + "pScore": { + "sU": 16.75, + "sF": 19.25 + }, + "week": "2024 Regular Season - Week 3" }, { "date": "Sep 22, 2024", @@ -152845,7 +226492,12 @@ "sF": "7", "sU": "26", "spread": "6", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.25, + "sF": 23.25 + }, + "week": "2024 Regular Season - Week 3" }, { "date": "Sep 22, 2024", @@ -152855,7 +226507,12 @@ "sF": "14", "sU": "30", "spread": "3", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.0, + "sF": 20.0 + }, + "week": "2024 Regular Season - Week 3" }, { "date": "Sep 22, 2024", @@ -152864,8 +226521,13 @@ "und": "Carolina Panthers", "sF": "22", "sU": "36", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.0, + "pScore": { + "sU": 17.25, + "sF": 22.75 + }, + "week": "2024 Regular Season - Week 3" }, { "date": "Sep 22, 2024", @@ -152875,7 +226537,12 @@ "sF": "24", "sU": "3", "spread": "4", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 18.75, + "sF": 22.75 + }, + "week": "2024 Regular Season - Week 3" }, { "date": "Sep 22, 2024", @@ -152885,7 +226552,12 @@ "sF": "20", "sU": "13", "spread": "3", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 24.25, + "sF": 27.25 + }, + "week": "2024 Regular Season - Week 3" }, { "date": "Sep 22, 2024", @@ -152894,8 +226566,13 @@ "und": "Dallas Cowboys", "sF": "28", "sU": "25", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.5, + "pScore": { + "sU": 23.0, + "sF": 24.5 + }, + "week": "2024 Regular Season - Week 3" }, { "date": "Sep 22, 2024", @@ -152905,7 +226582,12 @@ "sF": "24", "sU": "27", "spread": "6", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 19.25, + "sF": 25.25 + }, + "week": "2024 Regular Season - Week 3" }, { "date": "Sep 22, 2024", @@ -152915,7 +226597,12 @@ "sF": "22", "sU": "17", "spread": "3", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.75, + "sF": 24.75 + }, + "week": "2024 Regular Season - Week 3" }, { "date": "Sep 23, 2024", @@ -152924,8 +226611,13 @@ "und": "Jacksonville Jaguars", "sF": "47", "sU": "10", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.5, + "pScore": { + "sU": 21.0, + "sF": 25.5 + }, + "week": "2024 Regular Season - Week 3" }, { "date": "Sep 23, 2024", @@ -152934,8 +226626,13 @@ "und": "Washington Commanders", "sF": "33", "sU": "38", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.5, + "pScore": { + "sU": 19.5, + "sF": 27.0 + }, + "week": "2024 Regular Season - Week 3" }, { "date": "Sep 26, 2024", @@ -152944,8 +226641,13 @@ "und": "New York Giants", "sF": "20", "sU": "15", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 45.0, + "pScore": { + "sU": 19.75, + "sF": 25.25 + }, + "week": "2024 Regular Season - Week 4" }, { "date": "Sep 29, 2024", @@ -152954,8 +226656,13 @@ "und": "New Orleans Saints", "sF": "26", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.5, + "pScore": { + "sU": 20.0, + "sF": 22.5 + }, + "week": "2024 Regular Season - Week 4" }, { "date": "Sep 29, 2024", @@ -152964,8 +226671,13 @@ "und": "Carolina Panthers", "sF": "34", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.5, + "pScore": { + "sU": 20.5, + "sF": 26.0 + }, + "week": "2024 Regular Season - Week 4" }, { "date": "Sep 29, 2024", @@ -152975,7 +226687,12 @@ "sF": "24", "sU": "18", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2024 Regular Season - Week 4" }, { "date": "Sep 29, 2024", @@ -152984,8 +226701,13 @@ "und": "Minnesota Vikings", "sF": "29", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2024 Regular Season - Week 4" }, { "date": "Sep 29, 2024", @@ -152994,8 +226716,13 @@ "und": "Jacksonville Jaguars", "sF": "24", "sU": "20", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 44.5, + "pScore": { + "sU": 19.5, + "sF": 25.0 + }, + "week": "2024 Regular Season - Week 4" }, { "date": "Sep 29, 2024", @@ -153004,8 +226731,13 @@ "und": "Indianapolis Colts", "sF": "24", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.0, + "pScore": { + "sU": 19.25, + "sF": 21.75 + }, + "week": "2024 Regular Season - Week 4" }, { "date": "Sep 29, 2024", @@ -153015,7 +226747,12 @@ "sF": "9", "sU": "10", "spread": "8", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 15.75, + "sF": 23.75 + }, + "week": "2024 Regular Season - Week 4" }, { "date": "Sep 29, 2024", @@ -153025,7 +226762,12 @@ "sF": "16", "sU": "33", "spread": "1", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 20.75, + "sF": 21.75 + }, + "week": "2024 Regular Season - Week 4" }, { "date": "Sep 29, 2024", @@ -153034,8 +226776,13 @@ "und": "Washington Commanders", "sF": "14", "sU": "42", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.5, + "pScore": { + "sU": 22.5, + "sF": 26.0 + }, + "week": "2024 Regular Season - Week 4" }, { "date": "Sep 29, 2024", @@ -153044,8 +226791,13 @@ "und": "New England Patriots", "sF": "30", "sU": "13", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 42.0, + "pScore": { + "sU": 15.75, + "sF": 26.25 + }, + "week": "2024 Regular Season - Week 4" }, { "date": "Sep 29, 2024", @@ -153054,8 +226806,13 @@ "und": "Las Vegas Raiders", "sF": "16", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2024 Regular Season - Week 4" }, { "date": "Sep 29, 2024", @@ -153065,7 +226822,12 @@ "sF": "17", "sU": "10", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2024 Regular Season - Week 4" }, { "date": "Sep 29, 2024", @@ -153074,8 +226836,13 @@ "und": "Buffalo Bills", "sF": "35", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.5, + "pScore": { + "sU": 22.5, + "sF": 25.0 + }, + "week": "2024 Regular Season - Week 4" }, { "date": "Sep 30, 2024", @@ -153084,8 +226851,13 @@ "und": "Tennessee Titans", "sF": "12", "sU": "31", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.5, + "pScore": { + "sU": 17.5, + "sF": 20.0 + }, + "week": "2024 Regular Season - Week 4" }, { "date": "Sep 30, 2024", @@ -153094,8 +226866,13 @@ "und": "Seattle Seahawks", "sF": "42", "sU": "29", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.0, + "pScore": { + "sU": 21.25, + "sF": 25.75 + }, + "week": "2024 Regular Season - Week 4" }, { "date": "Oct 3, 2024", @@ -153104,8 +226881,13 @@ "und": "Tampa Bay Buccaneers", "sF": "36", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2024 Regular Season - Week 5" }, { "date": "Oct 6, 2024", @@ -153114,8 +226896,13 @@ "und": "New York Jets", "sF": "23", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "2024 Regular Season - Week 5" }, { "date": "Oct 6, 2024", @@ -153125,7 +226912,12 @@ "sF": "36", "sU": "10", "spread": "4", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 18.0, + "sF": 22.0 + }, + "week": "2024 Regular Season - Week 5" }, { "date": "Oct 6, 2024", @@ -153134,8 +226926,13 @@ "und": "Cincinnati Bengals", "sF": "41", "sU": "38", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.5, + "pScore": { + "sU": 23.0, + "sF": 25.5 + }, + "week": "2024 Regular Season - Week 5" }, { "date": "Oct 6, 2024", @@ -153144,8 +226941,13 @@ "und": "Buffalo Bills", "sF": "23", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 48.0, + "pScore": { + "sU": 23.25, + "sF": 24.75 + }, + "week": "2024 Regular Season - Week 5" }, { "date": "Oct 6, 2024", @@ -153154,8 +226956,13 @@ "und": "Indianapolis Colts", "sF": "37", "sU": "34", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "2024 Regular Season - Week 5" }, { "date": "Oct 6, 2024", @@ -153165,7 +226972,12 @@ "sF": "15", "sU": "10", "spread": "2", - "ou": -1 + "ou": 37.0, + "pScore": { + "sU": 17.5, + "sF": 19.5 + }, + "week": "2024 Regular Season - Week 5" }, { "date": "Oct 6, 2024", @@ -153175,7 +226987,12 @@ "sF": "34", "sU": "13", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2024 Regular Season - Week 5" }, { "date": "Oct 6, 2024", @@ -153185,7 +227002,12 @@ "sF": "34", "sU": "18", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2024 Regular Season - Week 5" }, { "date": "Oct 6, 2024", @@ -153194,8 +227016,13 @@ "und": "Arizona Cardinals", "sF": "23", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 49.0, + "pScore": { + "sU": 20.75, + "sF": 28.25 + }, + "week": "2024 Regular Season - Week 5" }, { "date": "Oct 6, 2024", @@ -153205,7 +227032,12 @@ "sF": "24", "sU": "19", "spread": "3", - "ou": -1 + "ou": 49.5, + "pScore": { + "sU": 23.25, + "sF": 26.25 + }, + "week": "2024 Regular Season - Week 5" }, { "date": "Oct 6, 2024", @@ -153215,7 +227047,12 @@ "sF": "20", "sU": "29", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "2024 Regular Season - Week 5" }, { "date": "Oct 6, 2024", @@ -153224,8 +227061,13 @@ "und": "Dallas Cowboys", "sF": "17", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 44.0, + "pScore": { + "sU": 20.75, + "sF": 23.25 + }, + "week": "2024 Regular Season - Week 5" }, { "date": "Oct 7, 2024", @@ -153235,7 +227077,12 @@ "sF": "26", "sU": "13", "spread": "5", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.0, + "sF": 24.0 + }, + "week": "2024 Regular Season - Week 5" }, { "date": "Oct 10, 2024", @@ -153244,8 +227091,13 @@ "und": "Seattle Seahawks", "sF": "36", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 48.5, + "pScore": { + "sU": 22.5, + "sF": 26.0 + }, + "week": "2024 Regular Season - Week 6" }, { "date": "Oct 13, 2024", @@ -153254,8 +227106,13 @@ "und": "Chicago Bears", "sF": "16", "sU": "35", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.5, + "pScore": { + "sU": 21.5, + "sF": 23.0 + }, + "week": "2024 Regular Season - Week 6" }, { "date": "Oct 13, 2024", @@ -153265,7 +227122,12 @@ "sF": "30", "sU": "23", "spread": "7", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 21.75, + "sF": 28.75 + }, + "week": "2024 Regular Season - Week 6" }, { "date": "Oct 13, 2024", @@ -153274,8 +227136,13 @@ "und": "Arizona Cardinals", "sF": "34", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.0, + "pScore": { + "sU": 20.75, + "sF": 26.25 + }, + "week": "2024 Regular Season - Week 6" }, { "date": "Oct 13, 2024", @@ -153284,8 +227151,13 @@ "und": "New England Patriots", "sF": "41", "sU": "21", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 39.5, + "pScore": { + "sU": 16.5, + "sF": 23.0 + }, + "week": "2024 Regular Season - Week 6" }, { "date": "Oct 13, 2024", @@ -153294,8 +227166,13 @@ "und": "New Orleans Saints", "sF": "51", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 42.5, + "pScore": { + "sU": 19.5, + "sF": 23.0 + }, + "week": "2024 Regular Season - Week 6" }, { "date": "Oct 13, 2024", @@ -153304,8 +227181,13 @@ "und": "Cleveland Browns", "sF": "20", "sU": "16", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 42.0, + "pScore": { + "sU": 16.75, + "sF": 25.25 + }, + "week": "2024 Regular Season - Week 6" }, { "date": "Oct 13, 2024", @@ -153314,8 +227196,13 @@ "und": "Indianapolis Colts", "sF": "17", "sU": "20", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2024 Regular Season - Week 6" }, { "date": "Oct 13, 2024", @@ -153325,7 +227212,12 @@ "sF": "23", "sU": "16", "spread": "3", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 17.25, + "sF": 20.25 + }, + "week": "2024 Regular Season - Week 6" }, { "date": "Oct 13, 2024", @@ -153334,8 +227226,13 @@ "und": "Las Vegas Raiders", "sF": "32", "sU": "13", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 37.0, + "pScore": { + "sU": 16.75, + "sF": 20.25 + }, + "week": "2024 Regular Season - Week 6" }, { "date": "Oct 13, 2024", @@ -153345,7 +227242,12 @@ "sF": "38", "sU": "20", "spread": "6", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.75, + "sF": 25.75 + }, + "week": "2024 Regular Season - Week 6" }, { "date": "Oct 13, 2024", @@ -153354,8 +227256,13 @@ "und": "Dallas Cowboys", "sF": "47", "sU": "9", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 53.5, + "pScore": { + "sU": 25.0, + "sF": 28.5 + }, + "week": "2024 Regular Season - Week 6" }, { "date": "Oct 13, 2024", @@ -153364,8 +227271,13 @@ "und": "New York Giants", "sF": "17", "sU": "7", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.0, + "pScore": { + "sU": 20.75, + "sF": 25.25 + }, + "week": "2024 Regular Season - Week 6" }, { "date": "Oct 14, 2024", @@ -153374,8 +227286,13 @@ "und": "New York Jets", "sF": "23", "sU": "20", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 42.0, + "pScore": { + "sU": 20.25, + "sF": 21.75 + }, + "week": "2024 Regular Season - Week 6" }, { "date": "Oct 17, 2024", @@ -153384,8 +227301,13 @@ "und": "New Orleans Saints", "sF": "33", "sU": "10", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 37.0, + "pScore": { + "sU": 17.25, + "sF": 19.75 + }, + "week": "2024 Regular Season - Week 7" }, { "date": "Oct 20, 2024", @@ -153395,7 +227317,12 @@ "sF": "32", "sU": "16", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2024 Regular Season - Week 7" }, { "date": "Oct 20, 2024", @@ -153405,7 +227332,12 @@ "sF": "14", "sU": "34", "spread": "3", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 24.25, + "sF": 27.25 + }, + "week": "2024 Regular Season - Week 7" }, { "date": "Oct 20, 2024", @@ -153414,8 +227346,13 @@ "und": "Tennessee Titans", "sF": "34", "sU": "10", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 41.0, + "pScore": { + "sU": 15.75, + "sF": 25.25 + }, + "week": "2024 Regular Season - Week 7" }, { "date": "Oct 20, 2024", @@ -153424,8 +227361,13 @@ "und": "Cleveland Browns", "sF": "21", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 42.5, + "pScore": { + "sU": 18.5, + "sF": 24.0 + }, + "week": "2024 Regular Season - Week 7" }, { "date": "Oct 20, 2024", @@ -153435,7 +227377,12 @@ "sF": "24", "sU": "22", "spread": "3", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 22.25, + "sF": 25.25 + }, + "week": "2024 Regular Season - Week 7" }, { "date": "Oct 20, 2024", @@ -153445,7 +227392,12 @@ "sF": "16", "sU": "10", "spread": "3", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.5, + "sF": 23.5 + }, + "week": "2024 Regular Season - Week 7" }, { "date": "Oct 20, 2024", @@ -153454,8 +227406,13 @@ "und": "Detroit Lions", "sF": "29", "sU": "31", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 50.0, + "pScore": { + "sU": 24.25, + "sF": 25.75 + }, + "week": "2024 Regular Season - Week 7" }, { "date": "Oct 20, 2024", @@ -153465,7 +227422,12 @@ "sF": "28", "sU": "3", "spread": "3", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.25, + "sF": 22.25 + }, + "week": "2024 Regular Season - Week 7" }, { "date": "Oct 20, 2024", @@ -153475,7 +227437,12 @@ "sF": "20", "sU": "15", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2024 Regular Season - Week 7" }, { "date": "Oct 20, 2024", @@ -153485,7 +227452,12 @@ "sF": "40", "sU": "7", "spread": "10", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 20.5, + "sF": 30.5 + }, + "week": "2024 Regular Season - Week 7" }, { "date": "Oct 20, 2024", @@ -153494,8 +227466,13 @@ "und": "Kansas City Chiefs", "sF": "18", "sU": "28", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.0, + "pScore": { + "sU": 22.75, + "sF": 25.25 + }, + "week": "2024 Regular Season - Week 7" }, { "date": "Oct 20, 2024", @@ -153504,8 +227481,13 @@ "und": "Pittsburgh Steelers", "sF": "15", "sU": "37", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 40.0, + "pScore": { + "sU": 18.75, + "sF": 21.25 + }, + "week": "2024 Regular Season - Week 7" }, { "date": "Oct 21, 2024", @@ -153514,8 +227496,13 @@ "und": "Tampa Bay Buccaneers", "sF": "41", "sU": "31", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 51.0, + "pScore": { + "sU": 23.25, + "sF": 27.75 + }, + "week": "2024 Regular Season - Week 7" }, { "date": "Oct 21, 2024", @@ -153525,7 +227512,12 @@ "sF": "15", "sU": "17", "spread": "1", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.75, + "sF": 22.75 + }, + "week": "2024 Regular Season - Week 7" }, { "date": "Oct 24, 2024", @@ -153534,8 +227526,13 @@ "und": "Los Angeles Rams", "sF": "20", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.0, + "pScore": { + "sU": 22.25, + "sF": 24.75 + }, + "week": "2024 Regular Season - Week 8" }, { "date": "Oct 27, 2024", @@ -153544,8 +227541,13 @@ "und": "Philadelphia Eagles", "sF": "17", "sU": "37", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.5, + "pScore": { + "sU": 22.5, + "sF": 25.0 + }, + "week": "2024 Regular Season - Week 8" }, { "date": "Oct 27, 2024", @@ -153554,8 +227556,13 @@ "und": "Cleveland Browns", "sF": "24", "sU": "29", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.5, + "pScore": { + "sU": 18.5, + "sF": 26.0 + }, + "week": "2024 Regular Season - Week 8" }, { "date": "Oct 27, 2024", @@ -153564,8 +227571,13 @@ "und": "Tennessee Titans", "sF": "52", "sU": "14", - "spread": "12", - "ou": -1 + "spread": "12.5", + "ou": 45.5, + "pScore": { + "sU": 16.5, + "sF": 29.0 + }, + "week": "2024 Regular Season - Week 8" }, { "date": "Oct 27, 2024", @@ -153574,8 +227586,13 @@ "und": "Indianapolis Colts", "sF": "23", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 45.0, + "pScore": { + "sU": 20.25, + "sF": 24.75 + }, + "week": "2024 Regular Season - Week 8" }, { "date": "Oct 27, 2024", @@ -153584,8 +227601,13 @@ "und": "Jacksonville Jaguars", "sF": "30", "sU": "27", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 49.0, + "pScore": { + "sU": 22.75, + "sF": 26.25 + }, + "week": "2024 Regular Season - Week 8" }, { "date": "Oct 27, 2024", @@ -153595,7 +227617,12 @@ "sF": "27", "sU": "28", "spread": "5", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.75, + "sF": 25.75 + }, + "week": "2024 Regular Season - Week 8" }, { "date": "Oct 27, 2024", @@ -153605,7 +227632,12 @@ "sF": "22", "sU": "25", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2024 Regular Season - Week 8" }, { "date": "Oct 27, 2024", @@ -153614,8 +227646,13 @@ "und": "Tampa Bay Buccaneers", "sF": "31", "sU": "26", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 47.5, + "pScore": { + "sU": 23.0, + "sF": 24.5 + }, + "week": "2024 Regular Season - Week 8" }, { "date": "Oct 27, 2024", @@ -153624,8 +227661,13 @@ "und": "New Orleans Saints", "sF": "26", "sU": "8", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 41.5, + "pScore": { + "sU": 17.0, + "sF": 24.5 + }, + "week": "2024 Regular Season - Week 8" }, { "date": "Oct 27, 2024", @@ -153635,7 +227677,12 @@ "sF": "31", "sU": "10", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2024 Regular Season - Week 8" }, { "date": "Oct 27, 2024", @@ -153645,7 +227692,12 @@ "sF": "28", "sU": "14", "spread": "13", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 13.75, + "sF": 26.75 + }, + "week": "2024 Regular Season - Week 8" }, { "date": "Oct 27, 2024", @@ -153654,8 +227706,13 @@ "und": "Las Vegas Raiders", "sF": "27", "sU": "20", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 43.0, + "pScore": { + "sU": 17.25, + "sF": 25.75 + }, + "week": "2024 Regular Season - Week 8" }, { "date": "Oct 27, 2024", @@ -153664,8 +227721,13 @@ "und": "Chicago Bears", "sF": "18", "sU": "15", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 46.5, + "pScore": { + "sU": 22.5, + "sF": 24.0 + }, + "week": "2024 Regular Season - Week 8" }, { "date": "Oct 27, 2024", @@ -153674,8 +227736,13 @@ "und": "Dallas Cowboys", "sF": "30", "sU": "24", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.5, + "pScore": { + "sU": 21.0, + "sF": 26.5 + }, + "week": "2024 Regular Season - Week 8" }, { "date": "Oct 28, 2024", @@ -153685,7 +227752,12 @@ "sF": "26", "sU": "18", "spread": "6", - "ou": -1 + "ou": 37.5, + "pScore": { + "sU": 15.75, + "sF": 21.75 + }, + "week": "2024 Regular Season - Week 8" }, { "date": "Oct 31, 2024", @@ -153694,8 +227766,13 @@ "und": "Houston Texans", "sF": "21", "sU": "13", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2024 Regular Season - Week 9" }, { "date": "Nov 3, 2024", @@ -153705,7 +227782,12 @@ "sF": "27", "sU": "21", "spread": "3", - "ou": -1 + "ou": 52.0, + "pScore": { + "sU": 24.5, + "sF": 27.5 + }, + "week": "2024 Regular Season - Week 9" }, { "date": "Nov 3, 2024", @@ -153715,7 +227797,12 @@ "sF": "41", "sU": "10", "spread": "9", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 18.75, + "sF": 27.75 + }, + "week": "2024 Regular Season - Week 9" }, { "date": "Nov 3, 2024", @@ -153725,7 +227812,12 @@ "sF": "30", "sU": "27", "spread": "6", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 21.5, + "sF": 27.5 + }, + "week": "2024 Regular Season - Week 9" }, { "date": "Nov 3, 2024", @@ -153735,7 +227827,12 @@ "sF": "22", "sU": "23", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2024 Regular Season - Week 9" }, { "date": "Nov 3, 2024", @@ -153744,8 +227841,13 @@ "und": "Las Vegas Raiders", "sF": "41", "sU": "24", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.5, + "pScore": { + "sU": 18.5, + "sF": 26.0 + }, + "week": "2024 Regular Season - Week 9" }, { "date": "Nov 3, 2024", @@ -153755,7 +227857,12 @@ "sF": "27", "sU": "10", "spread": "2", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 19.75, + "sF": 21.75 + }, + "week": "2024 Regular Season - Week 9" }, { "date": "Nov 3, 2024", @@ -153765,7 +227872,12 @@ "sF": "27", "sU": "22", "spread": "4", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 20.0, + "sF": 24.0 + }, + "week": "2024 Regular Season - Week 9" }, { "date": "Nov 3, 2024", @@ -153774,8 +227886,13 @@ "und": "New England Patriots", "sF": "20", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 38.5, + "pScore": { + "sU": 17.5, + "sF": 21.0 + }, + "week": "2024 Regular Season - Week 9" }, { "date": "Nov 3, 2024", @@ -153784,8 +227901,13 @@ "und": "Chicago Bears", "sF": "29", "sU": "9", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.5, + "pScore": { + "sU": 21.5, + "sF": 23.0 + }, + "week": "2024 Regular Season - Week 9" }, { "date": "Nov 3, 2024", @@ -153794,8 +227916,13 @@ "und": "Jacksonville Jaguars", "sF": "28", "sU": "23", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 46.0, + "pScore": { + "sU": 19.25, + "sF": 26.75 + }, + "week": "2024 Regular Season - Week 9" }, { "date": "Nov 3, 2024", @@ -153804,8 +227931,13 @@ "und": "Green Bay Packers", "sF": "24", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.5, + "pScore": { + "sU": 23.0, + "sF": 25.5 + }, + "week": "2024 Regular Season - Week 9" }, { "date": "Nov 3, 2024", @@ -153815,7 +227947,12 @@ "sF": "26", "sU": "20", "spread": "2", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 23.25, + "sF": 25.25 + }, + "week": "2024 Regular Season - Week 9" }, { "date": "Nov 3, 2024", @@ -153825,7 +227962,12 @@ "sF": "21", "sU": "13", "spread": "6", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 20.5, + "sF": 26.5 + }, + "week": "2024 Regular Season - Week 9" }, { "date": "Nov 4, 2024", @@ -153835,7 +227977,12 @@ "sF": "30", "sU": "24", "spread": "9", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 18.25, + "sF": 27.25 + }, + "week": "2024 Regular Season - Week 9" }, { "date": "Nov 7, 2024", @@ -153845,7 +227992,12 @@ "sF": "35", "sU": "34", "spread": "6", - "ou": -1 + "ou": 53.0, + "pScore": { + "sU": 23.5, + "sF": 29.5 + }, + "week": "2024 Regular Season - Week 10" }, { "date": "Nov 10, 2024", @@ -153854,8 +228006,13 @@ "und": "Carolina Panthers", "sF": "17", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 40.5, + "pScore": { + "sU": 17.0, + "sF": 23.5 + }, + "week": "2024 Regular Season - Week 10" }, { "date": "Nov 10, 2024", @@ -153864,8 +228021,13 @@ "und": "New England Patriots", "sF": "3", "sU": "19", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 37.5, + "pScore": { + "sU": 15.5, + "sF": 22.0 + }, + "week": "2024 Regular Season - Week 10" }, { "date": "Nov 10, 2024", @@ -153874,8 +228036,13 @@ "und": "Indianapolis Colts", "sF": "30", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 46.5, + "pScore": { + "sU": 21.0, + "sF": 25.5 + }, + "week": "2024 Regular Season - Week 10" }, { "date": "Nov 10, 2024", @@ -153885,7 +228052,12 @@ "sF": "12", "sU": "7", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "2024 Regular Season - Week 10" }, { "date": "Nov 10, 2024", @@ -153895,7 +228067,12 @@ "sF": "16", "sU": "14", "spread": "7", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 17.75, + "sF": 24.75 + }, + "week": "2024 Regular Season - Week 10" }, { "date": "Nov 10, 2024", @@ -153904,8 +228081,13 @@ "und": "New Orleans Saints", "sF": "17", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2024 Regular Season - Week 10" }, { "date": "Nov 10, 2024", @@ -153914,8 +228096,13 @@ "und": "Tampa Bay Buccaneers", "sF": "23", "sU": "20", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 50.5, + "pScore": { + "sU": 22.0, + "sF": 28.5 + }, + "week": "2024 Regular Season - Week 10" }, { "date": "Nov 10, 2024", @@ -153925,7 +228112,12 @@ "sF": "27", "sU": "28", "spread": "2", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.75, + "sF": 23.75 + }, + "week": "2024 Regular Season - Week 10" }, { "date": "Nov 10, 2024", @@ -153934,8 +228126,13 @@ "und": "Tennessee Titans", "sF": "27", "sU": "17", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 39.5, + "pScore": { + "sU": 15.5, + "sF": 24.0 + }, + "week": "2024 Regular Season - Week 10" }, { "date": "Nov 10, 2024", @@ -153945,7 +228142,12 @@ "sF": "6", "sU": "31", "spread": "2", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.0, + "sF": 24.0 + }, + "week": "2024 Regular Season - Week 10" }, { "date": "Nov 10, 2024", @@ -153955,7 +228157,12 @@ "sF": "34", "sU": "6", "spread": "7", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 18.75, + "sF": 25.75 + }, + "week": "2024 Regular Season - Week 10" }, { "date": "Nov 10, 2024", @@ -153965,7 +228172,12 @@ "sF": "26", "sU": "23", "spread": "4", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 22.5, + "sF": 26.5 + }, + "week": "2024 Regular Season - Week 10" }, { "date": "Nov 11, 2024", @@ -153974,8 +228186,13 @@ "und": "Miami Dolphins", "sF": "15", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.5, + "pScore": { + "sU": 23.5, + "sF": 26.0 + }, + "week": "2024 Regular Season - Week 10" }, { "date": "Nov 14, 2024", @@ -153984,8 +228201,13 @@ "und": "Washington Commanders", "sF": "26", "sU": "18", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 49.0, + "pScore": { + "sU": 22.25, + "sF": 26.75 + }, + "week": "2024 Regular Season - Week 11" }, { "date": "Nov 17, 2024", @@ -153995,7 +228217,12 @@ "sF": "20", "sU": "19", "spread": "6", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 17.5, + "sF": 23.5 + }, + "week": "2024 Regular Season - Week 11" }, { "date": "Nov 17, 2024", @@ -154004,8 +228231,13 @@ "und": "Jacksonville Jaguars", "sF": "52", "sU": "6", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 47.5, + "pScore": { + "sU": 17.0, + "sF": 30.5 + }, + "week": "2024 Regular Season - Week 11" }, { "date": "Nov 17, 2024", @@ -154015,7 +228247,12 @@ "sF": "34", "sU": "19", "spread": "8", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 17.75, + "sF": 25.75 + }, + "week": "2024 Regular Season - Week 11" }, { "date": "Nov 17, 2024", @@ -154025,7 +228262,12 @@ "sF": "28", "sU": "22", "spread": "4", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 19.0, + "sF": 23.0 + }, + "week": "2024 Regular Season - Week 11" }, { "date": "Nov 17, 2024", @@ -154035,7 +228277,12 @@ "sF": "14", "sU": "35", "spread": "1", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 21.5, + "sF": 22.5 + }, + "week": "2024 Regular Season - Week 11" }, { "date": "Nov 17, 2024", @@ -154045,7 +228292,12 @@ "sF": "27", "sU": "28", "spread": "4", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 19.5, + "sF": 23.5 + }, + "week": "2024 Regular Season - Week 11" }, { "date": "Nov 17, 2024", @@ -154055,7 +228307,12 @@ "sF": "16", "sU": "18", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2024 Regular Season - Week 11" }, { "date": "Nov 17, 2024", @@ -154065,7 +228322,12 @@ "sF": "23", "sU": "13", "spread": "6", - "ou": -1 + "ou": 40.0, + "pScore": { + "sU": 17.0, + "sF": 23.0 + }, + "week": "2024 Regular Season - Week 11" }, { "date": "Nov 17, 2024", @@ -154075,7 +228337,12 @@ "sF": "38", "sU": "6", "spread": "2", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 21.25, + "sF": 23.25 + }, + "week": "2024 Regular Season - Week 11" }, { "date": "Nov 17, 2024", @@ -154085,7 +228352,12 @@ "sF": "17", "sU": "20", "spread": "6", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 21.25, + "sF": 27.25 + }, + "week": "2024 Regular Season - Week 11" }, { "date": "Nov 17, 2024", @@ -154094,8 +228366,13 @@ "und": "Kansas City Chiefs", "sF": "30", "sU": "21", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.0, + "pScore": { + "sU": 22.25, + "sF": 24.75 + }, + "week": "2024 Regular Season - Week 11" }, { "date": "Nov 17, 2024", @@ -154105,7 +228382,12 @@ "sF": "34", "sU": "27", "spread": "1", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 23.5, + "sF": 24.5 + }, + "week": "2024 Regular Season - Week 11" }, { "date": "Nov 18, 2024", @@ -154115,7 +228397,12 @@ "sF": "34", "sU": "10", "spread": "7", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.25, + "sF": 24.25 + }, + "week": "2024 Regular Season - Week 11" }, { "date": "Nov 21, 2024", @@ -154124,8 +228411,13 @@ "und": "Cleveland Browns", "sF": "19", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "2024 Regular Season - Week 12" }, { "date": "Nov 24, 2024", @@ -154135,7 +228427,12 @@ "sF": "30", "sU": "27", "spread": "11", - "ou": -1 + "ou": 43.0, + "pScore": { + "sU": 16.0, + "sF": 27.0 + }, + "week": "2024 Regular Season - Week 12" }, { "date": "Nov 24, 2024", @@ -154145,7 +228442,12 @@ "sF": "30", "sU": "27", "spread": "3", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.25, + "sF": 21.25 + }, + "week": "2024 Regular Season - Week 12" }, { "date": "Nov 24, 2024", @@ -154155,7 +228457,12 @@ "sF": "27", "sU": "32", "spread": "8", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 16.25, + "sF": 24.25 + }, + "week": "2024 Regular Season - Week 12" }, { "date": "Nov 24, 2024", @@ -154165,7 +228472,12 @@ "sF": "24", "sU": "6", "spread": "8", - "ou": -1 + "ou": 50.5, + "pScore": { + "sU": 21.25, + "sF": 29.25 + }, + "week": "2024 Regular Season - Week 12" }, { "date": "Nov 24, 2024", @@ -154174,8 +228486,13 @@ "und": "New England Patriots", "sF": "34", "sU": "15", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 45.5, + "pScore": { + "sU": 19.0, + "sF": 26.5 + }, + "week": "2024 Regular Season - Week 12" }, { "date": "Nov 24, 2024", @@ -154185,7 +228502,12 @@ "sF": "30", "sU": "7", "spread": "6", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 17.25, + "sF": 23.25 + }, + "week": "2024 Regular Season - Week 12" }, { "date": "Nov 24, 2024", @@ -154194,8 +228516,13 @@ "und": "Dallas Cowboys", "sF": "26", "sU": "34", - "spread": "10", - "ou": -1 + "spread": "10.5", + "ou": 44.5, + "pScore": { + "sU": 17.0, + "sF": 27.5 + }, + "week": "2024 Regular Season - Week 12" }, { "date": "Nov 24, 2024", @@ -154204,8 +228531,13 @@ "und": "Las Vegas Raiders", "sF": "29", "sU": "19", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 41.5, + "pScore": { + "sU": 18.0, + "sF": 23.5 + }, + "week": "2024 Regular Season - Week 12" }, { "date": "Nov 24, 2024", @@ -154215,11 +228547,12 @@ "sF": "38", "sU": "10", "spread": "6", - "ou": "49", + "ou": 44.5, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 19.25, + "sF": 25.25 + }, + "week": "2024 Regular Season - Week 12" }, { "date": "Nov 24, 2024", @@ -154229,7 +228562,12 @@ "sF": "6", "sU": "16", "spread": "1", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 22.75, + "sF": 23.75 + }, + "week": "2024 Regular Season - Week 12" }, { "date": "Nov 24, 2024", @@ -154239,7 +228577,12 @@ "sF": "37", "sU": "20", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2024 Regular Season - Week 12" }, { "date": "Nov 25, 2024", @@ -154249,7 +228592,12 @@ "sF": "30", "sU": "23", "spread": "3", - "ou": -1 + "ou": 51.0, + "pScore": { + "sU": 24.0, + "sF": 27.0 + }, + "week": "2024 Regular Season - Week 12" }, { "date": "Nov 28, 2024", @@ -154258,8 +228606,13 @@ "und": "Chicago Bears", "sF": "23", "sU": "20", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 48.0, + "pScore": { + "sU": 19.25, + "sF": 28.75 + }, + "week": "2024 Regular Season - Week 13" }, { "date": "Nov 28, 2024", @@ -154269,7 +228622,12 @@ "sF": "27", "sU": "20", "spread": "4", - "ou": -1 + "ou": 39.0, + "pScore": { + "sU": 17.5, + "sF": 21.5 + }, + "week": "2024 Regular Season - Week 13" }, { "date": "Nov 28, 2024", @@ -154278,8 +228636,13 @@ "und": "Miami Dolphins", "sF": "30", "sU": "17", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 47.5, + "pScore": { + "sU": 22.0, + "sF": 25.5 + }, + "week": "2024 Regular Season - Week 13" }, { "date": "Nov 29, 2024", @@ -154288,8 +228651,13 @@ "und": "Las Vegas Raiders", "sF": "19", "sU": "17", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 42.5, + "pScore": { + "sU": 14.5, + "sF": 28.0 + }, + "week": "2024 Regular Season - Week 13" }, { "date": "Dec 1, 2024", @@ -154299,7 +228667,12 @@ "sF": "17", "sU": "13", "spread": "1", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 23.0, + "sF": 24.0 + }, + "week": "2024 Regular Season - Week 13" }, { "date": "Dec 1, 2024", @@ -154309,7 +228682,12 @@ "sF": "38", "sU": "44", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2024 Regular Season - Week 13" }, { "date": "Dec 1, 2024", @@ -154318,8 +228696,13 @@ "und": "Jacksonville Jaguars", "sF": "23", "sU": "20", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 44.5, + "pScore": { + "sU": 20.5, + "sF": 24.0 + }, + "week": "2024 Regular Season - Week 13" }, { "date": "Dec 1, 2024", @@ -154328,8 +228711,13 @@ "und": "Arizona Cardinals", "sF": "23", "sU": "22", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 45.5, + "pScore": { + "sU": 21.0, + "sF": 24.5 + }, + "week": "2024 Regular Season - Week 13" }, { "date": "Dec 1, 2024", @@ -154338,8 +228726,13 @@ "und": "New England Patriots", "sF": "25", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2024 Regular Season - Week 13" }, { "date": "Dec 1, 2024", @@ -154348,8 +228741,13 @@ "und": "Seattle Seahawks", "sF": "21", "sU": "26", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 41.5, + "pScore": { + "sU": 20.0, + "sF": 21.5 + }, + "week": "2024 Regular Season - Week 13" }, { "date": "Dec 1, 2024", @@ -154359,7 +228757,12 @@ "sF": "42", "sU": "19", "spread": "6", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 19.75, + "sF": 25.75 + }, + "week": "2024 Regular Season - Week 13" }, { "date": "Dec 1, 2024", @@ -154368,8 +228771,13 @@ "und": "Carolina Panthers", "sF": "26", "sU": "23", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 46.0, + "pScore": { + "sU": 19.75, + "sF": 26.25 + }, + "week": "2024 Regular Season - Week 13" }, { "date": "Dec 1, 2024", @@ -154378,8 +228786,13 @@ "und": "New Orleans Saints", "sF": "21", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 49.0, + "pScore": { + "sU": 23.25, + "sF": 25.75 + }, + "week": "2024 Regular Season - Week 13" }, { "date": "Dec 1, 2024", @@ -154389,7 +228802,12 @@ "sF": "19", "sU": "24", "spread": "3", - "ou": -1 + "ou": 50.0, + "pScore": { + "sU": 23.5, + "sF": 26.5 + }, + "week": "2024 Regular Season - Week 13" }, { "date": "Dec 1, 2024", @@ -154398,12 +228816,13 @@ "und": "San Francisco 49ers", "sF": "35", "sU": "10", - "spread": "6", - "ou": "49", + "spread": "6.5", + "ou": 45.5, "pScore": { - "sU": 21.5, - "sF": 27.5 - } + "sU": 19.5, + "sF": 26.0 + }, + "week": "2024 Regular Season - Week 13" }, { "date": "Dec 2, 2024", @@ -154412,8 +228831,13 @@ "und": "Cleveland Browns", "sF": "41", "sU": "32", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 41.5, + "pScore": { + "sU": 17.5, + "sF": 24.0 + }, + "week": "2024 Regular Season - Week 13" }, { "date": "Dec 5, 2024", @@ -154422,8 +228846,13 @@ "und": "Green Bay Packers", "sF": "34", "sU": "31", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 53.0, + "pScore": { + "sU": 24.75, + "sF": 28.25 + }, + "week": "2024 Regular Season - Week 14" }, { "date": "Dec 8, 2024", @@ -154432,8 +228861,13 @@ "und": "New York Jets", "sF": "32", "sU": "26", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 45.5, + "pScore": { + "sU": 19.5, + "sF": 26.0 + }, + "week": "2024 Regular Season - Week 14" }, { "date": "Dec 8, 2024", @@ -154443,7 +228877,12 @@ "sF": "42", "sU": "21", "spread": "6", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.25, + "sF": 26.25 + }, + "week": "2024 Regular Season - Week 14" }, { "date": "Dec 8, 2024", @@ -154452,8 +228891,13 @@ "und": "New Orleans Saints", "sF": "11", "sU": "14", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 40.5, + "pScore": { + "sU": 17.5, + "sF": 23.0 + }, + "week": "2024 Regular Season - Week 14" }, { "date": "Dec 8, 2024", @@ -154462,8 +228906,13 @@ "und": "Carolina Panthers", "sF": "22", "sU": "16", - "spread": "13", - "ou": -1 + "spread": "13.5", + "ou": 44.5, + "pScore": { + "sU": 15.5, + "sF": 29.0 + }, + "week": "2024 Regular Season - Week 14" }, { "date": "Dec 8, 2024", @@ -154473,7 +228922,12 @@ "sF": "27", "sU": "14", "spread": "6", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 18.25, + "sF": 24.25 + }, + "week": "2024 Regular Season - Week 14" }, { "date": "Dec 8, 2024", @@ -154482,8 +228936,13 @@ "und": "Las Vegas Raiders", "sF": "28", "sU": "13", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "2024 Regular Season - Week 14" }, { "date": "Dec 8, 2024", @@ -154493,7 +228952,12 @@ "sF": "6", "sU": "10", "spread": "3", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 18.75, + "sF": 21.75 + }, + "week": "2024 Regular Season - Week 14" }, { "date": "Dec 8, 2024", @@ -154503,7 +228967,12 @@ "sF": "18", "sU": "30", "spread": "3", - "ou": -1 + "ou": 45.5, + "pScore": { + "sU": 21.25, + "sF": 24.25 + }, + "week": "2024 Regular Season - Week 14" }, { "date": "Dec 8, 2024", @@ -154512,8 +228981,13 @@ "und": "Los Angeles Rams", "sF": "42", "sU": "44", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 50.5, + "pScore": { + "sU": 23.5, + "sF": 27.0 + }, + "week": "2024 Regular Season - Week 14" }, { "date": "Dec 8, 2024", @@ -154523,7 +228997,12 @@ "sF": "38", "sU": "13", "spread": "3", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 20.25, + "sF": 23.25 + }, + "week": "2024 Regular Season - Week 14" }, { "date": "Dec 8, 2024", @@ -154532,8 +229011,13 @@ "und": "Los Angeles Chargers", "sF": "19", "sU": "17", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 43.0, + "pScore": { + "sU": 19.25, + "sF": 23.75 + }, + "week": "2024 Regular Season - Week 14" }, { "date": "Dec 9, 2024", @@ -154542,8 +229026,13 @@ "und": "Dallas Cowboys", "sF": "27", "sU": "20", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 50.5, + "pScore": { + "sU": 23.0, + "sF": 27.5 + }, + "week": "2024 Regular Season - Week 14" }, { "date": "Dec 12, 2024", @@ -154553,7 +229042,12 @@ "sF": "6", "sU": "12", "spread": "3", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 22.75, + "sF": 25.75 + }, + "week": "2024 Regular Season - Week 15" }, { "date": "Dec 15, 2024", @@ -154562,8 +229056,13 @@ "und": "Dallas Cowboys", "sF": "14", "sU": "30", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 42.0, + "pScore": { + "sU": 19.75, + "sF": 22.25 + }, + "week": "2024 Regular Season - Week 15" }, { "date": "Dec 15, 2024", @@ -154573,7 +229072,12 @@ "sF": "21", "sU": "7", "spread": "4", - "ou": -1 + "ou": 41.0, + "pScore": { + "sU": 18.5, + "sF": 22.5 + }, + "week": "2024 Regular Season - Week 15" }, { "date": "Dec 15, 2024", @@ -154582,8 +229086,13 @@ "und": "Miami Dolphins", "sF": "20", "sU": "12", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 46.5, + "pScore": { + "sU": 22.0, + "sF": 24.5 + }, + "week": "2024 Regular Season - Week 15" }, { "date": "Dec 15, 2024", @@ -154592,8 +229101,13 @@ "und": "Jacksonville Jaguars", "sF": "32", "sU": "25", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 41.5, + "pScore": { + "sU": 19.0, + "sF": 22.5 + }, + "week": "2024 Regular Season - Week 15" }, { "date": "Dec 15, 2024", @@ -154602,8 +229116,13 @@ "und": "New Orleans Saints", "sF": "20", "sU": "19", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 44.5, + "pScore": { + "sU": 18.5, + "sF": 26.0 + }, + "week": "2024 Regular Season - Week 15" }, { "date": "Dec 15, 2024", @@ -154612,8 +229131,13 @@ "und": "New York Giants", "sF": "35", "sU": "14", - "spread": "16", - "ou": -1 + "spread": "16.5", + "ou": 43.5, + "pScore": { + "sU": 13.5, + "sF": 30.0 + }, + "week": "2024 Regular Season - Week 15" }, { "date": "Dec 15, 2024", @@ -154623,7 +229147,12 @@ "sF": "37", "sU": "27", "spread": "6", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.25, + "sF": 26.25 + }, + "week": "2024 Regular Season - Week 15" }, { "date": "Dec 15, 2024", @@ -154633,7 +229162,12 @@ "sF": "30", "sU": "17", "spread": "6", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 20.25, + "sF": 26.25 + }, + "week": "2024 Regular Season - Week 15" }, { "date": "Dec 15, 2024", @@ -154642,8 +229176,13 @@ "und": "Indianapolis Colts", "sF": "31", "sU": "13", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 44.0, + "pScore": { + "sU": 19.75, + "sF": 24.25 + }, + "week": "2024 Regular Season - Week 15" }, { "date": "Dec 15, 2024", @@ -154652,8 +229191,13 @@ "und": "Buffalo Bills", "sF": "42", "sU": "48", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 55.5, + "pScore": { + "sU": 26.5, + "sF": 29.0 + }, + "week": "2024 Regular Season - Week 15" }, { "date": "Dec 15, 2024", @@ -154663,7 +229207,12 @@ "sF": "17", "sU": "40", "spread": "3", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 21.5, + "sF": 24.5 + }, + "week": "2024 Regular Season - Week 15" }, { "date": "Dec 15, 2024", @@ -154672,8 +229221,13 @@ "und": "Pittsburgh Steelers", "sF": "27", "sU": "13", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 43.0, + "pScore": { + "sU": 18.75, + "sF": 24.25 + }, + "week": "2024 Regular Season - Week 15" }, { "date": "Dec 15, 2024", @@ -154683,7 +229237,12 @@ "sF": "30", "sU": "13", "spread": "3", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 22.5, + "sF": 25.5 + }, + "week": "2024 Regular Season - Week 15" }, { "date": "Dec 16, 2024", @@ -154693,7 +229252,12 @@ "sF": "30", "sU": "12", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2024 Regular Season - Week 15" }, { "date": "Dec 16, 2024", @@ -154702,8 +229266,13 @@ "und": "Las Vegas Raiders", "sF": "15", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 44.5, + "pScore": { + "sU": 19.0, + "sF": 25.5 + }, + "week": "2024 Regular Season - Week 15" }, { "date": "Dec 19, 2024", @@ -154712,8 +229281,13 @@ "und": "Denver Broncos", "sF": "34", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2024 Regular Season - Week 16" }, { "date": "Dec 21, 2024", @@ -154723,7 +229297,12 @@ "sF": "27", "sU": "19", "spread": "3", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.75, + "sF": 22.75 + }, + "week": "2024 Regular Season - Week 16" }, { "date": "Dec 21, 2024", @@ -154733,7 +229312,12 @@ "sF": "34", "sU": "17", "spread": "7", - "ou": -1 + "ou": 44.0, + "pScore": { + "sU": 18.5, + "sF": 25.5 + }, + "week": "2024 Regular Season - Week 16" }, { "date": "Dec 22, 2024", @@ -154742,8 +229326,13 @@ "und": "New York Giants", "sF": "34", "sU": "7", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 43.0, + "pScore": { + "sU": 16.75, + "sF": 26.25 + }, + "week": "2024 Regular Season - Week 16" }, { "date": "Dec 22, 2024", @@ -154753,7 +229342,12 @@ "sF": "24", "sU": "21", "spread": "14", - "ou": -1 + "ou": 48.0, + "pScore": { + "sU": 17.0, + "sF": 31.0 + }, + "week": "2024 Regular Season - Week 16" }, { "date": "Dec 22, 2024", @@ -154762,8 +229356,13 @@ "und": "Carolina Panthers", "sF": "30", "sU": "36", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 47.0, + "pScore": { + "sU": 20.75, + "sF": 26.25 + }, + "week": "2024 Regular Season - Week 16" }, { "date": "Dec 22, 2024", @@ -154773,7 +229372,12 @@ "sF": "34", "sU": "17", "spread": "7", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 20.25, + "sF": 27.25 + }, + "week": "2024 Regular Season - Week 16" }, { "date": "Dec 22, 2024", @@ -154783,7 +229387,12 @@ "sF": "24", "sU": "6", "spread": "10", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 18.0, + "sF": 28.0 + }, + "week": "2024 Regular Season - Week 16" }, { "date": "Dec 22, 2024", @@ -154793,7 +229402,12 @@ "sF": "38", "sU": "30", "spread": "4", - "ou": -1 + "ou": 42.5, + "pScore": { + "sU": 19.25, + "sF": 23.25 + }, + "week": "2024 Regular Season - Week 16" }, { "date": "Dec 22, 2024", @@ -154803,7 +229417,12 @@ "sF": "19", "sU": "9", "spread": "3", - "ou": -1 + "ou": 47.0, + "pScore": { + "sU": 22.0, + "sF": 25.0 + }, + "week": "2024 Regular Season - Week 16" }, { "date": "Dec 22, 2024", @@ -154813,7 +229432,12 @@ "sF": "33", "sU": "36", "spread": "4", - "ou": -1 + "ou": 46.5, + "pScore": { + "sU": 21.25, + "sF": 25.25 + }, + "week": "2024 Regular Season - Week 16" }, { "date": "Dec 22, 2024", @@ -154822,8 +229446,13 @@ "und": "Seattle Seahawks", "sF": "27", "sU": "24", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 43.0, + "pScore": { + "sU": 20.25, + "sF": 22.75 + }, + "week": "2024 Regular Season - Week 16" }, { "date": "Dec 22, 2024", @@ -154832,8 +229461,13 @@ "und": "Jacksonville Jaguars", "sF": "19", "sU": "14", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2024 Regular Season - Week 16" }, { "date": "Dec 22, 2024", @@ -154842,8 +229476,13 @@ "und": "Miami Dolphins", "sF": "17", "sU": "29", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 44.0, + "pScore": { + "sU": 21.25, + "sF": 22.75 + }, + "week": "2024 Regular Season - Week 16" }, { "date": "Dec 22, 2024", @@ -154852,8 +229491,13 @@ "und": "Dallas Cowboys", "sF": "24", "sU": "26", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 47.5, + "pScore": { + "sU": 21.5, + "sF": 26.0 + }, + "week": "2024 Regular Season - Week 16" }, { "date": "Dec 23, 2024", @@ -154863,7 +229507,12 @@ "sF": "34", "sU": "0", "spread": "14", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 14.75, + "sF": 28.75 + }, + "week": "2024 Regular Season - Week 16" }, { "date": "Dec 25, 2024", @@ -154873,7 +229522,12 @@ "sF": "29", "sU": "10", "spread": "2", - "ou": -1 + "ou": 46.0, + "pScore": { + "sU": 22.0, + "sF": 24.0 + }, + "week": "2024 Regular Season - Week 17" }, { "date": "Dec 25, 2024", @@ -154882,8 +229536,13 @@ "und": "Houston Texans", "sF": "31", "sU": "2", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 47.0, + "pScore": { + "sU": 20.25, + "sF": 26.75 + }, + "week": "2024 Regular Season - Week 17" }, { "date": "Dec 26, 2024", @@ -154892,8 +229551,13 @@ "und": "Chicago Bears", "sF": "6", "sU": "3", - "spread": "4", - "ou": -1 + "spread": "4.5", + "ou": 42.5, + "pScore": { + "sU": 19.0, + "sF": 23.5 + }, + "week": "2024 Regular Season - Week 17" }, { "date": "Dec 28, 2024", @@ -154903,7 +229567,12 @@ "sF": "40", "sU": "7", "spread": "6", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 17.75, + "sF": 23.75 + }, + "week": "2024 Regular Season - Week 17" }, { "date": "Dec 28, 2024", @@ -154912,8 +229581,13 @@ "und": "Denver Broncos", "sF": "30", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 50.5, + "pScore": { + "sU": 23.5, + "sF": 27.0 + }, + "week": "2024 Regular Season - Week 17" }, { "date": "Dec 28, 2024", @@ -154922,8 +229596,13 @@ "und": "Arizona Cardinals", "sF": "13", "sU": "9", - "spread": "6", - "ou": -1 + "spread": "6.5", + "ou": 48.0, + "pScore": { + "sU": 20.75, + "sF": 27.25 + }, + "week": "2024 Regular Season - Week 17" }, { "date": "Dec 29, 2024", @@ -154933,7 +229612,12 @@ "sF": "40", "sU": "14", "spread": "10", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.25, + "sF": 27.25 + }, + "week": "2024 Regular Season - Week 17" }, { "date": "Dec 29, 2024", @@ -154943,7 +229627,12 @@ "sF": "20", "sU": "13", "spread": "1", - "ou": -1 + "ou": 38.5, + "pScore": { + "sU": 18.75, + "sF": 19.75 + }, + "week": "2024 Regular Season - Week 17" }, { "date": "Dec 29, 2024", @@ -154952,8 +229641,13 @@ "und": "New Orleans Saints", "sF": "25", "sU": "10", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 37.5, + "pScore": { + "sU": 18.0, + "sF": 19.5 + }, + "week": "2024 Regular Season - Week 17" }, { "date": "Dec 29, 2024", @@ -154962,8 +229656,13 @@ "und": "New York Giants", "sF": "33", "sU": "45", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 40.5, + "pScore": { + "sU": 16.5, + "sF": 24.0 + }, + "week": "2024 Regular Season - Week 17" }, { "date": "Dec 29, 2024", @@ -154972,8 +229671,13 @@ "und": "Dallas Cowboys", "sF": "41", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 37.5, + "pScore": { + "sU": 15.0, + "sF": 22.5 + }, + "week": "2024 Regular Season - Week 17" }, { "date": "Dec 29, 2024", @@ -154983,7 +229687,12 @@ "sF": "48", "sU": "14", "spread": "10", - "ou": -1 + "ou": 47.5, + "pScore": { + "sU": 18.75, + "sF": 28.75 + }, + "week": "2024 Regular Season - Week 17" }, { "date": "Dec 29, 2024", @@ -154993,7 +229702,12 @@ "sF": "20", "sU": "3", "spread": "3", - "ou": -1 + "ou": 32.5, + "pScore": { + "sU": 14.75, + "sF": 17.75 + }, + "week": "2024 Regular Season - Week 17" }, { "date": "Dec 29, 2024", @@ -155003,7 +229717,12 @@ "sF": "27", "sU": "25", "spread": "1", - "ou": -1 + "ou": 49.0, + "pScore": { + "sU": 24.0, + "sF": 25.0 + }, + "week": "2024 Regular Season - Week 17" }, { "date": "Dec 29, 2024", @@ -155012,8 +229731,13 @@ "und": "Atlanta Falcons", "sF": "30", "sU": "24", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.5, + "pScore": { + "sU": 21.5, + "sF": 25.0 + }, + "week": "2024 Regular Season - Week 17" }, { "date": "Dec 30, 2024", @@ -155022,12 +229746,13 @@ "und": "San Francisco 49ers", "sF": "40", "sU": "34", - "spread": "3", - "ou": "49", + "spread": "3.5", + "ou": 50.0, "pScore": { - "sU": 23, - "sF": 26 - } + "sU": 23.25, + "sF": 26.75 + }, + "week": "2024 Regular Season - Week 17" }, { "date": "Jan 4, 2025", @@ -155036,8 +229761,13 @@ "und": "Cleveland Browns", "sF": "35", "sU": "10", - "spread": "19", - "ou": -1 + "spread": "19.5", + "ou": 42.0, + "pScore": { + "sU": 11.25, + "sF": 30.75 + }, + "week": "2024 Regular Season - Week 18" }, { "date": "Jan 4, 2025", @@ -155046,8 +229776,13 @@ "und": "Pittsburgh Steelers", "sF": "19", "sU": "17", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 48.5, + "pScore": { + "sU": 23.0, + "sF": 25.5 + }, + "week": "2024 Regular Season - Week 18" }, { "date": "Jan 5, 2025", @@ -155057,7 +229792,12 @@ "sF": "38", "sU": "44", "spread": "8", - "ou": -1 + "ou": 48.5, + "pScore": { + "sU": 20.25, + "sF": 28.25 + }, + "week": "2024 Regular Season - Week 18" }, { "date": "Jan 5, 2025", @@ -155067,7 +229807,12 @@ "sF": "23", "sU": "19", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2024 Regular Season - Week 18" }, { "date": "Jan 5, 2025", @@ -155077,7 +229822,12 @@ "sF": "22", "sU": "24", "spread": "10", - "ou": -1 + "ou": 41.5, + "pScore": { + "sU": 15.75, + "sF": 25.75 + }, + "week": "2024 Regular Season - Week 18" }, { "date": "Jan 5, 2025", @@ -155086,8 +229836,13 @@ "und": "Jacksonville Jaguars", "sF": "26", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 46.0, + "pScore": { + "sU": 21.25, + "sF": 24.75 + }, + "week": "2024 Regular Season - Week 18" }, { "date": "Jan 5, 2025", @@ -155096,8 +229851,13 @@ "und": "New England Patriots", "sF": "16", "sU": "23", - "spread": "3", - "ou": -1 + "spread": "3.5", + "ou": 36.5, + "pScore": { + "sU": 16.5, + "sF": 20.0 + }, + "week": "2024 Regular Season - Week 18" }, { "date": "Jan 5, 2025", @@ -155107,7 +229867,12 @@ "sF": "20", "sU": "13", "spread": "3", - "ou": -1 + "ou": 36.0, + "pScore": { + "sU": 16.5, + "sF": 19.5 + }, + "week": "2024 Regular Season - Week 18" }, { "date": "Jan 5, 2025", @@ -155116,8 +229881,13 @@ "und": "New Orleans Saints", "sF": "27", "sU": "19", - "spread": "14", - "ou": -1 + "spread": "14.5", + "ou": 44.5, + "pScore": { + "sU": 15.0, + "sF": 29.5 + }, + "week": "2024 Regular Season - Week 18" }, { "date": "Jan 5, 2025", @@ -155126,8 +229896,13 @@ "und": "Houston Texans", "sF": "14", "sU": "23", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 36.5, + "pScore": { + "sU": 17.0, + "sF": 19.5 + }, + "week": "2024 Regular Season - Week 18" }, { "date": "Jan 5, 2025", @@ -155137,11 +229912,12 @@ "sF": "47", "sU": "24", "spread": "5", - "ou": "49", + "ou": 43.0, "pScore": { - "sU": 22, - "sF": 27 - } + "sU": 19.0, + "sF": 24.0 + }, + "week": "2024 Regular Season - Week 18" }, { "date": "Jan 5, 2025", @@ -155151,7 +229927,12 @@ "sF": "38", "sU": "0", "spread": "11", - "ou": -1 + "ou": 40.5, + "pScore": { + "sU": 14.75, + "sF": 25.75 + }, + "week": "2024 Regular Season - Week 18" }, { "date": "Jan 5, 2025", @@ -155161,7 +229942,12 @@ "sF": "34", "sU": "20", "spread": "7", - "ou": -1 + "ou": 42.0, + "pScore": { + "sU": 17.5, + "sF": 24.5 + }, + "week": "2024 Regular Season - Week 18" }, { "date": "Jan 5, 2025", @@ -155170,8 +229956,13 @@ "und": "Los Angeles Rams", "sF": "30", "sU": "25", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 38.5, + "pScore": { + "sU": 15.5, + "sF": 23.0 + }, + "week": "2024 Regular Season - Week 18" }, { "date": "Jan 5, 2025", @@ -155181,7 +229972,12 @@ "sF": "32", "sU": "20", "spread": "2", - "ou": -1 + "ou": 39.5, + "pScore": { + "sU": 18.75, + "sF": 20.75 + }, + "week": "2024 Regular Season - Week 18" }, { "date": "Jan 5, 2025", @@ -155191,7 +229987,12 @@ "sF": "31", "sU": "9", "spread": "3", - "ou": -1 + "ou": 56.5, + "pScore": { + "sU": 26.75, + "sF": 29.75 + }, + "week": "2024 Regular Season - Week 18" }, { "date": "Jan 11, 2025", @@ -155200,8 +230001,13 @@ "und": "Houston Texans (4)", "sF": "12", "sU": "32", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 41.5, + "pScore": { + "sU": 19.5, + "sF": 22.0 + }, + "week": "2024 Playoffs" }, { "date": "Jan 11, 2025", @@ -155211,7 +230017,12 @@ "sF": "28", "sU": "14", "spread": "9", - "ou": -1 + "ou": 44.5, + "pScore": { + "sU": 17.75, + "sF": 26.75 + }, + "week": "2024 Playoffs" }, { "date": "Jan 12, 2025", @@ -155220,8 +230031,13 @@ "und": "Denver Broncos (7)", "sF": "31", "sU": "7", - "spread": "7", - "ou": -1 + "spread": "7.5", + "ou": 48.5, + "pScore": { + "sU": 20.5, + "sF": 28.0 + }, + "week": "2024 Playoffs" }, { "date": "Jan 12, 2025", @@ -155230,8 +230046,13 @@ "und": "Green Bay Packers (7)", "sF": "22", "sU": "10", - "spread": "5", - "ou": -1 + "spread": "5.5", + "ou": 46.0, + "pScore": { + "sU": 20.25, + "sF": 25.75 + }, + "week": "2024 Playoffs" }, { "date": "Jan 12, 2025", @@ -155241,7 +230062,12 @@ "sF": "20", "sU": "23", "spread": "3", - "ou": -1 + "ou": 51.5, + "pScore": { + "sU": 24.25, + "sF": 27.25 + }, + "week": "2024 Playoffs" }, { "date": "Jan 13, 2025", @@ -155250,8 +230076,13 @@ "und": "Los Angeles Rams (4)", "sF": "9", "sU": "27", - "spread": "2", - "ou": -1 + "spread": "2.5", + "ou": 47.5, + "pScore": { + "sU": 22.5, + "sF": 25.0 + }, + "week": "2024 Playoffs" }, { "date": "Jan 18, 2025", @@ -155260,8 +230091,13 @@ "und": "Houston Texans (4)", "sF": "23", "sU": "14", - "spread": "9", - "ou": -1 + "spread": "9.5", + "ou": 41.5, + "pScore": { + "sU": 16.0, + "sF": 25.5 + }, + "week": "2024 Playoffs" }, { "date": "Jan 18, 2025", @@ -155270,8 +230106,13 @@ "und": "Washington Commanders (6)", "sF": "31", "sU": "45", - "spread": "8", - "ou": -1 + "spread": "8.5", + "ou": 55.5, + "pScore": { + "sU": 23.5, + "sF": 32.0 + }, + "week": "2024 Playoffs" }, { "date": "Jan 19, 2025", @@ -155281,7 +230122,12 @@ "sF": "28", "sU": "22", "spread": "7", - "ou": -1 + "ou": 43.5, + "pScore": { + "sU": 18.25, + "sF": 25.25 + }, + "week": "2024 Playoffs" }, { "date": "Jan 19, 2025", @@ -155290,7 +230136,12 @@ "und": "Buffalo Bills (2)", "sF": "25", "sU": "27", - "spread": "1", - "ou": -1 + "spread": "1.5", + "ou": 51.5, + "pScore": { + "sU": 25.0, + "sF": 26.5 + }, + "week": "2024 Playoffs" } ] \ No newline at end of file diff --git a/src/data/odds_data_abbr.json b/src/data/odds_data_abbr.json index 3c2f451..b17a5e8 100644 --- a/src/data/odds_data_abbr.json +++ b/src/data/odds_data_abbr.json @@ -6,8 +6,9 @@ "und": "Detroit Lions", "sF": "17", "sU": "3", - "spread": "3", - "ou": null + "spread": "3.5", + "ou": null, + "week": "1952 Regular Season - Week 1" }, { "date": "Oct 3, 1952", @@ -17,7 +18,8 @@ "sF": "17", "sU": "14", "spread": "14", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 2" }, { "date": "Oct 4, 1952", @@ -27,7 +29,8 @@ "sF": "21", "sU": "20", "spread": "14", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 2" }, { "date": "Oct 5, 1952", @@ -37,7 +40,8 @@ "sF": "10", "sU": "21", "spread": "13", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 2" }, { "date": "Oct 5, 1952", @@ -46,8 +50,9 @@ "und": "Dallas Texans", "sF": "37", "sU": "14", - "spread": "14", - "ou": null + "spread": "14.5", + "ou": null, + "week": "1952 Regular Season - Week 2" }, { "date": "Oct 12, 1952", @@ -57,7 +62,8 @@ "sF": "38", "sU": "20", "spread": "17", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 3" }, { "date": "Oct 12, 1952", @@ -67,7 +73,8 @@ "sF": "9", "sU": "17", "spread": "3", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 3" }, { "date": "Oct 12, 1952", @@ -77,7 +84,8 @@ "sF": "0", "sU": "28", "spread": "3", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 3" }, { "date": "Oct 12, 1952", @@ -87,7 +95,8 @@ "sF": "30", "sU": "28", "spread": "5", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 3" }, { "date": "Oct 12, 1952", @@ -97,7 +106,8 @@ "sF": "26", "sU": "21", "spread": "7", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 3" }, { "date": "Oct 12, 1952", @@ -107,7 +117,8 @@ "sF": "17", "sU": "6", "spread": "3", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 3" }, { "date": "Oct 19, 1952", @@ -116,8 +127,9 @@ "und": "Chicago Bears", "sF": "40", "sU": "16", - "spread": "6", - "ou": null + "spread": "6.5", + "ou": null, + "week": "1952 Regular Season - Week 4" }, { "date": "Oct 19, 1952", @@ -126,8 +138,9 @@ "und": "Los Angeles Rams", "sF": "24", "sU": "16", - "spread": "6", - "ou": null + "spread": "6.5", + "ou": null, + "week": "1952 Regular Season - Week 4" }, { "date": "Oct 19, 1952", @@ -137,7 +150,8 @@ "sF": "23", "sU": "24", "spread": "13", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 4" }, { "date": "Oct 19, 1952", @@ -147,7 +161,8 @@ "sF": "49", "sU": "7", "spread": "7", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 4" }, { "date": "Oct 19, 1952", @@ -157,7 +172,8 @@ "sF": "24", "sU": "28", "spread": "7", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 4" }, { "date": "Oct 26, 1952", @@ -167,7 +183,8 @@ "sF": "28", "sU": "34", "spread": "10", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 5" }, { "date": "Oct 26, 1952", @@ -177,7 +194,8 @@ "sF": "19", "sU": "15", "spread": "14", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 5" }, { "date": "Oct 26, 1952", @@ -187,7 +205,8 @@ "sF": "52", "sU": "17", "spread": "6", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 5" }, { "date": "Oct 26, 1952", @@ -197,7 +216,8 @@ "sF": "31", "sU": "7", "spread": "6", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 5" }, { "date": "Oct 26, 1952", @@ -207,7 +227,8 @@ "sF": "10", "sU": "14", "spread": "15", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 5" }, { "date": "Oct 26, 1952", @@ -217,7 +238,8 @@ "sF": "48", "sU": "21", "spread": "23", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 5" }, { "date": "Nov 2, 1952", @@ -226,8 +248,9 @@ "und": "Chicago Cardinals", "sF": "28", "sU": "6", - "spread": "6", - "ou": null + "spread": "6.5", + "ou": null, + "week": "1952 Regular Season - Week 6" }, { "date": "Nov 2, 1952", @@ -236,8 +259,9 @@ "und": "Detroit Lions", "sF": "6", "sU": "17", - "spread": "1", - "ou": null + "spread": "1.5", + "ou": null, + "week": "1952 Regular Season - Week 6" }, { "date": "Nov 2, 1952", @@ -247,7 +271,8 @@ "sF": "42", "sU": "20", "spread": "23", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 6" }, { "date": "Nov 2, 1952", @@ -257,7 +282,8 @@ "sF": "17", "sU": "20", "spread": "17", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 6" }, { "date": "Nov 2, 1952", @@ -266,8 +292,9 @@ "und": "Pittsburgh Steelers", "sF": "23", "sU": "24", - "spread": "2", - "ou": null + "spread": "2.5", + "ou": null, + "week": "1952 Regular Season - Week 6" }, { "date": "Nov 9, 1952", @@ -277,7 +304,8 @@ "sF": "28", "sU": "41", "spread": "9", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 7" }, { "date": "Nov 9, 1952", @@ -287,7 +315,8 @@ "sF": "28", "sU": "13", "spread": "10", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 7" }, { "date": "Nov 9, 1952", @@ -297,7 +326,8 @@ "sF": "27", "sU": "6", "spread": "17", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 7" }, { "date": "Nov 9, 1952", @@ -307,7 +337,8 @@ "sF": "14", "sU": "23", "spread": "2", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 7" }, { "date": "Nov 9, 1952", @@ -317,7 +348,8 @@ "sF": "38", "sU": "20", "spread": "6", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 7" }, { "date": "Nov 9, 1952", @@ -327,7 +359,8 @@ "sF": "31", "sU": "6", "spread": "10", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 7" }, { "date": "Nov 16, 1952", @@ -337,7 +370,8 @@ "sF": "40", "sU": "24", "spread": "6", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 8" }, { "date": "Nov 16, 1952", @@ -347,7 +381,8 @@ "sF": "29", "sU": "28", "spread": "14", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 8" }, { "date": "Nov 16, 1952", @@ -356,8 +391,9 @@ "und": "Dallas Texans", "sF": "43", "sU": "13", - "spread": "26", - "ou": null + "spread": "26.5", + "ou": null, + "week": "1952 Regular Season - Week 8" }, { "date": "Nov 16, 1952", @@ -367,7 +403,8 @@ "sF": "3", "sU": "17", "spread": "13", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 8" }, { "date": "Nov 16, 1952", @@ -377,7 +414,8 @@ "sF": "10", "sU": "7", "spread": "6", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 8" }, { "date": "Nov 16, 1952", @@ -386,8 +424,9 @@ "und": "Washington Redskins", "sF": "23", "sU": "17", - "spread": "14", - "ou": null + "spread": "14.5", + "ou": null, + "week": "1952 Regular Season - Week 8" }, { "date": "Nov 23, 1952", @@ -397,7 +436,8 @@ "sF": "23", "sU": "24", "spread": "13", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 9" }, { "date": "Nov 23, 1952", @@ -406,8 +446,9 @@ "und": "Philadelphia Eagles", "sF": "20", "sU": "28", - "spread": "13", - "ou": null + "spread": "13.5", + "ou": null, + "week": "1952 Regular Season - Week 9" }, { "date": "Nov 23, 1952", @@ -417,7 +458,8 @@ "sF": "42", "sU": "14", "spread": "21", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 9" }, { "date": "Nov 23, 1952", @@ -427,7 +469,8 @@ "sF": "35", "sU": "9", "spread": "1", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 9" }, { "date": "Nov 23, 1952", @@ -437,7 +480,8 @@ "sF": "17", "sU": "14", "spread": "5", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 9" }, { "date": "Nov 23, 1952", @@ -447,7 +491,8 @@ "sF": "14", "sU": "10", "spread": "11", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 9" }, { "date": "Nov 27, 1952", @@ -457,7 +502,8 @@ "sF": "48", "sU": "24", "spread": "7", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 10" }, { "date": "Nov 30, 1952", @@ -467,7 +513,8 @@ "sF": "22", "sU": "28", "spread": "6", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 10" }, { "date": "Nov 30, 1952", @@ -476,8 +523,9 @@ "und": "Pittsburgh Steelers", "sF": "7", "sU": "63", - "spread": "7", - "ou": null + "spread": "7.5", + "ou": null, + "week": "1952 Regular Season - Week 10" }, { "date": "Nov 30, 1952", @@ -487,7 +535,8 @@ "sF": "48", "sU": "24", "spread": "10", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 10" }, { "date": "Dec 7, 1952", @@ -496,8 +545,9 @@ "und": "Chicago Cardinals", "sF": "10", "sU": "0", - "spread": "7", - "ou": null + "spread": "7.5", + "ou": null, + "week": "1952 Regular Season - Week 11" }, { "date": "Dec 7, 1952", @@ -507,7 +557,8 @@ "sF": "45", "sU": "21", "spread": "13", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 11" }, { "date": "Dec 7, 1952", @@ -517,7 +568,8 @@ "sF": "45", "sU": "27", "spread": "10", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 11" }, { "date": "Dec 7, 1952", @@ -527,7 +579,8 @@ "sF": "17", "sU": "27", "spread": "10", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 11" }, { "date": "Dec 7, 1952", @@ -537,7 +590,8 @@ "sF": "38", "sU": "21", "spread": "20", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 11" }, { "date": "Dec 7, 1952", @@ -547,7 +601,8 @@ "sF": "7", "sU": "24", "spread": "7", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 11" }, { "date": "Dec 14, 1952", @@ -557,7 +612,8 @@ "sF": "10", "sU": "7", "spread": "1", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 12" }, { "date": "Dec 14, 1952", @@ -567,7 +623,8 @@ "sF": "28", "sU": "14", "spread": "13", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 12" }, { "date": "Dec 14, 1952", @@ -577,7 +634,8 @@ "sF": "34", "sU": "37", "spread": "10", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 12" }, { "date": "Dec 14, 1952", @@ -587,7 +645,8 @@ "sF": "14", "sU": "24", "spread": "1", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 12" }, { "date": "Dec 14, 1952", @@ -597,7 +656,8 @@ "sF": "21", "sU": "27", "spread": "3", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 12" }, { "date": "Dec 21, 1952", @@ -607,7 +667,8 @@ "sF": "31", "sU": "21", "spread": "3", - "ou": null + "ou": null, + "week": "1952 Regular Season - Week 13" }, { "date": "Dec 28, 1952", @@ -616,152817 +677,8 @@ "und": "Cleveland Browns", "sF": "17", "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 1953", - "at": null, - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "9", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Sep 27, 1953", - "at": "@", - "fav": "Chicago Cardinals", - "und": "Washington Redskins", - "sF": "13", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 1953", - "at": "@", - "fav": "Detroit Lions", - "und": "Pittsburgh Steelers", - "sF": "38", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Sep 27, 1953", - "at": null, - "fav": "Cleveland Browns", - "und": "Green Bay Packers", - "sF": "27", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 1953", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New York Giants", - "sF": "21", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Sep 27, 1953", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Oct 3, 1953", - "at": null, - "fav": "Detroit Lions", - "und": "Baltimore Colts", - "sF": "27", - "sU": "17", - "spread": "14", - "ou": null - }, - { - "date": "Oct 4, 1953", - "at": null, - "fav": "Cleveland Browns", - "und": "Chicago Cardinals", - "sF": "27", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Oct 4, 1953", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "17", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 4, 1953", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "30", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Oct 11, 1953", - "at": "@", - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "14", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Oct 11, 1953", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Oct 11, 1953", - "at": null, - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "38", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Oct 11, 1953", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Chicago Cardinals", - "sF": "31", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Oct 11, 1953", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "13", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 1953", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Oct 18, 1953", - "at": null, - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "35", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Oct 18, 1953", - "at": "@", - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "19", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Oct 18, 1953", - "at": null, - "fav": "Baltimore Colts", - "und": "Green Bay Packers", - "sF": "14", - "sU": "37", - "spread": "1", - "ou": null - }, - { - "date": "Oct 18, 1953", - "at": "@", - "fav": "New York Giants", - "und": "Chicago Cardinals", - "sF": "21", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 18, 1953", - "at": null, - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "30", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Oct 24, 1953", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Green Bay Packers", - "sF": "31", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 25, 1953", - "at": null, - "fav": "Washington Redskins", - "und": "Baltimore Colts", - "sF": "17", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 1953", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Chicago Cardinals", - "sF": "56", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 1953", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "38", - "sU": "24", - "spread": "16", - "ou": null - }, - { - "date": "Oct 25, 1953", - "at": null, - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "7", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Oct 25, 1953", - "at": null, - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Oct 31, 1953", - "at": "@", - "fav": "Baltimore Colts", - "und": "Green Bay Packers", - "sF": "24", - "sU": "35", - "spread": "6", - "ou": null - }, - { - "date": "Nov 1, 1953", - "at": null, - "fav": "New York Giants", - "und": "Chicago Cardinals", - "sF": "23", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 1, 1953", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "27", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Nov 1, 1953", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "37", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 1, 1953", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Philadelphia Eagles", - "sF": "7", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 1953", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "24", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Nov 7, 1953", - "at": "@", - "fav": "Detroit Lions", - "und": "Baltimore Colts", - "sF": "17", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Nov 8, 1953", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "21", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 1953", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "34", - "sU": "16", - "spread": "14", - "ou": null - }, - { - "date": "Nov 8, 1953", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Nov 8, 1953", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "30", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 8, 1953", - "at": "@", - "fav": "Washington Redskins", - "und": "Chicago Cardinals", - "sF": "28", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 15, 1953", - "at": null, - "fav": "Los Angeles Rams", - "und": "Chicago Cardinals", - "sF": "24", - "sU": "24", - "spread": "16", - "ou": null - }, - { - "date": "Nov 15, 1953", - "at": "@", - "fav": "Cleveland Browns", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 15, 1953", - "at": null, - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "14", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 15, 1953", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New York Giants", - "sF": "14", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Nov 15, 1953", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Baltimore Colts", - "sF": "45", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Nov 15, 1953", - "at": "@", - "fav": "Washington Redskins", - "und": "Chicago Bears", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 1953", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Chicago Cardinals", - "sF": "38", - "sU": "0", - "spread": "14", - "ou": null - }, - { - "date": "Nov 22, 1953", - "at": null, - "fav": "Los Angeles Rams", - "und": "Baltimore Colts", - "sF": "21", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Nov 22, 1953", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "20", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 1953", - "at": null, - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "37", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Nov 22, 1953", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "21", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 22, 1953", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Nov 26, 1953", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "34", - "sU": "15", - "spread": "13", - "ou": null - }, - { - "date": "Nov 29, 1953", - "at": null, - "fav": "San Francisco 49ers", - "und": "Baltimore Colts", - "sF": "38", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Nov 29, 1953", - "at": null, - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "21", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 29, 1953", - "at": "@", - "fav": "Cleveland Browns", - "und": "Chicago Cardinals", - "sF": "27", - "sU": "16", - "spread": "19", - "ou": null - }, - { - "date": "Nov 29, 1953", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "28", - "sU": "37", - "spread": "13", - "ou": null - }, - { - "date": "Nov 29, 1953", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "9", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 5, 1953", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Baltimore Colts", - "sF": "45", - "sU": "2", - "spread": "21", - "ou": null - }, - { - "date": "Dec 6, 1953", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Chicago Cardinals", - "sF": "21", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 1953", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "62", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Dec 6, 1953", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "13", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 6, 1953", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "48", - "sU": "14", - "spread": "17", - "ou": null - }, - { - "date": "Dec 6, 1953", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "0", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 12, 1953", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "33", - "sU": "17", - "spread": "20", - "ou": null - }, - { - "date": "Dec 13, 1953", - "at": "@", - "fav": "Chicago Bears", - "und": "Chicago Cardinals", - "sF": "17", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 1953", - "at": null, - "fav": "Detroit Lions", - "und": "New York Giants", - "sF": "27", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Dec 13, 1953", - "at": null, - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "42", - "spread": "10", - "ou": null - }, - { - "date": "Dec 13, 1953", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Baltimore Colts", - "sF": "45", - "sU": "14", - "spread": "24", - "ou": null - }, - { - "date": "Dec 13, 1953", - "at": "@", - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 27, 1953", - "at": null, - "fav": "Cleveland Browns", - "und": "Detroit Lions", - "sF": "16", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 26, 1954", - "at": null, - "fav": "Los Angeles Rams", - "und": "Baltimore Colts", - "sF": "48", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Sep 26, 1954", - "at": null, - "fav": "New York Giants", - "und": "Chicago Cardinals", - "sF": "41", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Sep 26, 1954", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "48", - "sU": "23", - "spread": "14", - "ou": null - }, - { - "date": "Sep 26, 1954", - "at": "@", - "fav": "Green Bay Packers", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Sep 26, 1954", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "41", - "sU": "7", - "spread": "27", - "ou": null - }, - { - "date": "Oct 2, 1954", - "at": null, - "fav": "New York Giants", - "und": "Baltimore Colts", - "sF": "14", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Oct 2, 1954", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "37", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Oct 3, 1954", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Chicago Cardinals", - "sF": "35", - "sU": "16", - "spread": "20", - "ou": null - }, - { - "date": "Oct 3, 1954", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "10", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Oct 3, 1954", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Oct 9, 1954", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "22", - "spread": "12", - "ou": null - }, - { - "date": "Oct 10, 1954", - "at": "@", - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "28", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Oct 10, 1954", - "at": "@", - "fav": "Cleveland Browns", - "und": "Chicago Cardinals", - "sF": "31", - "sU": "7", - "spread": "20", - "ou": null - }, - { - "date": "Oct 10, 1954", - "at": "@", - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "21", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 1954", - "at": null, - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "23", - "sU": "17", - "spread": "15", - "ou": null - }, - { - "date": "Oct 10, 1954", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "51", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Oct 16, 1954", - "at": "@", - "fav": "Detroit Lions", - "und": "Baltimore Colts", - "sF": "35", - "sU": "0", - "spread": "18", - "ou": null - }, - { - "date": "Oct 17, 1954", - "at": null, - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "31", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Oct 17, 1954", - "at": null, - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "17", - "sU": "35", - "spread": "13", - "ou": null - }, - { - "date": "Oct 17, 1954", - "at": "@", - "fav": "New York Giants", - "und": "Chicago Cardinals", - "sF": "31", - "sU": "17", - "spread": "20", - "ou": null - }, - { - "date": "Oct 17, 1954", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "55", - "spread": "7", - "ou": null - }, - { - "date": "Oct 17, 1954", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "49", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Oct 23, 1954", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "7", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 1954", - "at": null, - "fav": "Green Bay Packers", - "und": "Baltimore Colts", - "sF": "7", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Oct 24, 1954", - "at": null, - "fav": "Cleveland Browns", - "und": "Chicago Cardinals", - "sF": "35", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Oct 24, 1954", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "42", - "sU": "38", - "spread": "9", - "ou": null - }, - { - "date": "Oct 24, 1954", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "24", - "sU": "7", - "spread": "20", - "ou": null - }, - { - "date": "Oct 24, 1954", - "at": null, - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "37", - "spread": "1", - "ou": null - }, - { - "date": "Oct 30, 1954", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Green Bay Packers", - "sF": "14", - "sU": "37", - "spread": "10", - "ou": null - }, - { - "date": "Oct 31, 1954", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Chicago Cardinals", - "sF": "14", - "sU": "17", - "spread": "17", - "ou": null - }, - { - "date": "Oct 31, 1954", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "24", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 31, 1954", - "at": null, - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "27", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 31, 1954", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "27", - "sU": "31", - "spread": "10", - "ou": null - }, - { - "date": "Oct 31, 1954", - "at": null, - "fav": "Baltimore Colts", - "und": "Washington Redskins", - "sF": "21", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 6, 1954", - "at": null, - "fav": "Detroit Lions", - "und": "Baltimore Colts", - "sF": "27", - "sU": "3", - "spread": "17", - "ou": null - }, - { - "date": "Nov 7, 1954", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "28", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Nov 7, 1954", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "62", - "sU": "3", - "spread": "17", - "ou": null - }, - { - "date": "Nov 7, 1954", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Chicago Cardinals", - "sF": "30", - "sU": "14", - "spread": "15", - "ou": null - }, - { - "date": "Nov 7, 1954", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Giants", - "sF": "6", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Nov 7, 1954", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "34", - "sU": "42", - "spread": "5", - "ou": null - }, - { - "date": "Nov 13, 1954", - "at": "@", - "fav": "Green Bay Packers", - "und": "Baltimore Colts", - "sF": "24", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Nov 14, 1954", - "at": null, - "fav": "Cleveland Browns", - "und": "Chicago Bears", - "sF": "39", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 14, 1954", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "48", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 14, 1954", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Cardinals", - "sF": "28", - "sU": "17", - "spread": "26", - "ou": null - }, - { - "date": "Nov 14, 1954", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Nov 14, 1954", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "14", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Nov 20, 1954", - "at": null, - "fav": "San Francisco 49ers", - "und": "Pittsburgh Steelers", - "sF": "31", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 1954", - "at": null, - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "28", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 21, 1954", - "at": "@", - "fav": "Chicago Cardinals", - "und": "Washington Redskins", - "sF": "38", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Nov 21, 1954", - "at": "@", - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "6", - "sU": "0", - "spread": "11", - "ou": null - }, - { - "date": "Nov 21, 1954", - "at": null, - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "21", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Nov 21, 1954", - "at": "@", - "fav": "New York Giants", - "und": "Los Angeles Rams", - "sF": "16", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 1954", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "28", - "sU": "24", - "spread": "16", - "ou": null - }, - { - "date": "Nov 28, 1954", - "at": null, - "fav": "San Francisco 49ers", - "und": "Baltimore Colts", - "sF": "13", - "sU": "17", - "spread": "16", - "ou": null - }, - { - "date": "Nov 28, 1954", - "at": null, - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "13", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 1954", - "at": null, - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "16", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 28, 1954", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "41", - "sU": "33", - "spread": "17", - "ou": null - }, - { - "date": "Nov 28, 1954", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Chicago Cardinals", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 1954", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Baltimore Colts", - "sF": "21", - "sU": "22", - "spread": "16", - "ou": null - }, - { - "date": "Dec 5, 1954", - "at": null, - "fav": "Chicago Bears", - "und": "Chicago Cardinals", - "sF": "29", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 1954", - "at": "@", - "fav": "Detroit Lions", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Dec 5, 1954", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Dec 5, 1954", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "35", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 1954", - "at": null, - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "34", - "sU": "14", - "spread": "20", - "ou": null - }, - { - "date": "Dec 11, 1954", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Baltimore Colts", - "sF": "10", - "sU": "7", - "spread": "17", - "ou": null - }, - { - "date": "Dec 12, 1954", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "24", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Dec 12, 1954", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "42", - "sU": "7", - "spread": "19", - "ou": null - }, - { - "date": "Dec 12, 1954", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "35", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 12, 1954", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "29", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 12, 1954", - "at": null, - "fav": "Chicago Cardinals", - "und": "Washington Redskins", - "sF": "20", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 1954", - "at": "@", - "fav": "Cleveland Browns", - "und": "Detroit Lions", - "sF": "10", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 26, 1954", - "at": null, - "fav": "Detroit Lions", - "und": "Cleveland Browns", - "sF": "10", - "sU": "56", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 1955", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "27", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Sep 25, 1955", - "at": null, - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "17", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Sep 25, 1955", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "17", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Sep 25, 1955", - "at": null, - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "17", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Sep 25, 1955", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "14", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Oct 1, 1955", - "at": null, - "fav": "Detroit Lions", - "und": "Baltimore Colts", - "sF": "13", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Oct 1, 1955", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "30", - "sU": "31", - "spread": "11", - "ou": null - }, - { - "date": "Oct 2, 1955", - "at": null, - "fav": "New York Giants", - "und": "Chicago Cardinals", - "sF": "17", - "sU": "28", - "spread": "8", - "ou": null - }, - { - "date": "Oct 2, 1955", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "3", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 2, 1955", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "26", - "spread": "14", - "ou": null - }, - { - "date": "Oct 2, 1955", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Cleveland Browns", - "sF": "3", - "sU": "38", - "spread": "7", - "ou": null - }, - { - "date": "Oct 8, 1955", - "at": "@", - "fav": "Green Bay Packers", - "und": "Baltimore Colts", - "sF": "20", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Oct 9, 1955", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "19", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 1955", - "at": "@", - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 9, 1955", - "at": "@", - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "10", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 9, 1955", - "at": null, - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Oct 9, 1955", - "at": "@", - "fav": "Washington Redskins", - "und": "Chicago Cardinals", - "sF": "10", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 15, 1955", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "7", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 16, 1955", - "at": "@", - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "38", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 1955", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 1955", - "at": null, - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "28", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 1955", - "at": "@", - "fav": "New York Giants", - "und": "Chicago Cardinals", - "sF": "10", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Oct 16, 1955", - "at": null, - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "24", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Oct 23, 1955", - "at": "@", - "fav": "Baltimore Colts", - "und": "Washington Redskins", - "sF": "13", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 23, 1955", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Chicago Cardinals", - "sF": "24", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 1955", - "at": "@", - "fav": "Cleveland Browns", - "und": "Green Bay Packers", - "sF": "41", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 1955", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "24", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 1955", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 1955", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "23", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Oct 29, 1955", - "at": "@", - "fav": "Baltimore Colts", - "und": "Green Bay Packers", - "sF": "14", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 30, 1955", - "at": null, - "fav": "Cleveland Browns", - "und": "Chicago Cardinals", - "sF": "26", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Oct 30, 1955", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "20", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Oct 30, 1955", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 1955", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "38", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Nov 5, 1955", - "at": "@", - "fav": "Chicago Cardinals", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Nov 5, 1955", - "at": "@", - "fav": "Detroit Lions", - "und": "Baltimore Colts", - "sF": "24", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1955", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "52", - "sU": "31", - "spread": "9", - "ou": null - }, - { - "date": "Nov 6, 1955", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "24", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Nov 6, 1955", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "14", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 6, 1955", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "21", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 1955", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 1955", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Cardinals", - "sF": "31", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Nov 13, 1955", - "at": "@", - "fav": "New York Giants", - "und": "Baltimore Colts", - "sF": "17", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 13, 1955", - "at": null, - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "33", - "spread": "5", - "ou": null - }, - { - "date": "Nov 13, 1955", - "at": null, - "fav": "Detroit Lions", - "und": "Pittsburgh Steelers", - "sF": "31", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 1955", - "at": null, - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "0", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 20, 1955", - "at": null, - "fav": "Los Angeles Rams", - "und": "Baltimore Colts", - "sF": "17", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 20, 1955", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "41", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Nov 20, 1955", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "24", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Nov 20, 1955", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 20, 1955", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "7", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Nov 24, 1955", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "24", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 1955", - "at": "@", - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "26", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 1955", - "at": null, - "fav": "Chicago Bears", - "und": "Chicago Cardinals", - "sF": "14", - "sU": "53", - "spread": "15", - "ou": null - }, - { - "date": "Nov 27, 1955", - "at": null, - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "35", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Nov 27, 1955", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Los Angeles Rams", - "sF": "21", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Nov 27, 1955", - "at": null, - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 1955", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "21", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Dec 4, 1955", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Baltimore Colts", - "sF": "20", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 4, 1955", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Chicago Cardinals", - "sF": "27", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Dec 4, 1955", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "30", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Dec 4, 1955", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "7", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Dec 4, 1955", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "20", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Dec 11, 1955", - "at": "@", - "fav": "Chicago Bears", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 11, 1955", - "at": "@", - "fav": "Cleveland Browns", - "und": "Chicago Cardinals", - "sF": "35", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Dec 11, 1955", - "at": null, - "fav": "New York Giants", - "und": "Detroit Lions", - "sF": "24", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Dec 11, 1955", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "31", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 11, 1955", - "at": null, - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Dec 26, 1955", - "at": null, - "fav": "Cleveland Browns", - "und": "Los Angeles Rams", - "sF": "38", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Sep 30, 1956", - "at": null, - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "21", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Sep 30, 1956", - "at": null, - "fav": "Cleveland Browns", - "und": "Chicago Cardinals", - "sF": "7", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Sep 30, 1956", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "16", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 1956", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 30, 1956", - "at": null, - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 1956", - "at": null, - "fav": "New York Giants", - "und": "San Francisco 49ers", - "sF": "38", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1956", - "at": "@", - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "14", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Oct 6, 1956", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "13", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1956", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "14", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 7, 1956", - "at": null, - "fav": "New York Giants", - "und": "Chicago Cardinals", - "sF": "27", - "sU": "35", - "spread": "9", - "ou": null - }, - { - "date": "Oct 7, 1956", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "37", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 1956", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "30", - "sU": "33", - "spread": "9", - "ou": null - }, - { - "date": "Oct 14, 1956", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Oct 14, 1956", - "at": "@", - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Oct 14, 1956", - "at": null, - "fav": "Baltimore Colts", - "und": "Green Bay Packers", - "sF": "33", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Oct 14, 1956", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Oct 21, 1956", - "at": "@", - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "58", - "sU": "27", - "spread": "11", - "ou": null - }, - { - "date": "Oct 21, 1956", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 21, 1956", - "at": null, - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "17", - "sU": "42", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 1956", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "38", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Oct 21, 1956", - "at": null, - "fav": "Chicago Cardinals", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Oct 21, 1956", - "at": null, - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "9", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 28, 1956", - "at": null, - "fav": "Green Bay Packers", - "und": "Baltimore Colts", - "sF": "21", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 28, 1956", - "at": "@", - "fav": "Chicago Cardinals", - "und": "Washington Redskins", - "sF": "14", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 28, 1956", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 28, 1956", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Oct 28, 1956", - "at": null, - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "38", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 4, 1956", - "at": "@", - "fav": "Chicago Cardinals", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 4, 1956", - "at": "@", - "fav": "Green Bay Packers", - "und": "Cleveland Browns", - "sF": "7", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 4, 1956", - "at": null, - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "35", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Nov 4, 1956", - "at": null, - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Nov 4, 1956", - "at": null, - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 11, 1956", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "38", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Nov 11, 1956", - "at": "@", - "fav": "Cleveland Browns", - "und": "Baltimore Colts", - "sF": "7", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 11, 1956", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "30", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Nov 11, 1956", - "at": "@", - "fav": "New York Giants", - "und": "Chicago Cardinals", - "sF": "23", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 11, 1956", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "14", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 11, 1956", - "at": null, - "fav": "Detroit Lions", - "und": "Washington Redskins", - "sF": "17", - "sU": "18", - "spread": "6", - "ou": null - }, - { - "date": "Nov 18, 1956", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Nov 18, 1956", - "at": "@", - "fav": "Detroit Lions", - "und": "Baltimore Colts", - "sF": "27", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Nov 18, 1956", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "16", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 18, 1956", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Cleveland Browns", - "sF": "0", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Nov 18, 1956", - "at": null, - "fav": "Chicago Cardinals", - "und": "Pittsburgh Steelers", - "sF": "7", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 18, 1956", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "7", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Nov 22, 1956", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "20", - "sU": "24", - "spread": "11", - "ou": null - }, - { - "date": "Nov 25, 1956", - "at": null, - "fav": "Los Angeles Rams", - "und": "Baltimore Colts", - "sF": "21", - "sU": "56", - "spread": "1", - "ou": null - }, - { - "date": "Nov 25, 1956", - "at": "@", - "fav": "Chicago Cardinals", - "und": "Pittsburgh Steelers", - "sF": "38", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Nov 25, 1956", - "at": null, - "fav": "Washington Redskins", - "und": "Cleveland Browns", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 1956", - "at": null, - "fav": "Chicago Bears", - "und": "New York Giants", - "sF": "17", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 25, 1956", - "at": null, - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Dec 2, 1956", - "at": "@", - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 2, 1956", - "at": "@", - "fav": "Chicago Cardinals", - "und": "Green Bay Packers", - "sF": "21", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Dec 2, 1956", - "at": "@", - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 1956", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "10", - "sU": "42", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 1956", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "28", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 9, 1956", - "at": "@", - "fav": "Chicago Bears", - "und": "Chicago Cardinals", - "sF": "10", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Dec 9, 1956", - "at": "@", - "fav": "Detroit Lions", - "und": "Pittsburgh Steelers", - "sF": "45", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Dec 9, 1956", - "at": null, - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "7", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Dec 9, 1956", - "at": "@", - "fav": "New York Giants", - "und": "Cleveland Browns", - "sF": "7", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Dec 9, 1956", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "19", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 1956", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 16, 1956", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "38", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Dec 16, 1956", - "at": "@", - "fav": "Cleveland Browns", - "und": "Chicago Cardinals", - "sF": "7", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 1956", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "49", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Dec 16, 1956", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Baltimore Colts", - "sF": "30", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 16, 1956", - "at": "@", - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "0", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Dec 23, 1956", - "at": "@", - "fav": "Baltimore Colts", - "und": "Washington Redskins", - "sF": "19", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 30, 1956", - "at": null, - "fav": "Chicago Bears", - "und": "New York Giants", - "sF": "7", - "sU": "47", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 1957", - "at": "@", - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "34", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Sep 29, 1957", - "at": null, - "fav": "New York Giants", - "und": "Cleveland Browns", - "sF": "3", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Sep 29, 1957", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "17", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Sep 29, 1957", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Sep 29, 1957", - "at": null, - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "7", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Sep 29, 1957", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Cardinals", - "sF": "10", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 5, 1957", - "at": null, - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "10", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Oct 5, 1957", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1957", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1957", - "at": "@", - "fav": "Chicago Cardinals", - "und": "Washington Redskins", - "sF": "14", - "sU": "37", - "spread": "7", - "ou": null - }, - { - "date": "Oct 6, 1957", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "14", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 6, 1957", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 1957", - "at": null, - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "21", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 13, 1957", - "at": "@", - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 13, 1957", - "at": null, - "fav": "Baltimore Colts", - "und": "Green Bay Packers", - "sF": "45", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 13, 1957", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Chicago Cardinals", - "sF": "29", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Oct 13, 1957", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "24", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 20, 1957", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "34", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Oct 20, 1957", - "at": null, - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "27", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Oct 20, 1957", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "35", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Oct 20, 1957", - "at": null, - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "7", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 20, 1957", - "at": "@", - "fav": "Washington Redskins", - "und": "Chicago Cardinals", - "sF": "14", - "sU": "44", - "spread": "5", - "ou": null - }, - { - "date": "Oct 27, 1957", - "at": "@", - "fav": "Baltimore Colts", - "und": "Green Bay Packers", - "sF": "21", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Oct 27, 1957", - "at": null, - "fav": "Cleveland Browns", - "und": "Chicago Cardinals", - "sF": "17", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 1957", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "35", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 1957", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "14", - "sU": "31", - "spread": "11", - "ou": null - }, - { - "date": "Oct 27, 1957", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Philadelphia Eagles", - "sF": "6", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 1957", - "at": null, - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 1957", - "at": "@", - "fav": "Baltimore Colts", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Nov 3, 1957", - "at": "@", - "fav": "Chicago Cardinals", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Nov 3, 1957", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "21", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 3, 1957", - "at": "@", - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "17", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 3, 1957", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "10", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 1957", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "35", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 10, 1957", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "21", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Nov 10, 1957", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Nov 10, 1957", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "37", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 10, 1957", - "at": "@", - "fav": "New York Giants", - "und": "Chicago Cardinals", - "sF": "27", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Nov 10, 1957", - "at": null, - "fav": "Detroit Lions", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Nov 10, 1957", - "at": null, - "fav": "Baltimore Colts", - "und": "Washington Redskins", - "sF": "21", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 17, 1957", - "at": "@", - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "14", - "sU": "29", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 1957", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 17, 1957", - "at": null, - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "31", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 17, 1957", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Nov 17, 1957", - "at": null, - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "30", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 1957", - "at": "@", - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 24, 1957", - "at": null, - "fav": "New York Giants", - "und": "Chicago Cardinals", - "sF": "28", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 24, 1957", - "at": "@", - "fav": "Cleveland Browns", - "und": "Los Angeles Rams", - "sF": "45", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 1957", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "7", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Nov 24, 1957", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "12", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 24, 1957", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Green Bay Packers", - "sF": "10", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 1957", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "18", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Dec 1, 1957", - "at": "@", - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Dec 1, 1957", - "at": "@", - "fav": "Chicago Bears", - "und": "Washington Redskins", - "sF": "3", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Dec 1, 1957", - "at": "@", - "fav": "Cleveland Browns", - "und": "Chicago Cardinals", - "sF": "31", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Dec 1, 1957", - "at": "@", - "fav": "New York Giants", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Dec 1, 1957", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "7", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Dec 7, 1957", - "at": null, - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 8, 1957", - "at": null, - "fav": "Chicago Bears", - "und": "Chicago Cardinals", - "sF": "14", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 1957", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "42", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 8, 1957", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Baltimore Colts", - "sF": "17", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 8, 1957", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "42", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 1957", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Chicago Cardinals", - "sF": "27", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Dec 15, 1957", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "13", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Dec 15, 1957", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Baltimore Colts", - "sF": "37", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 1957", - "at": "@", - "fav": "New York Giants", - "und": "Cleveland Browns", - "sF": "28", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Dec 15, 1957", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "27", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Dec 15, 1957", - "at": "@", - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Dec 22, 1957", - "at": "@", - "fav": "Chicago Cardinals", - "und": "Pittsburgh Steelers", - "sF": "2", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 1957", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "27", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 29, 1957", - "at": null, - "fav": "Cleveland Browns", - "und": "Detroit Lions", - "sF": "14", - "sU": "59", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 1958", - "at": "@", - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "28", - "sU": "15", - "spread": "4", - "ou": null - }, - { - "date": "Sep 28, 1958", - "at": null, - "fav": "New York Giants", - "und": "Chicago Cardinals", - "sF": "37", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 1958", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "34", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Sep 28, 1958", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Cleveland Browns", - "sF": "27", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Sep 28, 1958", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "14", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Sep 28, 1958", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 4, 1958", - "at": null, - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "38", - "sU": "51", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 1958", - "at": null, - "fav": "Washington Redskins", - "und": "Chicago Cardinals", - "sF": "10", - "sU": "37", - "spread": "4", - "ou": null - }, - { - "date": "Oct 5, 1958", - "at": null, - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "13", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Oct 5, 1958", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 5, 1958", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "45", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1958", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "3", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 1958", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "28", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Oct 12, 1958", - "at": "@", - "fav": "Cleveland Browns", - "und": "Chicago Cardinals", - "sF": "35", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Oct 12, 1958", - "at": null, - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "42", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Oct 12, 1958", - "at": null, - "fav": "Baltimore Colts", - "und": "Green Bay Packers", - "sF": "24", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 12, 1958", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "3", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 12, 1958", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "14", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 1958", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 19, 1958", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 19, 1958", - "at": null, - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "40", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 19, 1958", - "at": "@", - "fav": "New York Giants", - "und": "Chicago Cardinals", - "sF": "6", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Oct 19, 1958", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Oct 19, 1958", - "at": "@", - "fav": "Washington Redskins", - "und": "Green Bay Packers", - "sF": "37", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Oct 26, 1958", - "at": "@", - "fav": "Baltimore Colts", - "und": "Washington Redskins", - "sF": "35", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 26, 1958", - "at": null, - "fav": "Cleveland Browns", - "und": "Chicago Cardinals", - "sF": "38", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 26, 1958", - "at": "@", - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Oct 26, 1958", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "24", - "sU": "41", - "spread": "9", - "ou": null - }, - { - "date": "Oct 26, 1958", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Oct 26, 1958", - "at": null, - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 2, 1958", - "at": "@", - "fav": "Baltimore Colts", - "und": "Green Bay Packers", - "sF": "56", - "sU": "0", - "spread": "12", - "ou": null - }, - { - "date": "Nov 2, 1958", - "at": "@", - "fav": "Chicago Cardinals", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 2, 1958", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "17", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Nov 2, 1958", - "at": null, - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "35", - "sU": "41", - "spread": "4", - "ou": null - }, - { - "date": "Nov 2, 1958", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "24", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Nov 2, 1958", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "24", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 1958", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "24", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Nov 9, 1958", - "at": "@", - "fav": "Cleveland Browns", - "und": "Detroit Lions", - "sF": "10", - "sU": "30", - "spread": "9", - "ou": null - }, - { - "date": "Nov 9, 1958", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "56", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 9, 1958", - "at": null, - "fav": "Baltimore Colts", - "und": "New York Giants", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 1958", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Nov 9, 1958", - "at": "@", - "fav": "Washington Redskins", - "und": "Chicago Cardinals", - "sF": "45", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Nov 16, 1958", - "at": "@", - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "0", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1958", - "at": null, - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "21", - "sU": "35", - "spread": "7", - "ou": null - }, - { - "date": "Nov 16, 1958", - "at": null, - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "20", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 16, 1958", - "at": null, - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1958", - "at": null, - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "20", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 23, 1958", - "at": "@", - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "34", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 1958", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Chicago Cardinals", - "sF": "27", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1958", - "at": "@", - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Nov 23, 1958", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "7", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 23, 1958", - "at": null, - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "33", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Nov 23, 1958", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "30", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 27, 1958", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "24", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Nov 30, 1958", - "at": "@", - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "35", - "sU": "27", - "spread": "13", - "ou": null - }, - { - "date": "Nov 30, 1958", - "at": null, - "fav": "Los Angeles Rams", - "und": "Chicago Cardinals", - "sF": "20", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 30, 1958", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "21", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Nov 30, 1958", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Nov 30, 1958", - "at": null, - "fav": "Chicago Bears", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 1958", - "at": null, - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "28", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Dec 7, 1958", - "at": "@", - "fav": "Chicago Bears", - "und": "Chicago Cardinals", - "sF": "30", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 7, 1958", - "at": null, - "fav": "New York Giants", - "und": "Detroit Lions", - "sF": "19", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 7, 1958", - "at": null, - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 7, 1958", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "48", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Dec 7, 1958", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "14", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 13, 1958", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Chicago Cardinals", - "sF": "38", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Dec 14, 1958", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "21", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 1958", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "34", - "sU": "20", - "spread": "17", - "ou": null - }, - { - "date": "Dec 14, 1958", - "at": null, - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "10", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 14, 1958", - "at": null, - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "12", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Dec 14, 1958", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Dec 28, 1958", - "at": null, - "fav": "Baltimore Colts", - "und": "New York Giants", - "sF": "23", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 1959", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New York Giants", - "sF": "21", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Sep 26, 1959", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "7", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 1959", - "at": "@", - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "21", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Sep 27, 1959", - "at": "@", - "fav": "Chicago Cardinals", - "und": "Washington Redskins", - "sF": "49", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 1959", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "6", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 1959", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 3, 1959", - "at": "@", - "fav": "Baltimore Colts", - "und": "Chicago Bears", - "sF": "21", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Oct 4, 1959", - "at": "@", - "fav": "Chicago Cardinals", - "und": "Cleveland Browns", - "sF": "7", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Oct 4, 1959", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "28", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 4, 1959", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "49", - "spread": "6", - "ou": null - }, - { - "date": "Oct 4, 1959", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "17", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Oct 4, 1959", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "0", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Oct 11, 1959", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "21", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 1959", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "6", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 11, 1959", - "at": null, - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "31", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 1959", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 11, 1959", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "28", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 11, 1959", - "at": "@", - "fav": "Washington Redskins", - "und": "Chicago Cardinals", - "sF": "23", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 18, 1959", - "at": null, - "fav": "Baltimore Colts", - "und": "Chicago Bears", - "sF": "21", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Oct 18, 1959", - "at": "@", - "fav": "Cleveland Browns", - "und": "Chicago Cardinals", - "sF": "17", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Oct 18, 1959", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "13", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Oct 18, 1959", - "at": null, - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "45", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 1959", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 1959", - "at": "@", - "fav": "Baltimore Colts", - "und": "Green Bay Packers", - "sF": "38", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Oct 25, 1959", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "34", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 25, 1959", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "7", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Oct 25, 1959", - "at": "N", - "fav": "Philadelphia Eagles", - "und": "Chicago Cardinals", - "sF": "28", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 25, 1959", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Giants", - "sF": "16", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Oct 25, 1959", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "20", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 1, 1959", - "at": "@", - "fav": "Baltimore Colts", - "und": "Cleveland Browns", - "sF": "31", - "sU": "38", - "spread": "7", - "ou": null - }, - { - "date": "Nov 1, 1959", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Chicago Cardinals", - "sF": "24", - "sU": "45", - "spread": "4", - "ou": null - }, - { - "date": "Nov 1, 1959", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "21", - "sU": "26", - "spread": "8", - "ou": null - }, - { - "date": "Nov 1, 1959", - "at": "@", - "fav": "New York Giants", - "und": "Green Bay Packers", - "sF": "20", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 1, 1959", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "30", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Nov 1, 1959", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "33", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 8, 1959", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "28", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 8, 1959", - "at": "@", - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 8, 1959", - "at": "@", - "fav": "New York Giants", - "und": "Chicago Cardinals", - "sF": "9", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 8, 1959", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Detroit Lions", - "sF": "10", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 1959", - "at": null, - "fav": "Baltimore Colts", - "und": "Washington Redskins", - "sF": "24", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Nov 15, 1959", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Nov 15, 1959", - "at": null, - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "17", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 15, 1959", - "at": null, - "fav": "Baltimore Colts", - "und": "Green Bay Packers", - "sF": "28", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Nov 15, 1959", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "9", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 15, 1959", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Chicago Cardinals", - "sF": "27", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 1959", - "at": null, - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "31", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 22, 1959", - "at": "@", - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "45", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 1959", - "at": null, - "fav": "New York Giants", - "und": "Chicago Cardinals", - "sF": "30", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Nov 22, 1959", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Nov 22, 1959", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "24", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Nov 22, 1959", - "at": "@", - "fav": "Green Bay Packers", - "und": "Washington Redskins", - "sF": "21", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Nov 22, 1959", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Los Angeles Rams", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1959", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "17", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 29, 1959", - "at": "@", - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "35", - "sU": "21", - "spread": "12", - "ou": null - }, - { - "date": "Nov 29, 1959", - "at": null, - "fav": "Chicago Bears", - "und": "Chicago Cardinals", - "sF": "31", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 29, 1959", - "at": "@", - "fav": "Cleveland Browns", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Nov 29, 1959", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "45", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Nov 29, 1959", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 1959", - "at": null, - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 6, 1959", - "at": "@", - "fav": "Chicago Bears", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Dec 6, 1959", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Cardinals", - "sF": "45", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Dec 6, 1959", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "20", - "sU": "38", - "spread": "5", - "ou": null - }, - { - "date": "Dec 6, 1959", - "at": "@", - "fav": "New York Giants", - "und": "Cleveland Browns", - "sF": "48", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Dec 6, 1959", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "34", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 12, 1959", - "at": null, - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "45", - "sU": "26", - "spread": "11", - "ou": null - }, - { - "date": "Dec 13, 1959", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "25", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 1959", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Cleveland Browns", - "sF": "21", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Dec 13, 1959", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Chicago Cardinals", - "sF": "35", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Dec 13, 1959", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "14", - "sU": "36", - "spread": "5", - "ou": null - }, - { - "date": "Dec 13, 1959", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "24", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 27, 1959", - "at": "@", - "fav": "Baltimore Colts", - "und": "New York Giants", - "sF": "31", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 1960", - "at": "@", - "fav": "Boston Patriots", - "und": "Denver Broncos", - "sF": "10", - "sU": "13", - "spread": "16", - "ou": null - }, - { - "date": "Sep 10, 1960", - "at": null, - "fav": "Dallas Texans", - "und": "Los Angeles Chargers", - "sF": "20", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 1960", - "at": "@", - "fav": "New York Titans", - "und": "Buffalo Bills", - "sF": "27", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Sep 11, 1960", - "at": null, - "fav": "Houston Oilers", - "und": "Oakland Raiders", - "sF": "37", - "sU": "22", - "spread": "10", - "ou": null - }, - { - "date": "Sep 23, 1960", - "at": "@", - "fav": "Los Angeles Rams", - "und": "St Louis Cardinals", - "sF": "21", - "sU": "43", - "spread": "6", - "ou": null - }, - { - "date": "Sep 24, 1960", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Dallas Cowboys", - "sF": "35", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 1960", - "at": "@", - "fav": "Baltimore Colts", - "und": "Washington Redskins", - "sF": "20", - "sU": "0", - "spread": "18", - "ou": null - }, - { - "date": "Sep 25, 1960", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "14", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 25, 1960", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "19", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Sep 16, 1960", - "at": null, - "fav": "Dallas Texans", - "und": "Oakland Raiders", - "sF": "34", - "sU": "16", - "spread": "18", - "ou": null - }, - { - "date": "Sep 17, 1960", - "at": "@", - "fav": "New York Titans", - "und": "Boston Patriots", - "sF": "24", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Sep 18, 1960", - "at": "@", - "fav": "Houston Oilers", - "und": "Los Angeles Chargers", - "sF": "38", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Sep 30, 1960", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "25", - "spread": "6", - "ou": null - }, - { - "date": "Oct 2, 1960", - "at": "@", - "fav": "Baltimore Colts", - "und": "Chicago Bears", - "sF": "42", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 2, 1960", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "28", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 2, 1960", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "28", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Oct 2, 1960", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "13", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Oct 2, 1960", - "at": null, - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "35", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Sep 23, 1960", - "at": "@", - "fav": "Boston Patriots", - "und": "Buffalo Bills", - "sF": "0", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Sep 23, 1960", - "at": "@", - "fav": "New York Titans", - "und": "Denver Broncos", - "sF": "28", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 1960", - "at": "@", - "fav": "Houston Oilers", - "und": "Oakland Raiders", - "sF": "13", - "sU": "14", - "spread": "18", - "ou": null - }, - { - "date": "Oct 9, 1960", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "34", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Oct 9, 1960", - "at": null, - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "14", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 9, 1960", - "at": null, - "fav": "Baltimore Colts", - "und": "Green Bay Packers", - "sF": "21", - "sU": "35", - "spread": "6", - "ou": null - }, - { - "date": "Oct 9, 1960", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "31", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Oct 9, 1960", - "at": null, - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "19", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 9, 1960", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "26", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 2, 1960", - "at": "@", - "fav": "Buffalo Bills", - "und": "Los Angeles Chargers", - "sF": "10", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 1960", - "at": "@", - "fav": "Dallas Texans", - "und": "New York Titans", - "sF": "35", - "sU": "37", - "spread": "13", - "ou": null - }, - { - "date": "Oct 2, 1960", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "31", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 16, 1960", - "at": "@", - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "17", - "spread": "14", - "ou": null - }, - { - "date": "Oct 16, 1960", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 16, 1960", - "at": null, - "fav": "Cleveland Browns", - "und": "Dallas Cowboys", - "sF": "48", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Oct 16, 1960", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "24", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Oct 16, 1960", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Detroit Lions", - "sF": "28", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 16, 1960", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 8, 1960", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Boston Patriots", - "sF": "0", - "sU": "35", - "spread": "6", - "ou": null - }, - { - "date": "Oct 9, 1960", - "at": "@", - "fav": "Dallas Texans", - "und": "Oakland Raiders", - "sF": "19", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Oct 9, 1960", - "at": "@", - "fav": "Houston Oilers", - "und": "New York Titans", - "sF": "27", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 1960", - "at": "@", - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "29", - "sU": "31", - "spread": "10", - "ou": null - }, - { - "date": "Oct 23, 1960", - "at": null, - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "17", - "sU": "30", - "spread": "14", - "ou": null - }, - { - "date": "Oct 23, 1960", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "41", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Oct 23, 1960", - "at": null, - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 23, 1960", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Dallas Cowboys", - "sF": "12", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Oct 16, 1960", - "at": null, - "fav": "New York Titans", - "und": "Buffalo Bills", - "sF": "17", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 1960", - "at": "@", - "fav": "Denver Broncos", - "und": "Los Angeles Chargers", - "sF": "19", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 16, 1960", - "at": "@", - "fav": "Houston Oilers", - "und": "Dallas Texans", - "sF": "20", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 1960", - "at": "@", - "fav": "Oakland Raiders", - "und": "Boston Patriots", - "sF": "27", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 30, 1960", - "at": null, - "fav": "Baltimore Colts", - "und": "Dallas Cowboys", - "sF": "45", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Oct 30, 1960", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "48", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Oct 30, 1960", - "at": "@", - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "13", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Oct 30, 1960", - "at": null, - "fav": "Green Bay Packers", - "und": "Pittsburgh Steelers", - "sF": "19", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 30, 1960", - "at": null, - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "7", - "sU": "25", - "spread": "4", - "ou": null - }, - { - "date": "Oct 30, 1960", - "at": null, - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "31", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Oct 23, 1960", - "at": "@", - "fav": "Buffalo Bills", - "und": "Oakland Raiders", - "sF": "38", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 1960", - "at": "@", - "fav": "Denver Broncos", - "und": "Boston Patriots", - "sF": "31", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 1960", - "at": "@", - "fav": "New York Titans", - "und": "Houston Oilers", - "sF": "28", - "sU": "42", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1960", - "at": "@", - "fav": "Baltimore Colts", - "und": "Green Bay Packers", - "sF": "38", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Nov 6, 1960", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "13", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 6, 1960", - "at": null, - "fav": "Los Angeles Rams", - "und": "Dallas Cowboys", - "sF": "38", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Nov 6, 1960", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "34", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 6, 1960", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "0", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 6, 1960", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "44", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 28, 1960", - "at": "@", - "fav": "Boston Patriots", - "und": "Los Angeles Chargers", - "sF": "16", - "sU": "45", - "spread": "1", - "ou": null - }, - { - "date": "Oct 28, 1960", - "at": "@", - "fav": "New York Titans", - "und": "Oakland Raiders", - "sF": "27", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Oct 30, 1960", - "at": null, - "fav": "Houston Oilers", - "und": "Buffalo Bills", - "sF": "24", - "sU": "25", - "spread": "6", - "ou": null - }, - { - "date": "Nov 13, 1960", - "at": null, - "fav": "Baltimore Colts", - "und": "Chicago Bears", - "sF": "24", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 1960", - "at": "@", - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "28", - "sU": "27", - "spread": "11", - "ou": null - }, - { - "date": "Nov 13, 1960", - "at": "@", - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "12", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 13, 1960", - "at": "@", - "fav": "Green Bay Packers", - "und": "Dallas Cowboys", - "sF": "41", - "sU": "7", - "spread": "22", - "ou": null - }, - { - "date": "Nov 13, 1960", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 1960", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "19", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Nov 4, 1960", - "at": "@", - "fav": "New York Titans", - "und": "Los Angeles Chargers", - "sF": "7", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 6, 1960", - "at": null, - "fav": "Dallas Texans", - "und": "Buffalo Bills", - "sF": "45", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Nov 6, 1960", - "at": null, - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "45", - "sU": "25", - "spread": "1", - "ou": null - }, - { - "date": "Nov 20, 1960", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "28", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 20, 1960", - "at": null, - "fav": "San Francisco 49ers", - "und": "Dallas Cowboys", - "sF": "26", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Nov 20, 1960", - "at": "@", - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "33", - "spread": "13", - "ou": null - }, - { - "date": "Nov 20, 1960", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 1960", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 20, 1960", - "at": null, - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "26", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Nov 13, 1960", - "at": "@", - "fav": "Dallas Texans", - "und": "Denver Broncos", - "sF": "34", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 1960", - "at": "@", - "fav": "Oakland Raiders", - "und": "Buffalo Bills", - "sF": "20", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 1960", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "10", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Nov 27, 1960", - "at": "@", - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "22", - "sU": "30", - "spread": "16", - "ou": null - }, - { - "date": "Nov 27, 1960", - "at": "@", - "fav": "Chicago Bears", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "7", - "spread": "22", - "ou": null - }, - { - "date": "Nov 27, 1960", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "31", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Nov 27, 1960", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "22", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Nov 27, 1960", - "at": null, - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "17", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 18, 1960", - "at": null, - "fav": "Dallas Texans", - "und": "Boston Patriots", - "sF": "14", - "sU": "42", - "spread": "6", - "ou": null - }, - { - "date": "Nov 20, 1960", - "at": "@", - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "20", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Nov 20, 1960", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Buffalo Bills", - "sF": "3", - "sU": "32", - "spread": "13", - "ou": null - }, - { - "date": "Dec 4, 1960", - "at": "@", - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "15", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Dec 4, 1960", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "13", - "sU": "41", - "spread": "4", - "ou": null - }, - { - "date": "Dec 4, 1960", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "27", - "sU": "16", - "spread": "15", - "ou": null - }, - { - "date": "Dec 4, 1960", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "7", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Dec 4, 1960", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "31", - "spread": "14", - "ou": null - }, - { - "date": "Dec 4, 1960", - "at": null, - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "20", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Nov 24, 1960", - "at": null, - "fav": "Dallas Texans", - "und": "New York Titans", - "sF": "35", - "sU": "41", - "spread": "4", - "ou": null - }, - { - "date": "Nov 25, 1960", - "at": null, - "fav": "Houston Oilers", - "und": "Boston Patriots", - "sF": "24", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 27, 1960", - "at": "@", - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "38", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 1960", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Oakland Raiders", - "sF": "52", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Dec 10, 1960", - "at": null, - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "13", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Dec 11, 1960", - "at": "@", - "fav": "Cleveland Browns", - "und": "Chicago Bears", - "sF": "42", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Dec 11, 1960", - "at": "@", - "fav": "Detroit Lions", - "und": "Dallas Cowboys", - "sF": "23", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Dec 11, 1960", - "at": null, - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "3", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Dec 11, 1960", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 11, 1960", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "17", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Dec 4, 1960", - "at": null, - "fav": "Boston Patriots", - "und": "Buffalo Bills", - "sF": "14", - "sU": "38", - "spread": "14", - "ou": null - }, - { - "date": "Dec 4, 1960", - "at": "@", - "fav": "Dallas Texans", - "und": "Houston Oilers", - "sF": "24", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Dec 4, 1960", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Titans", - "sF": "27", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Dec 4, 1960", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Oakland Raiders", - "sF": "41", - "sU": "17", - "spread": "19", - "ou": null - }, - { - "date": "Dec 17, 1960", - "at": null, - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "35", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Dec 18, 1960", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "36", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Dec 18, 1960", - "at": null, - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "48", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Dec 18, 1960", - "at": null, - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "10", - "sU": "34", - "spread": "5", - "ou": null - }, - { - "date": "Dec 18, 1960", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Pittsburgh Steelers", - "sF": "38", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Dec 18, 1960", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "38", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Dec 10, 1960", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Denver Broncos", - "sF": "41", - "sU": "33", - "spread": "7", - "ou": null - }, - { - "date": "Dec 11, 1960", - "at": "@", - "fav": "Dallas Texans", - "und": "Boston Patriots", - "sF": "34", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Dec 11, 1960", - "at": "@", - "fav": "Houston Oilers", - "und": "Buffalo Bills", - "sF": "31", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 1960", - "at": null, - "fav": "New York Titans", - "und": "Oakland Raiders", - "sF": "31", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 1960", - "at": "@", - "fav": "Dallas Texans", - "und": "Buffalo Bills", - "sF": "24", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 1960", - "at": "@", - "fav": "Houston Oilers", - "und": "Boston Patriots", - "sF": "37", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Dec 18, 1960", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "New York Titans", - "sF": "50", - "sU": "43", - "spread": "7", - "ou": null - }, - { - "date": "Dec 26, 1960", - "at": null, - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Jan 1, 1961", - "at": "@", - "fav": "Houston Oilers", - "und": "Los Angeles Chargers", - "sF": "24", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Sep 9, 1961", - "at": "@", - "fav": "Boston Patriots", - "und": "New York Titans", - "sF": "20", - "sU": "21", - "spread": "19", - "ou": null - }, - { - "date": "Sep 9, 1961", - "at": "@", - "fav": "Houston Oilers", - "und": "Oakland Raiders", - "sF": "55", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Sep 17, 1961", - "at": "@", - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "27", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Sep 17, 1961", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Sep 17, 1961", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "13", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 17, 1961", - "at": null, - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "37", - "spread": "10", - "ou": null - }, - { - "date": "Sep 17, 1961", - "at": "@", - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "10", - "sU": "21", - "spread": "12", - "ou": null - }, - { - "date": "Sep 17, 1961", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "35", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Sep 16, 1961", - "at": "@", - "fav": "Boston Patriots", - "und": "Denver Broncos", - "sF": "45", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 17, 1961", - "at": null, - "fav": "New York Titans", - "und": "Buffalo Bills", - "sF": "31", - "sU": "41", - "spread": "7", - "ou": null - }, - { - "date": "Sep 17, 1961", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "44", - "sU": "0", - "spread": "21", - "ou": null - }, - { - "date": "Sep 23, 1961", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "17", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Sep 24, 1961", - "at": "@", - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "15", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Sep 24, 1961", - "at": "@", - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "20", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Sep 24, 1961", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 24, 1961", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "30", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 1961", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "14", - "sU": "7", - "spread": "17", - "ou": null - }, - { - "date": "Sep 24, 1961", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Giants", - "sF": "14", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 23, 1961", - "at": null, - "fav": "Boston Patriots", - "und": "Buffalo Bills", - "sF": "23", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Sep 24, 1961", - "at": "@", - "fav": "New York Titans", - "und": "Denver Broncos", - "sF": "35", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Sep 24, 1961", - "at": null, - "fav": "Dallas Texans", - "und": "Oakland Raiders", - "sF": "42", - "sU": "35", - "spread": "15", - "ou": null - }, - { - "date": "Sep 24, 1961", - "at": "@", - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "34", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 1, 1961", - "at": "@", - "fav": "Baltimore Colts", - "und": "Minnesota Vikings", - "sF": "34", - "sU": "33", - "spread": "14", - "ou": null - }, - { - "date": "Oct 1, 1961", - "at": "@", - "fav": "Cleveland Browns", - "und": "Dallas Cowboys", - "sF": "25", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Oct 1, 1961", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "0", - "sU": "49", - "spread": "7", - "ou": null - }, - { - "date": "Oct 1, 1961", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "24", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Oct 1, 1961", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 1, 1961", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "30", - "spread": "10", - "ou": null - }, - { - "date": "Oct 1, 1961", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "24", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Sep 30, 1961", - "at": null, - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "19", - "sU": "11", - "spread": "13", - "ou": null - }, - { - "date": "Oct 1, 1961", - "at": "@", - "fav": "New York Titans", - "und": "Boston Patriots", - "sF": "37", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Oct 1, 1961", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "19", - "sU": "33", - "spread": "5", - "ou": null - }, - { - "date": "Oct 8, 1961", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "31", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Oct 8, 1961", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "17", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Oct 8, 1961", - "at": "@", - "fav": "Green Bay Packers", - "und": "Baltimore Colts", - "sF": "45", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Oct 8, 1961", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Dallas Cowboys", - "sF": "0", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Oct 8, 1961", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 8, 1961", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "35", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Oct 8, 1961", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "9", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Oct 7, 1961", - "at": null, - "fav": "San Diego Chargers", - "und": "Boston Patriots", - "sF": "38", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Oct 8, 1961", - "at": null, - "fav": "Dallas Texans", - "und": "Denver Broncos", - "sF": "19", - "sU": "12", - "spread": "10", - "ou": null - }, - { - "date": "Oct 8, 1961", - "at": "@", - "fav": "Houston Oilers", - "und": "Buffalo Bills", - "sF": "12", - "sU": "22", - "spread": "13", - "ou": null - }, - { - "date": "Oct 15, 1961", - "at": "@", - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "24", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 15, 1961", - "at": null, - "fav": "Green Bay Packers", - "und": "Cleveland Browns", - "sF": "49", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 1961", - "at": null, - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 15, 1961", - "at": "@", - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "14", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 15, 1961", - "at": null, - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "38", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Oct 15, 1961", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "20", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Oct 15, 1961", - "at": null, - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "20", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Oct 13, 1961", - "at": null, - "fav": "Houston Oilers", - "und": "Boston Patriots", - "sF": "31", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Oct 15, 1961", - "at": null, - "fav": "Dallas Texans", - "und": "Buffalo Bills", - "sF": "24", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Oct 15, 1961", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "27", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 15, 1961", - "at": null, - "fav": "San Diego Chargers", - "und": "New York Titans", - "sF": "25", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Oct 22, 1961", - "at": null, - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "0", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 1961", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "43", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 22, 1961", - "at": "@", - "fav": "Detroit Lions", - "und": "Baltimore Colts", - "sF": "14", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 22, 1961", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "33", - "sU": "7", - "spread": "17", - "ou": null - }, - { - "date": "Oct 22, 1961", - "at": "@", - "fav": "New York Giants", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Oct 22, 1961", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "30", - "sU": "28", - "spread": "0", - "ou": null - }, - { - "date": "Oct 22, 1961", - "at": null, - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "24", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 1961", - "at": "@", - "fav": "Boston Patriots", - "und": "Buffalo Bills", - "sF": "52", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Oct 22, 1961", - "at": null, - "fav": "New York Titans", - "und": "Denver Broncos", - "sF": "10", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Oct 22, 1961", - "at": "@", - "fav": "Houston Oilers", - "und": "Dallas Texans", - "sF": "38", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 1961", - "at": null, - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "41", - "sU": "10", - "spread": "17", - "ou": null - }, - { - "date": "Oct 29, 1961", - "at": "@", - "fav": "Baltimore Colts", - "und": "Chicago Bears", - "sF": "20", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Oct 29, 1961", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "10", - "spread": "26", - "ou": null - }, - { - "date": "Oct 29, 1961", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "10", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Oct 29, 1961", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "16", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Oct 29, 1961", - "at": null, - "fav": "San Francisco 49ers", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 1961", - "at": null, - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "21", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 1961", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "27", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Oct 29, 1961", - "at": null, - "fav": "Houston Oilers", - "und": "Buffalo Bills", - "sF": "28", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 1961", - "at": "@", - "fav": "Dallas Texans", - "und": "Boston Patriots", - "sF": "17", - "sU": "18", - "spread": "5", - "ou": null - }, - { - "date": "Oct 29, 1961", - "at": null, - "fav": "New York Titans", - "und": "Oakland Raiders", - "sF": "14", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Oct 29, 1961", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "37", - "sU": "0", - "spread": "18", - "ou": null - }, - { - "date": "Nov 5, 1961", - "at": null, - "fav": "Green Bay Packers", - "und": "Baltimore Colts", - "sF": "21", - "sU": "45", - "spread": "7", - "ou": null - }, - { - "date": "Nov 5, 1961", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 5, 1961", - "at": null, - "fav": "St Louis Cardinals", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 5, 1961", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Nov 5, 1961", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "53", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Nov 5, 1961", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "16", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 1961", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "20", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 1961", - "at": "@", - "fav": "Boston Patriots", - "und": "Dallas Texans", - "sF": "28", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 1961", - "at": "@", - "fav": "Buffalo Bills", - "und": "Oakland Raiders", - "sF": "22", - "sU": "31", - "spread": "11", - "ou": null - }, - { - "date": "Nov 5, 1961", - "at": null, - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "55", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Nov 5, 1961", - "at": "@", - "fav": "San Diego Chargers", - "und": "New York Titans", - "sF": "48", - "sU": "13", - "spread": "17", - "ou": null - }, - { - "date": "Nov 12, 1961", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "31", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 1961", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "7", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 12, 1961", - "at": null, - "fav": "Baltimore Colts", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "28", - "spread": "14", - "ou": null - }, - { - "date": "Nov 12, 1961", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 1961", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Dallas Cowboys", - "sF": "37", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 12, 1961", - "at": null, - "fav": "Detroit Lions", - "und": "St Louis Cardinals", - "sF": "45", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 12, 1961", - "at": null, - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "17", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Nov 11, 1961", - "at": "@", - "fav": "New York Titans", - "und": "Oakland Raiders", - "sF": "23", - "sU": "12", - "spread": "8", - "ou": null - }, - { - "date": "Nov 12, 1961", - "at": "@", - "fav": "Dallas Texans", - "und": "Buffalo Bills", - "sF": "20", - "sU": "30", - "spread": "8", - "ou": null - }, - { - "date": "Nov 12, 1961", - "at": null, - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "19", - "sU": "16", - "spread": "20", - "ou": null - }, - { - "date": "Nov 12, 1961", - "at": "@", - "fav": "Houston Oilers", - "und": "Boston Patriots", - "sF": "27", - "sU": "15", - "spread": "9", - "ou": null - }, - { - "date": "Nov 19, 1961", - "at": "@", - "fav": "Baltimore Colts", - "und": "St Louis Cardinals", - "sF": "16", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Nov 19, 1961", - "at": "@", - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "45", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 1961", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "28", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Nov 19, 1961", - "at": "@", - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "35", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Nov 19, 1961", - "at": null, - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "37", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Nov 19, 1961", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "42", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 19, 1961", - "at": null, - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 1961", - "at": "@", - "fav": "Boston Patriots", - "und": "Oakland Raiders", - "sF": "20", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Nov 19, 1961", - "at": null, - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "23", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 1961", - "at": "@", - "fav": "Houston Oilers", - "und": "New York Titans", - "sF": "49", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Nov 19, 1961", - "at": "@", - "fav": "San Diego Chargers", - "und": "Dallas Texans", - "sF": "24", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Nov 26, 1961", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "28", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Nov 26, 1961", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "21", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Nov 26, 1961", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "35", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Nov 26, 1961", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "St Louis Cardinals", - "sF": "30", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Nov 26, 1961", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "38", - "sU": "28", - "spread": "16", - "ou": null - }, - { - "date": "Nov 26, 1961", - "at": null, - "fav": "Baltimore Colts", - "und": "Washington Redskins", - "sF": "27", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Nov 23, 1961", - "at": "@", - "fav": "New York Titans", - "und": "Buffalo Bills", - "sF": "21", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Nov 26, 1961", - "at": "@", - "fav": "Dallas Texans", - "und": "Oakland Raiders", - "sF": "43", - "sU": "11", - "spread": "13", - "ou": null - }, - { - "date": "Nov 26, 1961", - "at": "@", - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "45", - "sU": "14", - "spread": "20", - "ou": null - }, - { - "date": "Dec 3, 1961", - "at": "@", - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 3, 1961", - "at": null, - "fav": "Cleveland Browns", - "und": "Dallas Cowboys", - "sF": "38", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Dec 3, 1961", - "at": "@", - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 3, 1961", - "at": null, - "fav": "Los Angeles Rams", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "42", - "spread": "6", - "ou": null - }, - { - "date": "Dec 3, 1961", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "35", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 1961", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "38", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Dec 3, 1961", - "at": null, - "fav": "Boston Patriots", - "und": "Denver Broncos", - "sF": "28", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 3, 1961", - "at": null, - "fav": "Dallas Texans", - "und": "New York Titans", - "sF": "7", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Dec 3, 1961", - "at": null, - "fav": "Buffalo Bills", - "und": "Oakland Raiders", - "sF": "26", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Dec 9, 1961", - "at": null, - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "17", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Dec 10, 1961", - "at": null, - "fav": "Cleveland Browns", - "und": "Chicago Bears", - "sF": "14", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 10, 1961", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Dec 10, 1961", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 1961", - "at": null, - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "22", - "spread": "5", - "ou": null - }, - { - "date": "Dec 10, 1961", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "13", - "spread": "12", - "ou": null - }, - { - "date": "Dec 10, 1961", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "30", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Dec 9, 1961", - "at": null, - "fav": "Boston Patriots", - "und": "Oakland Raiders", - "sF": "35", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 10, 1961", - "at": "@", - "fav": "Dallas Texans", - "und": "Denver Broncos", - "sF": "49", - "sU": "21", - "spread": "12", - "ou": null - }, - { - "date": "Dec 10, 1961", - "at": null, - "fav": "Houston Oilers", - "und": "New York Titans", - "sF": "48", - "sU": "21", - "spread": "12", - "ou": null - }, - { - "date": "Dec 10, 1961", - "at": "@", - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "28", - "sU": "10", - "spread": "15", - "ou": null - }, - { - "date": "Dec 16, 1961", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Baltimore Colts", - "sF": "24", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 1961", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "52", - "sU": "35", - "spread": "11", - "ou": null - }, - { - "date": "Dec 17, 1961", - "at": "@", - "fav": "Detroit Lions", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Dec 17, 1961", - "at": null, - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Dec 17, 1961", - "at": "@", - "fav": "New York Giants", - "und": "Cleveland Browns", - "sF": "7", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 1961", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Dec 17, 1961", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "34", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 17, 1961", - "at": "@", - "fav": "Dallas Texans", - "und": "New York Titans", - "sF": "35", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Dec 17, 1961", - "at": null, - "fav": "Houston Oilers", - "und": "Oakland Raiders", - "sF": "47", - "sU": "16", - "spread": "20", - "ou": null - }, - { - "date": "Dec 17, 1961", - "at": "@", - "fav": "San Diego Chargers", - "und": "Boston Patriots", - "sF": "0", - "sU": "41", - "spread": "13", - "ou": null - }, - { - "date": "Dec 24, 1961", - "at": null, - "fav": "Houston Oilers", - "und": "San Diego Chargers", - "sF": "10", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Dec 31, 1961", - "at": "@", - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "37", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 1962", - "at": "@", - "fav": "Dallas Texans", - "und": "Boston Patriots", - "sF": "42", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Sep 16, 1962", - "at": "@", - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Sep 16, 1962", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "17", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 16, 1962", - "at": null, - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "35", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Sep 16, 1962", - "at": "@", - "fav": "Detroit Lions", - "und": "Pittsburgh Steelers", - "sF": "45", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 16, 1962", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "34", - "sU": "7", - "spread": "16", - "ou": null - }, - { - "date": "Sep 16, 1962", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "21", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Sep 16, 1962", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "14", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Sep 15, 1962", - "at": "@", - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "20", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Sep 16, 1962", - "at": null, - "fav": "Houston Oilers", - "und": "Boston Patriots", - "sF": "21", - "sU": "34", - "spread": "14", - "ou": null - }, - { - "date": "Sep 16, 1962", - "at": "@", - "fav": "San Diego Chargers", - "und": "New York Titans", - "sF": "40", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Sep 23, 1962", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "16", - "sU": "17", - "spread": "16", - "ou": null - }, - { - "date": "Sep 23, 1962", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Dallas Cowboys", - "sF": "30", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Sep 23, 1962", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "45", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 23, 1962", - "at": "@", - "fav": "Green Bay Packers", - "und": "St Louis Cardinals", - "sF": "17", - "sU": "0", - "spread": "14", - "ou": null - }, - { - "date": "Sep 23, 1962", - "at": null, - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "27", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Sep 23, 1962", - "at": null, - "fav": "Baltimore Colts", - "und": "Minnesota Vikings", - "sF": "34", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Sep 23, 1962", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "29", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 1962", - "at": "@", - "fav": "Boston Patriots", - "und": "Denver Broncos", - "sF": "41", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Sep 22, 1962", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Titans", - "sF": "6", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 23, 1962", - "at": null, - "fav": "Dallas Texans", - "und": "Oakland Raiders", - "sF": "26", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Sep 23, 1962", - "at": "@", - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "17", - "sU": "42", - "spread": "8", - "ou": null - }, - { - "date": "Sep 30, 1962", - "at": null, - "fav": "Detroit Lions", - "und": "Baltimore Colts", - "sF": "29", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 30, 1962", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "49", - "sU": "0", - "spread": "15", - "ou": null - }, - { - "date": "Sep 30, 1962", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "27", - "spread": "11", - "ou": null - }, - { - "date": "Sep 30, 1962", - "at": null, - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "7", - "sU": "35", - "spread": "5", - "ou": null - }, - { - "date": "Sep 30, 1962", - "at": null, - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "31", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Sep 30, 1962", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Sep 30, 1962", - "at": null, - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "14", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Sep 30, 1962", - "at": "@", - "fav": "Dallas Texans", - "und": "Buffalo Bills", - "sF": "41", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Sep 30, 1962", - "at": "@", - "fav": "New York Titans", - "und": "Denver Broncos", - "sF": "10", - "sU": "32", - "spread": "4", - "ou": null - }, - { - "date": "Sep 30, 1962", - "at": null, - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "42", - "sU": "33", - "spread": "13", - "ou": null - }, - { - "date": "Oct 7, 1962", - "at": "@", - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "13", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 1962", - "at": "@", - "fav": "Cleveland Browns", - "und": "Dallas Cowboys", - "sF": "19", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Oct 7, 1962", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "9", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Oct 7, 1962", - "at": null, - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Oct 7, 1962", - "at": null, - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "31", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 1962", - "at": "@", - "fav": "Washington Redskins", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 5, 1962", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "44", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Oct 6, 1962", - "at": null, - "fav": "Boston Patriots", - "und": "New York Titans", - "sF": "43", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Oct 7, 1962", - "at": "@", - "fav": "Houston Oilers", - "und": "Buffalo Bills", - "sF": "17", - "sU": "14", - "spread": "16", - "ou": null - }, - { - "date": "Oct 7, 1962", - "at": null, - "fav": "Dallas Texans", - "und": "San Diego Chargers", - "sF": "28", - "sU": "32", - "spread": "2", - "ou": null - }, - { - "date": "Oct 14, 1962", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 1962", - "at": "@", - "fav": "Cleveland Browns", - "und": "Baltimore Colts", - "sF": "14", - "sU": "36", - "spread": "7", - "ou": null - }, - { - "date": "Oct 14, 1962", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "19", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 1962", - "at": "@", - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "13", - "sU": "10", - "spread": "15", - "ou": null - }, - { - "date": "Oct 14, 1962", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "48", - "sU": "21", - "spread": "21", - "ou": null - }, - { - "date": "Oct 14, 1962", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Oct 14, 1962", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "17", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 1962", - "at": "@", - "fav": "Boston Patriots", - "und": "Dallas Texans", - "sF": "7", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 13, 1962", - "at": null, - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "10", - "sU": "35", - "spread": "7", - "ou": null - }, - { - "date": "Oct 14, 1962", - "at": "@", - "fav": "Houston Oilers", - "und": "New York Titans", - "sF": "56", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Oct 14, 1962", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "23", - "sU": "6", - "spread": "15", - "ou": null - }, - { - "date": "Oct 21, 1962", - "at": "@", - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "35", - "sU": "15", - "spread": "2", - "ou": null - }, - { - "date": "Oct 21, 1962", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Oct 21, 1962", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "38", - "spread": "10", - "ou": null - }, - { - "date": "Oct 21, 1962", - "at": null, - "fav": "Detroit Lions", - "und": "New York Giants", - "sF": "14", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 21, 1962", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "42", - "spread": "6", - "ou": null - }, - { - "date": "Oct 21, 1962", - "at": null, - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "34", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 1962", - "at": "@", - "fav": "Boston Patriots", - "und": "San Diego Chargers", - "sF": "24", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 1962", - "at": "@", - "fav": "Buffalo Bills", - "und": "Oakland Raiders", - "sF": "14", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 1962", - "at": "@", - "fav": "Dallas Texans", - "und": "New York Titans", - "sF": "20", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Oct 28, 1962", - "at": null, - "fav": "Green Bay Packers", - "und": "Baltimore Colts", - "sF": "17", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Oct 28, 1962", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "24", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Oct 28, 1962", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "11", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Oct 28, 1962", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "49", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Oct 28, 1962", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "41", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 1962", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "14", - "sU": "28", - "spread": "13", - "ou": null - }, - { - "date": "Oct 26, 1962", - "at": "@", - "fav": "Boston Patriots", - "und": "Oakland Raiders", - "sF": "26", - "sU": "16", - "spread": "17", - "ou": null - }, - { - "date": "Oct 28, 1962", - "at": "@", - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "38", - "sU": "45", - "spread": "10", - "ou": null - }, - { - "date": "Oct 28, 1962", - "at": "@", - "fav": "Houston Oilers", - "und": "Dallas Texans", - "sF": "7", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Oct 28, 1962", - "at": null, - "fav": "San Diego Chargers", - "und": "New York Titans", - "sF": "3", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Nov 4, 1962", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "38", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Nov 4, 1962", - "at": "@", - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Nov 4, 1962", - "at": null, - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "12", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 4, 1962", - "at": "@", - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "31", - "sU": "28", - "spread": "12", - "ou": null - }, - { - "date": "Nov 4, 1962", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Minnesota Vikings", - "sF": "39", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Nov 4, 1962", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Baltimore Colts", - "sF": "3", - "sU": "22", - "spread": "5", - "ou": null - }, - { - "date": "Nov 4, 1962", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "10", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 1962", - "at": null, - "fav": "Boston Patriots", - "und": "Buffalo Bills", - "sF": "28", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Nov 4, 1962", - "at": null, - "fav": "Houston Oilers", - "und": "Dallas Texans", - "sF": "14", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 1962", - "at": "@", - "fav": "New York Titans", - "und": "Oakland Raiders", - "sF": "31", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 11, 1962", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Nov 11, 1962", - "at": null, - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "41", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 11, 1962", - "at": null, - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "14", - "sU": "2", - "spread": "5", - "ou": null - }, - { - "date": "Nov 11, 1962", - "at": null, - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "49", - "sU": "0", - "spread": "17", - "ou": null - }, - { - "date": "Nov 11, 1962", - "at": null, - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "38", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 11, 1962", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 1962", - "at": null, - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "9", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 11, 1962", - "at": "@", - "fav": "Denver Broncos", - "und": "Boston Patriots", - "sF": "29", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 1962", - "at": null, - "fav": "Dallas Texans", - "und": "New York Titans", - "sF": "52", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Nov 11, 1962", - "at": null, - "fav": "Houston Oilers", - "und": "Oakland Raiders", - "sF": "28", - "sU": "20", - "spread": "15", - "ou": null - }, - { - "date": "Nov 11, 1962", - "at": "@", - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "20", - "sU": "40", - "spread": "2", - "ou": null - }, - { - "date": "Nov 18, 1962", - "at": "@", - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "38", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 18, 1962", - "at": null, - "fav": "Chicago Bears", - "und": "Dallas Cowboys", - "sF": "34", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 1962", - "at": "@", - "fav": "Green Bay Packers", - "und": "Baltimore Colts", - "sF": "17", - "sU": "13", - "spread": "16", - "ou": null - }, - { - "date": "Nov 18, 1962", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 1962", - "at": null, - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Nov 18, 1962", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "19", - "sU": "14", - "spread": "15", - "ou": null - }, - { - "date": "Nov 18, 1962", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "23", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 18, 1962", - "at": null, - "fav": "Dallas Texans", - "und": "Denver Broncos", - "sF": "24", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 1962", - "at": "@", - "fav": "Houston Oilers", - "und": "Boston Patriots", - "sF": "21", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 18, 1962", - "at": null, - "fav": "Buffalo Bills", - "und": "Oakland Raiders", - "sF": "10", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Nov 22, 1962", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "14", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Nov 25, 1962", - "at": "@", - "fav": "Baltimore Colts", - "und": "Chicago Bears", - "sF": "0", - "sU": "57", - "spread": "6", - "ou": null - }, - { - "date": "Nov 25, 1962", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "35", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 25, 1962", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 25, 1962", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Nov 25, 1962", - "at": null, - "fav": "San Francisco 49ers", - "und": "St Louis Cardinals", - "sF": "24", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 25, 1962", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "42", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 1962", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Titans", - "sF": "45", - "sU": "46", - "spread": "10", - "ou": null - }, - { - "date": "Nov 23, 1962", - "at": "@", - "fav": "Boston Patriots", - "und": "Buffalo Bills", - "sF": "21", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 25, 1962", - "at": "@", - "fav": "Dallas Texans", - "und": "Oakland Raiders", - "sF": "35", - "sU": "7", - "spread": "20", - "ou": null - }, - { - "date": "Nov 25, 1962", - "at": "@", - "fav": "Houston Oilers", - "und": "San Diego Chargers", - "sF": "33", - "sU": "27", - "spread": "13", - "ou": null - }, - { - "date": "Dec 2, 1962", - "at": null, - "fav": "New York Giants", - "und": "Chicago Bears", - "sF": "26", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 1962", - "at": null, - "fav": "Cleveland Browns", - "und": "Dallas Cowboys", - "sF": "21", - "sU": "45", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 1962", - "at": "@", - "fav": "Detroit Lions", - "und": "Baltimore Colts", - "sF": "21", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Dec 2, 1962", - "at": "@", - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "41", - "sU": "10", - "spread": "21", - "ou": null - }, - { - "date": "Dec 2, 1962", - "at": null, - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "35", - "sU": "12", - "spread": "5", - "ou": null - }, - { - "date": "Dec 2, 1962", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "St Louis Cardinals", - "sF": "19", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 1962", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "37", - "spread": "1", - "ou": null - }, - { - "date": "Nov 30, 1962", - "at": "@", - "fav": "Boston Patriots", - "und": "New York Titans", - "sF": "24", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 2, 1962", - "at": null, - "fav": "Dallas Texans", - "und": "Buffalo Bills", - "sF": "14", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Dec 2, 1962", - "at": "@", - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "34", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 2, 1962", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "31", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Dec 8, 1962", - "at": "@", - "fav": "Baltimore Colts", - "und": "Washington Redskins", - "sF": "34", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Dec 9, 1962", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Dec 9, 1962", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "37", - "sU": "23", - "spread": "15", - "ou": null - }, - { - "date": "Dec 9, 1962", - "at": "@", - "fav": "New York Giants", - "und": "Cleveland Browns", - "sF": "17", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 9, 1962", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Dec 9, 1962", - "at": null, - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Dec 9, 1962", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "20", - "sU": "52", - "spread": "2", - "ou": null - }, - { - "date": "Dec 8, 1962", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Titans", - "sF": "20", - "sU": "3", - "spread": "15", - "ou": null - }, - { - "date": "Dec 9, 1962", - "at": "@", - "fav": "Dallas Texans", - "und": "Denver Broncos", - "sF": "17", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Dec 9, 1962", - "at": "@", - "fav": "Houston Oilers", - "und": "Oakland Raiders", - "sF": "32", - "sU": "17", - "spread": "19", - "ou": null - }, - { - "date": "Dec 15, 1962", - "at": null, - "fav": "Cleveland Browns", - "und": "San Francisco 49ers", - "sF": "13", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Dec 16, 1962", - "at": "@", - "fav": "Baltimore Colts", - "und": "Minnesota Vikings", - "sF": "42", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Dec 16, 1962", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "0", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Dec 16, 1962", - "at": null, - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "17", - "spread": "17", - "ou": null - }, - { - "date": "Dec 16, 1962", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "41", - "sU": "31", - "spread": "9", - "ou": null - }, - { - "date": "Dec 16, 1962", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "45", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 1962", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "27", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 15, 1962", - "at": null, - "fav": "Houston Oilers", - "und": "New York Titans", - "sF": "44", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Dec 16, 1962", - "at": "@", - "fav": "Dallas Texans", - "und": "San Diego Chargers", - "sF": "26", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 16, 1962", - "at": null, - "fav": "Boston Patriots", - "und": "Oakland Raiders", - "sF": "0", - "sU": "20", - "spread": "11", - "ou": null - }, - { - "date": "Dec 23, 1962", - "at": "@", - "fav": "Houston Oilers", - "und": "Dallas Texans", - "sF": "17", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 30, 1962", - "at": null, - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "16", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 7, 1963", - "at": "@", - "fav": "Houston Oilers", - "und": "Oakland Raiders", - "sF": "13", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Sep 8, 1963", - "at": "@", - "fav": "Boston Patriots", - "und": "New York Jets", - "sF": "38", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Sep 14, 1963", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "7", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Sep 14, 1963", - "at": null, - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "23", - "sU": "2", - "spread": "6", - "ou": null - }, - { - "date": "Sep 15, 1963", - "at": null, - "fav": "New York Giants", - "und": "Baltimore Colts", - "sF": "37", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Sep 15, 1963", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "37", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Sep 15, 1963", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "3", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Sep 15, 1963", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 1963", - "at": null, - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 1963", - "at": "@", - "fav": "Oakland Raiders", - "und": "Buffalo Bills", - "sF": "35", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 1963", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Washington Redskins", - "sF": "14", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 1963", - "at": null, - "fav": "Cleveland Browns", - "und": "Dallas Cowboys", - "sF": "41", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 1963", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "31", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 22, 1963", - "at": null, - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 22, 1963", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "24", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Sep 22, 1963", - "at": null, - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "0", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 1963", - "at": null, - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Sep 22, 1963", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "27", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Sep 22, 1963", - "at": null, - "fav": "Houston Oilers", - "und": "New York Jets", - "sF": "17", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Sep 22, 1963", - "at": "@", - "fav": "Oakland Raiders", - "und": "Boston Patriots", - "sF": "14", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 1963", - "at": "@", - "fav": "Cleveland Browns", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Sep 29, 1963", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "37", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 1963", - "at": "@", - "fav": "Green Bay Packers", - "und": "Baltimore Colts", - "sF": "31", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Sep 29, 1963", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "45", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Sep 29, 1963", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "37", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 29, 1963", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "St Louis Cardinals", - "sF": "23", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 29, 1963", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "21", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 28, 1963", - "at": "@", - "fav": "Buffalo Bills", - "und": "Houston Oilers", - "sF": "20", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 1963", - "at": null, - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "7", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 1963", - "at": null, - "fav": "Boston Patriots", - "und": "Denver Broncos", - "sF": "10", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 1963", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "10", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Oct 5, 1963", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "35", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 6, 1963", - "at": "@", - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "10", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Oct 6, 1963", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "26", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Oct 6, 1963", - "at": "@", - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "42", - "sU": "10", - "spread": "19", - "ou": null - }, - { - "date": "Oct 6, 1963", - "at": "@", - "fav": "Minnesota Vikings", - "und": "St Louis Cardinals", - "sF": "14", - "sU": "56", - "spread": "2", - "ou": null - }, - { - "date": "Oct 6, 1963", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Oct 6, 1963", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "24", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Oct 5, 1963", - "at": "@", - "fav": "Buffalo Bills", - "und": "Oakland Raiders", - "sF": "12", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Oct 5, 1963", - "at": null, - "fav": "Boston Patriots", - "und": "New York Jets", - "sF": "24", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Oct 6, 1963", - "at": null, - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "34", - "sU": "50", - "spread": "5", - "ou": null - }, - { - "date": "Oct 6, 1963", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "28", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Oct 13, 1963", - "at": "@", - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Oct 13, 1963", - "at": null, - "fav": "Detroit Lions", - "und": "Dallas Cowboys", - "sF": "14", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 13, 1963", - "at": null, - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "52", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Oct 13, 1963", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "37", - "sU": "28", - "spread": "13", - "ou": null - }, - { - "date": "Oct 13, 1963", - "at": "@", - "fav": "New York Giants", - "und": "Cleveland Browns", - "sF": "24", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 1963", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 1963", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Oct 11, 1963", - "at": "@", - "fav": "Boston Patriots", - "und": "Oakland Raiders", - "sF": "20", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Oct 13, 1963", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "26", - "sU": "35", - "spread": "8", - "ou": null - }, - { - "date": "Oct 13, 1963", - "at": "@", - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "24", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Oct 20, 1963", - "at": "@", - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "37", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Oct 20, 1963", - "at": null, - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Oct 20, 1963", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "37", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Oct 20, 1963", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "38", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Oct 20, 1963", - "at": null, - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "20", - "spread": "17", - "ou": null - }, - { - "date": "Oct 20, 1963", - "at": null, - "fav": "Green Bay Packers", - "und": "St Louis Cardinals", - "sF": "30", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 18, 1963", - "at": "@", - "fav": "Boston Patriots", - "und": "Denver Broncos", - "sF": "40", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Oct 20, 1963", - "at": "@", - "fav": "Houston Oilers", - "und": "Buffalo Bills", - "sF": "28", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 20, 1963", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "17", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Oct 20, 1963", - "at": "@", - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "49", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 1963", - "at": null, - "fav": "Green Bay Packers", - "und": "Baltimore Colts", - "sF": "34", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 27, 1963", - "at": "@", - "fav": "Chicago Bears", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "7", - "spread": "15", - "ou": null - }, - { - "date": "Oct 27, 1963", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "6", - "sU": "33", - "spread": "5", - "ou": null - }, - { - "date": "Oct 27, 1963", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 1963", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Oct 27, 1963", - "at": null, - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "21", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Oct 26, 1963", - "at": "@", - "fav": "Buffalo Bills", - "und": "Boston Patriots", - "sF": "28", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Oct 26, 1963", - "at": "@", - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "35", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 1963", - "at": "@", - "fav": "Houston Oilers", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 27, 1963", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "33", - "sU": "34", - "spread": "10", - "ou": null - }, - { - "date": "Nov 3, 1963", - "at": null, - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "17", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 1963", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "35", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 3, 1963", - "at": "@", - "fav": "Green Bay Packers", - "und": "Pittsburgh Steelers", - "sF": "33", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Nov 3, 1963", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "21", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Nov 3, 1963", - "at": null, - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Nov 3, 1963", - "at": null, - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "45", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 3, 1963", - "at": null, - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "38", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 1, 1963", - "at": null, - "fav": "Houston Oilers", - "und": "Boston Patriots", - "sF": "3", - "sU": "45", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 1963", - "at": null, - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "53", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 3, 1963", - "at": null, - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "30", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Nov 3, 1963", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "10", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Nov 10, 1963", - "at": "@", - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "24", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 10, 1963", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "6", - "sU": "0", - "spread": "16", - "ou": null - }, - { - "date": "Nov 10, 1963", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "7", - "spread": "16", - "ou": null - }, - { - "date": "Nov 10, 1963", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "42", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Nov 10, 1963", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "7", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Nov 10, 1963", - "at": null, - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 10, 1963", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "24", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Nov 8, 1963", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "7", - "sU": "22", - "spread": "5", - "ou": null - }, - { - "date": "Nov 9, 1963", - "at": "@", - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "27", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 10, 1963", - "at": "@", - "fav": "Houston Oilers", - "und": "New York Jets", - "sF": "31", - "sU": "27", - "spread": "11", - "ou": null - }, - { - "date": "Nov 17, 1963", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "7", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Nov 17, 1963", - "at": "@", - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "14", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Nov 17, 1963", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Nov 17, 1963", - "at": "@", - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "21", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Nov 17, 1963", - "at": null, - "fav": "Baltimore Colts", - "und": "Minnesota Vikings", - "sF": "37", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 1963", - "at": "@", - "fav": "New York Giants", - "und": "San Francisco 49ers", - "sF": "48", - "sU": "14", - "spread": "17", - "ou": null - }, - { - "date": "Nov 17, 1963", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "34", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Nov 17, 1963", - "at": "@", - "fav": "Boston Patriots", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 1963", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Jets", - "sF": "9", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 1963", - "at": "@", - "fav": "Cleveland Browns", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 24, 1963", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "28", - "sU": "10", - "spread": "20", - "ou": null - }, - { - "date": "Nov 24, 1963", - "at": null, - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "16", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 1963", - "at": "@", - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "17", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Nov 24, 1963", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 1963", - "at": null, - "fav": "Chicago Bears", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 28, 1963", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "13", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Dec 1, 1963", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Dec 1, 1963", - "at": null, - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "34", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Dec 1, 1963", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Dec 1, 1963", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 1963", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Cleveland Browns", - "sF": "10", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Dec 1, 1963", - "at": null, - "fav": "Baltimore Colts", - "und": "Washington Redskins", - "sF": "36", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 1963", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "26", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 1963", - "at": "@", - "fav": "Boston Patriots", - "und": "Buffalo Bills", - "sF": "17", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Dec 1, 1963", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "0", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 1, 1963", - "at": "@", - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "27", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Dec 7, 1963", - "at": null, - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 8, 1963", - "at": "@", - "fav": "Baltimore Colts", - "und": "Minnesota Vikings", - "sF": "41", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 8, 1963", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "7", - "spread": "17", - "ou": null - }, - { - "date": "Dec 8, 1963", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 1963", - "at": null, - "fav": "Cleveland Browns", - "und": "Detroit Lions", - "sF": "10", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 1963", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "44", - "sU": "14", - "spread": "15", - "ou": null - }, - { - "date": "Dec 8, 1963", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 8, 1963", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "45", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 1963", - "at": null, - "fav": "Boston Patriots", - "und": "Houston Oilers", - "sF": "46", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Dec 8, 1963", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "52", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 8, 1963", - "at": null, - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "27", - "sU": "41", - "spread": "5", - "ou": null - }, - { - "date": "Dec 14, 1963", - "at": null, - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "17", - "spread": "16", - "ou": null - }, - { - "date": "Dec 15, 1963", - "at": "@", - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "19", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Dec 15, 1963", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "24", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 15, 1963", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "33", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 1963", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Dec 15, 1963", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "28", - "spread": "8", - "ou": null - }, - { - "date": "Dec 15, 1963", - "at": null, - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "27", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Dec 14, 1963", - "at": null, - "fav": "Boston Patriots", - "und": "Kansas City Chiefs", - "sF": "3", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Dec 14, 1963", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "19", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 15, 1963", - "at": null, - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "20", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 15, 1963", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "35", - "sU": "31", - "spread": "13", - "ou": null - }, - { - "date": "Dec 22, 1963", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "48", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Dec 22, 1963", - "at": "@", - "fav": "Oakland Raiders", - "und": "Houston Oilers", - "sF": "52", - "sU": "49", - "spread": "6", - "ou": null - }, - { - "date": "Dec 22, 1963", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "58", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Dec 28, 1963", - "at": "@", - "fav": "Buffalo Bills", - "und": "Boston Patriots", - "sF": "8", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 29, 1963", - "at": null, - "fav": "New York Giants", - "und": "Chicago Bears", - "sF": "10", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Jan 5, 1964", - "at": "@", - "fav": "San Diego Chargers", - "und": "Boston Patriots", - "sF": "51", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 12, 1964", - "at": "@", - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "30", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Sep 12, 1964", - "at": "@", - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "27", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Sep 13, 1964", - "at": "@", - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "34", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 13, 1964", - "at": "@", - "fav": "Oakland Raiders", - "und": "Boston Patriots", - "sF": "14", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 12, 1964", - "at": null, - "fav": "St Louis Cardinals", - "und": "Dallas Cowboys", - "sF": "16", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Sep 13, 1964", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "23", - "sU": "12", - "spread": "8", - "ou": null - }, - { - "date": "Sep 13, 1964", - "at": null, - "fav": "Baltimore Colts", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Sep 13, 1964", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "7", - "sU": "38", - "spread": "7", - "ou": null - }, - { - "date": "Sep 13, 1964", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Los Angeles Rams", - "sF": "14", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Sep 13, 1964", - "at": null, - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "26", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 13, 1964", - "at": null, - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "27", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Sep 19, 1964", - "at": "@", - "fav": "Houston Oilers", - "und": "Oakland Raiders", - "sF": "42", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Sep 20, 1964", - "at": "@", - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "30", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Sep 20, 1964", - "at": "@", - "fav": "San Diego Chargers", - "und": "Boston Patriots", - "sF": "28", - "sU": "33", - "spread": "9", - "ou": null - }, - { - "date": "Sep 19, 1964", - "at": null, - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "17", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 20, 1964", - "at": "@", - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "33", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Sep 20, 1964", - "at": "@", - "fav": "Green Bay Packers", - "und": "Baltimore Colts", - "sF": "20", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Sep 20, 1964", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "28", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Sep 20, 1964", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Sep 20, 1964", - "at": null, - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Sep 27, 1964", - "at": "@", - "fav": "Boston Patriots", - "und": "New York Jets", - "sF": "26", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 1964", - "at": null, - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "38", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 1964", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "21", - "sU": "9", - "spread": "1", - "ou": null - }, - { - "date": "Sep 25, 1964", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "13", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Sep 27, 1964", - "at": "@", - "fav": "Baltimore Colts", - "und": "Chicago Bears", - "sF": "52", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 1964", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Minnesota Vikings", - "sF": "22", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Sep 27, 1964", - "at": null, - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Sep 27, 1964", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Dallas Cowboys", - "sF": "23", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 27, 1964", - "at": null, - "fav": "St Louis Cardinals", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Sep 28, 1964", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "14", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 3, 1964", - "at": "@", - "fav": "Buffalo Bills", - "und": "Oakland Raiders", - "sF": "23", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Oct 3, 1964", - "at": null, - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "17", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 4, 1964", - "at": null, - "fav": "Boston Patriots", - "und": "Denver Broncos", - "sF": "39", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 4, 1964", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "28", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Oct 4, 1964", - "at": "@", - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "35", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Oct 4, 1964", - "at": "@", - "fav": "Cleveland Browns", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Oct 4, 1964", - "at": "@", - "fav": "Detroit Lions", - "und": "New York Giants", - "sF": "26", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Oct 4, 1964", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Oct 4, 1964", - "at": null, - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Oct 4, 1964", - "at": null, - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "23", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 9, 1964", - "at": "@", - "fav": "Boston Patriots", - "und": "San Diego Chargers", - "sF": "17", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Oct 10, 1964", - "at": "@", - "fav": "New York Jets", - "und": "Oakland Raiders", - "sF": "35", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Oct 11, 1964", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "27", - "sU": "33", - "spread": "12", - "ou": null - }, - { - "date": "Oct 11, 1964", - "at": null, - "fav": "Buffalo Bills", - "und": "Houston Oilers", - "sF": "48", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 10, 1964", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "7", - "sU": "23", - "spread": "13", - "ou": null - }, - { - "date": "Oct 11, 1964", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "38", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 11, 1964", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Oct 11, 1964", - "at": null, - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Oct 11, 1964", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "35", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Oct 12, 1964", - "at": "@", - "fav": "Baltimore Colts", - "und": "St Louis Cardinals", - "sF": "47", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Oct 16, 1964", - "at": "@", - "fav": "Boston Patriots", - "und": "Oakland Raiders", - "sF": "43", - "sU": "43", - "spread": "10", - "ou": null - }, - { - "date": "Oct 17, 1964", - "at": "@", - "fav": "New York Jets", - "und": "Houston Oilers", - "sF": "24", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 1964", - "at": null, - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "35", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Oct 18, 1964", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "42", - "sU": "14", - "spread": "15", - "ou": null - }, - { - "date": "Oct 18, 1964", - "at": "@", - "fav": "Baltimore Colts", - "und": "Green Bay Packers", - "sF": "24", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Oct 18, 1964", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "0", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 18, 1964", - "at": null, - "fav": "Cleveland Browns", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Oct 18, 1964", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "42", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 1964", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Pittsburgh Steelers", - "sF": "30", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 18, 1964", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 18, 1964", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "38", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Oct 23, 1964", - "at": "@", - "fav": "Boston Patriots", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Oct 24, 1964", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "34", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Oct 25, 1964", - "at": null, - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "20", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 1964", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "40", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Oct 25, 1964", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "42", - "sU": "20", - "spread": "11", - "ou": null - }, - { - "date": "Oct 25, 1964", - "at": null, - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "34", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 1964", - "at": "@", - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "17", - "sU": "27", - "spread": "11", - "ou": null - }, - { - "date": "Oct 25, 1964", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 1964", - "at": null, - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "22", - "spread": "5", - "ou": null - }, - { - "date": "Oct 25, 1964", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Dallas Cowboys", - "sF": "13", - "sU": "31", - "spread": "10", - "ou": null - }, - { - "date": "Oct 25, 1964", - "at": null, - "fav": "Chicago Bears", - "und": "Washington Redskins", - "sF": "20", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 1964", - "at": null, - "fav": "Boston Patriots", - "und": "New York Jets", - "sF": "14", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 1964", - "at": "@", - "fav": "Buffalo Bills", - "und": "Houston Oilers", - "sF": "24", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 1, 1964", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "49", - "sU": "39", - "spread": "14", - "ou": null - }, - { - "date": "Nov 1, 1964", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "31", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 1, 1964", - "at": "@", - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "37", - "sU": "7", - "spread": "16", - "ou": null - }, - { - "date": "Nov 1, 1964", - "at": "@", - "fav": "Chicago Bears", - "und": "Dallas Cowboys", - "sF": "10", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Nov 1, 1964", - "at": "@", - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "37", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 1, 1964", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "42", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Nov 1, 1964", - "at": null, - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "17", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Nov 1, 1964", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "10", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 1, 1964", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "30", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 6, 1964", - "at": "@", - "fav": "Boston Patriots", - "und": "Houston Oilers", - "sF": "25", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 1964", - "at": null, - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "31", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Nov 8, 1964", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "42", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 1964", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "20", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 8, 1964", - "at": null, - "fav": "Baltimore Colts", - "und": "Chicago Bears", - "sF": "40", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Nov 8, 1964", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "34", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Nov 8, 1964", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "30", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Nov 8, 1964", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 8, 1964", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Nov 8, 1964", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "21", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 1964", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Pittsburgh Steelers", - "sF": "34", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Nov 15, 1964", - "at": "@", - "fav": "Buffalo Bills", - "und": "Boston Patriots", - "sF": "28", - "sU": "36", - "spread": "8", - "ou": null - }, - { - "date": "Nov 15, 1964", - "at": null, - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "16", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 15, 1964", - "at": "@", - "fav": "Baltimore Colts", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Nov 15, 1964", - "at": "@", - "fav": "Cleveland Browns", - "und": "Detroit Lions", - "sF": "37", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 15, 1964", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 15, 1964", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "24", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Nov 15, 1964", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "0", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Nov 15, 1964", - "at": null, - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Nov 15, 1964", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "10", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 20, 1964", - "at": "@", - "fav": "Boston Patriots", - "und": "Denver Broncos", - "sF": "12", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Nov 22, 1964", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "28", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 1964", - "at": "@", - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "35", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 1964", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 1964", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 22, 1964", - "at": "@", - "fav": "Green Bay Packers", - "und": "Cleveland Browns", - "sF": "28", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 1964", - "at": null, - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Nov 22, 1964", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "44", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 1964", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "13", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 1964", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "28", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Nov 26, 1964", - "at": "@", - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "24", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 29, 1964", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "20", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Nov 29, 1964", - "at": null, - "fav": "Boston Patriots", - "und": "Houston Oilers", - "sF": "34", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 29, 1964", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "14", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 26, 1964", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 1964", - "at": "@", - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Nov 29, 1964", - "at": null, - "fav": "Green Bay Packers", - "und": "Dallas Cowboys", - "sF": "45", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Nov 29, 1964", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "34", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 29, 1964", - "at": null, - "fav": "St Louis Cardinals", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 29, 1964", - "at": null, - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Nov 29, 1964", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "36", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Dec 6, 1964", - "at": null, - "fav": "Boston Patriots", - "und": "Kansas City Chiefs", - "sF": "31", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 6, 1964", - "at": null, - "fav": "Buffalo Bills", - "und": "Oakland Raiders", - "sF": "13", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Dec 6, 1964", - "at": "@", - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "38", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Dec 5, 1964", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "17", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Dec 6, 1964", - "at": "@", - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "14", - "sU": "31", - "spread": "9", - "ou": null - }, - { - "date": "Dec 6, 1964", - "at": null, - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "30", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 6, 1964", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Dec 6, 1964", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "28", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 6, 1964", - "at": null, - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "19", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 1964", - "at": "@", - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "7", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 1964", - "at": null, - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "30", - "sU": "19", - "spread": "10", - "ou": null - }, - { - "date": "Dec 13, 1964", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "6", - "sU": "49", - "spread": "7", - "ou": null - }, - { - "date": "Dec 12, 1964", - "at": null, - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "52", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Dec 13, 1964", - "at": "@", - "fav": "Baltimore Colts", - "und": "Washington Redskins", - "sF": "45", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 13, 1964", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "41", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1964", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 13, 1964", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 1964", - "at": null, - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "24", - "spread": "11", - "ou": null - }, - { - "date": "Dec 13, 1964", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "36", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Dec 20, 1964", - "at": "@", - "fav": "Boston Patriots", - "und": "Buffalo Bills", - "sF": "14", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 20, 1964", - "at": null, - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "20", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Dec 26, 1964", - "at": "@", - "fav": "Buffalo Bills", - "und": "San Diego Chargers", - "sF": "20", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Dec 27, 1964", - "at": null, - "fav": "Baltimore Colts", - "und": "Cleveland Browns", - "sF": "0", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Sep 11, 1965", - "at": "@", - "fav": "Buffalo Bills", - "und": "Boston Patriots", - "sF": "24", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 12, 1965", - "at": "@", - "fav": "Houston Oilers", - "und": "New York Jets", - "sF": "27", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Sep 19, 1965", - "at": "@", - "fav": "Baltimore Colts", - "und": "Minnesota Vikings", - "sF": "35", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Sep 19, 1965", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "31", - "sU": "2", - "spread": "7", - "ou": null - }, - { - "date": "Sep 19, 1965", - "at": null, - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Sep 19, 1965", - "at": null, - "fav": "Green Bay Packers", - "und": "Pittsburgh Steelers", - "sF": "41", - "sU": "9", - "spread": "14", - "ou": null - }, - { - "date": "Sep 19, 1965", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "52", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 19, 1965", - "at": null, - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "17", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 19, 1965", - "at": null, - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "30", - "sU": "15", - "spread": "7", - "ou": null - }, - { - "date": "Sep 19, 1965", - "at": "@", - "fav": "Houston Oilers", - "und": "Boston Patriots", - "sF": "31", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 26, 1965", - "at": "@", - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "13", - "sU": "49", - "spread": "7", - "ou": null - }, - { - "date": "Sep 26, 1965", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "27", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 1965", - "at": "@", - "fav": "Green Bay Packers", - "und": "Baltimore Colts", - "sF": "20", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 26, 1965", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "30", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Sep 26, 1965", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "29", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Sep 26, 1965", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "14", - "sU": "16", - "spread": "11", - "ou": null - }, - { - "date": "Sep 26, 1965", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Sep 24, 1965", - "at": "@", - "fav": "Boston Patriots", - "und": "Denver Broncos", - "sF": "10", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Sep 26, 1965", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "33", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Sep 26, 1965", - "at": "@", - "fav": "Oakland Raiders", - "und": "Houston Oilers", - "sF": "21", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 26, 1965", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "10", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 1965", - "at": "@", - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Oct 3, 1965", - "at": "@", - "fav": "Detroit Lions", - "und": "Washington Redskins", - "sF": "14", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 3, 1965", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "23", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Oct 3, 1965", - "at": null, - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "38", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Oct 3, 1965", - "at": null, - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "35", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 3, 1965", - "at": null, - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 4, 1965", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "13", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 1965", - "at": "@", - "fav": "Buffalo Bills", - "und": "Oakland Raiders", - "sF": "17", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 1965", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Jets", - "sF": "16", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Oct 3, 1965", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Boston Patriots", - "sF": "27", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Oct 3, 1965", - "at": "@", - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "31", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 9, 1965", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "19", - "spread": "17", - "ou": null - }, - { - "date": "Oct 9, 1965", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "40", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Oct 10, 1965", - "at": "@", - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "31", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Oct 10, 1965", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Oct 10, 1965", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "35", - "spread": "7", - "ou": null - }, - { - "date": "Oct 10, 1965", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Oct 10, 1965", - "at": null, - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "37", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Oct 8, 1965", - "at": null, - "fav": "Oakland Raiders", - "und": "Boston Patriots", - "sF": "24", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Oct 10, 1965", - "at": null, - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "34", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Oct 10, 1965", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "31", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 17, 1965", - "at": "@", - "fav": "Cleveland Browns", - "und": "Dallas Cowboys", - "sF": "23", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 17, 1965", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "31", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Oct 17, 1965", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "37", - "sU": "45", - "spread": "7", - "ou": null - }, - { - "date": "Oct 17, 1965", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "27", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 1965", - "at": null, - "fav": "St Louis Cardinals", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Oct 17, 1965", - "at": null, - "fav": "Baltimore Colts", - "und": "Washington Redskins", - "sF": "38", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Oct 16, 1965", - "at": null, - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "24", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Oct 17, 1965", - "at": null, - "fav": "San Diego Chargers", - "und": "Boston Patriots", - "sF": "13", - "sU": "13", - "spread": "11", - "ou": null - }, - { - "date": "Oct 17, 1965", - "at": "@", - "fav": "Denver Broncos", - "und": "Houston Oilers", - "sF": "28", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 17, 1965", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "7", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 24, 1965", - "at": "@", - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "35", - "sU": "20", - "spread": "16", - "ou": null - }, - { - "date": "Oct 24, 1965", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "38", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 24, 1965", - "at": "@", - "fav": "Green Bay Packers", - "und": "Dallas Cowboys", - "sF": "13", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 1965", - "at": null, - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "38", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Oct 24, 1965", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Oct 24, 1965", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "20", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Oct 23, 1965", - "at": null, - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "34", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Oct 24, 1965", - "at": "@", - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "31", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 24, 1965", - "at": "@", - "fav": "Houston Oilers", - "und": "Kansas City Chiefs", - "sF": "38", - "sU": "36", - "spread": "2", - "ou": null - }, - { - "date": "Oct 24, 1965", - "at": "@", - "fav": "Oakland Raiders", - "und": "Boston Patriots", - "sF": "30", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Oct 31, 1965", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "10", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Oct 31, 1965", - "at": "@", - "fav": "Cleveland Browns", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Oct 31, 1965", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "7", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 1965", - "at": null, - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "10", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Oct 31, 1965", - "at": null, - "fav": "Dallas Cowboys", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "22", - "spread": "4", - "ou": null - }, - { - "date": "Oct 31, 1965", - "at": null, - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Oct 31, 1965", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Oct 31, 1965", - "at": "@", - "fav": "Buffalo Bills", - "und": "Houston Oilers", - "sF": "17", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Oct 31, 1965", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "14", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Oct 31, 1965", - "at": "@", - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "45", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 1965", - "at": "@", - "fav": "San Diego Chargers", - "und": "Boston Patriots", - "sF": "6", - "sU": "22", - "spread": "14", - "ou": null - }, - { - "date": "Nov 7, 1965", - "at": null, - "fav": "Baltimore Colts", - "und": "Chicago Bears", - "sF": "26", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 7, 1965", - "at": "@", - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "34", - "spread": "11", - "ou": null - }, - { - "date": "Nov 7, 1965", - "at": "@", - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "39", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 1965", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "7", - "sU": "12", - "spread": "12", - "ou": null - }, - { - "date": "Nov 7, 1965", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "13", - "spread": "12", - "ou": null - }, - { - "date": "Nov 7, 1965", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "7", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Nov 7, 1965", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Nov 7, 1965", - "at": null, - "fav": "Buffalo Bills", - "und": "Boston Patriots", - "sF": "23", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 1965", - "at": null, - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "35", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Nov 7, 1965", - "at": "@", - "fav": "Houston Oilers", - "und": "Oakland Raiders", - "sF": "21", - "sU": "33", - "spread": "4", - "ou": null - }, - { - "date": "Nov 7, 1965", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "10", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 14, 1965", - "at": "@", - "fav": "Chicago Bears", - "und": "St Louis Cardinals", - "sF": "34", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 14, 1965", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "34", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Nov 14, 1965", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 14, 1965", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 14, 1965", - "at": "@", - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "6", - "sU": "3", - "spread": "12", - "ou": null - }, - { - "date": "Nov 14, 1965", - "at": null, - "fav": "Baltimore Colts", - "und": "Minnesota Vikings", - "sF": "41", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 14, 1965", - "at": null, - "fav": "New York Jets", - "und": "Boston Patriots", - "sF": "30", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 14, 1965", - "at": "@", - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "21", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Nov 14, 1965", - "at": null, - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "7", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 14, 1965", - "at": "@", - "fav": "Oakland Raiders", - "und": "Buffalo Bills", - "sF": "14", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 21, 1965", - "at": "@", - "fav": "Baltimore Colts", - "und": "Philadelphia Eagles", - "sF": "34", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Nov 21, 1965", - "at": null, - "fav": "Cleveland Browns", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 21, 1965", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "17", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 21, 1965", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "38", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Nov 21, 1965", - "at": null, - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "31", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Nov 21, 1965", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 1965", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "15", - "sU": "28", - "spread": "9", - "ou": null - }, - { - "date": "Nov 21, 1965", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Boston Patriots", - "sF": "10", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 1965", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "28", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 1965", - "at": "@", - "fav": "New York Jets", - "und": "Houston Oilers", - "sF": "41", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 25, 1965", - "at": null, - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "24", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Nov 28, 1965", - "at": null, - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "10", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Nov 28, 1965", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "45", - "spread": "5", - "ou": null - }, - { - "date": "Nov 28, 1965", - "at": null, - "fav": "Chicago Bears", - "und": "New York Giants", - "sF": "35", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Nov 28, 1965", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "42", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Nov 28, 1965", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Nov 28, 1965", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "34", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 25, 1965", - "at": "@", - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "20", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 1965", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "52", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Nov 28, 1965", - "at": "@", - "fav": "New York Jets", - "und": "Boston Patriots", - "sF": "23", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Dec 5, 1965", - "at": "@", - "fav": "Baltimore Colts", - "und": "Chicago Bears", - "sF": "0", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 1965", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "24", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Dec 5, 1965", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 1965", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "35", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 1965", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "19", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 1965", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "17", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 1965", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Los Angeles Rams", - "sF": "3", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 4, 1965", - "at": "@", - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "38", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Dec 5, 1965", - "at": null, - "fav": "Buffalo Bills", - "und": "Houston Oilers", - "sF": "29", - "sU": "18", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 1965", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "24", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Dec 11, 1965", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 12, 1965", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "61", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Dec 12, 1965", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "7", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 1965", - "at": null, - "fav": "Cleveland Browns", - "und": "Los Angeles Rams", - "sF": "7", - "sU": "42", - "spread": "2", - "ou": null - }, - { - "date": "Dec 12, 1965", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "47", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 12, 1965", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "10", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Dec 12, 1965", - "at": "@", - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "34", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 1965", - "at": null, - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "37", - "sU": "26", - "spread": "12", - "ou": null - }, - { - "date": "Dec 12, 1965", - "at": "@", - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "24", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 19, 1965", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Dec 19, 1965", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 1965", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Detroit Lions", - "sF": "28", - "sU": "35", - "spread": "6", - "ou": null - }, - { - "date": "Dec 19, 1965", - "at": null, - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 19, 1965", - "at": null, - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 19, 1965", - "at": "@", - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "35", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 18, 1965", - "at": "@", - "fav": "Boston Patriots", - "und": "Houston Oilers", - "sF": "42", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 19, 1965", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "45", - "sU": "35", - "spread": "9", - "ou": null - }, - { - "date": "Dec 19, 1965", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "12", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 19, 1965", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "24", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Dec 26, 1965", - "at": "@", - "fav": "Green Bay Packers", - "und": "Baltimore Colts", - "sF": "13", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Dec 26, 1965", - "at": "@", - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "0", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Jan 2, 1966", - "at": "@", - "fav": "Green Bay Packers", - "und": "Cleveland Browns", - "sF": "23", - "sU": "12", - "spread": "2", - "ou": null - }, - { - "date": "Sep 2, 1966", - "at": null, - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "23", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Sep 3, 1966", - "at": "@", - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "45", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 4, 1966", - "at": "@", - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "27", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 10, 1966", - "at": "@", - "fav": "Green Bay Packers", - "und": "Baltimore Colts", - "sF": "24", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Sep 11, 1966", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "19", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Sep 11, 1966", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "3", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Sep 11, 1966", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Giants", - "sF": "34", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Sep 11, 1966", - "at": null, - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 11, 1966", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Sep 11, 1966", - "at": null, - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "38", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 9, 1966", - "at": null, - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "19", - "sU": "14", - "spread": "16", - "ou": null - }, - { - "date": "Sep 10, 1966", - "at": "@", - "fav": "Houston Oilers", - "und": "Oakland Raiders", - "sF": "31", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 1966", - "at": "@", - "fav": "San Diego Chargers", - "und": "Boston Patriots", - "sF": "24", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Sep 11, 1966", - "at": "@", - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "42", - "spread": "2", - "ou": null - }, - { - "date": "Sep 16, 1966", - "at": null, - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "17", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Sep 18, 1966", - "at": null, - "fav": "Green Bay Packers", - "und": "Cleveland Browns", - "sF": "21", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 18, 1966", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "52", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Sep 18, 1966", - "at": null, - "fav": "Baltimore Colts", - "und": "Minnesota Vikings", - "sF": "38", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Sep 18, 1966", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Sep 18, 1966", - "at": null, - "fav": "Detroit Lions", - "und": "Pittsburgh Steelers", - "sF": "3", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 1966", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "23", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 18, 1966", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "58", - "sU": "24", - "spread": "20", - "ou": null - }, - { - "date": "Sep 18, 1966", - "at": null, - "fav": "Boston Patriots", - "und": "Denver Broncos", - "sF": "24", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 18, 1966", - "at": null, - "fav": "Houston Oilers", - "und": "New York Jets", - "sF": "13", - "sU": "52", - "spread": "1", - "ou": null - }, - { - "date": "Sep 18, 1966", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "32", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 1966", - "at": "@", - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "36", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Sep 25, 1966", - "at": "@", - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "28", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 1966", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 25, 1966", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Sep 25, 1966", - "at": "@", - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Sep 25, 1966", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "35", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Sep 25, 1966", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "27", - "sU": "33", - "spread": "15", - "ou": null - }, - { - "date": "Sep 25, 1966", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Boston Patriots", - "sF": "43", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Sep 25, 1966", - "at": "@", - "fav": "Buffalo Bills", - "und": "Houston Oilers", - "sF": "27", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 1966", - "at": null, - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "16", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Sep 25, 1966", - "at": null, - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "29", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 30, 1966", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Oct 2, 1966", - "at": null, - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "47", - "sU": "14", - "spread": "16", - "ou": null - }, - { - "date": "Oct 2, 1966", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "23", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Oct 2, 1966", - "at": null, - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 2, 1966", - "at": null, - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "28", - "sU": "7", - "spread": "16", - "ou": null - }, - { - "date": "Oct 2, 1966", - "at": null, - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "41", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 1966", - "at": "@", - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Oct 2, 1966", - "at": null, - "fav": "New York Jets", - "und": "Boston Patriots", - "sF": "24", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 2, 1966", - "at": null, - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "38", - "sU": "40", - "spread": "10", - "ou": null - }, - { - "date": "Oct 2, 1966", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "14", - "sU": "29", - "spread": "13", - "ou": null - }, - { - "date": "Oct 2, 1966", - "at": "@", - "fav": "San Diego Chargers", - "und": "Miami Dolphins", - "sF": "44", - "sU": "10", - "spread": "26", - "ou": null - }, - { - "date": "Oct 8, 1966", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "41", - "sU": "10", - "spread": "16", - "ou": null - }, - { - "date": "Oct 9, 1966", - "at": null, - "fav": "Baltimore Colts", - "und": "Chicago Bears", - "sF": "17", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Oct 9, 1966", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "56", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Oct 9, 1966", - "at": null, - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "14", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 1966", - "at": null, - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Oct 9, 1966", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "24", - "sU": "19", - "spread": "20", - "ou": null - }, - { - "date": "Oct 9, 1966", - "at": "@", - "fav": "Washington Redskins", - "und": "Atlanta Falcons", - "sF": "33", - "sU": "20", - "spread": "16", - "ou": null - }, - { - "date": "Oct 8, 1966", - "at": "@", - "fav": "Buffalo Bills", - "und": "Boston Patriots", - "sF": "10", - "sU": "20", - "spread": "12", - "ou": null - }, - { - "date": "Oct 8, 1966", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "37", - "sU": "10", - "spread": "21", - "ou": null - }, - { - "date": "Oct 8, 1966", - "at": null, - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "16", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 1966", - "at": "@", - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "21", - "sU": "10", - "spread": "24", - "ou": null - }, - { - "date": "Oct 16, 1966", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "44", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Oct 16, 1966", - "at": "@", - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "45", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Oct 16, 1966", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "17", - "sU": "0", - "spread": "1", - "ou": null - }, - { - "date": "Oct 16, 1966", - "at": null, - "fav": "Los Angeles Rams", - "und": "Minnesota Vikings", - "sF": "7", - "sU": "35", - "spread": "1", - "ou": null - }, - { - "date": "Oct 16, 1966", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "10", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 16, 1966", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "31", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 1966", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "10", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 16, 1966", - "at": null, - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "17", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 16, 1966", - "at": null, - "fav": "New York Jets", - "und": "Houston Oilers", - "sF": "0", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Oct 16, 1966", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "13", - "sU": "34", - "spread": "14", - "ou": null - }, - { - "date": "Oct 16, 1966", - "at": null, - "fav": "Denver Broncos", - "und": "Miami Dolphins", - "sF": "7", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 1966", - "at": "@", - "fav": "Baltimore Colts", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 23, 1966", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "17", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 23, 1966", - "at": null, - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "21", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 1966", - "at": "@", - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "56", - "sU": "3", - "spread": "26", - "ou": null - }, - { - "date": "Oct 23, 1966", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "31", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 1966", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "27", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Oct 23, 1966", - "at": null, - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "20", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 1966", - "at": null, - "fav": "San Diego Chargers", - "und": "Boston Patriots", - "sF": "17", - "sU": "35", - "spread": "6", - "ou": null - }, - { - "date": "Oct 23, 1966", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "56", - "sU": "10", - "spread": "17", - "ou": null - }, - { - "date": "Oct 23, 1966", - "at": "@", - "fav": "Houston Oilers", - "und": "Miami Dolphins", - "sF": "13", - "sU": "20", - "spread": "20", - "ou": null - }, - { - "date": "Oct 23, 1966", - "at": "@", - "fav": "New York Jets", - "und": "Oakland Raiders", - "sF": "21", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 30, 1966", - "at": null, - "fav": "Cleveland Browns", - "und": "Atlanta Falcons", - "sF": "49", - "sU": "17", - "spread": "23", - "ou": null - }, - { - "date": "Oct 30, 1966", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Pittsburgh Steelers", - "sF": "52", - "sU": "21", - "spread": "20", - "ou": null - }, - { - "date": "Oct 30, 1966", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "31", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Oct 30, 1966", - "at": null, - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "17", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Oct 30, 1966", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "28", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Oct 30, 1966", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "13", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 1966", - "at": "@", - "fav": "Boston Patriots", - "und": "Oakland Raiders", - "sF": "24", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 1966", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "48", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 30, 1966", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "23", - "sU": "33", - "spread": "1", - "ou": null - }, - { - "date": "Oct 30, 1966", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "24", - "sU": "17", - "spread": "21", - "ou": null - }, - { - "date": "Nov 6, 1966", - "at": "@", - "fav": "Baltimore Colts", - "und": "Washington Redskins", - "sF": "37", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Nov 6, 1966", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "10", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Nov 6, 1966", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Nov 6, 1966", - "at": null, - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "20", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Nov 6, 1966", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "24", - "spread": "15", - "ou": null - }, - { - "date": "Nov 6, 1966", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "6", - "sU": "16", - "spread": "16", - "ou": null - }, - { - "date": "Nov 6, 1966", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "13", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1966", - "at": "@", - "fav": "Boston Patriots", - "und": "Denver Broncos", - "sF": "10", - "sU": "17", - "spread": "17", - "ou": null - }, - { - "date": "Nov 6, 1966", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "24", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1966", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "29", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Nov 6, 1966", - "at": "@", - "fav": "Oakland Raiders", - "und": "Houston Oilers", - "sF": "38", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Nov 13, 1966", - "at": null, - "fav": "Baltimore Colts", - "und": "Atlanta Falcons", - "sF": "19", - "sU": "7", - "spread": "28", - "ou": null - }, - { - "date": "Nov 13, 1966", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "30", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Nov 13, 1966", - "at": "@", - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 13, 1966", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New York Giants", - "sF": "55", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Nov 13, 1966", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "31", - "sU": "32", - "spread": "13", - "ou": null - }, - { - "date": "Nov 13, 1966", - "at": null, - "fav": "St Louis Cardinals", - "und": "Pittsburgh Steelers", - "sF": "9", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Nov 13, 1966", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "31", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 1966", - "at": "@", - "fav": "Boston Patriots", - "und": "Houston Oilers", - "sF": "27", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Nov 13, 1966", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "14", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Nov 13, 1966", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Miami Dolphins", - "sF": "34", - "sU": "16", - "spread": "23", - "ou": null - }, - { - "date": "Nov 13, 1966", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "19", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 1966", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "14", - "sU": "3", - "spread": "11", - "ou": null - }, - { - "date": "Nov 20, 1966", - "at": null, - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "14", - "sU": "20", - "spread": "11", - "ou": null - }, - { - "date": "Nov 20, 1966", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "13", - "sU": "6", - "spread": "12", - "ou": null - }, - { - "date": "Nov 20, 1966", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Nov 20, 1966", - "at": "@", - "fav": "New York Giants", - "und": "Atlanta Falcons", - "sF": "16", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Nov 20, 1966", - "at": null, - "fav": "Dallas Cowboys", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 20, 1966", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "34", - "sU": "35", - "spread": "7", - "ou": null - }, - { - "date": "Nov 20, 1966", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "17", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Nov 20, 1966", - "at": null, - "fav": "Buffalo Bills", - "und": "Houston Oilers", - "sF": "42", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Nov 20, 1966", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Boston Patriots", - "sF": "27", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Nov 20, 1966", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "30", - "sU": "13", - "spread": "15", - "ou": null - }, - { - "date": "Nov 24, 1966", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "26", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 1966", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "41", - "spread": "13", - "ou": null - }, - { - "date": "Nov 27, 1966", - "at": "@", - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "7", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 27, 1966", - "at": "@", - "fav": "Chicago Bears", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "6", - "spread": "17", - "ou": null - }, - { - "date": "Nov 27, 1966", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Nov 27, 1966", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Pittsburgh Steelers", - "sF": "6", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Nov 27, 1966", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "72", - "sU": "41", - "spread": "17", - "ou": null - }, - { - "date": "Nov 27, 1966", - "at": null, - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "17", - "sU": "20", - "spread": "12", - "ou": null - }, - { - "date": "Nov 27, 1966", - "at": null, - "fav": "Boston Patriots", - "und": "Miami Dolphins", - "sF": "20", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Nov 27, 1966", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "32", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 4, 1966", - "at": "@", - "fav": "Baltimore Colts", - "und": "Chicago Bears", - "sF": "21", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Dec 4, 1966", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "49", - "sU": "40", - "spread": "25", - "ou": null - }, - { - "date": "Dec 4, 1966", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "31", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Dec 4, 1966", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Dec 4, 1966", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "23", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Dec 4, 1966", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "20", - "spread": "16", - "ou": null - }, - { - "date": "Dec 4, 1966", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Dec 3, 1966", - "at": "@", - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "28", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Dec 4, 1966", - "at": null, - "fav": "Buffalo Bills", - "und": "Boston Patriots", - "sF": "3", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 4, 1966", - "at": "@", - "fav": "Denver Broncos", - "und": "Miami Dolphins", - "sF": "17", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 4, 1966", - "at": null, - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "28", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Dec 10, 1966", - "at": null, - "fav": "Green Bay Packers", - "und": "Baltimore Colts", - "sF": "14", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 1966", - "at": null, - "fav": "St Louis Cardinals", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Dec 11, 1966", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "31", - "sU": "34", - "spread": "13", - "ou": null - }, - { - "date": "Dec 11, 1966", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New York Giants", - "sF": "47", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Dec 11, 1966", - "at": null, - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Dec 11, 1966", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "41", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Dec 11, 1966", - "at": null, - "fav": "Boston Patriots", - "und": "Houston Oilers", - "sF": "38", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 11, 1966", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Miami Dolphins", - "sF": "19", - "sU": "18", - "spread": "18", - "ou": null - }, - { - "date": "Dec 11, 1966", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "28", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Dec 11, 1966", - "at": "@", - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "42", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 1966", - "at": null, - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "38", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 18, 1966", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Atlanta Falcons", - "sF": "57", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Dec 18, 1966", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "28", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 1966", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "23", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Dec 18, 1966", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "17", - "sU": "7", - "spread": "23", - "ou": null - }, - { - "date": "Dec 18, 1966", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Baltimore Colts", - "sF": "14", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 1966", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "37", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 1966", - "at": null, - "fav": "Boston Patriots", - "und": "New York Jets", - "sF": "28", - "sU": "38", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 1966", - "at": "@", - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "38", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Dec 18, 1966", - "at": "@", - "fav": "Miami Dolphins", - "und": "Houston Oilers", - "sF": "29", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 1966", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "27", - "spread": "14", - "ou": null - }, - { - "date": "Jan 8, 1967", - "at": "N", - "fav": "Baltimore Colts", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Jan 1, 1967", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "31", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 1967", - "at": null, - "fav": "Green Bay Packers", - "und": "Dallas Cowboys", - "sF": "34", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Jan 15, 1967", - "at": "N", - "fav": "Green Bay Packers", - "und": "Kansas City Chiefs", - "sF": "35", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Sep 3, 1967", - "at": "@", - "fav": "Denver Broncos", - "und": "Boston Patriots", - "sF": "26", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 1967", - "at": "@", - "fav": "Baltimore Colts", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "31", - "spread": "17", - "ou": null - }, - { - "date": "Sep 17, 1967", - "at": "@", - "fav": "Cleveland Browns", - "und": "Dallas Cowboys", - "sF": "14", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 1967", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "17", - "sU": "17", - "spread": "14", - "ou": null - }, - { - "date": "Sep 17, 1967", - "at": null, - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 1967", - "at": null, - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "27", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Sep 17, 1967", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 1967", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Chicago Bears", - "sF": "41", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Sep 17, 1967", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "20", - "sU": "37", - "spread": "4", - "ou": null - }, - { - "date": "Sep 9, 1967", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "25", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Sep 9, 1967", - "at": "@", - "fav": "San Diego Chargers", - "und": "Boston Patriots", - "sF": "28", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Sep 10, 1967", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "20", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Sep 10, 1967", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "51", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Sep 22, 1967", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Minnesota Vikings", - "sF": "39", - "sU": "3", - "spread": "15", - "ou": null - }, - { - "date": "Sep 24, 1967", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "38", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Sep 24, 1967", - "at": null, - "fav": "Cleveland Browns", - "und": "Detroit Lions", - "sF": "14", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Sep 24, 1967", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "13", - "sU": "10", - "spread": "15", - "ou": null - }, - { - "date": "Sep 24, 1967", - "at": null, - "fav": "Washington Redskins", - "und": "New Orleans Saints", - "sF": "30", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 1967", - "at": null, - "fav": "Baltimore Colts", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Sep 24, 1967", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "St Louis Cardinals", - "sF": "14", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Sep 24, 1967", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Sep 17, 1967", - "at": "@", - "fav": "Buffalo Bills", - "und": "Houston Oilers", - "sF": "3", - "sU": "20", - "spread": "11", - "ou": null - }, - { - "date": "Sep 17, 1967", - "at": "@", - "fav": "Miami Dolphins", - "und": "Denver Broncos", - "sF": "35", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 1967", - "at": "@", - "fav": "Oakland Raiders", - "und": "Boston Patriots", - "sF": "35", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Oct 1, 1967", - "at": "@", - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "41", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Oct 1, 1967", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Los Angeles Rams", - "sF": "13", - "sU": "35", - "spread": "1", - "ou": null - }, - { - "date": "Oct 1, 1967", - "at": "@", - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "0", - "spread": "20", - "ou": null - }, - { - "date": "Oct 1, 1967", - "at": null, - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 1967", - "at": null, - "fav": "Cleveland Browns", - "und": "New Orleans Saints", - "sF": "42", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Oct 1, 1967", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "34", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 1967", - "at": null, - "fav": "Detroit Lions", - "und": "St Louis Cardinals", - "sF": "28", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Oct 1, 1967", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "38", - "sU": "34", - "spread": "10", - "ou": null - }, - { - "date": "Sep 24, 1967", - "at": "@", - "fav": "Buffalo Bills", - "und": "Boston Patriots", - "sF": "0", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Sep 24, 1967", - "at": null, - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "38", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 1967", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Miami Dolphins", - "sF": "24", - "sU": "0", - "spread": "12", - "ou": null - }, - { - "date": "Sep 24, 1967", - "at": "@", - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "13", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 1967", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Oct 8, 1967", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Oct 8, 1967", - "at": null, - "fav": "Baltimore Colts", - "und": "Chicago Bears", - "sF": "24", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Oct 8, 1967", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "27", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 8, 1967", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "27", - "spread": "14", - "ou": null - }, - { - "date": "Oct 8, 1967", - "at": null, - "fav": "St Louis Cardinals", - "und": "Minnesota Vikings", - "sF": "34", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 8, 1967", - "at": "@", - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "27", - "sU": "21", - "spread": "12", - "ou": null - }, - { - "date": "Oct 8, 1967", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 1967", - "at": "@", - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "10", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Oct 1, 1967", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "29", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Oct 1, 1967", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "21", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Oct 15, 1967", - "at": null, - "fav": "Washington Redskins", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Oct 15, 1967", - "at": "@", - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Oct 15, 1967", - "at": "@", - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "20", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Oct 15, 1967", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "14", - "sU": "10", - "spread": "21", - "ou": null - }, - { - "date": "Oct 15, 1967", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "7", - "sU": "10", - "spread": "20", - "ou": null - }, - { - "date": "Oct 15, 1967", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 15, 1967", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Giants", - "sF": "24", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 7, 1967", - "at": null, - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "14", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 1967", - "at": "@", - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "16", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 8, 1967", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Miami Dolphins", - "sF": "41", - "sU": "0", - "spread": "20", - "ou": null - }, - { - "date": "Oct 8, 1967", - "at": "@", - "fav": "San Diego Chargers", - "und": "Boston Patriots", - "sF": "31", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 1967", - "at": "@", - "fav": "Cleveland Browns", - "und": "Chicago Bears", - "sF": "24", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 1967", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "3", - "spread": "12", - "ou": null - }, - { - "date": "Oct 22, 1967", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Washington Redskins", - "sF": "28", - "sU": "28", - "spread": "13", - "ou": null - }, - { - "date": "Oct 22, 1967", - "at": null, - "fav": "Baltimore Colts", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Oct 22, 1967", - "at": null, - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "48", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Oct 22, 1967", - "at": null, - "fav": "Dallas Cowboys", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 22, 1967", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "27", - "sU": "13", - "spread": "15", - "ou": null - }, - { - "date": "Oct 22, 1967", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "48", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 15, 1967", - "at": "@", - "fav": "Boston Patriots", - "und": "Miami Dolphins", - "sF": "41", - "sU": "10", - "spread": "17", - "ou": null - }, - { - "date": "Oct 15, 1967", - "at": null, - "fav": "Oakland Raiders", - "und": "Buffalo Bills", - "sF": "24", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 15, 1967", - "at": "@", - "fav": "New York Jets", - "und": "Houston Oilers", - "sF": "28", - "sU": "28", - "spread": "13", - "ou": null - }, - { - "date": "Oct 29, 1967", - "at": null, - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Oct 29, 1967", - "at": null, - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "28", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 29, 1967", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New Orleans Saints", - "sF": "14", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 1967", - "at": null, - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "34", - "sU": "38", - "spread": "7", - "ou": null - }, - { - "date": "Oct 29, 1967", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 1967", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "3", - "sU": "45", - "spread": "7", - "ou": null - }, - { - "date": "Oct 29, 1967", - "at": null, - "fav": "Baltimore Colts", - "und": "Washington Redskins", - "sF": "17", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Oct 30, 1967", - "at": null, - "fav": "Green Bay Packers", - "und": "St Louis Cardinals", - "sF": "31", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Oct 22, 1967", - "at": "@", - "fav": "Boston Patriots", - "und": "Oakland Raiders", - "sF": "14", - "sU": "48", - "spread": "2", - "ou": null - }, - { - "date": "Oct 22, 1967", - "at": null, - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "38", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Oct 22, 1967", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "19", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Oct 22, 1967", - "at": null, - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "33", - "sU": "14", - "spread": "17", - "ou": null - }, - { - "date": "Nov 5, 1967", - "at": "@", - "fav": "Baltimore Colts", - "und": "Green Bay Packers", - "sF": "13", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 5, 1967", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "37", - "sU": "7", - "spread": "16", - "ou": null - }, - { - "date": "Nov 5, 1967", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "13", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Nov 5, 1967", - "at": null, - "fav": "New York Giants", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 1967", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New Orleans Saints", - "sF": "24", - "sU": "31", - "spread": "8", - "ou": null - }, - { - "date": "Nov 5, 1967", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "34", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Nov 5, 1967", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Oct 29, 1967", - "at": "@", - "fav": "Houston Oilers", - "und": "Buffalo Bills", - "sF": "10", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 1967", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "52", - "sU": "9", - "spread": "19", - "ou": null - }, - { - "date": "Oct 29, 1967", - "at": "@", - "fav": "New York Jets", - "und": "Boston Patriots", - "sF": "30", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Oct 29, 1967", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "51", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 12, 1967", - "at": null, - "fav": "Baltimore Colts", - "und": "Atlanta Falcons", - "sF": "49", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Nov 12, 1967", - "at": "@", - "fav": "Chicago Bears", - "und": "New York Giants", - "sF": "34", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 12, 1967", - "at": "@", - "fav": "Green Bay Packers", - "und": "Cleveland Browns", - "sF": "55", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 12, 1967", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Philadelphia Eagles", - "sF": "33", - "sU": "17", - "spread": "14", - "ou": null - }, - { - "date": "Nov 12, 1967", - "at": null, - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "10", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 12, 1967", - "at": null, - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "27", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Nov 12, 1967", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Pittsburgh Steelers", - "sF": "14", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Nov 12, 1967", - "at": "@", - "fav": "Washington Redskins", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Nov 5, 1967", - "at": "@", - "fav": "Boston Patriots", - "und": "Houston Oilers", - "sF": "18", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 5, 1967", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "35", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Nov 5, 1967", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "21", - "sU": "17", - "spread": "16", - "ou": null - }, - { - "date": "Nov 5, 1967", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "42", - "sU": "18", - "spread": "8", - "ou": null - }, - { - "date": "Nov 19, 1967", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "3", - "spread": "19", - "ou": null - }, - { - "date": "Nov 19, 1967", - "at": "@", - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "41", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Nov 19, 1967", - "at": "@", - "fav": "Chicago Bears", - "und": "St Louis Cardinals", - "sF": "30", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Nov 19, 1967", - "at": "@", - "fav": "Cleveland Browns", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Nov 19, 1967", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "20", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Nov 19, 1967", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "13", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Nov 19, 1967", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "28", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 19, 1967", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New Orleans Saints", - "sF": "48", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Nov 12, 1967", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Boston Patriots", - "sF": "33", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 12, 1967", - "at": null, - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "20", - "sU": "18", - "spread": "7", - "ou": null - }, - { - "date": "Nov 12, 1967", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "20", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 12, 1967", - "at": "@", - "fav": "San Diego Chargers", - "und": "Miami Dolphins", - "sF": "24", - "sU": "0", - "spread": "21", - "ou": null - }, - { - "date": "Nov 23, 1967", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "46", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 23, 1967", - "at": null, - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "31", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 26, 1967", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "17", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Nov 26, 1967", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "42", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1967", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 26, 1967", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "7", - "sU": "44", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1967", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1967", - "at": null, - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "26", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Nov 19, 1967", - "at": null, - "fav": "New York Jets", - "und": "Boston Patriots", - "sF": "29", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 19, 1967", - "at": "@", - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "20", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Nov 19, 1967", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "16", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Nov 19, 1967", - "at": "@", - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "31", - "sU": "17", - "spread": "27", - "ou": null - }, - { - "date": "Dec 3, 1967", - "at": "@", - "fav": "Baltimore Colts", - "und": "Dallas Cowboys", - "sF": "23", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 3, 1967", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "24", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 3, 1967", - "at": "@", - "fav": "Detroit Lions", - "und": "Pittsburgh Steelers", - "sF": "14", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 3, 1967", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "3", - "spread": "24", - "ou": null - }, - { - "date": "Dec 3, 1967", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "30", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 3, 1967", - "at": null, - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "28", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 3, 1967", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New Orleans Saints", - "sF": "31", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Dec 3, 1967", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "35", - "sU": "35", - "spread": "6", - "ou": null - }, - { - "date": "Nov 23, 1967", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "22", - "sU": "44", - "spread": "6", - "ou": null - }, - { - "date": "Nov 23, 1967", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "24", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Nov 26, 1967", - "at": "@", - "fav": "Houston Oilers", - "und": "Boston Patriots", - "sF": "27", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Nov 26, 1967", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "14", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 9, 1967", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "27", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Dec 10, 1967", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Dec 10, 1967", - "at": "@", - "fav": "Baltimore Colts", - "und": "New Orleans Saints", - "sF": "30", - "sU": "10", - "spread": "20", - "ou": null - }, - { - "date": "Dec 10, 1967", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "10", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Dec 10, 1967", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 10, 1967", - "at": "@", - "fav": "New York Giants", - "und": "Detroit Lions", - "sF": "7", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Dec 10, 1967", - "at": null, - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "15", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 10, 1967", - "at": null, - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "20", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Dec 3, 1967", - "at": "@", - "fav": "Houston Oilers", - "und": "Miami Dolphins", - "sF": "17", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Dec 3, 1967", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "23", - "sU": "13", - "spread": "15", - "ou": null - }, - { - "date": "Dec 3, 1967", - "at": "@", - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "24", - "sU": "33", - "spread": "14", - "ou": null - }, - { - "date": "Dec 3, 1967", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "41", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Dec 16, 1967", - "at": null, - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "16", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 17, 1967", - "at": null, - "fav": "Chicago Bears", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 17, 1967", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Dec 17, 1967", - "at": "@", - "fav": "Green Bay Packers", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Dec 17, 1967", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Baltimore Colts", - "sF": "34", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Dec 17, 1967", - "at": "@", - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "37", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Dec 17, 1967", - "at": "@", - "fav": "Washington Redskins", - "und": "New Orleans Saints", - "sF": "14", - "sU": "30", - "spread": "13", - "ou": null - }, - { - "date": "Dec 9, 1967", - "at": "@", - "fav": "Boston Patriots", - "und": "Buffalo Bills", - "sF": "16", - "sU": "44", - "spread": "4", - "ou": null - }, - { - "date": "Dec 10, 1967", - "at": null, - "fav": "Oakland Raiders", - "und": "Houston Oilers", - "sF": "19", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 10, 1967", - "at": null, - "fav": "San Diego Chargers", - "und": "Miami Dolphins", - "sF": "24", - "sU": "41", - "spread": "12", - "ou": null - }, - { - "date": "Dec 10, 1967", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "21", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 16, 1967", - "at": "@", - "fav": "Houston Oilers", - "und": "San Diego Chargers", - "sF": "24", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 1967", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "38", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Dec 17, 1967", - "at": "@", - "fav": "Miami Dolphins", - "und": "Boston Patriots", - "sF": "41", - "sU": "32", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 1967", - "at": "@", - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "38", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Dec 23, 1967", - "at": null, - "fav": "Houston Oilers", - "und": "Miami Dolphins", - "sF": "41", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 24, 1967", - "at": "@", - "fav": "Oakland Raiders", - "und": "Buffalo Bills", - "sF": "28", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 23, 1967", - "at": null, - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "7", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 1967", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "52", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Dec 31, 1967", - "at": "@", - "fav": "Green Bay Packers", - "und": "Dallas Cowboys", - "sF": "21", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 31, 1967", - "at": "@", - "fav": "Oakland Raiders", - "und": "Houston Oilers", - "sF": "40", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Jan 14, 1968", - "at": "N", - "fav": "Green Bay Packers", - "und": "Oakland Raiders", - "sF": "33", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Sep 6, 1968", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "29", - "sU": "13", - "spread": "15", - "ou": null - }, - { - "date": "Sep 8, 1968", - "at": "@", - "fav": "Buffalo Bills", - "und": "Boston Patriots", - "sF": "7", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Sep 9, 1968", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "26", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 1968", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "47", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Sep 15, 1968", - "at": "@", - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Sep 15, 1968", - "at": "@", - "fav": "Chicago Bears", - "und": "Washington Redskins", - "sF": "28", - "sU": "38", - "spread": "8", - "ou": null - }, - { - "date": "Sep 15, 1968", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "59", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Sep 15, 1968", - "at": "@", - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "30", - "sU": "13", - "spread": "17", - "ou": null - }, - { - "date": "Sep 15, 1968", - "at": null, - "fav": "Cleveland Browns", - "und": "New Orleans Saints", - "sF": "24", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 15, 1968", - "at": null, - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "34", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 16, 1968", - "at": null, - "fav": "Los Angeles Rams", - "und": "St Louis Cardinals", - "sF": "24", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Sep 14, 1968", - "at": null, - "fav": "Houston Oilers", - "und": "Miami Dolphins", - "sF": "24", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Sep 15, 1968", - "at": null, - "fav": "Oakland Raiders", - "und": "Buffalo Bills", - "sF": "48", - "sU": "6", - "spread": "8", - "ou": null - }, - { - "date": "Sep 15, 1968", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Denver Broncos", - "sF": "24", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Sep 15, 1968", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "19", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 22, 1968", - "at": null, - "fav": "Baltimore Colts", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "20", - "spread": "17", - "ou": null - }, - { - "date": "Sep 22, 1968", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "28", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Sep 22, 1968", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "0", - "sU": "42", - "spread": "5", - "ou": null - }, - { - "date": "Sep 22, 1968", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "26", - "spread": "8", - "ou": null - }, - { - "date": "Sep 22, 1968", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Pittsburgh Steelers", - "sF": "45", - "sU": "10", - "spread": "17", - "ou": null - }, - { - "date": "Sep 22, 1968", - "at": null, - "fav": "Washington Redskins", - "und": "New Orleans Saints", - "sF": "17", - "sU": "37", - "spread": "9", - "ou": null - }, - { - "date": "Sep 22, 1968", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "34", - "sU": "25", - "spread": "8", - "ou": null - }, - { - "date": "Sep 22, 1968", - "at": "@", - "fav": "San Francisco 49ers", - "und": "St Louis Cardinals", - "sF": "35", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 1968", - "at": null, - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "47", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Sep 21, 1968", - "at": "@", - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "30", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 22, 1968", - "at": null, - "fav": "New York Jets", - "und": "Boston Patriots", - "sF": "47", - "sU": "31", - "spread": "13", - "ou": null - }, - { - "date": "Sep 22, 1968", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Buffalo Bills", - "sF": "34", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Sep 29, 1968", - "at": null, - "fav": "Los Angeles Rams", - "und": "Cleveland Browns", - "sF": "24", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Sep 29, 1968", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "17", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Sep 29, 1968", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "17", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Sep 29, 1968", - "at": null, - "fav": "St Louis Cardinals", - "und": "New Orleans Saints", - "sF": "21", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 1968", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "48", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Sep 29, 1968", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "45", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Sep 29, 1968", - "at": null, - "fav": "Baltimore Colts", - "und": "Pittsburgh Steelers", - "sF": "41", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Sep 29, 1968", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Sep 28, 1968", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Miami Dolphins", - "sF": "48", - "sU": "3", - "spread": "15", - "ou": null - }, - { - "date": "Sep 29, 1968", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "35", - "sU": "37", - "spread": "19", - "ou": null - }, - { - "date": "Sep 29, 1968", - "at": null, - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Sep 29, 1968", - "at": null, - "fav": "Boston Patriots", - "und": "Denver Broncos", - "sF": "20", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Sep 29, 1968", - "at": null, - "fav": "Oakland Raiders", - "und": "Houston Oilers", - "sF": "24", - "sU": "15", - "spread": "8", - "ou": null - }, - { - "date": "Oct 5, 1968", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "31", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Oct 6, 1968", - "at": null, - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Oct 6, 1968", - "at": "@", - "fav": "Baltimore Colts", - "und": "Chicago Bears", - "sF": "28", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Oct 6, 1968", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Oct 6, 1968", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "24", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1968", - "at": "@", - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "38", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Oct 6, 1968", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Oct 6, 1968", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Oct 5, 1968", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "18", - "sU": "7", - "spread": "17", - "ou": null - }, - { - "date": "Oct 5, 1968", - "at": "@", - "fav": "New York Jets", - "und": "San Diego Chargers", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1968", - "at": "@", - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1968", - "at": "@", - "fav": "Houston Oilers", - "und": "Miami Dolphins", - "sF": "7", - "sU": "24", - "spread": "15", - "ou": null - }, - { - "date": "Oct 6, 1968", - "at": "@", - "fav": "Oakland Raiders", - "und": "Boston Patriots", - "sF": "41", - "sU": "10", - "spread": "20", - "ou": null - }, - { - "date": "Oct 13, 1968", - "at": null, - "fav": "New York Giants", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Oct 13, 1968", - "at": "@", - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "21", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Oct 13, 1968", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "34", - "sU": "14", - "spread": "19", - "ou": null - }, - { - "date": "Oct 13, 1968", - "at": "@", - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "14", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Oct 13, 1968", - "at": null, - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "17", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 13, 1968", - "at": null, - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "42", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Oct 13, 1968", - "at": "@", - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Oct 12, 1968", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "14", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 1968", - "at": "@", - "fav": "Boston Patriots", - "und": "Houston Oilers", - "sF": "0", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Oct 13, 1968", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cincinnati Bengals", - "sF": "13", - "sU": "3", - "spread": "21", - "ou": null - }, - { - "date": "Oct 13, 1968", - "at": "@", - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "13", - "sU": "21", - "spread": "19", - "ou": null - }, - { - "date": "Oct 13, 1968", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "14", - "sU": "23", - "spread": "9", - "ou": null - }, - { - "date": "Oct 20, 1968", - "at": "@", - "fav": "Baltimore Colts", - "und": "Cleveland Browns", - "sF": "20", - "sU": "30", - "spread": "17", - "ou": null - }, - { - "date": "Oct 20, 1968", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "14", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 20, 1968", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "14", - "spread": "20", - "ou": null - }, - { - "date": "Oct 20, 1968", - "at": null, - "fav": "Dallas Cowboys", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Oct 20, 1968", - "at": "@", - "fav": "New York Giants", - "und": "San Francisco 49ers", - "sF": "10", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Oct 20, 1968", - "at": null, - "fav": "Chicago Bears", - "und": "Philadelphia Eagles", - "sF": "29", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Oct 20, 1968", - "at": null, - "fav": "New Orleans Saints", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Oct 20, 1968", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "41", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 20, 1968", - "at": "@", - "fav": "Boston Patriots", - "und": "Buffalo Bills", - "sF": "23", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 1968", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Miami Dolphins", - "sF": "22", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 20, 1968", - "at": null, - "fav": "New York Jets", - "und": "Houston Oilers", - "sF": "20", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 20, 1968", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "55", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Oct 27, 1968", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "24", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 1968", - "at": "@", - "fav": "Cleveland Browns", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Oct 27, 1968", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "7", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 27, 1968", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Philadelphia Eagles", - "sF": "6", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Oct 27, 1968", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New Orleans Saints", - "sF": "31", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 27, 1968", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 1968", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "17", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Oct 27, 1968", - "at": null, - "fav": "Houston Oilers", - "und": "Buffalo Bills", - "sF": "30", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Oct 27, 1968", - "at": null, - "fav": "Miami Dolphins", - "und": "Denver Broncos", - "sF": "14", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Oct 27, 1968", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "27", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 27, 1968", - "at": "@", - "fav": "New York Jets", - "und": "Boston Patriots", - "sF": "48", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Oct 27, 1968", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "10", - "spread": "20", - "ou": null - }, - { - "date": "Nov 3, 1968", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "10", - "sU": "13", - "spread": "11", - "ou": null - }, - { - "date": "Nov 3, 1968", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "10", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 3, 1968", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Washington Redskins", - "sF": "27", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Nov 3, 1968", - "at": null, - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "17", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Nov 3, 1968", - "at": null, - "fav": "Baltimore Colts", - "und": "New York Giants", - "sF": "26", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Nov 3, 1968", - "at": null, - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "45", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 3, 1968", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Cleveland Browns", - "sF": "21", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 1968", - "at": "@", - "fav": "Boston Patriots", - "und": "Denver Broncos", - "sF": "14", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Nov 3, 1968", - "at": null, - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 3, 1968", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "25", - "sU": "21", - "spread": "20", - "ou": null - }, - { - "date": "Nov 3, 1968", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "38", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 3, 1968", - "at": "@", - "fav": "San Diego Chargers", - "und": "Miami Dolphins", - "sF": "34", - "sU": "28", - "spread": "16", - "ou": null - }, - { - "date": "Nov 10, 1968", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "10", - "spread": "17", - "ou": null - }, - { - "date": "Nov 10, 1968", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Nov 10, 1968", - "at": "@", - "fav": "Cleveland Browns", - "und": "New Orleans Saints", - "sF": "35", - "sU": "17", - "spread": "15", - "ou": null - }, - { - "date": "Nov 10, 1968", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "21", - "sU": "27", - "spread": "16", - "ou": null - }, - { - "date": "Nov 10, 1968", - "at": null, - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "27", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 10, 1968", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "10", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 10, 1968", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 1968", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Pittsburgh Steelers", - "sF": "28", - "sU": "28", - "spread": "14", - "ou": null - }, - { - "date": "Nov 10, 1968", - "at": null, - "fav": "San Diego Chargers", - "und": "Boston Patriots", - "sF": "27", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Nov 10, 1968", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Cincinnati Bengals", - "sF": "16", - "sU": "9", - "spread": "15", - "ou": null - }, - { - "date": "Nov 10, 1968", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "43", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Nov 10, 1968", - "at": "@", - "fav": "New York Jets", - "und": "Houston Oilers", - "sF": "26", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 1968", - "at": "@", - "fav": "Baltimore Colts", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "0", - "spread": "12", - "ou": null - }, - { - "date": "Nov 17, 1968", - "at": "@", - "fav": "Chicago Bears", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "16", - "spread": "13", - "ou": null - }, - { - "date": "Nov 17, 1968", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "13", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Nov 17, 1968", - "at": "@", - "fav": "Green Bay Packers", - "und": "New Orleans Saints", - "sF": "29", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Nov 17, 1968", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "7", - "sU": "6", - "spread": "14", - "ou": null - }, - { - "date": "Nov 17, 1968", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "45", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Nov 17, 1968", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 1968", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "44", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Nov 17, 1968", - "at": null, - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "21", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Nov 17, 1968", - "at": "@", - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "38", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 17, 1968", - "at": "@", - "fav": "Miami Dolphins", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "38", - "spread": "7", - "ou": null - }, - { - "date": "Nov 17, 1968", - "at": "@", - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "43", - "sU": "32", - "spread": "8", - "ou": null - }, - { - "date": "Nov 24, 1968", - "at": "@", - "fav": "Baltimore Colts", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "9", - "spread": "11", - "ou": null - }, - { - "date": "Nov 24, 1968", - "at": null, - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "34", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Nov 24, 1968", - "at": "@", - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "47", - "sU": "13", - "spread": "17", - "ou": null - }, - { - "date": "Nov 24, 1968", - "at": "@", - "fav": "Detroit Lions", - "und": "New Orleans Saints", - "sF": "20", - "sU": "20", - "spread": "11", - "ou": null - }, - { - "date": "Nov 24, 1968", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New York Giants", - "sF": "24", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Nov 24, 1968", - "at": null, - "fav": "San Francisco 49ers", - "und": "Pittsburgh Steelers", - "sF": "45", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Nov 24, 1968", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "12", - "spread": "11", - "ou": null - }, - { - "date": "Nov 24, 1968", - "at": null, - "fav": "Green Bay Packers", - "und": "Washington Redskins", - "sF": "27", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Nov 24, 1968", - "at": "@", - "fav": "Boston Patriots", - "und": "Miami Dolphins", - "sF": "10", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Nov 24, 1968", - "at": null, - "fav": "Oakland Raiders", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "0", - "spread": "16", - "ou": null - }, - { - "date": "Nov 24, 1968", - "at": "@", - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "15", - "sU": "37", - "spread": "5", - "ou": null - }, - { - "date": "Nov 28, 1968", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "29", - "sU": "20", - "spread": "20", - "ou": null - }, - { - "date": "Nov 28, 1968", - "at": "@", - "fav": "Detroit Lions", - "und": "Philadelphia Eagles", - "sF": "0", - "sU": "12", - "spread": "12", - "ou": null - }, - { - "date": "Dec 1, 1968", - "at": "@", - "fav": "Baltimore Colts", - "und": "Atlanta Falcons", - "sF": "44", - "sU": "0", - "spread": "20", - "ou": null - }, - { - "date": "Dec 1, 1968", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "45", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Dec 1, 1968", - "at": null, - "fav": "Los Angeles Rams", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Dec 1, 1968", - "at": "@", - "fav": "New Orleans Saints", - "und": "Chicago Bears", - "sF": "17", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Dec 1, 1968", - "at": null, - "fav": "St Louis Cardinals", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 1, 1968", - "at": null, - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 28, 1968", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "24", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Nov 28, 1968", - "at": "@", - "fav": "Oakland Raiders", - "und": "Buffalo Bills", - "sF": "13", - "sU": "10", - "spread": "24", - "ou": null - }, - { - "date": "Dec 1, 1968", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Boston Patriots", - "sF": "14", - "sU": "33", - "spread": "1", - "ou": null - }, - { - "date": "Dec 1, 1968", - "at": null, - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "47", - "sU": "23", - "spread": "11", - "ou": null - }, - { - "date": "Dec 1, 1968", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "35", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 7, 1968", - "at": null, - "fav": "Baltimore Colts", - "und": "Green Bay Packers", - "sF": "16", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 1968", - "at": null, - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 1968", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Pittsburgh Steelers", - "sF": "28", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Dec 8, 1968", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "16", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Dec 8, 1968", - "at": null, - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "28", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Dec 8, 1968", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New Orleans Saints", - "sF": "29", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 8, 1968", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 1968", - "at": null, - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "24", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Dec 7, 1968", - "at": "@", - "fav": "Houston Oilers", - "und": "Buffalo Bills", - "sF": "35", - "sU": "6", - "spread": "12", - "ou": null - }, - { - "date": "Dec 8, 1968", - "at": "@", - "fav": "Miami Dolphins", - "und": "Boston Patriots", - "sF": "38", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 1968", - "at": "@", - "fav": "New York Jets", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 8, 1968", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "33", - "sU": "27", - "spread": "22", - "ou": null - }, - { - "date": "Dec 8, 1968", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "3", - "sU": "40", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 1968", - "at": null, - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "16", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Dec 15, 1968", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "12", - "spread": "8", - "ou": null - }, - { - "date": "Dec 15, 1968", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "27", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Dec 15, 1968", - "at": null, - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "28", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 1968", - "at": "@", - "fav": "New Orleans Saints", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 1968", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "28", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Dec 15, 1968", - "at": null, - "fav": "Minnesota Vikings", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Dec 15, 1968", - "at": null, - "fav": "Detroit Lions", - "und": "Washington Redskins", - "sF": "3", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 1968", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "30", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Dec 15, 1968", - "at": "@", - "fav": "Houston Oilers", - "und": "Boston Patriots", - "sF": "45", - "sU": "17", - "spread": "14", - "ou": null - }, - { - "date": "Dec 15, 1968", - "at": null, - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "31", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 1968", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "34", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Dec 21, 1968", - "at": null, - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "20", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 1968", - "at": "@", - "fav": "Baltimore Colts", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Dec 22, 1968", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "6", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Dec 29, 1968", - "at": null, - "fav": "Baltimore Colts", - "und": "Cleveland Browns", - "sF": "34", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Dec 29, 1968", - "at": "@", - "fav": "New York Jets", - "und": "Oakland Raiders", - "sF": "27", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Jan 12, 1969", - "at": "N", - "fav": "Baltimore Colts", - "und": "New York Jets", - "sF": "7", - "sU": "16", - "spread": "18", - "ou": null - }, - { - "date": "Sep 14, 1969", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "33", - "sU": "19", - "spread": "11", - "ou": null - }, - { - "date": "Sep 14, 1969", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Miami Dolphins", - "sF": "27", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Sep 14, 1969", - "at": "@", - "fav": "Denver Broncos", - "und": "Boston Patriots", - "sF": "35", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 14, 1969", - "at": "@", - "fav": "Oakland Raiders", - "und": "Houston Oilers", - "sF": "21", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 14, 1969", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "27", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Sep 21, 1969", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "12", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 21, 1969", - "at": "@", - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Sep 21, 1969", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "24", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 1969", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "17", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Sep 21, 1969", - "at": null, - "fav": "Washington Redskins", - "und": "New Orleans Saints", - "sF": "26", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 21, 1969", - "at": null, - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "23", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Sep 21, 1969", - "at": null, - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Sep 21, 1969", - "at": null, - "fav": "Detroit Lions", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Sep 20, 1969", - "at": "@", - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "20", - "sU": "17", - "spread": "16", - "ou": null - }, - { - "date": "Sep 21, 1969", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Boston Patriots", - "sF": "31", - "sU": "0", - "spread": "20", - "ou": null - }, - { - "date": "Sep 21, 1969", - "at": null, - "fav": "Houston Oilers", - "und": "Buffalo Bills", - "sF": "17", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Sep 21, 1969", - "at": null, - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "34", - "spread": "8", - "ou": null - }, - { - "date": "Sep 21, 1969", - "at": null, - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "19", - "sU": "21", - "spread": "12", - "ou": null - }, - { - "date": "Sep 28, 1969", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "27", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Sep 28, 1969", - "at": "@", - "fav": "Detroit Lions", - "und": "New York Giants", - "sF": "24", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 1969", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Sep 28, 1969", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "7", - "spread": "16", - "ou": null - }, - { - "date": "Sep 28, 1969", - "at": null, - "fav": "Baltimore Colts", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "52", - "spread": "2", - "ou": null - }, - { - "date": "Sep 28, 1969", - "at": null, - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "21", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Sep 28, 1969", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "41", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 1969", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Chicago Bears", - "sF": "20", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 28, 1969", - "at": null, - "fav": "Oakland Raiders", - "und": "Boston Patriots", - "sF": "38", - "sU": "23", - "spread": "16", - "ou": null - }, - { - "date": "Sep 28, 1969", - "at": null, - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "28", - "sU": "41", - "spread": "2", - "ou": null - }, - { - "date": "Sep 28, 1969", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Cincinnati Bengals", - "sF": "19", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Sep 28, 1969", - "at": "@", - "fav": "Houston Oilers", - "und": "Miami Dolphins", - "sF": "22", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Sep 28, 1969", - "at": null, - "fav": "New York Jets", - "und": "San Diego Chargers", - "sF": "27", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Oct 5, 1969", - "at": null, - "fav": "Baltimore Colts", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Oct 5, 1969", - "at": "@", - "fav": "Cleveland Browns", - "und": "Detroit Lions", - "sF": "21", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Oct 5, 1969", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "36", - "sU": "17", - "spread": "16", - "ou": null - }, - { - "date": "Oct 5, 1969", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "19", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Oct 5, 1969", - "at": null, - "fav": "Chicago Bears", - "und": "New York Giants", - "sF": "24", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 5, 1969", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Oct 5, 1969", - "at": null, - "fav": "St Louis Cardinals", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 5, 1969", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "17", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 4, 1969", - "at": null, - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "20", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Oct 4, 1969", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Oct 5, 1969", - "at": null, - "fav": "New York Jets", - "und": "Boston Patriots", - "sF": "23", - "sU": "14", - "spread": "15", - "ou": null - }, - { - "date": "Oct 5, 1969", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "26", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Oct 5, 1969", - "at": "@", - "fav": "Houston Oilers", - "und": "Buffalo Bills", - "sF": "28", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Oct 12, 1969", - "at": null, - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Oct 12, 1969", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "31", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Oct 12, 1969", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "17", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Oct 12, 1969", - "at": null, - "fav": "Cleveland Browns", - "und": "New Orleans Saints", - "sF": "27", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Oct 12, 1969", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Oct 12, 1969", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 12, 1969", - "at": null, - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "17", - "sU": "33", - "spread": "1", - "ou": null - }, - { - "date": "Oct 13, 1969", - "at": "@", - "fav": "Baltimore Colts", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Oct 11, 1969", - "at": "@", - "fav": "Buffalo Bills", - "und": "Boston Patriots", - "sF": "23", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Oct 11, 1969", - "at": null, - "fav": "San Diego Chargers", - "und": "Miami Dolphins", - "sF": "21", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 12, 1969", - "at": null, - "fav": "New York Jets", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 12, 1969", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "24", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Oct 12, 1969", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "24", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 1969", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "42", - "sU": "31", - "spread": "13", - "ou": null - }, - { - "date": "Oct 19, 1969", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "49", - "sU": "14", - "spread": "16", - "ou": null - }, - { - "date": "Oct 19, 1969", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "13", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Oct 19, 1969", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "34", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Oct 19, 1969", - "at": null, - "fav": "Baltimore Colts", - "und": "New Orleans Saints", - "sF": "30", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 19, 1969", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "7", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Oct 19, 1969", - "at": null, - "fav": "Minnesota Vikings", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 19, 1969", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "20", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Oct 19, 1969", - "at": null, - "fav": "San Diego Chargers", - "und": "Boston Patriots", - "sF": "13", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Oct 19, 1969", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Denver Broncos", - "sF": "23", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Oct 19, 1969", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Miami Dolphins", - "sF": "17", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Oct 19, 1969", - "at": "@", - "fav": "Oakland Raiders", - "und": "Buffalo Bills", - "sF": "50", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Oct 20, 1969", - "at": "@", - "fav": "New York Jets", - "und": "Houston Oilers", - "sF": "26", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 26, 1969", - "at": "@", - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Oct 26, 1969", - "at": null, - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "9", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Oct 26, 1969", - "at": "@", - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "21", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 26, 1969", - "at": "@", - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Oct 26, 1969", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "24", - "sU": "10", - "spread": "16", - "ou": null - }, - { - "date": "Oct 26, 1969", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New Orleans Saints", - "sF": "13", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 26, 1969", - "at": null, - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "14", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 27, 1969", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "25", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Oct 26, 1969", - "at": "@", - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "24", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Oct 26, 1969", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cincinnati Bengals", - "sF": "42", - "sU": "22", - "spread": "13", - "ou": null - }, - { - "date": "Oct 26, 1969", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "24", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Oct 26, 1969", - "at": "@", - "fav": "New York Jets", - "und": "Boston Patriots", - "sF": "23", - "sU": "17", - "spread": "18", - "ou": null - }, - { - "date": "Oct 26, 1969", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "24", - "sU": "12", - "spread": "5", - "ou": null - }, - { - "date": "Nov 2, 1969", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Nov 2, 1969", - "at": "@", - "fav": "Baltimore Colts", - "und": "Washington Redskins", - "sF": "41", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 2, 1969", - "at": null, - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "10", - "sU": "42", - "spread": "6", - "ou": null - }, - { - "date": "Nov 2, 1969", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "31", - "sU": "14", - "spread": "15", - "ou": null - }, - { - "date": "Nov 2, 1969", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Nov 2, 1969", - "at": null, - "fav": "Green Bay Packers", - "und": "Pittsburgh Steelers", - "sF": "38", - "sU": "34", - "spread": "10", - "ou": null - }, - { - "date": "Nov 2, 1969", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "14", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Nov 2, 1969", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New Orleans Saints", - "sF": "42", - "sU": "51", - "spread": "10", - "ou": null - }, - { - "date": "Nov 2, 1969", - "at": null, - "fav": "Houston Oilers", - "und": "Boston Patriots", - "sF": "0", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Nov 2, 1969", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "29", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Nov 2, 1969", - "at": null, - "fav": "Oakland Raiders", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "31", - "spread": "12", - "ou": null - }, - { - "date": "Nov 2, 1969", - "at": null, - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "0", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 2, 1969", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "34", - "sU": "31", - "spread": "10", - "ou": null - }, - { - "date": "Nov 9, 1969", - "at": "@", - "fav": "Baltimore Colts", - "und": "Green Bay Packers", - "sF": "14", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Nov 9, 1969", - "at": "@", - "fav": "Chicago Bears", - "und": "Pittsburgh Steelers", - "sF": "38", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 9, 1969", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "33", - "sU": "17", - "spread": "17", - "ou": null - }, - { - "date": "Nov 9, 1969", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Nov 9, 1969", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "41", - "sU": "30", - "spread": "12", - "ou": null - }, - { - "date": "Nov 9, 1969", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Cleveland Browns", - "sF": "51", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Nov 9, 1969", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "42", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 9, 1969", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Nov 9, 1969", - "at": null, - "fav": "Miami Dolphins", - "und": "Boston Patriots", - "sF": "17", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Nov 9, 1969", - "at": "@", - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 9, 1969", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "27", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Nov 9, 1969", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "16", - "sU": "6", - "spread": "15", - "ou": null - }, - { - "date": "Nov 9, 1969", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "41", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Nov 16, 1969", - "at": null, - "fav": "Chicago Bears", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "48", - "spread": "6", - "ou": null - }, - { - "date": "Nov 16, 1969", - "at": "@", - "fav": "Detroit Lions", - "und": "St Louis Cardinals", - "sF": "20", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1969", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "9", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Nov 16, 1969", - "at": "@", - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "24", - "sU": "25", - "spread": "2", - "ou": null - }, - { - "date": "Nov 16, 1969", - "at": null, - "fav": "Los Angeles Rams", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 16, 1969", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Nov 16, 1969", - "at": null, - "fav": "Baltimore Colts", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1969", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "41", - "sU": "28", - "spread": "8", - "ou": null - }, - { - "date": "Nov 16, 1969", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "3", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1969", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Boston Patriots", - "sF": "14", - "sU": "25", - "spread": "7", - "ou": null - }, - { - "date": "Nov 16, 1969", - "at": null, - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "20", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 16, 1969", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "34", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Nov 16, 1969", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "21", - "sU": "16", - "spread": "14", - "ou": null - }, - { - "date": "Nov 23, 1969", - "at": null, - "fav": "Baltimore Colts", - "und": "Chicago Bears", - "sF": "24", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1969", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "28", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Nov 23, 1969", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "10", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Nov 23, 1969", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1969", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Pittsburgh Steelers", - "sF": "52", - "sU": "14", - "spread": "19", - "ou": null - }, - { - "date": "Nov 23, 1969", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "38", - "sU": "43", - "spread": "4", - "ou": null - }, - { - "date": "Nov 23, 1969", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "30", - "sU": "34", - "spread": "5", - "ou": null - }, - { - "date": "Nov 23, 1969", - "at": "@", - "fav": "Washington Redskins", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 23, 1969", - "at": "@", - "fav": "Boston Patriots", - "und": "Buffalo Bills", - "sF": "35", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 23, 1969", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "24", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 23, 1969", - "at": null, - "fav": "Houston Oilers", - "und": "Miami Dolphins", - "sF": "32", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 23, 1969", - "at": "@", - "fav": "New York Jets", - "und": "Cincinnati Bengals", - "sF": "40", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Nov 23, 1969", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "45", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 27, 1969", - "at": "@", - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "24", - "spread": "11", - "ou": null - }, - { - "date": "Nov 27, 1969", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "27", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Nov 30, 1969", - "at": "@", - "fav": "Baltimore Colts", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Nov 30, 1969", - "at": null, - "fav": "Cleveland Browns", - "und": "Chicago Bears", - "sF": "28", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 30, 1969", - "at": "@", - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "20", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 30, 1969", - "at": "@", - "fav": "New Orleans Saints", - "und": "Philadelphia Eagles", - "sF": "26", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 30, 1969", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Pittsburgh Steelers", - "sF": "47", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Nov 30, 1969", - "at": null, - "fav": "Los Angeles Rams", - "und": "Washington Redskins", - "sF": "24", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Nov 27, 1969", - "at": "@", - "fav": "Houston Oilers", - "und": "San Diego Chargers", - "sF": "17", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 27, 1969", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "31", - "sU": "17", - "spread": "17", - "ou": null - }, - { - "date": "Nov 30, 1969", - "at": null, - "fav": "Boston Patriots", - "und": "Miami Dolphins", - "sF": "38", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 30, 1969", - "at": null, - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "27", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 1969", - "at": null, - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "42", - "spread": "6", - "ou": null - }, - { - "date": "Dec 7, 1969", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "45", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 7, 1969", - "at": "@", - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "17", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 7, 1969", - "at": "@", - "fav": "Cleveland Browns", - "und": "Green Bay Packers", - "sF": "20", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 7, 1969", - "at": null, - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 7, 1969", - "at": null, - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "6", - "sU": "49", - "spread": "4", - "ou": null - }, - { - "date": "Dec 7, 1969", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "29", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Dec 7, 1969", - "at": null, - "fav": "Dallas Cowboys", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "7", - "spread": "17", - "ou": null - }, - { - "date": "Dec 6, 1969", - "at": null, - "fav": "New York Jets", - "und": "Houston Oilers", - "sF": "34", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Dec 7, 1969", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "22", - "sU": "19", - "spread": "15", - "ou": null - }, - { - "date": "Dec 7, 1969", - "at": null, - "fav": "Denver Broncos", - "und": "Miami Dolphins", - "sF": "24", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 7, 1969", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cincinnati Bengals", - "sF": "37", - "sU": "17", - "spread": "15", - "ou": null - }, - { - "date": "Dec 7, 1969", - "at": "@", - "fav": "San Diego Chargers", - "und": "Boston Patriots", - "sF": "28", - "sU": "18", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 1969", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Baltimore Colts", - "sF": "27", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 14, 1969", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "3", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Dec 14, 1969", - "at": "@", - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "28", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Dec 14, 1969", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "10", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Dec 14, 1969", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "3", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Dec 14, 1969", - "at": null, - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 14, 1969", - "at": null, - "fav": "Cleveland Browns", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Dec 14, 1969", - "at": "@", - "fav": "Washington Redskins", - "und": "New Orleans Saints", - "sF": "17", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 1969", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "10", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Dec 14, 1969", - "at": "@", - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 1969", - "at": "@", - "fav": "Houston Oilers", - "und": "Boston Patriots", - "sF": "27", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Dec 14, 1969", - "at": null, - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "27", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 1969", - "at": "@", - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "45", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Dec 21, 1969", - "at": null, - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "3", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 21, 1969", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "20", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 1969", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "20", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 1969", - "at": "@", - "fav": "Green Bay Packers", - "und": "St Louis Cardinals", - "sF": "45", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 1969", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Baltimore Colts", - "sF": "7", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 1969", - "at": "@", - "fav": "New Orleans Saints", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 1969", - "at": null, - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "14", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Dec 21, 1969", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Dec 20, 1969", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "13", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Dec 21, 1969", - "at": "@", - "fav": "Oakland Raiders", - "und": "Houston Oilers", - "sF": "56", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Dec 27, 1969", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "23", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 28, 1969", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "14", - "sU": "38", - "spread": "7", - "ou": null - }, - { - "date": "Jan 4, 1970", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Cleveland Browns", - "sF": "27", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Jan 4, 1970", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "7", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Jan 11, 1970", - "at": "N", - "fav": "Minnesota Vikings", - "und": "Kansas City Chiefs", - "sF": "7", - "sU": "23", - "spread": "12", - "ou": null - }, - { - "date": "Sep 18, 1970", - "at": "@", - "fav": "Los Angeles Rams", - "und": "St Louis Cardinals", - "sF": "34", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Sep 19, 1970", - "at": "@", - "fav": "New York Giants", - "und": "Chicago Bears", - "sF": "16", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 1970", - "at": null, - "fav": "Miami Dolphins", - "und": "Boston Patriots", - "sF": "14", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 1970", - "at": null, - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "25", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 20, 1970", - "at": null, - "fav": "Oakland Raiders", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "31", - "spread": "11", - "ou": null - }, - { - "date": "Sep 20, 1970", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Sep 20, 1970", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "7", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Sep 20, 1970", - "at": null, - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "14", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 1970", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "0", - "sU": "40", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 1970", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 20, 1970", - "at": null, - "fav": "Baltimore Colts", - "und": "San Diego Chargers", - "sF": "16", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 20, 1970", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "26", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 21, 1970", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Jets", - "sF": "31", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 1970", - "at": null, - "fav": "New York Jets", - "und": "Boston Patriots", - "sF": "31", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Sep 27, 1970", - "at": null, - "fav": "Los Angeles Rams", - "und": "Buffalo Bills", - "sF": "19", - "sU": "0", - "spread": "18", - "ou": null - }, - { - "date": "Sep 27, 1970", - "at": "@", - "fav": "Detroit Lions", - "und": "Cincinnati Bengals", - "sF": "38", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Sep 27, 1970", - "at": "@", - "fav": "Chicago Bears", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "16", - "spread": "11", - "ou": null - }, - { - "date": "Sep 27, 1970", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "28", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Sep 27, 1970", - "at": "@", - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Sep 27, 1970", - "at": "@", - "fav": "Houston Oilers", - "und": "Miami Dolphins", - "sF": "10", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Sep 27, 1970", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "26", - "sU": "0", - "spread": "14", - "ou": null - }, - { - "date": "Sep 27, 1970", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "27", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 27, 1970", - "at": "@", - "fav": "Denver Broncos", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 1970", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "27", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Sep 27, 1970", - "at": null, - "fav": "Cleveland Browns", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Sep 28, 1970", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Baltimore Colts", - "sF": "44", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 3, 1970", - "at": null, - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "13", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 3, 1970", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "15", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Oct 4, 1970", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 4, 1970", - "at": null, - "fav": "Baltimore Colts", - "und": "Boston Patriots", - "sF": "14", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Oct 4, 1970", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "31", - "sU": "34", - "spread": "14", - "ou": null - }, - { - "date": "Oct 4, 1970", - "at": null, - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Oct 4, 1970", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "33", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 4, 1970", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Giants", - "sF": "14", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 4, 1970", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "7", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Oct 4, 1970", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "13", - "sU": "26", - "spread": "11", - "ou": null - }, - { - "date": "Oct 4, 1970", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "10", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Oct 4, 1970", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Diego Chargers", - "sF": "37", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Oct 5, 1970", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "28", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Oct 10, 1970", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "6", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 11, 1970", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "30", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Oct 11, 1970", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "30", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Oct 11, 1970", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Buffalo Bills", - "sF": "23", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 1970", - "at": null, - "fav": "Detroit Lions", - "und": "Washington Redskins", - "sF": "10", - "sU": "31", - "spread": "9", - "ou": null - }, - { - "date": "Oct 11, 1970", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "24", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Oct 11, 1970", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Oct 11, 1970", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New Orleans Saints", - "sF": "24", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Oct 11, 1970", - "at": null, - "fav": "Baltimore Colts", - "und": "Houston Oilers", - "sF": "24", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 11, 1970", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Boston Patriots", - "sF": "23", - "sU": "10", - "spread": "18", - "ou": null - }, - { - "date": "Oct 11, 1970", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "6", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Oct 11, 1970", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "35", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Oct 12, 1970", - "at": null, - "fav": "Green Bay Packers", - "und": "San Diego Chargers", - "sF": "22", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 1970", - "at": null, - "fav": "New York Giants", - "und": "Boston Patriots", - "sF": "16", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Oct 18, 1970", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "33", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 18, 1970", - "at": null, - "fav": "Detroit Lions", - "und": "Cleveland Browns", - "sF": "41", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 18, 1970", - "at": null, - "fav": "Baltimore Colts", - "und": "New York Jets", - "sF": "29", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Oct 18, 1970", - "at": null, - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "35", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Oct 18, 1970", - "at": "@", - "fav": "Chicago Bears", - "und": "San Diego Chargers", - "sF": "7", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 18, 1970", - "at": null, - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "31", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 18, 1970", - "at": "@", - "fav": "Houston Oilers", - "und": "Pittsburgh Steelers", - "sF": "3", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Oct 18, 1970", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "19", - "spread": "10", - "ou": null - }, - { - "date": "Oct 18, 1970", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Dallas Cowboys", - "sF": "54", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Oct 18, 1970", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "20", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Oct 19, 1970", - "at": "@", - "fav": "Oakland Raiders", - "und": "Washington Redskins", - "sF": "34", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 1970", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "32", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Oct 25, 1970", - "at": "@", - "fav": "Miami Dolphins", - "und": "Cleveland Browns", - "sF": "0", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 1970", - "at": null, - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "17", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Oct 25, 1970", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "6", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 1970", - "at": "@", - "fav": "Washington Redskins", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Oct 25, 1970", - "at": "@", - "fav": "Baltimore Colts", - "und": "Boston Patriots", - "sF": "27", - "sU": "3", - "spread": "12", - "ou": null - }, - { - "date": "Oct 25, 1970", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "16", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Oct 25, 1970", - "at": "@", - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "30", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Oct 25, 1970", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Dallas Cowboys", - "sF": "16", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Oct 25, 1970", - "at": "@", - "fav": "Oakland Raiders", - "und": "Pittsburgh Steelers", - "sF": "31", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Oct 25, 1970", - "at": "@", - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "31", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Oct 25, 1970", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Denver Broncos", - "sF": "19", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 26, 1970", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "13", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 1970", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Chicago Bears", - "sF": "14", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 1, 1970", - "at": "@", - "fav": "Boston Patriots", - "und": "Buffalo Bills", - "sF": "10", - "sU": "45", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 1970", - "at": "@", - "fav": "Cleveland Browns", - "und": "San Diego Chargers", - "sF": "10", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Nov 1, 1970", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Nov 1, 1970", - "at": null, - "fav": "New York Giants", - "und": "New York Jets", - "sF": "22", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Nov 1, 1970", - "at": "@", - "fav": "Baltimore Colts", - "und": "Miami Dolphins", - "sF": "35", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 1, 1970", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "17", - "spread": "14", - "ou": null - }, - { - "date": "Nov 1, 1970", - "at": null, - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "30", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 1, 1970", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Houston Oilers", - "sF": "44", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Nov 1, 1970", - "at": "@", - "fav": "Denver Broncos", - "und": "Washington Redskins", - "sF": "3", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Nov 1, 1970", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "17", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 1970", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "26", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 1970", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 8, 1970", - "at": "@", - "fav": "Buffalo Bills", - "und": "Cincinnati Bengals", - "sF": "14", - "sU": "43", - "spread": "5", - "ou": null - }, - { - "date": "Nov 8, 1970", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 1970", - "at": null, - "fav": "Miami Dolphins", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 1970", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "21", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 1970", - "at": null, - "fav": "Minnesota Vikings", - "und": "Washington Redskins", - "sF": "19", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 8, 1970", - "at": null, - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "37", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 8, 1970", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "24", - "sU": "9", - "spread": "16", - "ou": null - }, - { - "date": "Nov 8, 1970", - "at": null, - "fav": "Detroit Lions", - "und": "New Orleans Saints", - "sF": "17", - "sU": "19", - "spread": "9", - "ou": null - }, - { - "date": "Nov 8, 1970", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Boston Patriots", - "sF": "31", - "sU": "0", - "spread": "17", - "ou": null - }, - { - "date": "Nov 8, 1970", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Nov 8, 1970", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cleveland Browns", - "sF": "23", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 1970", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "24", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 9, 1970", - "at": null, - "fav": "Baltimore Colts", - "und": "Green Bay Packers", - "sF": "13", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 15, 1970", - "at": null, - "fav": "San Diego Chargers", - "und": "Boston Patriots", - "sF": "16", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Nov 15, 1970", - "at": null, - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 15, 1970", - "at": "@", - "fav": "Miami Dolphins", - "und": "New Orleans Saints", - "sF": "21", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 15, 1970", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "35", - "sU": "33", - "spread": "1", - "ou": null - }, - { - "date": "Nov 15, 1970", - "at": null, - "fav": "Atlanta Falcons", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 1970", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Pittsburgh Steelers", - "sF": "31", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Nov 15, 1970", - "at": "@", - "fav": "Baltimore Colts", - "und": "Buffalo Bills", - "sF": "17", - "sU": "17", - "spread": "17", - "ou": null - }, - { - "date": "Nov 15, 1970", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "20", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Nov 15, 1970", - "at": null, - "fav": "San Francisco 49ers", - "und": "Houston Oilers", - "sF": "30", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Nov 15, 1970", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "24", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 15, 1970", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "24", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Nov 15, 1970", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New York Jets", - "sF": "20", - "sU": "31", - "spread": "16", - "ou": null - }, - { - "date": "Nov 16, 1970", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "0", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 1970", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 22, 1970", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "34", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 22, 1970", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "28", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Nov 22, 1970", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "28", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 1970", - "at": null, - "fav": "Baltimore Colts", - "und": "Miami Dolphins", - "sF": "17", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Nov 22, 1970", - "at": null, - "fav": "Denver Broncos", - "und": "New Orleans Saints", - "sF": "31", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Nov 22, 1970", - "at": "@", - "fav": "New York Jets", - "und": "Boston Patriots", - "sF": "17", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Nov 22, 1970", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "21", - "sU": "45", - "spread": "6", - "ou": null - }, - { - "date": "Nov 22, 1970", - "at": "@", - "fav": "Chicago Bears", - "und": "Buffalo Bills", - "sF": "31", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 1970", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "10", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Nov 22, 1970", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "St Louis Cardinals", - "sF": "6", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Nov 22, 1970", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "20", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 1970", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 26, 1970", - "at": "@", - "fav": "Detroit Lions", - "und": "Oakland Raiders", - "sF": "28", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1970", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "16", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Nov 29, 1970", - "at": "@", - "fav": "Buffalo Bills", - "und": "Boston Patriots", - "sF": "10", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 29, 1970", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New Orleans Saints", - "sF": "26", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Nov 29, 1970", - "at": null, - "fav": "Minnesota Vikings", - "und": "New York Jets", - "sF": "10", - "sU": "20", - "spread": "11", - "ou": null - }, - { - "date": "Nov 29, 1970", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "9", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Nov 29, 1970", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "27", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 29, 1970", - "at": "@", - "fav": "Baltimore Colts", - "und": "Chicago Bears", - "sF": "21", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 29, 1970", - "at": null, - "fav": "Denver Broncos", - "und": "Houston Oilers", - "sF": "21", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 1970", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Nov 29, 1970", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "26", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 29, 1970", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "13", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Nov 30, 1970", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Miami Dolphins", - "sF": "7", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 1970", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "16", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Dec 6, 1970", - "at": "@", - "fav": "Detroit Lions", - "und": "St Louis Cardinals", - "sF": "16", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Dec 6, 1970", - "at": "@", - "fav": "Miami Dolphins", - "und": "Boston Patriots", - "sF": "37", - "sU": "20", - "spread": "12", - "ou": null - }, - { - "date": "Dec 6, 1970", - "at": "@", - "fav": "New York Giants", - "und": "Buffalo Bills", - "sF": "20", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Dec 6, 1970", - "at": null, - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "14", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 6, 1970", - "at": null, - "fav": "Green Bay Packers", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Dec 6, 1970", - "at": "@", - "fav": "Baltimore Colts", - "und": "Philadelphia Eagles", - "sF": "29", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 6, 1970", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "16", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Dec 6, 1970", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "34", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Dec 6, 1970", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "34", - "sU": "16", - "spread": "15", - "ou": null - }, - { - "date": "Dec 6, 1970", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 1970", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Dec 7, 1970", - "at": null, - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "21", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 1970", - "at": null, - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "6", - "sU": "2", - "spread": "2", - "ou": null - }, - { - "date": "Dec 13, 1970", - "at": null, - "fav": "Minnesota Vikings", - "und": "Boston Patriots", - "sF": "35", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Dec 13, 1970", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Dec 13, 1970", - "at": null, - "fav": "Baltimore Colts", - "und": "Buffalo Bills", - "sF": "20", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Dec 13, 1970", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "35", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 13, 1970", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "30", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 1970", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "38", - "sU": "27", - "spread": "11", - "ou": null - }, - { - "date": "Dec 13, 1970", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "17", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Dec 13, 1970", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "16", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 14, 1970", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "23", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Dec 19, 1970", - "at": "@", - "fav": "Baltimore Colts", - "und": "New York Jets", - "sF": "35", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1970", - "at": null, - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "37", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1970", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Boston Patriots", - "sF": "45", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Dec 20, 1970", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "20", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Dec 20, 1970", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "45", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Dec 20, 1970", - "at": "@", - "fav": "New York Giants", - "und": "Los Angeles Rams", - "sF": "3", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Dec 20, 1970", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "30", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Dec 20, 1970", - "at": null, - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "27", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Dec 20, 1970", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Houston Oilers", - "sF": "52", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Dec 20, 1970", - "at": null, - "fav": "Chicago Bears", - "und": "New Orleans Saints", - "sF": "24", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Dec 20, 1970", - "at": null, - "fav": "Cleveland Browns", - "und": "Denver Broncos", - "sF": "27", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 20, 1970", - "at": null, - "fav": "San Francisco 49ers", - "und": "Oakland Raiders", - "sF": "38", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 20, 1970", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "13", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1970", - "at": "@", - "fav": "Baltimore Colts", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Dec 26, 1970", - "at": null, - "fav": "Detroit Lions", - "und": "Dallas Cowboys", - "sF": "0", - "sU": "5", - "spread": "3", - "ou": null - }, - { - "date": "Dec 27, 1970", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 27, 1970", - "at": "@", - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "21", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Jan 3, 1971", - "at": null, - "fav": "Oakland Raiders", - "und": "Baltimore Colts", - "sF": "17", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Jan 3, 1971", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Dallas Cowboys", - "sF": "10", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Jan 17, 1971", - "at": "N", - "fav": "Baltimore Colts", - "und": "Dallas Cowboys", - "sF": "16", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 19, 1971", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 19, 1971", - "at": null, - "fav": "Dallas Cowboys", - "und": "Buffalo Bills", - "sF": "49", - "sU": "37", - "spread": "11", - "ou": null - }, - { - "date": "Sep 19, 1971", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Philadelphia Eagles", - "sF": "37", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Sep 19, 1971", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "31", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Sep 19, 1971", - "at": null, - "fav": "Oakland Raiders", - "und": "New England Patriots", - "sF": "6", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Sep 19, 1971", - "at": "@", - "fav": "Chicago Bears", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "15", - "spread": "4", - "ou": null - }, - { - "date": "Sep 19, 1971", - "at": "@", - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "40", - "sU": "42", - "spread": "7", - "ou": null - }, - { - "date": "Sep 19, 1971", - "at": null, - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "20", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Sep 19, 1971", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "17", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 19, 1971", - "at": "@", - "fav": "Baltimore Colts", - "und": "New York Jets", - "sF": "22", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Sep 19, 1971", - "at": null, - "fav": "Miami Dolphins", - "und": "Denver Broncos", - "sF": "10", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 1971", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "14", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 20, 1971", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "16", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 26, 1971", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "29", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 26, 1971", - "at": "@", - "fav": "Green Bay Packers", - "und": "Denver Broncos", - "sF": "34", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 1971", - "at": null, - "fav": "Detroit Lions", - "und": "New England Patriots", - "sF": "34", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Sep 26, 1971", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "30", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Sep 26, 1971", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "42", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Sep 26, 1971", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 1971", - "at": "@", - "fav": "Baltimore Colts", - "und": "Cleveland Browns", - "sF": "13", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Sep 26, 1971", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "20", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Sep 26, 1971", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "17", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Sep 26, 1971", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "38", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Sep 26, 1971", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 1971", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "34", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 1971", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Jets", - "sF": "17", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Oct 3, 1971", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "10", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 1971", - "at": null, - "fav": "Baltimore Colts", - "und": "New England Patriots", - "sF": "23", - "sU": "3", - "spread": "11", - "ou": null - }, - { - "date": "Oct 3, 1971", - "at": null, - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Oct 3, 1971", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "21", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 3, 1971", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "16", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Oct 3, 1971", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "41", - "sU": "38", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 1971", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Green Bay Packers", - "sF": "17", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Oct 3, 1971", - "at": "@", - "fav": "Houston Oilers", - "und": "New Orleans Saints", - "sF": "13", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Oct 3, 1971", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Buffalo Bills", - "sF": "19", - "sU": "0", - "spread": "15", - "ou": null - }, - { - "date": "Oct 3, 1971", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "16", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Oct 3, 1971", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "17", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Oct 3, 1971", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "20", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Oct 4, 1971", - "at": null, - "fav": "Oakland Raiders", - "und": "Cleveland Browns", - "sF": "34", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Oct 10, 1971", - "at": "@", - "fav": "Atlanta Falcons", - "und": "St Louis Cardinals", - "sF": "9", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Oct 10, 1971", - "at": null, - "fav": "Baltimore Colts", - "und": "Buffalo Bills", - "sF": "43", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Oct 10, 1971", - "at": null, - "fav": "Miami Dolphins", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 1971", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 10, 1971", - "at": null, - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "0", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Oct 10, 1971", - "at": null, - "fav": "Minnesota Vikings", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "0", - "spread": "17", - "ou": null - }, - { - "date": "Oct 10, 1971", - "at": "@", - "fav": "Washington Redskins", - "und": "Houston Oilers", - "sF": "22", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Oct 10, 1971", - "at": "@", - "fav": "Chicago Bears", - "und": "New Orleans Saints", - "sF": "35", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 10, 1971", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "31", - "sU": "28", - "spread": "9", - "ou": null - }, - { - "date": "Oct 10, 1971", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "31", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 10, 1971", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "27", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Oct 10, 1971", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "13", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 1971", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "20", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Oct 17, 1971", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 1971", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "41", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Oct 17, 1971", - "at": null, - "fav": "Baltimore Colts", - "und": "New York Giants", - "sF": "31", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Oct 17, 1971", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "28", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 17, 1971", - "at": "@", - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "20", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Oct 17, 1971", - "at": null, - "fav": "Detroit Lions", - "und": "Houston Oilers", - "sF": "31", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Oct 17, 1971", - "at": null, - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "14", - "sU": "24", - "spread": "17", - "ou": null - }, - { - "date": "Oct 17, 1971", - "at": null, - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 17, 1971", - "at": null, - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "16", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 1971", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "24", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Oct 17, 1971", - "at": "@", - "fav": "Oakland Raiders", - "und": "Philadelphia Eagles", - "sF": "34", - "sU": "10", - "spread": "18", - "ou": null - }, - { - "date": "Oct 17, 1971", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "13", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Oct 18, 1971", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Pittsburgh Steelers", - "sF": "38", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Oct 23, 1971", - "at": "@", - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "20", - "sU": "3", - "spread": "12", - "ou": null - }, - { - "date": "Oct 24, 1971", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "28", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Oct 24, 1971", - "at": "@", - "fav": "Cleveland Browns", - "und": "Denver Broncos", - "sF": "0", - "sU": "27", - "spread": "11", - "ou": null - }, - { - "date": "Oct 24, 1971", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "30", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Oct 24, 1971", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "7", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Oct 24, 1971", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "23", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 24, 1971", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New England Patriots", - "sF": "44", - "sU": "21", - "spread": "19", - "ou": null - }, - { - "date": "Oct 24, 1971", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "23", - "sU": "28", - "spread": "12", - "ou": null - }, - { - "date": "Oct 24, 1971", - "at": null, - "fav": "San Francisco 49ers", - "und": "St Louis Cardinals", - "sF": "26", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 24, 1971", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Washington Redskins", - "sF": "27", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Oct 24, 1971", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "30", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 24, 1971", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "27", - "spread": "11", - "ou": null - }, - { - "date": "Oct 25, 1971", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Baltimore Colts", - "sF": "10", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 1971", - "at": null, - "fav": "St Louis Cardinals", - "und": "Buffalo Bills", - "sF": "28", - "sU": "23", - "spread": "9", - "ou": null - }, - { - "date": "Oct 31, 1971", - "at": "@", - "fav": "Cleveland Browns", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Oct 31, 1971", - "at": null, - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "17", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Oct 31, 1971", - "at": null, - "fav": "Denver Broncos", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 31, 1971", - "at": "@", - "fav": "Washington Redskins", - "und": "New Orleans Saints", - "sF": "24", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Oct 31, 1971", - "at": "@", - "fav": "Baltimore Colts", - "und": "Pittsburgh Steelers", - "sF": "34", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Oct 31, 1971", - "at": null, - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "19", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Oct 31, 1971", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "6", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 31, 1971", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Miami Dolphins", - "sF": "14", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 31, 1971", - "at": "@", - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "49", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Oct 31, 1971", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New England Patriots", - "sF": "27", - "sU": "10", - "spread": "20", - "ou": null - }, - { - "date": "Nov 1, 1971", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "14", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Nov 7, 1971", - "at": null, - "fav": "Atlanta Falcons", - "und": "Cincinnati Bengals", - "sF": "9", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Nov 7, 1971", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "34", - "sU": "0", - "spread": "17", - "ou": null - }, - { - "date": "Nov 7, 1971", - "at": null, - "fav": "Houston Oilers", - "und": "New England Patriots", - "sF": "20", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Nov 7, 1971", - "at": null, - "fav": "San Diego Chargers", - "und": "New York Giants", - "sF": "17", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Nov 7, 1971", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "10", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Nov 7, 1971", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "26", - "sU": "9", - "spread": "1", - "ou": null - }, - { - "date": "Nov 7, 1971", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "7", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Nov 7, 1971", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "14", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 7, 1971", - "at": null, - "fav": "Oakland Raiders", - "und": "New Orleans Saints", - "sF": "21", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Nov 7, 1971", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "16", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Nov 7, 1971", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "9", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 1971", - "at": null, - "fav": "Detroit Lions", - "und": "Denver Broncos", - "sF": "24", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 1971", - "at": "@", - "fav": "Baltimore Colts", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 14, 1971", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New York Giants", - "sF": "17", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 14, 1971", - "at": "@", - "fav": "Miami Dolphins", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Nov 14, 1971", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "38", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Nov 14, 1971", - "at": null, - "fav": "Baltimore Colts", - "und": "New York Jets", - "sF": "14", - "sU": "13", - "spread": "11", - "ou": null - }, - { - "date": "Nov 14, 1971", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Nov 14, 1971", - "at": "@", - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "13", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Nov 14, 1971", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "3", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Nov 14, 1971", - "at": "@", - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 14, 1971", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cleveland Browns", - "sF": "13", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Nov 14, 1971", - "at": "@", - "fav": "Oakland Raiders", - "und": "Houston Oilers", - "sF": "41", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Nov 14, 1971", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "20", - "sU": "26", - "spread": "14", - "ou": null - }, - { - "date": "Nov 15, 1971", - "at": "@", - "fav": "San Diego Chargers", - "und": "St Louis Cardinals", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 21, 1971", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "20", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 21, 1971", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "28", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Nov 21, 1971", - "at": "@", - "fav": "Cleveland Browns", - "und": "New England Patriots", - "sF": "27", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Nov 21, 1971", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 1971", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Giants", - "sF": "17", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 1971", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "13", - "sU": "0", - "spread": "1", - "ou": null - }, - { - "date": "Nov 21, 1971", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "28", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Nov 21, 1971", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "28", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Nov 21, 1971", - "at": null, - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "23", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 21, 1971", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "37", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 1971", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Nov 21, 1971", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "34", - "sU": "33", - "spread": "9", - "ou": null - }, - { - "date": "Nov 22, 1971", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Green Bay Packers", - "sF": "28", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 1971", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Los Angeles Rams", - "sF": "28", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 1971", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "San Diego Chargers", - "sF": "31", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 1971", - "at": "@", - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "7", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 1971", - "at": "@", - "fav": "New York Jets", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 1971", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "13", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 28, 1971", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Denver Broncos", - "sF": "10", - "sU": "22", - "spread": "9", - "ou": null - }, - { - "date": "Nov 28, 1971", - "at": "@", - "fav": "Green Bay Packers", - "und": "New Orleans Saints", - "sF": "21", - "sU": "29", - "spread": "8", - "ou": null - }, - { - "date": "Nov 28, 1971", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 28, 1971", - "at": null, - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "37", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 1971", - "at": "@", - "fav": "Oakland Raiders", - "und": "Baltimore Colts", - "sF": "14", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 1971", - "at": "@", - "fav": "Miami Dolphins", - "und": "Chicago Bears", - "sF": "34", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Dec 4, 1971", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Jets", - "sF": "52", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 1971", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Oakland Raiders", - "sF": "24", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 1971", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Dec 5, 1971", - "at": "@", - "fav": "Detroit Lions", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "23", - "spread": "13", - "ou": null - }, - { - "date": "Dec 5, 1971", - "at": null, - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "13", - "sU": "34", - "spread": "12", - "ou": null - }, - { - "date": "Dec 5, 1971", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "23", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 1971", - "at": "@", - "fav": "Baltimore Colts", - "und": "Buffalo Bills", - "sF": "24", - "sU": "0", - "spread": "16", - "ou": null - }, - { - "date": "Dec 5, 1971", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "3", - "sU": "29", - "spread": "4", - "ou": null - }, - { - "date": "Dec 5, 1971", - "at": "@", - "fav": "Denver Broncos", - "und": "Chicago Bears", - "sF": "6", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 1971", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "45", - "sU": "28", - "spread": "12", - "ou": null - }, - { - "date": "Dec 5, 1971", - "at": null, - "fav": "Minnesota Vikings", - "und": "San Diego Chargers", - "sF": "14", - "sU": "30", - "spread": "13", - "ou": null - }, - { - "date": "Dec 5, 1971", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Green Bay Packers", - "sF": "16", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Dec 6, 1971", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Dec 11, 1971", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "29", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 11, 1971", - "at": "@", - "fav": "Baltimore Colts", - "und": "Miami Dolphins", - "sF": "14", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Dec 12, 1971", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Dec 12, 1971", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "42", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Dec 12, 1971", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "13", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Dec 12, 1971", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "31", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 12, 1971", - "at": "@", - "fav": "New Orleans Saints", - "und": "Cleveland Browns", - "sF": "17", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Dec 12, 1971", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "16", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 12, 1971", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "45", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 12, 1971", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Dec 13, 1971", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Washington Redskins", - "sF": "24", - "sU": "38", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 1971", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "31", - "sU": "12", - "spread": "16", - "ou": null - }, - { - "date": "Dec 19, 1971", - "at": "@", - "fav": "Miami Dolphins", - "und": "Green Bay Packers", - "sF": "27", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Dec 19, 1971", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "41", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Dec 19, 1971", - "at": "@", - "fav": "New York Jets", - "und": "Cincinnati Bengals", - "sF": "35", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Dec 19, 1971", - "at": null, - "fav": "Los Angeles Rams", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 19, 1971", - "at": "@", - "fav": "Washington Redskins", - "und": "Cleveland Browns", - "sF": "13", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 19, 1971", - "at": "@", - "fav": "Baltimore Colts", - "und": "New England Patriots", - "sF": "17", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Dec 19, 1971", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "27", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 19, 1971", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "22", - "sU": "9", - "spread": "13", - "ou": null - }, - { - "date": "Dec 19, 1971", - "at": null, - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "24", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 1971", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "21", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Dec 19, 1971", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "31", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 25, 1971", - "at": null, - "fav": "Dallas Cowboys", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Dec 25, 1971", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Miami Dolphins", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1971", - "at": null, - "fav": "Baltimore Colts", - "und": "Cleveland Browns", - "sF": "20", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Dec 26, 1971", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "24", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Jan 2, 1972", - "at": "@", - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Jan 2, 1972", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "21", - "sU": "0", - "spread": "1", - "ou": null - }, - { - "date": "Jan 16, 1972", - "at": "N", - "fav": "Dallas Cowboys", - "und": "Miami Dolphins", - "sF": "24", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 17, 1972", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "41", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 17, 1972", - "at": null, - "fav": "Cincinnati Bengals", - "und": "New England Patriots", - "sF": "31", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 1972", - "at": null, - "fav": "Oakland Raiders", - "und": "Pittsburgh Steelers", - "sF": "28", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 1972", - "at": "@", - "fav": "Baltimore Colts", - "und": "St Louis Cardinals", - "sF": "3", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 17, 1972", - "at": null, - "fav": "Atlanta Falcons", - "und": "Chicago Bears", - "sF": "37", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Sep 17, 1972", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "6", - "spread": "15", - "ou": null - }, - { - "date": "Sep 17, 1972", - "at": "@", - "fav": "Detroit Lions", - "und": "New York Giants", - "sF": "30", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Sep 17, 1972", - "at": "@", - "fav": "Denver Broncos", - "und": "Houston Oilers", - "sF": "30", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 1972", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Miami Dolphins", - "sF": "10", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 1972", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "34", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Sep 17, 1972", - "at": "@", - "fav": "San Francisco 49ers", - "und": "San Diego Chargers", - "sF": "34", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 18, 1972", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Washington Redskins", - "sF": "21", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Sep 24, 1972", - "at": null, - "fav": "San Francisco 49ers", - "und": "Buffalo Bills", - "sF": "20", - "sU": "27", - "spread": "12", - "ou": null - }, - { - "date": "Sep 24, 1972", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "15", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 24, 1972", - "at": "@", - "fav": "Miami Dolphins", - "und": "Houston Oilers", - "sF": "34", - "sU": "13", - "spread": "15", - "ou": null - }, - { - "date": "Sep 24, 1972", - "at": null, - "fav": "Atlanta Falcons", - "und": "New England Patriots", - "sF": "20", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 1972", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "23", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Sep 24, 1972", - "at": null, - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 1972", - "at": "@", - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "24", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Sep 24, 1972", - "at": null, - "fav": "New York Jets", - "und": "Baltimore Colts", - "sF": "44", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Sep 24, 1972", - "at": null, - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "13", - "sU": "13", - "spread": "11", - "ou": null - }, - { - "date": "Sep 24, 1972", - "at": null, - "fav": "Oakland Raiders", - "und": "Green Bay Packers", - "sF": "20", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 24, 1972", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "34", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Sep 24, 1972", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "37", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 1972", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New Orleans Saints", - "sF": "20", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Oct 1, 1972", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "3", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Oct 1, 1972", - "at": null, - "fav": "Baltimore Colts", - "und": "Buffalo Bills", - "sF": "17", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Oct 1, 1972", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "6", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Oct 1, 1972", - "at": null, - "fav": "Washington Redskins", - "und": "New England Patriots", - "sF": "23", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Oct 1, 1972", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "38", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Oct 1, 1972", - "at": null, - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "13", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 1, 1972", - "at": null, - "fav": "New York Jets", - "und": "Houston Oilers", - "sF": "20", - "sU": "26", - "spread": "12", - "ou": null - }, - { - "date": "Oct 1, 1972", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "37", - "sU": "2", - "spread": "13", - "ou": null - }, - { - "date": "Oct 1, 1972", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "St Louis Cardinals", - "sF": "25", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Oct 1, 1972", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "45", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Oct 1, 1972", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Miami Dolphins", - "sF": "14", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Oct 1, 1972", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "17", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 2, 1972", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Oct 8, 1972", - "at": null, - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "26", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 8, 1972", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "14", - "sU": "38", - "spread": "4", - "ou": null - }, - { - "date": "Oct 8, 1972", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Denver Broncos", - "sF": "21", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 8, 1972", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Cleveland Browns", - "sF": "31", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 8, 1972", - "at": "@", - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "45", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Oct 8, 1972", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "27", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 8, 1972", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "0", - "spread": "16", - "ou": null - }, - { - "date": "Oct 8, 1972", - "at": "@", - "fav": "Baltimore Colts", - "und": "San Diego Chargers", - "sF": "20", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Oct 8, 1972", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 8, 1972", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "20", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Oct 8, 1972", - "at": "@", - "fav": "Minnesota Vikings", - "und": "St Louis Cardinals", - "sF": "17", - "sU": "19", - "spread": "14", - "ou": null - }, - { - "date": "Oct 8, 1972", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "7", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Oct 9, 1972", - "at": null, - "fav": "Oakland Raiders", - "und": "Houston Oilers", - "sF": "34", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Oct 15, 1972", - "at": "@", - "fav": "Cleveland Browns", - "und": "Chicago Bears", - "sF": "0", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 15, 1972", - "at": "@", - "fav": "Miami Dolphins", - "und": "San Diego Chargers", - "sF": "24", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 15, 1972", - "at": null, - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "41", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 15, 1972", - "at": null, - "fav": "Los Angeles Rams", - "und": "Philadelphia Eagles", - "sF": "34", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Oct 15, 1972", - "at": null, - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "21", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Oct 15, 1972", - "at": null, - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "33", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Oct 15, 1972", - "at": null, - "fav": "Dallas Cowboys", - "und": "Baltimore Colts", - "sF": "21", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 1972", - "at": null, - "fav": "Minnesota Vikings", - "und": "Denver Broncos", - "sF": "23", - "sU": "20", - "spread": "11", - "ou": null - }, - { - "date": "Oct 15, 1972", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cincinnati Bengals", - "sF": "16", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Oct 15, 1972", - "at": "@", - "fav": "Oakland Raiders", - "und": "Buffalo Bills", - "sF": "28", - "sU": "16", - "spread": "13", - "ou": null - }, - { - "date": "Oct 15, 1972", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "24", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Oct 15, 1972", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "17", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Oct 16, 1972", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "23", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 1972", - "at": "@", - "fav": "Detroit Lions", - "und": "San Diego Chargers", - "sF": "34", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 1972", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "24", - "sU": "23", - "spread": "13", - "ou": null - }, - { - "date": "Oct 22, 1972", - "at": "@", - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Oct 22, 1972", - "at": "@", - "fav": "New York Jets", - "und": "Baltimore Colts", - "sF": "24", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Oct 22, 1972", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New England Patriots", - "sF": "33", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Oct 22, 1972", - "at": "@", - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "9", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 22, 1972", - "at": null, - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "23", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 22, 1972", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "21", - "spread": "17", - "ou": null - }, - { - "date": "Oct 22, 1972", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Cincinnati Bengals", - "sF": "15", - "sU": "12", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 1972", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "23", - "sU": "30", - "spread": "10", - "ou": null - }, - { - "date": "Oct 22, 1972", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "20", - "sU": "20", - "spread": "12", - "ou": null - }, - { - "date": "Oct 22, 1972", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 1972", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "10", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 29, 1972", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "49", - "spread": "7", - "ou": null - }, - { - "date": "Oct 29, 1972", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Buffalo Bills", - "sF": "38", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Oct 29, 1972", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "30", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Oct 29, 1972", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "23", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 29, 1972", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "34", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Oct 29, 1972", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "27", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 29, 1972", - "at": "@", - "fav": "New Orleans Saints", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Oct 29, 1972", - "at": null, - "fav": "Chicago Bears", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 29, 1972", - "at": null, - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "23", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Oct 29, 1972", - "at": "@", - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "20", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Oct 29, 1972", - "at": "@", - "fav": "Oakland Raiders", - "und": "Los Angeles Rams", - "sF": "45", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 29, 1972", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "26", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 1972", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "28", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 5, 1972", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "30", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Nov 5, 1972", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "20", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Nov 5, 1972", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "14", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Nov 5, 1972", - "at": "@", - "fav": "New York Giants", - "und": "Denver Broncos", - "sF": "29", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 5, 1972", - "at": null, - "fav": "Washington Redskins", - "und": "New York Jets", - "sF": "35", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 5, 1972", - "at": null, - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "6", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Nov 5, 1972", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "40", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 5, 1972", - "at": null, - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "24", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Nov 5, 1972", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "37", - "sU": "6", - "spread": "16", - "ou": null - }, - { - "date": "Nov 5, 1972", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "27", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Nov 5, 1972", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 5, 1972", - "at": null, - "fav": "Dallas Cowboys", - "und": "San Diego Chargers", - "sF": "34", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Nov 6, 1972", - "at": null, - "fav": "Baltimore Colts", - "und": "New England Patriots", - "sF": "24", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 12, 1972", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "36", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Nov 12, 1972", - "at": null, - "fav": "Oakland Raiders", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Nov 12, 1972", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "52", - "sU": "0", - "spread": "18", - "ou": null - }, - { - "date": "Nov 12, 1972", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "41", - "sU": "3", - "spread": "11", - "ou": null - }, - { - "date": "Nov 12, 1972", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "27", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Nov 12, 1972", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "23", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 1972", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "33", - "sU": "24", - "spread": "17", - "ou": null - }, - { - "date": "Nov 12, 1972", - "at": "@", - "fav": "Houston Oilers", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "18", - "spread": "4", - "ou": null - }, - { - "date": "Nov 12, 1972", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Denver Broncos", - "sF": "10", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Nov 12, 1972", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "16", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 12, 1972", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Baltimore Colts", - "sF": "24", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 1972", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cleveland Browns", - "sF": "17", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 19, 1972", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Baltimore Colts", - "sF": "19", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 19, 1972", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "24", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Nov 19, 1972", - "at": "@", - "fav": "Detroit Lions", - "und": "New Orleans Saints", - "sF": "27", - "sU": "14", - "spread": "17", - "ou": null - }, - { - "date": "Nov 19, 1972", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "28", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Nov 19, 1972", - "at": null, - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "27", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Nov 19, 1972", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Nov 19, 1972", - "at": null, - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "34", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 19, 1972", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "37", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 19, 1972", - "at": null, - "fav": "Green Bay Packers", - "und": "Houston Oilers", - "sF": "23", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 19, 1972", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "17", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Nov 19, 1972", - "at": null, - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "13", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 19, 1972", - "at": null, - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "45", - "sU": "41", - "spread": "4", - "ou": null - }, - { - "date": "Nov 20, 1972", - "at": "@", - "fav": "Washington Redskins", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 1972", - "at": "@", - "fav": "Detroit Lions", - "und": "New York Jets", - "sF": "37", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 1972", - "at": "@", - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "10", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Nov 26, 1972", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Denver Broncos", - "sF": "23", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Nov 26, 1972", - "at": "@", - "fav": "Cleveland Browns", - "und": "Buffalo Bills", - "sF": "27", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 26, 1972", - "at": null, - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "16", - "sU": "19", - "spread": "13", - "ou": null - }, - { - "date": "Nov 26, 1972", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "62", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Nov 26, 1972", - "at": null, - "fav": "Minnesota Vikings", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 26, 1972", - "at": "@", - "fav": "Washington Redskins", - "und": "Green Bay Packers", - "sF": "21", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 26, 1972", - "at": "@", - "fav": "Baltimore Colts", - "und": "New England Patriots", - "sF": "31", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Nov 26, 1972", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Chicago Bears", - "sF": "13", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Nov 26, 1972", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "26", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Nov 26, 1972", - "at": "@", - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "34", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Nov 27, 1972", - "at": "@", - "fav": "Miami Dolphins", - "und": "St Louis Cardinals", - "sF": "31", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Dec 3, 1972", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Houston Oilers", - "sF": "20", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Dec 3, 1972", - "at": null, - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "37", - "sU": "21", - "spread": "17", - "ou": null - }, - { - "date": "Dec 3, 1972", - "at": "@", - "fav": "New York Jets", - "und": "New Orleans Saints", - "sF": "18", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Dec 3, 1972", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "7", - "spread": "17", - "ou": null - }, - { - "date": "Dec 3, 1972", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "30", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Dec 3, 1972", - "at": "@", - "fav": "Baltimore Colts", - "und": "Buffalo Bills", - "sF": "35", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Dec 3, 1972", - "at": null, - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "7", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 1972", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "24", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Dec 3, 1972", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "23", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Dec 3, 1972", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "21", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Dec 3, 1972", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "6", - "spread": "12", - "ou": null - }, - { - "date": "Dec 4, 1972", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "16", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Dec 9, 1972", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "24", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Dec 9, 1972", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "34", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 10, 1972", - "at": null, - "fav": "Detroit Lions", - "und": "Buffalo Bills", - "sF": "21", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Dec 10, 1972", - "at": "@", - "fav": "New Orleans Saints", - "und": "New England Patriots", - "sF": "10", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Dec 10, 1972", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Giants", - "sF": "23", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 10, 1972", - "at": null, - "fav": "Chicago Bears", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "12", - "spread": "4", - "ou": null - }, - { - "date": "Dec 10, 1972", - "at": null, - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "13", - "sU": "38", - "spread": "5", - "ou": null - }, - { - "date": "Dec 10, 1972", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "9", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Dec 10, 1972", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "7", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Dec 10, 1972", - "at": null, - "fav": "Los Angeles Rams", - "und": "St Louis Cardinals", - "sF": "14", - "sU": "24", - "spread": "11", - "ou": null - }, - { - "date": "Dec 10, 1972", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Baltimore Colts", - "sF": "24", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 1972", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Dec 11, 1972", - "at": "@", - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "24", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Dec 16, 1972", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "16", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Dec 16, 1972", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 1972", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 1972", - "at": null, - "fav": "Cleveland Browns", - "und": "New York Jets", - "sF": "26", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 1972", - "at": "@", - "fav": "Washington Redskins", - "und": "Buffalo Bills", - "sF": "17", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Dec 17, 1972", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "61", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 17, 1972", - "at": null, - "fav": "Green Bay Packers", - "und": "New Orleans Saints", - "sF": "30", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Dec 17, 1972", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "23", - "spread": "9", - "ou": null - }, - { - "date": "Dec 17, 1972", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "3", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Dec 17, 1972", - "at": "@", - "fav": "Denver Broncos", - "und": "New England Patriots", - "sF": "45", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Dec 17, 1972", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "17", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 1972", - "at": "@", - "fav": "Oakland Raiders", - "und": "Chicago Bears", - "sF": "28", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Dec 17, 1972", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "24", - "sU": "2", - "spread": "4", - "ou": null - }, - { - "date": "Dec 23, 1972", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Oakland Raiders", - "sF": "13", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 24, 1972", - "at": "@", - "fav": "Washington Redskins", - "und": "Green Bay Packers", - "sF": "16", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Dec 24, 1972", - "at": "@", - "fav": "Miami Dolphins", - "und": "Cleveland Browns", - "sF": "20", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Dec 31, 1972", - "at": null, - "fav": "Miami Dolphins", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 31, 1972", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "26", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Jan 14, 1973", - "at": "N", - "fav": "Miami Dolphins", - "und": "Washington Redskins", - "sF": "14", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Sep 16, 1973", - "at": "@", - "fav": "Cleveland Browns", - "und": "Baltimore Colts", - "sF": "24", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 16, 1973", - "at": "@", - "fav": "Miami Dolphins", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Sep 16, 1973", - "at": "@", - "fav": "New York Giants", - "und": "Houston Oilers", - "sF": "34", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Sep 16, 1973", - "at": null, - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "34", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Sep 16, 1973", - "at": "@", - "fav": "Washington Redskins", - "und": "San Diego Chargers", - "sF": "38", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Sep 16, 1973", - "at": null, - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "20", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Sep 16, 1973", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Oakland Raiders", - "sF": "24", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Sep 16, 1973", - "at": null, - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "62", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 16, 1973", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Denver Broncos", - "sF": "10", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 1973", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Rams", - "sF": "13", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Sep 16, 1973", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Detroit Lions", - "sF": "24", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 17, 1973", - "at": "@", - "fav": "Green Bay Packers", - "und": "New York Jets", - "sF": "23", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 1973", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "24", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Sep 23, 1973", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New England Patriots", - "sF": "10", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 23, 1973", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "23", - "spread": "15", - "ou": null - }, - { - "date": "Sep 23, 1973", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "33", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Sep 23, 1973", - "at": null, - "fav": "New York Jets", - "und": "Baltimore Colts", - "sF": "34", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 23, 1973", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "22", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Sep 23, 1973", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "13", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Sep 23, 1973", - "at": null, - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "34", - "spread": "10", - "ou": null - }, - { - "date": "Sep 23, 1973", - "at": null, - "fav": "San Francisco 49ers", - "und": "Denver Broncos", - "sF": "36", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Sep 23, 1973", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 1973", - "at": null, - "fav": "Miami Dolphins", - "und": "Oakland Raiders", - "sF": "7", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 1973", - "at": "@", - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "34", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Sep 24, 1973", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "40", - "sU": "3", - "spread": "20", - "ou": null - }, - { - "date": "Sep 30, 1973", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "7", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Sep 30, 1973", - "at": null, - "fav": "New York Giants", - "und": "Cleveland Browns", - "sF": "10", - "sU": "12", - "spread": "4", - "ou": null - }, - { - "date": "Sep 30, 1973", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "44", - "sU": "23", - "spread": "20", - "ou": null - }, - { - "date": "Sep 30, 1973", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Sep 30, 1973", - "at": "@", - "fav": "Baltimore Colts", - "und": "New Orleans Saints", - "sF": "14", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Sep 30, 1973", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "45", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Sep 30, 1973", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "36", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Sep 30, 1973", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "11", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 30, 1973", - "at": "@", - "fav": "Denver Broncos", - "und": "Chicago Bears", - "sF": "14", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 1973", - "at": null, - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "3", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Sep 30, 1973", - "at": null, - "fav": "Cincinnati Bengals", - "und": "San Diego Chargers", - "sF": "20", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 1973", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "40", - "spread": "1", - "ou": null - }, - { - "date": "Oct 1, 1973", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 1973", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Oct 7, 1973", - "at": "@", - "fav": "Buffalo Bills", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Oct 7, 1973", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "10", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 7, 1973", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "31", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Oct 7, 1973", - "at": "@", - "fav": "New England Patriots", - "und": "Baltimore Colts", - "sF": "24", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 1973", - "at": null, - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "16", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Oct 7, 1973", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "38", - "sU": "21", - "spread": "19", - "ou": null - }, - { - "date": "Oct 7, 1973", - "at": null, - "fav": "Los Angeles Rams", - "und": "Houston Oilers", - "sF": "31", - "sU": "26", - "spread": "15", - "ou": null - }, - { - "date": "Oct 7, 1973", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "16", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 1973", - "at": null, - "fav": "Chicago Bears", - "und": "New Orleans Saints", - "sF": "16", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Oct 7, 1973", - "at": null, - "fav": "Oakland Raiders", - "und": "St Louis Cardinals", - "sF": "17", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 7, 1973", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "23", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Oct 8, 1973", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "14", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Oct 14, 1973", - "at": "@", - "fav": "Buffalo Bills", - "und": "Baltimore Colts", - "sF": "31", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 14, 1973", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "7", - "sU": "19", - "spread": "10", - "ou": null - }, - { - "date": "Oct 14, 1973", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "7", - "sU": "9", - "spread": "8", - "ou": null - }, - { - "date": "Oct 14, 1973", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "21", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Oct 14, 1973", - "at": "@", - "fav": "Green Bay Packers", - "und": "Kansas City Chiefs", - "sF": "10", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 14, 1973", - "at": null, - "fav": "Denver Broncos", - "und": "Houston Oilers", - "sF": "48", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 14, 1973", - "at": null, - "fav": "Detroit Lions", - "und": "New Orleans Saints", - "sF": "13", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Oct 14, 1973", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Oct 14, 1973", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "27", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Oct 14, 1973", - "at": null, - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 15, 1973", - "at": null, - "fav": "Miami Dolphins", - "und": "Cleveland Browns", - "sF": "17", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Oct 21, 1973", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "42", - "sU": "13", - "spread": "12", - "ou": null - }, - { - "date": "Oct 21, 1973", - "at": "@", - "fav": "Detroit Lions", - "und": "Baltimore Colts", - "sF": "27", - "sU": "29", - "spread": "14", - "ou": null - }, - { - "date": "Oct 21, 1973", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "27", - "sU": "6", - "spread": "14", - "ou": null - }, - { - "date": "Oct 21, 1973", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "26", - "sU": "14", - "spread": "18", - "ou": null - }, - { - "date": "Oct 21, 1973", - "at": "@", - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "31", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Oct 21, 1973", - "at": "@", - "fav": "Chicago Bears", - "und": "New England Patriots", - "sF": "10", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Oct 21, 1973", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Oct 21, 1973", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Oct 21, 1973", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "45", - "sU": "28", - "spread": "11", - "ou": null - }, - { - "date": "Oct 21, 1973", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "24", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 21, 1973", - "at": null, - "fav": "Atlanta Falcons", - "und": "San Diego Chargers", - "sF": "41", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Oct 21, 1973", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "40", - "sU": "0", - "spread": "14", - "ou": null - }, - { - "date": "Oct 22, 1973", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "23", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 28, 1973", - "at": "@", - "fav": "Cleveland Browns", - "und": "San Diego Chargers", - "sF": "16", - "sU": "16", - "spread": "14", - "ou": null - }, - { - "date": "Oct 28, 1973", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "34", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Oct 28, 1973", - "at": null, - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "30", - "sU": "14", - "spread": "15", - "ou": null - }, - { - "date": "Oct 28, 1973", - "at": null, - "fav": "Denver Broncos", - "und": "New York Jets", - "sF": "40", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Oct 28, 1973", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "30", - "spread": "10", - "ou": null - }, - { - "date": "Oct 28, 1973", - "at": null, - "fav": "Oakland Raiders", - "und": "Baltimore Colts", - "sF": "34", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Oct 28, 1973", - "at": "@", - "fav": "Chicago Bears", - "und": "Houston Oilers", - "sF": "35", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 28, 1973", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "10", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 1973", - "at": null, - "fav": "Washington Redskins", - "und": "New Orleans Saints", - "sF": "3", - "sU": "19", - "spread": "15", - "ou": null - }, - { - "date": "Oct 28, 1973", - "at": null, - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 1973", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Oct 28, 1973", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "3", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 1973", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "14", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Nov 4, 1973", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "15", - "spread": "4", - "ou": null - }, - { - "date": "Nov 4, 1973", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "24", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Nov 4, 1973", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New England Patriots", - "sF": "24", - "sU": "23", - "spread": "9", - "ou": null - }, - { - "date": "Nov 4, 1973", - "at": "@", - "fav": "Baltimore Colts", - "und": "Houston Oilers", - "sF": "27", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Nov 4, 1973", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Cincinnati Bengals", - "sF": "38", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 4, 1973", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "17", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 4, 1973", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Cleveland Browns", - "sF": "26", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Nov 4, 1973", - "at": null, - "fav": "Buffalo Bills", - "und": "New Orleans Saints", - "sF": "0", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Nov 4, 1973", - "at": null, - "fav": "Denver Broncos", - "und": "St Louis Cardinals", - "sF": "17", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 4, 1973", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "30", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 4, 1973", - "at": "@", - "fav": "Oakland Raiders", - "und": "New York Giants", - "sF": "42", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Nov 4, 1973", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "19", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 5, 1973", - "at": null, - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 11, 1973", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Buffalo Bills", - "sF": "16", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Nov 11, 1973", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "44", - "sU": "0", - "spread": "20", - "ou": null - }, - { - "date": "Nov 11, 1973", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "23", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Nov 11, 1973", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "33", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 11, 1973", - "at": null, - "fav": "Atlanta Falcons", - "und": "Philadelphia Eagles", - "sF": "44", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 11, 1973", - "at": "@", - "fav": "Washington Redskins", - "und": "San Francisco 49ers", - "sF": "33", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Nov 11, 1973", - "at": "@", - "fav": "Green Bay Packers", - "und": "St Louis Cardinals", - "sF": "25", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 11, 1973", - "at": null, - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "23", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Nov 11, 1973", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "28", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 11, 1973", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "30", - "sU": "19", - "spread": "10", - "ou": null - }, - { - "date": "Nov 11, 1973", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "29", - "sU": "7", - "spread": "15", - "ou": null - }, - { - "date": "Nov 11, 1973", - "at": "@", - "fav": "Oakland Raiders", - "und": "Pittsburgh Steelers", - "sF": "9", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 12, 1973", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Chicago Bears", - "sF": "19", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 18, 1973", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "17", - "sU": "0", - "spread": "14", - "ou": null - }, - { - "date": "Nov 18, 1973", - "at": null, - "fav": "Green Bay Packers", - "und": "New England Patriots", - "sF": "24", - "sU": "33", - "spread": "7", - "ou": null - }, - { - "date": "Nov 18, 1973", - "at": "@", - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "24", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 1973", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Denver Broncos", - "sF": "13", - "sU": "23", - "spread": "11", - "ou": null - }, - { - "date": "Nov 18, 1973", - "at": "@", - "fav": "Washington Redskins", - "und": "Baltimore Colts", - "sF": "22", - "sU": "14", - "spread": "19", - "ou": null - }, - { - "date": "Nov 18, 1973", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "30", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 18, 1973", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New York Jets", - "sF": "20", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Nov 18, 1973", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Nov 18, 1973", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "38", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Nov 18, 1973", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Nov 18, 1973", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cleveland Browns", - "sF": "3", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Nov 18, 1973", - "at": "@", - "fav": "San Diego Chargers", - "und": "New Orleans Saints", - "sF": "17", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Nov 19, 1973", - "at": null, - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Nov 22, 1973", - "at": null, - "fav": "Washington Redskins", - "und": "Detroit Lions", - "sF": "20", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Nov 22, 1973", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Miami Dolphins", - "sF": "7", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 25, 1973", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "St Louis Cardinals", - "sF": "42", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Nov 25, 1973", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "16", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 25, 1973", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 25, 1973", - "at": null, - "fav": "Buffalo Bills", - "und": "Baltimore Colts", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 1973", - "at": null, - "fav": "New England Patriots", - "und": "Houston Oilers", - "sF": "32", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 1973", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "31", - "sU": "13", - "spread": "15", - "ou": null - }, - { - "date": "Nov 25, 1973", - "at": null, - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "24", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Nov 25, 1973", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Nov 25, 1973", - "at": null, - "fav": "Atlanta Falcons", - "und": "New York Jets", - "sF": "28", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Nov 25, 1973", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "31", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Nov 26, 1973", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "20", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Dec 2, 1973", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Buffalo Bills", - "sF": "6", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Dec 2, 1973", - "at": null, - "fav": "Minnesota Vikings", - "und": "Cincinnati Bengals", - "sF": "0", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 1973", - "at": "@", - "fav": "New England Patriots", - "und": "San Diego Chargers", - "sF": "30", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Dec 2, 1973", - "at": "@", - "fav": "New York Jets", - "und": "Baltimore Colts", - "sF": "20", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Dec 2, 1973", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "27", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Dec 2, 1973", - "at": null, - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "26", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Dec 2, 1973", - "at": "@", - "fav": "Green Bay Packers", - "und": "New Orleans Saints", - "sF": "30", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 1973", - "at": null, - "fav": "Oakland Raiders", - "und": "Houston Oilers", - "sF": "17", - "sU": "6", - "spread": "19", - "ou": null - }, - { - "date": "Dec 2, 1973", - "at": null, - "fav": "Detroit Lions", - "und": "St Louis Cardinals", - "sF": "20", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Dec 2, 1973", - "at": null, - "fav": "Dallas Cowboys", - "und": "Denver Broncos", - "sF": "22", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 2, 1973", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cleveland Browns", - "sF": "20", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Dec 2, 1973", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Dec 3, 1973", - "at": "@", - "fav": "Miami Dolphins", - "und": "Pittsburgh Steelers", - "sF": "30", - "sU": "26", - "spread": "8", - "ou": null - }, - { - "date": "Dec 8, 1973", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "31", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Dec 8, 1973", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "37", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 9, 1973", - "at": "@", - "fav": "Atlanta Falcons", - "und": "St Louis Cardinals", - "sF": "10", - "sU": "32", - "spread": "14", - "ou": null - }, - { - "date": "Dec 9, 1973", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "37", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Dec 9, 1973", - "at": null, - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 1973", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "40", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Dec 9, 1973", - "at": null, - "fav": "New York Jets", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 9, 1973", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "33", - "sU": "7", - "spread": "21", - "ou": null - }, - { - "date": "Dec 9, 1973", - "at": null, - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "3", - "sU": "16", - "spread": "16", - "ou": null - }, - { - "date": "Dec 9, 1973", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "10", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Dec 9, 1973", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "27", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Dec 9, 1973", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "42", - "sU": "28", - "spread": "9", - "ou": null - }, - { - "date": "Dec 10, 1973", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New York Giants", - "sF": "40", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Dec 15, 1973", - "at": "@", - "fav": "Miami Dolphins", - "und": "Detroit Lions", - "sF": "34", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Dec 15, 1973", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "San Francisco 49ers", - "sF": "37", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 16, 1973", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "14", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Dec 16, 1973", - "at": null, - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "31", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Dec 16, 1973", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "14", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 1973", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Dec 16, 1973", - "at": "@", - "fav": "Baltimore Colts", - "und": "New England Patriots", - "sF": "18", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 16, 1973", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "21", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Dec 16, 1973", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "27", - "sU": "24", - "spread": "17", - "ou": null - }, - { - "date": "Dec 16, 1973", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "33", - "sU": "6", - "spread": "12", - "ou": null - }, - { - "date": "Dec 16, 1973", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "30", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Dec 16, 1973", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Cleveland Browns", - "sF": "30", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 16, 1973", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "21", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 22, 1973", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Washington Redskins", - "sF": "27", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Dec 22, 1973", - "at": "@", - "fav": "Oakland Raiders", - "und": "Pittsburgh Steelers", - "sF": "33", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 1973", - "at": "@", - "fav": "Miami Dolphins", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Dec 23, 1973", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Los Angeles Rams", - "sF": "27", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Dec 30, 1973", - "at": null, - "fav": "Minnesota Vikings", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Dec 30, 1973", - "at": "@", - "fav": "Miami Dolphins", - "und": "Oakland Raiders", - "sF": "27", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Jan 13, 1974", - "at": "N", - "fav": "Miami Dolphins", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 15, 1974", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "33", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 15, 1974", - "at": null, - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "24", - "sU": "34", - "spread": "14", - "ou": null - }, - { - "date": "Sep 15, 1974", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "13", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 15, 1974", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Colts", - "sF": "30", - "sU": "0", - "spread": "17", - "ou": null - }, - { - "date": "Sep 15, 1974", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "9", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Sep 15, 1974", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "32", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 15, 1974", - "at": "@", - "fav": "Houston Oilers", - "und": "San Diego Chargers", - "sF": "21", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Sep 15, 1974", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "13", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Sep 15, 1974", - "at": null, - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "3", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Sep 15, 1974", - "at": null, - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "0", - "spread": "1", - "ou": null - }, - { - "date": "Sep 15, 1974", - "at": null, - "fav": "Los Angeles Rams", - "und": "Denver Broncos", - "sF": "17", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 15, 1974", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "24", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Sep 16, 1974", - "at": null, - "fav": "Oakland Raiders", - "und": "Buffalo Bills", - "sF": "20", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Sep 22, 1974", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "10", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Sep 22, 1974", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "24", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Sep 22, 1974", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "San Diego Chargers", - "sF": "17", - "sU": "20", - "spread": "19", - "ou": null - }, - { - "date": "Sep 22, 1974", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "20", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Sep 22, 1974", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "7", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Sep 22, 1974", - "at": "@", - "fav": "New York Giants", - "und": "New England Patriots", - "sF": "20", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 1974", - "at": "@", - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "10", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Sep 22, 1974", - "at": null, - "fav": "Green Bay Packers", - "und": "Baltimore Colts", - "sF": "20", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Sep 22, 1974", - "at": null, - "fav": "New York Jets", - "und": "Chicago Bears", - "sF": "23", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Sep 22, 1974", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Denver Broncos", - "sF": "35", - "sU": "35", - "spread": "7", - "ou": null - }, - { - "date": "Sep 22, 1974", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "24", - "sU": "0", - "spread": "20", - "ou": null - }, - { - "date": "Sep 22, 1974", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Sep 23, 1974", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Sep 29, 1974", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "16", - "sU": "12", - "spread": "4", - "ou": null - }, - { - "date": "Sep 29, 1974", - "at": null, - "fav": "Los Angeles Rams", - "und": "New England Patriots", - "sF": "14", - "sU": "20", - "spread": "12", - "ou": null - }, - { - "date": "Sep 29, 1974", - "at": null, - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "13", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 1974", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Baltimore Colts", - "sF": "30", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Sep 29, 1974", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "6", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Sep 29, 1974", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "21", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Sep 29, 1974", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "17", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 29, 1974", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "11", - "sU": "7", - "spread": "15", - "ou": null - }, - { - "date": "Sep 29, 1974", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Cleveland Browns", - "sF": "29", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 1974", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Oakland Raiders", - "sF": "0", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 29, 1974", - "at": null, - "fav": "Miami Dolphins", - "und": "San Diego Chargers", - "sF": "28", - "sU": "21", - "spread": "15", - "ou": null - }, - { - "date": "Sep 29, 1974", - "at": null, - "fav": "Cincinnati Bengals", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Sep 30, 1974", - "at": "@", - "fav": "Washington Redskins", - "und": "Denver Broncos", - "sF": "30", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1974", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Washington Redskins", - "sF": "28", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 6, 1974", - "at": null, - "fav": "Oakland Raiders", - "und": "Cleveland Browns", - "sF": "40", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Oct 6, 1974", - "at": "@", - "fav": "New England Patriots", - "und": "Baltimore Colts", - "sF": "42", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Oct 6, 1974", - "at": "@", - "fav": "New York Giants", - "und": "Atlanta Falcons", - "sF": "7", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1974", - "at": "@", - "fav": "Chicago Bears", - "und": "New Orleans Saints", - "sF": "24", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 6, 1974", - "at": null, - "fav": "Buffalo Bills", - "und": "Green Bay Packers", - "sF": "27", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1974", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "13", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Oct 6, 1974", - "at": null, - "fav": "Minnesota Vikings", - "und": "Dallas Cowboys", - "sF": "23", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Oct 6, 1974", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 6, 1974", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "16", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Oct 6, 1974", - "at": null, - "fav": "Philadelphia Eagles", - "und": "San Diego Chargers", - "sF": "13", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Oct 6, 1974", - "at": null, - "fav": "St Louis Cardinals", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 1974", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "21", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Oct 13, 1974", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Chicago Bears", - "sF": "13", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 13, 1974", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "34", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Oct 13, 1974", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "24", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 1974", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "35", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 1974", - "at": null, - "fav": "Miami Dolphins", - "und": "Washington Redskins", - "sF": "17", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Oct 13, 1974", - "at": null, - "fav": "Buffalo Bills", - "und": "Baltimore Colts", - "sF": "27", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Oct 13, 1974", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "34", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Oct 13, 1974", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Houston Oilers", - "sF": "51", - "sU": "10", - "spread": "16", - "ou": null - }, - { - "date": "Oct 13, 1974", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "28", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 1974", - "at": "@", - "fav": "Denver Broncos", - "und": "New Orleans Saints", - "sF": "33", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Oct 13, 1974", - "at": null, - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "6", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Oct 13, 1974", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "14", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Oct 14, 1974", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Oct 20, 1974", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "3", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Oct 20, 1974", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "30", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 1974", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 20, 1974", - "at": "@", - "fav": "New York Jets", - "und": "Baltimore Colts", - "sF": "20", - "sU": "35", - "spread": "12", - "ou": null - }, - { - "date": "Oct 20, 1974", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "20", - "sU": "16", - "spread": "14", - "ou": null - }, - { - "date": "Oct 20, 1974", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "24", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Oct 20, 1974", - "at": null, - "fav": "St Louis Cardinals", - "und": "Houston Oilers", - "sF": "31", - "sU": "27", - "spread": "12", - "ou": null - }, - { - "date": "Oct 20, 1974", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "16", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Oct 20, 1974", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "27", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Oct 20, 1974", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "37", - "sU": "14", - "spread": "15", - "ou": null - }, - { - "date": "Oct 20, 1974", - "at": "@", - "fav": "Miami Dolphins", - "und": "Kansas City Chiefs", - "sF": "9", - "sU": "3", - "spread": "12", - "ou": null - }, - { - "date": "Oct 20, 1974", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cincinnati Bengals", - "sF": "30", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Oct 21, 1974", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "10", - "sU": "9", - "spread": "1", - "ou": null - }, - { - "date": "Oct 27, 1974", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New Orleans Saints", - "sF": "10", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 27, 1974", - "at": "@", - "fav": "Buffalo Bills", - "und": "Chicago Bears", - "sF": "16", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Oct 27, 1974", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "21", - "sU": "34", - "spread": "16", - "ou": null - }, - { - "date": "Oct 27, 1974", - "at": null, - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "21", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 27, 1974", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "19", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 27, 1974", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "17", - "sU": "7", - "spread": "15", - "ou": null - }, - { - "date": "Oct 27, 1974", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "21", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Oct 27, 1974", - "at": null, - "fav": "Los Angeles Rams", - "und": "New York Jets", - "sF": "20", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Oct 27, 1974", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New England Patriots", - "sF": "14", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 27, 1974", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "24", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 1974", - "at": null, - "fav": "Oakland Raiders", - "und": "San Francisco 49ers", - "sF": "35", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Oct 28, 1974", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Nov 3, 1974", - "at": "@", - "fav": "Detroit Lions", - "und": "New Orleans Saints", - "sF": "19", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Nov 3, 1974", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "28", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 1974", - "at": "@", - "fav": "New York Jets", - "und": "Houston Oilers", - "sF": "22", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 1974", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Nov 3, 1974", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Baltimore Colts", - "sF": "24", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Nov 3, 1974", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "17", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Nov 3, 1974", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "17", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Nov 3, 1974", - "at": null, - "fav": "Washington Redskins", - "und": "Green Bay Packers", - "sF": "17", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 1974", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "28", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 3, 1974", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Giants", - "sF": "27", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Nov 3, 1974", - "at": "@", - "fav": "Miami Dolphins", - "und": "Atlanta Falcons", - "sF": "42", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 3, 1974", - "at": null, - "fav": "Cleveland Browns", - "und": "San Diego Chargers", - "sF": "35", - "sU": "36", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 1974", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "15", - "sU": "13", - "spread": "12", - "ou": null - }, - { - "date": "Nov 10, 1974", - "at": "@", - "fav": "Buffalo Bills", - "und": "Houston Oilers", - "sF": "9", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Nov 10, 1974", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "7", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 10, 1974", - "at": "@", - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "14", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Nov 10, 1974", - "at": "@", - "fav": "New York Giants", - "und": "New York Jets", - "sF": "20", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Nov 10, 1974", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 10, 1974", - "at": null, - "fav": "Denver Broncos", - "und": "Baltimore Colts", - "sF": "17", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Nov 10, 1974", - "at": "@", - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Nov 10, 1974", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "20", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Nov 10, 1974", - "at": null, - "fav": "Miami Dolphins", - "und": "New Orleans Saints", - "sF": "21", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Nov 10, 1974", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 1974", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Nov 10, 1974", - "at": "@", - "fav": "Oakland Raiders", - "und": "Detroit Lions", - "sF": "35", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Nov 11, 1974", - "at": null, - "fav": "Minnesota Vikings", - "und": "St Louis Cardinals", - "sF": "28", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 1974", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Baltimore Colts", - "sF": "7", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 17, 1974", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "26", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 17, 1974", - "at": "@", - "fav": "Detroit Lions", - "und": "New York Giants", - "sF": "20", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Nov 17, 1974", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "35", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Nov 17, 1974", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "16", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Nov 17, 1974", - "at": null, - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 1974", - "at": null, - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "34", - "sU": "0", - "spread": "1", - "ou": null - }, - { - "date": "Nov 17, 1974", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "3", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 17, 1974", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "7", - "sU": "19", - "spread": "10", - "ou": null - }, - { - "date": "Nov 17, 1974", - "at": null, - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "7", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Nov 17, 1974", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "17", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Nov 17, 1974", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "28", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 18, 1974", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "34", - "sU": "42", - "spread": "7", - "ou": null - }, - { - "date": "Nov 24, 1974", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Kansas City Chiefs", - "sF": "33", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Nov 24, 1974", - "at": null, - "fav": "Buffalo Bills", - "und": "Cleveland Browns", - "sF": "15", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 24, 1974", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "34", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 24, 1974", - "at": null, - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "23", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 24, 1974", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "14", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Nov 24, 1974", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "26", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 24, 1974", - "at": null, - "fav": "New England Patriots", - "und": "Baltimore Colts", - "sF": "27", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 1974", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Diego Chargers", - "sF": "34", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Nov 24, 1974", - "at": null, - "fav": "Dallas Cowboys", - "und": "Houston Oilers", - "sF": "10", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 1974", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 24, 1974", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "17", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Nov 24, 1974", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Nov 25, 1974", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New Orleans Saints", - "sF": "28", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Nov 28, 1974", - "at": "@", - "fav": "Detroit Lions", - "und": "Denver Broncos", - "sF": "27", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 1974", - "at": "@", - "fav": "Buffalo Bills", - "und": "Baltimore Colts", - "sF": "6", - "sU": "0", - "spread": "12", - "ou": null - }, - { - "date": "Dec 1, 1974", - "at": null, - "fav": "San Francisco 49ers", - "und": "Cleveland Browns", - "sF": "0", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 1, 1974", - "at": "@", - "fav": "New York Jets", - "und": "San Diego Chargers", - "sF": "27", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Dec 1, 1974", - "at": null, - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "36", - "spread": "7", - "ou": null - }, - { - "date": "Dec 1, 1974", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "10", - "sU": "13", - "spread": "11", - "ou": null - }, - { - "date": "Dec 1, 1974", - "at": null, - "fav": "New York Giants", - "und": "Chicago Bears", - "sF": "13", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Dec 1, 1974", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "29", - "sU": "9", - "spread": "14", - "ou": null - }, - { - "date": "Dec 1, 1974", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Kansas City Chiefs", - "sF": "13", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Dec 1, 1974", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Dec 1, 1974", - "at": "@", - "fav": "Oakland Raiders", - "und": "New England Patriots", - "sF": "41", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Dec 2, 1974", - "at": "@", - "fav": "Miami Dolphins", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Dec 7, 1974", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Dec 7, 1974", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "41", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Dec 8, 1974", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Detroit Lions", - "sF": "19", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Dec 8, 1974", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New England Patriots", - "sF": "21", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 1974", - "at": null, - "fav": "St Louis Cardinals", - "und": "New Orleans Saints", - "sF": "0", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Dec 8, 1974", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "7", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 1974", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "10", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Dec 8, 1974", - "at": null, - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "17", - "sU": "16", - "spread": "13", - "ou": null - }, - { - "date": "Dec 8, 1974", - "at": "@", - "fav": "Denver Broncos", - "und": "Houston Oilers", - "sF": "37", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 8, 1974", - "at": null, - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "7", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Dec 8, 1974", - "at": "@", - "fav": "San Diego Chargers", - "und": "Chicago Bears", - "sF": "28", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 1974", - "at": null, - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "6", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 9, 1974", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Washington Redskins", - "sF": "17", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 1974", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Dec 14, 1974", - "at": null, - "fav": "Minnesota Vikings", - "und": "Kansas City Chiefs", - "sF": "35", - "sU": "15", - "spread": "4", - "ou": null - }, - { - "date": "Dec 14, 1974", - "at": "@", - "fav": "Oakland Raiders", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Dec 15, 1974", - "at": null, - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "3", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 15, 1974", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "34", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 1974", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Detroit Lions", - "sF": "28", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 15, 1974", - "at": "@", - "fav": "Washington Redskins", - "und": "Chicago Bears", - "sF": "42", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Dec 15, 1974", - "at": null, - "fav": "New York Jets", - "und": "Baltimore Colts", - "sF": "45", - "sU": "38", - "spread": "5", - "ou": null - }, - { - "date": "Dec 15, 1974", - "at": "@", - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "28", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Dec 15, 1974", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "26", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 1974", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Buffalo Bills", - "sF": "19", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 15, 1974", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "0", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 1974", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "35", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 1974", - "at": "@", - "fav": "Minnesota Vikings", - "und": "St Louis Cardinals", - "sF": "30", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 1974", - "at": "@", - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "28", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 1974", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Buffalo Bills", - "sF": "32", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 22, 1974", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Washington Redskins", - "sF": "19", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Dec 29, 1974", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "14", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 29, 1974", - "at": "@", - "fav": "Oakland Raiders", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Jan 12, 1975", - "at": "N", - "fav": "Pittsburgh Steelers", - "und": "Minnesota Vikings", - "sF": "16", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 1975", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "24", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Sep 21, 1975", - "at": null, - "fav": "Houston Oilers", - "und": "New England Patriots", - "sF": "7", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Sep 21, 1975", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "14", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Sep 21, 1975", - "at": "@", - "fav": "Washington Redskins", - "und": "New Orleans Saints", - "sF": "41", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Sep 21, 1975", - "at": "@", - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "7", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 1975", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "16", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 1975", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 21, 1975", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Sep 21, 1975", - "at": null, - "fav": "Los Angeles Rams", - "und": "Dallas Cowboys", - "sF": "7", - "sU": "18", - "spread": "5", - "ou": null - }, - { - "date": "Sep 21, 1975", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "37", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Sep 21, 1975", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "37", - "sU": "0", - "spread": "11", - "ou": null - }, - { - "date": "Sep 22, 1975", - "at": null, - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "31", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 28, 1975", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Detroit Lions", - "sF": "14", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 28, 1975", - "at": null, - "fav": "Minnesota Vikings", - "und": "Cleveland Browns", - "sF": "42", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 28, 1975", - "at": null, - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "22", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Sep 28, 1975", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "49", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Sep 28, 1975", - "at": null, - "fav": "Oakland Raiders", - "und": "Baltimore Colts", - "sF": "31", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Sep 28, 1975", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "13", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 1975", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "37", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 1975", - "at": "@", - "fav": "Houston Oilers", - "und": "San Diego Chargers", - "sF": "33", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Sep 28, 1975", - "at": null, - "fav": "Cincinnati Bengals", - "und": "New Orleans Saints", - "sF": "21", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Sep 28, 1975", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Buffalo Bills", - "sF": "21", - "sU": "30", - "spread": "8", - "ou": null - }, - { - "date": "Sep 28, 1975", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Sep 29, 1975", - "at": "@", - "fav": "Denver Broncos", - "und": "Green Bay Packers", - "sF": "23", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Oct 5, 1975", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "14", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1975", - "at": "@", - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "38", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Oct 5, 1975", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "42", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Oct 5, 1975", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "36", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1975", - "at": null, - "fav": "Miami Dolphins", - "und": "Green Bay Packers", - "sF": "31", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Oct 5, 1975", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "21", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Oct 5, 1975", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "28", - "sU": "3", - "spread": "16", - "ou": null - }, - { - "date": "Oct 5, 1975", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "26", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1975", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Baltimore Colts", - "sF": "24", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Oct 5, 1975", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "26", - "spread": "9", - "ou": null - }, - { - "date": "Oct 5, 1975", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "6", - "sU": "0", - "spread": "14", - "ou": null - }, - { - "date": "Oct 6, 1975", - "at": null, - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "36", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 12, 1975", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New England Patriots", - "sF": "27", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Oct 12, 1975", - "at": null, - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "40", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 12, 1975", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "27", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 12, 1975", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "7", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 12, 1975", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Denver Broncos", - "sF": "20", - "sU": "9", - "spread": "11", - "ou": null - }, - { - "date": "Oct 12, 1975", - "at": null, - "fav": "Buffalo Bills", - "und": "Baltimore Colts", - "sF": "38", - "sU": "31", - "spread": "8", - "ou": null - }, - { - "date": "Oct 12, 1975", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New York Jets", - "sF": "29", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 12, 1975", - "at": "@", - "fav": "New Orleans Saints", - "und": "Green Bay Packers", - "sF": "20", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Oct 12, 1975", - "at": null, - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "10", - "sU": "42", - "spread": "10", - "ou": null - }, - { - "date": "Oct 12, 1975", - "at": "@", - "fav": "Miami Dolphins", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Oct 12, 1975", - "at": "@", - "fav": "San Diego Chargers", - "und": "Los Angeles Rams", - "sF": "10", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Oct 12, 1975", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "3", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Oct 13, 1975", - "at": "@", - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 19, 1975", - "at": "@", - "fav": "New England Patriots", - "und": "Baltimore Colts", - "sF": "21", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 19, 1975", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Chicago Bears", - "sF": "34", - "sU": "3", - "spread": "19", - "ou": null - }, - { - "date": "Oct 19, 1975", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "17", - "sU": "19", - "spread": "15", - "ou": null - }, - { - "date": "Oct 19, 1975", - "at": null, - "fav": "Washington Redskins", - "und": "Houston Oilers", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 1975", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 19, 1975", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Oakland Raiders", - "sF": "14", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 1975", - "at": "@", - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "16", - "sU": "15", - "spread": "10", - "ou": null - }, - { - "date": "Oct 19, 1975", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "22", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Oct 19, 1975", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "25", - "sU": "19", - "spread": "12", - "ou": null - }, - { - "date": "Oct 19, 1975", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "12", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 1975", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "35", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Oct 20, 1975", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Giants", - "sF": "14", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Oct 25, 1975", - "at": null, - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "20", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Oct 26, 1975", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 26, 1975", - "at": null, - "fav": "Washington Redskins", - "und": "Cleveland Browns", - "sF": "23", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Oct 26, 1975", - "at": "@", - "fav": "New England Patriots", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Oct 26, 1975", - "at": "@", - "fav": "New York Jets", - "und": "Baltimore Colts", - "sF": "28", - "sU": "45", - "spread": "7", - "ou": null - }, - { - "date": "Oct 26, 1975", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 26, 1975", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Green Bay Packers", - "sF": "16", - "sU": "13", - "spread": "11", - "ou": null - }, - { - "date": "Oct 26, 1975", - "at": "@", - "fav": "Houston Oilers", - "und": "Detroit Lions", - "sF": "24", - "sU": "8", - "spread": "7", - "ou": null - }, - { - "date": "Oct 26, 1975", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "26", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 1975", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "38", - "sU": "14", - "spread": "16", - "ou": null - }, - { - "date": "Oct 26, 1975", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "25", - "sU": "0", - "spread": "16", - "ou": null - }, - { - "date": "Oct 27, 1975", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "13", - "sU": "9", - "spread": "16", - "ou": null - }, - { - "date": "Nov 1, 1975", - "at": "@", - "fav": "New York Giants", - "und": "San Diego Chargers", - "sF": "35", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Nov 2, 1975", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "30", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Nov 2, 1975", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "24", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 2, 1975", - "at": "@", - "fav": "Baltimore Colts", - "und": "Cleveland Browns", - "sF": "21", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 2, 1975", - "at": null, - "fav": "Miami Dolphins", - "und": "Chicago Bears", - "sF": "46", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Nov 2, 1975", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "28", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Nov 2, 1975", - "at": null, - "fav": "Houston Oilers", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 1975", - "at": null, - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "7", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 2, 1975", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New England Patriots", - "sF": "24", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 2, 1975", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "42", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Nov 2, 1975", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "17", - "sU": "28", - "spread": "8", - "ou": null - }, - { - "date": "Nov 2, 1975", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "30", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 3, 1975", - "at": null, - "fav": "Los Angeles Rams", - "und": "Philadelphia Eagles", - "sF": "42", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 9, 1975", - "at": "@", - "fav": "Buffalo Bills", - "und": "Baltimore Colts", - "sF": "35", - "sU": "42", - "spread": "9", - "ou": null - }, - { - "date": "Nov 9, 1975", - "at": "@", - "fav": "Detroit Lions", - "und": "Cleveland Browns", - "sF": "21", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 9, 1975", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "21", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 9, 1975", - "at": null, - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Nov 9, 1975", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "24", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 9, 1975", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "14", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Nov 9, 1975", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "0", - "spread": "17", - "ou": null - }, - { - "date": "Nov 9, 1975", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Denver Broncos", - "sF": "17", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Nov 9, 1975", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Nov 9, 1975", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "27", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Nov 9, 1975", - "at": "@", - "fav": "Oakland Raiders", - "und": "New Orleans Saints", - "sF": "48", - "sU": "10", - "spread": "18", - "ou": null - }, - { - "date": "Nov 9, 1975", - "at": null, - "fav": "New England Patriots", - "und": "San Diego Chargers", - "sF": "33", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Nov 10, 1975", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Kansas City Chiefs", - "sF": "31", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Nov 16, 1975", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "16", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Nov 16, 1975", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "13", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 16, 1975", - "at": null, - "fav": "Dallas Cowboys", - "und": "New England Patriots", - "sF": "34", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Nov 16, 1975", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Nov 16, 1975", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "3", - "spread": "11", - "ou": null - }, - { - "date": "Nov 16, 1975", - "at": "@", - "fav": "Baltimore Colts", - "und": "New York Jets", - "sF": "52", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Nov 16, 1975", - "at": null, - "fav": "Miami Dolphins", - "und": "Houston Oilers", - "sF": "19", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 16, 1975", - "at": null, - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "20", - "sU": "7", - "spread": "16", - "ou": null - }, - { - "date": "Nov 16, 1975", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cleveland Browns", - "sF": "38", - "sU": "17", - "spread": "21", - "ou": null - }, - { - "date": "Nov 16, 1975", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "27", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 16, 1975", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "31", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Nov 16, 1975", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "20", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 17, 1975", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Buffalo Bills", - "sF": "33", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 23, 1975", - "at": null, - "fav": "Denver Broncos", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1975", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "45", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 1975", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "23", - "sU": "35", - "spread": "11", - "ou": null - }, - { - "date": "Nov 23, 1975", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "17", - "sU": "33", - "spread": "8", - "ou": null - }, - { - "date": "Nov 23, 1975", - "at": null, - "fav": "St Louis Cardinals", - "und": "New York Jets", - "sF": "37", - "sU": "6", - "spread": "8", - "ou": null - }, - { - "date": "Nov 23, 1975", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 23, 1975", - "at": "@", - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "40", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1975", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Detroit Lions", - "sF": "24", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 23, 1975", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Diego Chargers", - "sF": "28", - "sU": "13", - "spread": "21", - "ou": null - }, - { - "date": "Nov 23, 1975", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "16", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 1975", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "38", - "sU": "10", - "spread": "19", - "ou": null - }, - { - "date": "Nov 23, 1975", - "at": null, - "fav": "Oakland Raiders", - "und": "Washington Redskins", - "sF": "26", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 1975", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "32", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 1975", - "at": null, - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "20", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Nov 27, 1975", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Buffalo Bills", - "sF": "14", - "sU": "32", - "spread": "6", - "ou": null - }, - { - "date": "Nov 30, 1975", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "23", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 1975", - "at": "@", - "fav": "Cleveland Browns", - "und": "New Orleans Saints", - "sF": "17", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 30, 1975", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "20", - "sU": "7", - "spread": "15", - "ou": null - }, - { - "date": "Nov 30, 1975", - "at": null, - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 1975", - "at": "@", - "fav": "Baltimore Colts", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 30, 1975", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "14", - "sU": "3", - "spread": "12", - "ou": null - }, - { - "date": "Nov 30, 1975", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "28", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 30, 1975", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "13", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 30, 1975", - "at": "@", - "fav": "Oakland Raiders", - "und": "Atlanta Falcons", - "sF": "37", - "sU": "34", - "spread": "14", - "ou": null - }, - { - "date": "Nov 30, 1975", - "at": null, - "fav": "Minnesota Vikings", - "und": "Washington Redskins", - "sF": "30", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 1975", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "20", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 7, 1975", - "at": null, - "fav": "Washington Redskins", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 7, 1975", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "28", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Dec 7, 1975", - "at": null, - "fav": "Baltimore Colts", - "und": "New York Giants", - "sF": "21", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Dec 7, 1975", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Dec 7, 1975", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "31", - "sU": "17", - "spread": "18", - "ou": null - }, - { - "date": "Dec 7, 1975", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "21", - "sU": "25", - "spread": "6", - "ou": null - }, - { - "date": "Dec 7, 1975", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "20", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Dec 7, 1975", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "24", - "sU": "3", - "spread": "11", - "ou": null - }, - { - "date": "Dec 7, 1975", - "at": null, - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "14", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Dec 7, 1975", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 7, 1975", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "21", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 1975", - "at": null, - "fav": "Houston Oilers", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 8, 1975", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "17", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Dec 13, 1975", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "35", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 1975", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "31", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Dec 14, 1975", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 1975", - "at": "@", - "fav": "Cleveland Browns", - "und": "Kansas City Chiefs", - "sF": "40", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 1975", - "at": null, - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "34", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 1975", - "at": "@", - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "28", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 14, 1975", - "at": "@", - "fav": "Baltimore Colts", - "und": "Miami Dolphins", - "sF": "10", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Dec 14, 1975", - "at": null, - "fav": "St Louis Cardinals", - "und": "Chicago Bears", - "sF": "34", - "sU": "20", - "spread": "11", - "ou": null - }, - { - "date": "Dec 14, 1975", - "at": "@", - "fav": "Denver Broncos", - "und": "Philadelphia Eagles", - "sF": "25", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 14, 1975", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "10", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Dec 14, 1975", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "22", - "sU": "5", - "spread": "10", - "ou": null - }, - { - "date": "Dec 14, 1975", - "at": "@", - "fav": "Oakland Raiders", - "und": "Houston Oilers", - "sF": "26", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 1975", - "at": null, - "fav": "New York Jets", - "und": "San Diego Chargers", - "sF": "16", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 20, 1975", - "at": null, - "fav": "Minnesota Vikings", - "und": "Buffalo Bills", - "sF": "35", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1975", - "at": "@", - "fav": "Miami Dolphins", - "und": "Denver Broncos", - "sF": "14", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Dec 20, 1975", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Los Angeles Rams", - "sF": "3", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 1975", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "San Diego Chargers", - "sF": "47", - "sU": "17", - "spread": "16", - "ou": null - }, - { - "date": "Dec 21, 1975", - "at": null, - "fav": "St Louis Cardinals", - "und": "Detroit Lions", - "sF": "24", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Dec 21, 1975", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Jets", - "sF": "31", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Dec 21, 1975", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "3", - "sU": "26", - "spread": "8", - "ou": null - }, - { - "date": "Dec 21, 1975", - "at": "@", - "fav": "Baltimore Colts", - "und": "New England Patriots", - "sF": "34", - "sU": "21", - "spread": "16", - "ou": null - }, - { - "date": "Dec 21, 1975", - "at": "@", - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "22", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 21, 1975", - "at": "@", - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "21", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Dec 21, 1975", - "at": "@", - "fav": "New Orleans Saints", - "und": "Chicago Bears", - "sF": "17", - "sU": "42", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 1975", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "20", - "spread": "16", - "ou": null - }, - { - "date": "Dec 21, 1975", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "23", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Dec 27, 1975", - "at": "@", - "fav": "Pittsburgh Steelers (1)", - "und": "Baltimore Colts (3)", - "sF": "28", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 27, 1975", - "at": "@", - "fav": "Los Angeles Rams (2)", - "und": "St Louis Cardinals (3)", - "sF": "35", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Dec 28, 1975", - "at": "@", - "fav": "Minnesota Vikings (1)", - "und": "Dallas Cowboys (4)", - "sF": "14", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 28, 1975", - "at": "@", - "fav": "Oakland Raiders (2)", - "und": "Cincinnati Bengals (4)", - "sF": "31", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Jan 4, 1976", - "at": "@", - "fav": "Pittsburgh Steelers (1)", - "und": "Oakland Raiders (2)", - "sF": "16", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Jan 4, 1976", - "at": "@", - "fav": "Los Angeles Rams (2)", - "und": "Dallas Cowboys (4)", - "sF": "7", - "sU": "37", - "spread": "6", - "ou": null - }, - { - "date": "Jan 18, 1976", - "at": "N", - "fav": "Pittsburgh Steelers (1)", - "und": "Dallas Cowboys (4)", - "sF": "21", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 12, 1976", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Sep 12, 1976", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Jets", - "sF": "38", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Sep 12, 1976", - "at": null, - "fav": "Baltimore Colts", - "und": "New England Patriots", - "sF": "27", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Sep 12, 1976", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "19", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 12, 1976", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "3", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Sep 12, 1976", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Denver Broncos", - "sF": "17", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 12, 1976", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Sep 12, 1976", - "at": null, - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "26", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 1976", - "at": "@", - "fav": "Houston Oilers", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "0", - "spread": "14", - "ou": null - }, - { - "date": "Sep 12, 1976", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "16", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Sep 12, 1976", - "at": null, - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "40", - "sU": "9", - "spread": "8", - "ou": null - }, - { - "date": "Sep 12, 1976", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Oakland Raiders", - "sF": "28", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Sep 12, 1976", - "at": null, - "fav": "St Louis Cardinals", - "und": "Seattle Seahawks", - "sF": "30", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Sep 13, 1976", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "30", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Sep 19, 1976", - "at": "@", - "fav": "Buffalo Bills", - "und": "Houston Oilers", - "sF": "3", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Sep 19, 1976", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Sep 19, 1976", - "at": null, - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "14", - "sU": "30", - "spread": "10", - "ou": null - }, - { - "date": "Sep 19, 1976", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "7", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Sep 19, 1976", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "31", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Sep 19, 1976", - "at": null, - "fav": "San Diego Chargers", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Sep 19, 1976", - "at": "@", - "fav": "Washington Redskins", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "7", - "spread": "16", - "ou": null - }, - { - "date": "Sep 19, 1976", - "at": "@", - "fav": "Baltimore Colts", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Sep 19, 1976", - "at": null, - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "24", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Sep 19, 1976", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Green Bay Packers", - "sF": "29", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Sep 19, 1976", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Jets", - "sF": "46", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Sep 19, 1976", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "10", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 19, 1976", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "12", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 1976", - "at": null, - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Sep 26, 1976", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Green Bay Packers", - "sF": "28", - "sU": "7", - "spread": "17", - "ou": null - }, - { - "date": "Sep 26, 1976", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "16", - "sU": "0", - "spread": "19", - "ou": null - }, - { - "date": "Sep 26, 1976", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New England Patriots", - "sF": "27", - "sU": "30", - "spread": "14", - "ou": null - }, - { - "date": "Sep 26, 1976", - "at": null, - "fav": "Buffalo Bills", - "und": "Tampa Bay Buccaneers", - "sF": "14", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Sep 26, 1976", - "at": "@", - "fav": "Chicago Bears", - "und": "Atlanta Falcons", - "sF": "0", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 26, 1976", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "10", - "sU": "9", - "spread": "8", - "ou": null - }, - { - "date": "Sep 26, 1976", - "at": null, - "fav": "Oakland Raiders", - "und": "Houston Oilers", - "sF": "14", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 1976", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New Orleans Saints", - "sF": "17", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Sep 26, 1976", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Baltimore Colts", - "sF": "30", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Sep 26, 1976", - "at": "@", - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "44", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Sep 26, 1976", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New York Giants", - "sF": "24", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Sep 26, 1976", - "at": null, - "fav": "St Louis Cardinals", - "und": "San Diego Chargers", - "sF": "24", - "sU": "43", - "spread": "6", - "ou": null - }, - { - "date": "Sep 26, 1976", - "at": null, - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "37", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Sep 27, 1976", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 1976", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 1976", - "at": "@", - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "50", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Oct 3, 1976", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "45", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 1976", - "at": null, - "fav": "Oakland Raiders", - "und": "New England Patriots", - "sF": "17", - "sU": "48", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 1976", - "at": "@", - "fav": "Baltimore Colts", - "und": "Tampa Bay Buccaneers", - "sF": "42", - "sU": "17", - "spread": "19", - "ou": null - }, - { - "date": "Oct 3, 1976", - "at": null, - "fav": "Washington Redskins", - "und": "Chicago Bears", - "sF": "7", - "sU": "33", - "spread": "5", - "ou": null - }, - { - "date": "Oct 3, 1976", - "at": null, - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "14", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 3, 1976", - "at": null, - "fav": "Houston Oilers", - "und": "New Orleans Saints", - "sF": "31", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 1976", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "27", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 1976", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "26", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Oct 3, 1976", - "at": null, - "fav": "Los Angeles Rams", - "und": "Miami Dolphins", - "sF": "31", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 3, 1976", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Jets", - "sF": "17", - "sU": "6", - "spread": "14", - "ou": null - }, - { - "date": "Oct 3, 1976", - "at": null, - "fav": "Dallas Cowboys", - "und": "Seattle Seahawks", - "sF": "28", - "sU": "13", - "spread": "17", - "ou": null - }, - { - "date": "Oct 4, 1976", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Minnesota Vikings", - "sF": "6", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 10, 1976", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "0", - "spread": "21", - "ou": null - }, - { - "date": "Oct 10, 1976", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "16", - "sU": "18", - "spread": "9", - "ou": null - }, - { - "date": "Oct 10, 1976", - "at": null, - "fav": "New England Patriots", - "und": "Detroit Lions", - "sF": "10", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Oct 10, 1976", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "24", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 10, 1976", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "14", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 10, 1976", - "at": "@", - "fav": "Washington Redskins", - "und": "Kansas City Chiefs", - "sF": "30", - "sU": "33", - "spread": "13", - "ou": null - }, - { - "date": "Oct 10, 1976", - "at": "@", - "fav": "Green Bay Packers", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Oct 10, 1976", - "at": "@", - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "17", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 1976", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "20", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Oct 10, 1976", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "33", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Oct 10, 1976", - "at": "@", - "fav": "Baltimore Colts", - "und": "Miami Dolphins", - "sF": "28", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 10, 1976", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "27", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 11, 1976", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "0", - "sU": "16", - "spread": "13", - "ou": null - }, - { - "date": "Oct 17, 1976", - "at": null, - "fav": "Cleveland Browns", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 17, 1976", - "at": null, - "fav": "Baltimore Colts", - "und": "Buffalo Bills", - "sF": "31", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 17, 1976", - "at": "@", - "fav": "Miami Dolphins", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "20", - "spread": "12", - "ou": null - }, - { - "date": "Oct 17, 1976", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "6", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 17, 1976", - "at": "@", - "fav": "Washington Redskins", - "und": "Detroit Lions", - "sF": "20", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Oct 17, 1976", - "at": "@", - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Oct 17, 1976", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "24", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Oct 17, 1976", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 1976", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "20", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Oct 17, 1976", - "at": null, - "fav": "Houston Oilers", - "und": "San Diego Chargers", - "sF": "27", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 1976", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "33", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Oct 17, 1976", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "17", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Oct 18, 1976", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "41", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Oct 23, 1976", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "15", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Oct 24, 1976", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "26", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Oct 24, 1976", - "at": "@", - "fav": "Cleveland Browns", - "und": "San Diego Chargers", - "sF": "21", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 24, 1976", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New York Giants", - "sF": "27", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Oct 24, 1976", - "at": null, - "fav": "Baltimore Colts", - "und": "New York Jets", - "sF": "20", - "sU": "0", - "spread": "17", - "ou": null - }, - { - "date": "Oct 24, 1976", - "at": null, - "fav": "Minnesota Vikings", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "12", - "spread": "10", - "ou": null - }, - { - "date": "Oct 24, 1976", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "31", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Oct 24, 1976", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "35", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Oct 24, 1976", - "at": null, - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "16", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Oct 24, 1976", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "27", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Oct 24, 1976", - "at": "@", - "fav": "Oakland Raiders", - "und": "Green Bay Packers", - "sF": "18", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Oct 24, 1976", - "at": null, - "fav": "Detroit Lions", - "und": "Seattle Seahawks", - "sF": "41", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 24, 1976", - "at": null, - "fav": "Miami Dolphins", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Oct 25, 1976", - "at": null, - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "10", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 1976", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "14", - "sU": "19", - "spread": "11", - "ou": null - }, - { - "date": "Oct 31, 1976", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "13", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Oct 31, 1976", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "21", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Oct 31, 1976", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "27", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Oct 31, 1976", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "3", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 1976", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "0", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 31, 1976", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "23", - "sU": "0", - "spread": "12", - "ou": null - }, - { - "date": "Oct 31, 1976", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Tampa Bay Buccaneers", - "sF": "28", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Oct 31, 1976", - "at": "@", - "fav": "St Louis Cardinals", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 31, 1976", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Seattle Seahawks", - "sF": "45", - "sU": "6", - "spread": "21", - "ou": null - }, - { - "date": "Oct 31, 1976", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "19", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Oct 31, 1976", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "20", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 1, 1976", - "at": "@", - "fav": "Baltimore Colts", - "und": "Houston Oilers", - "sF": "38", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Nov 7, 1976", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "20", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Nov 7, 1976", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "27", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Nov 7, 1976", - "at": null, - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 7, 1976", - "at": null, - "fav": "Oakland Raiders", - "und": "Chicago Bears", - "sF": "28", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 7, 1976", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "9", - "sU": "3", - "spread": "15", - "ou": null - }, - { - "date": "Nov 7, 1976", - "at": "@", - "fav": "Green Bay Packers", - "und": "New Orleans Saints", - "sF": "32", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 1976", - "at": "@", - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "7", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 7, 1976", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "45", - "sU": "0", - "spread": "12", - "ou": null - }, - { - "date": "Nov 7, 1976", - "at": "@", - "fav": "Denver Broncos", - "und": "Tampa Bay Buccaneers", - "sF": "48", - "sU": "13", - "spread": "17", - "ou": null - }, - { - "date": "Nov 7, 1976", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "31", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Nov 7, 1976", - "at": null, - "fav": "Baltimore Colts", - "und": "San Diego Chargers", - "sF": "37", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Nov 7, 1976", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "21", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 7, 1976", - "at": null, - "fav": "Atlanta Falcons", - "und": "Seattle Seahawks", - "sF": "13", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Nov 8, 1976", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Nov 14, 1976", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "16", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Nov 14, 1976", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "31", - "sU": "27", - "spread": "13", - "ou": null - }, - { - "date": "Nov 14, 1976", - "at": "@", - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 14, 1976", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "9", - "sU": "12", - "spread": "6", - "ou": null - }, - { - "date": "Nov 14, 1976", - "at": "@", - "fav": "New York Jets", - "und": "Tampa Bay Buccaneers", - "sF": "34", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Nov 14, 1976", - "at": "@", - "fav": "Baltimore Colts", - "und": "New England Patriots", - "sF": "14", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Nov 14, 1976", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "24", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Nov 14, 1976", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "21", - "spread": "20", - "ou": null - }, - { - "date": "Nov 14, 1976", - "at": null, - "fav": "Detroit Lions", - "und": "New Orleans Saints", - "sF": "16", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 14, 1976", - "at": "@", - "fav": "Los Angeles Rams", - "und": "St Louis Cardinals", - "sF": "28", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Nov 14, 1976", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "21", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Nov 14, 1976", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Miami Dolphins", - "sF": "14", - "sU": "3", - "spread": "11", - "ou": null - }, - { - "date": "Nov 14, 1976", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "17", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Nov 15, 1976", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Buffalo Bills", - "sF": "17", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Nov 21, 1976", - "at": null, - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Nov 21, 1976", - "at": "@", - "fav": "Buffalo Bills", - "und": "San Diego Chargers", - "sF": "13", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Nov 21, 1976", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "38", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Nov 21, 1976", - "at": null, - "fav": "Oakland Raiders", - "und": "Philadelphia Eagles", - "sF": "26", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Nov 21, 1976", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "32", - "sU": "16", - "spread": "15", - "ou": null - }, - { - "date": "Nov 21, 1976", - "at": null, - "fav": "Cleveland Browns", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Nov 21, 1976", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "10", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Nov 21, 1976", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "17", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Nov 21, 1976", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "24", - "spread": "11", - "ou": null - }, - { - "date": "Nov 21, 1976", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Giants", - "sF": "14", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Nov 21, 1976", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 1976", - "at": null, - "fav": "New Orleans Saints", - "und": "Seattle Seahawks", - "sF": "51", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 21, 1976", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "10", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 1976", - "at": null, - "fav": "Baltimore Colts", - "und": "Miami Dolphins", - "sF": "17", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Nov 25, 1976", - "at": "@", - "fav": "Detroit Lions", - "und": "Buffalo Bills", - "sF": "27", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Nov 25, 1976", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "19", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Nov 28, 1976", - "at": "@", - "fav": "Cleveland Browns", - "und": "Miami Dolphins", - "sF": "17", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 1976", - "at": "@", - "fav": "New England Patriots", - "und": "Denver Broncos", - "sF": "38", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Nov 28, 1976", - "at": "@", - "fav": "New York Giants", - "und": "Seattle Seahawks", - "sF": "28", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Nov 28, 1976", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Nov 28, 1976", - "at": "@", - "fav": "Baltimore Colts", - "und": "New York Jets", - "sF": "33", - "sU": "16", - "spread": "19", - "ou": null - }, - { - "date": "Nov 28, 1976", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "16", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 28, 1976", - "at": "@", - "fav": "Houston Oilers", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Nov 28, 1976", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "7", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 1976", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "33", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Nov 28, 1976", - "at": "@", - "fav": "Oakland Raiders", - "und": "Tampa Bay Buccaneers", - "sF": "49", - "sU": "16", - "spread": "22", - "ou": null - }, - { - "date": "Nov 28, 1976", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Nov 29, 1976", - "at": null, - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "16", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 4, 1976", - "at": null, - "fav": "Baltimore Colts", - "und": "St Louis Cardinals", - "sF": "17", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 4, 1976", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "59", - "sU": "0", - "spread": "14", - "ou": null - }, - { - "date": "Dec 5, 1976", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "13", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 5, 1976", - "at": "@", - "fav": "New England Patriots", - "und": "New Orleans Saints", - "sF": "27", - "sU": "6", - "spread": "14", - "ou": null - }, - { - "date": "Dec 5, 1976", - "at": null, - "fav": "Detroit Lions", - "und": "New York Giants", - "sF": "10", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Dec 5, 1976", - "at": null, - "fav": "Washington Redskins", - "und": "New York Jets", - "sF": "37", - "sU": "16", - "spread": "11", - "ou": null - }, - { - "date": "Dec 5, 1976", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "26", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Dec 5, 1976", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Tampa Bay Buccaneers", - "sF": "42", - "sU": "0", - "spread": "27", - "ou": null - }, - { - "date": "Dec 5, 1976", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "20", - "sU": "9", - "spread": "11", - "ou": null - }, - { - "date": "Dec 5, 1976", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Dec 5, 1976", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "45", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 1976", - "at": null, - "fav": "Chicago Bears", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Dec 6, 1976", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cincinnati Bengals", - "sF": "35", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 11, 1976", - "at": null, - "fav": "Minnesota Vikings", - "und": "Miami Dolphins", - "sF": "29", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Dec 11, 1976", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "21", - "sU": "0", - "spread": "14", - "ou": null - }, - { - "date": "Dec 11, 1976", - "at": null, - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "20", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 12, 1976", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Green Bay Packers", - "sF": "20", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 1976", - "at": null, - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "17", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Dec 12, 1976", - "at": null, - "fav": "Cincinnati Bengals", - "und": "New York Jets", - "sF": "42", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Dec 12, 1976", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Dec 12, 1976", - "at": null, - "fav": "New England Patriots", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "14", - "spread": "20", - "ou": null - }, - { - "date": "Dec 12, 1976", - "at": "@", - "fav": "Baltimore Colts", - "und": "Buffalo Bills", - "sF": "58", - "sU": "20", - "spread": "17", - "ou": null - }, - { - "date": "Dec 12, 1976", - "at": "@", - "fav": "Chicago Bears", - "und": "Denver Broncos", - "sF": "14", - "sU": "28", - "spread": "8", - "ou": null - }, - { - "date": "Dec 12, 1976", - "at": null, - "fav": "Cleveland Browns", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "39", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 1976", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "7", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 1976", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "14", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Dec 12, 1976", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "24", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Dec 18, 1976", - "at": "@", - "fav": "Minnesota Vikings (1)", - "und": "Washington Redskins (4)", - "sF": "35", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 18, 1976", - "at": "@", - "fav": "Oakland Raiders (1)", - "und": "New England Patriots (4)", - "sF": "24", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Dec 19, 1976", - "at": null, - "fav": "Pittsburgh Steelers (3)", - "und": "Baltimore Colts (2)", - "sF": "40", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 1976", - "at": "@", - "fav": "Dallas Cowboys (2)", - "und": "Los Angeles Rams (3)", - "sF": "12", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1976", - "at": "@", - "fav": "Minnesota Vikings (1)", - "und": "Los Angeles Rams (3)", - "sF": "24", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Dec 26, 1976", - "at": null, - "fav": "Pittsburgh Steelers (3)", - "und": "Oakland Raiders (1)", - "sF": "7", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Jan 9, 1977", - "at": "N", - "fav": "Oakland Raiders (1)", - "und": "Minnesota Vikings (1)", - "sF": "32", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 18, 1977", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "6", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Sep 18, 1977", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "13", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Sep 18, 1977", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "3", - "sU": "13", - "spread": "11", - "ou": null - }, - { - "date": "Sep 18, 1977", - "at": "@", - "fav": "New England Patriots", - "und": "Kansas City Chiefs", - "sF": "21", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Sep 18, 1977", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "17", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 18, 1977", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Sep 18, 1977", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "30", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 18, 1977", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Dallas Cowboys", - "sF": "10", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Sep 18, 1977", - "at": "@", - "fav": "New Orleans Saints", - "und": "Green Bay Packers", - "sF": "20", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 18, 1977", - "at": "@", - "fav": "Denver Broncos", - "und": "St Louis Cardinals", - "sF": "7", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Sep 18, 1977", - "at": "@", - "fav": "Houston Oilers", - "und": "New York Jets", - "sF": "20", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Sep 18, 1977", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "24", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Sep 18, 1977", - "at": null, - "fav": "Baltimore Colts", - "und": "Seattle Seahawks", - "sF": "29", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Sep 19, 1977", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "0", - "spread": "14", - "ou": null - }, - { - "date": "Sep 24, 1977", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "9", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Sep 25, 1977", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Seattle Seahawks", - "sF": "42", - "sU": "20", - "spread": "20", - "ou": null - }, - { - "date": "Sep 25, 1977", - "at": null, - "fav": "Baltimore Colts", - "und": "New York Jets", - "sF": "20", - "sU": "12", - "spread": "14", - "ou": null - }, - { - "date": "Sep 25, 1977", - "at": null, - "fav": "Oakland Raiders", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Sep 25, 1977", - "at": "@", - "fav": "Washington Redskins", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Sep 25, 1977", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "41", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Sep 25, 1977", - "at": "@", - "fav": "Detroit Lions", - "und": "New Orleans Saints", - "sF": "23", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Sep 25, 1977", - "at": null, - "fav": "Houston Oilers", - "und": "Green Bay Packers", - "sF": "16", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 1977", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "7", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Sep 25, 1977", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Chicago Bears", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 1977", - "at": "@", - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "26", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Sep 25, 1977", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Sep 25, 1977", - "at": null, - "fav": "Miami Dolphins", - "und": "San Francisco 49ers", - "sF": "19", - "sU": "15", - "spread": "4", - "ou": null - }, - { - "date": "Sep 26, 1977", - "at": null, - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "27", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 1977", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New York Giants", - "sF": "17", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 1977", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "28", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 2, 1977", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "7", - "spread": "22", - "ou": null - }, - { - "date": "Oct 2, 1977", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "27", - "sU": "30", - "spread": "13", - "ou": null - }, - { - "date": "Oct 2, 1977", - "at": "@", - "fav": "Baltimore Colts", - "und": "Buffalo Bills", - "sF": "17", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Oct 2, 1977", - "at": "@", - "fav": "Chicago Bears", - "und": "New Orleans Saints", - "sF": "24", - "sU": "42", - "spread": "8", - "ou": null - }, - { - "date": "Oct 2, 1977", - "at": "@", - "fav": "Detroit Lions", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 2, 1977", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "19", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Oct 2, 1977", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Oct 2, 1977", - "at": "@", - "fav": "Miami Dolphins", - "und": "Houston Oilers", - "sF": "27", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Oct 2, 1977", - "at": null, - "fav": "Cincinnati Bengals", - "und": "San Diego Chargers", - "sF": "3", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 2, 1977", - "at": null, - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "13", - "spread": "15", - "ou": null - }, - { - "date": "Oct 2, 1977", - "at": null, - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "14", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 3, 1977", - "at": null, - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "37", - "sU": "28", - "spread": "13", - "ou": null - }, - { - "date": "Oct 9, 1977", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "19", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 9, 1977", - "at": null, - "fav": "Oakland Raiders", - "und": "Cleveland Browns", - "sF": "26", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 9, 1977", - "at": "@", - "fav": "New England Patriots", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "0", - "spread": "19", - "ou": null - }, - { - "date": "Oct 9, 1977", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 1977", - "at": "@", - "fav": "Baltimore Colts", - "und": "Miami Dolphins", - "sF": "45", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Oct 9, 1977", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Green Bay Packers", - "sF": "17", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Oct 9, 1977", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "10", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Oct 9, 1977", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "14", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Oct 9, 1977", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Diego Chargers", - "sF": "0", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 9, 1977", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "30", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Oct 9, 1977", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "23", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Oct 9, 1977", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "0", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 1977", - "at": null, - "fav": "Washington Redskins", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Oct 10, 1977", - "at": null, - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "23", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Oct 16, 1977", - "at": null, - "fav": "Atlanta Falcons", - "und": "Buffalo Bills", - "sF": "0", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Oct 16, 1977", - "at": null, - "fav": "Baltimore Colts", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "6", - "spread": "12", - "ou": null - }, - { - "date": "Oct 16, 1977", - "at": null, - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "17", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 16, 1977", - "at": null, - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 1977", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "10", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Oct 16, 1977", - "at": "@", - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "23", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 16, 1977", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "22", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 16, 1977", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "34", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Oct 16, 1977", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "14", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Oct 16, 1977", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "21", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 16, 1977", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "7", - "sU": "30", - "spread": "10", - "ou": null - }, - { - "date": "Oct 16, 1977", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Tampa Bay Buccaneers", - "sF": "30", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 1977", - "at": null, - "fav": "Cleveland Browns", - "und": "Buffalo Bills", - "sF": "27", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Oct 23, 1977", - "at": "@", - "fav": "Chicago Bears", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Oct 23, 1977", - "at": null, - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 1977", - "at": "@", - "fav": "Miami Dolphins", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "13", - "spread": "16", - "ou": null - }, - { - "date": "Oct 23, 1977", - "at": null, - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "28", - "sU": "27", - "spread": "13", - "ou": null - }, - { - "date": "Oct 23, 1977", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Oct 23, 1977", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "27", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Oct 23, 1977", - "at": null, - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 1977", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "6", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Oct 23, 1977", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New Orleans Saints", - "sF": "49", - "sU": "31", - "spread": "11", - "ou": null - }, - { - "date": "Oct 23, 1977", - "at": "@", - "fav": "New England Patriots", - "und": "Baltimore Colts", - "sF": "17", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 1977", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "16", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Oct 23, 1977", - "at": null, - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "7", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 24, 1977", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Minnesota Vikings", - "sF": "35", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 1977", - "at": null, - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 1977", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "13", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 30, 1977", - "at": "@", - "fav": "Cleveland Browns", - "und": "Kansas City Chiefs", - "sF": "44", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Oct 30, 1977", - "at": "@", - "fav": "Miami Dolphins", - "und": "San Diego Chargers", - "sF": "13", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Oct 30, 1977", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "24", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Oct 30, 1977", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 30, 1977", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "37", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Oct 30, 1977", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "26", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Oct 30, 1977", - "at": null, - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "26", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Oct 30, 1977", - "at": "@", - "fav": "Baltimore Colts", - "und": "Pittsburgh Steelers", - "sF": "31", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Oct 30, 1977", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "24", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 30, 1977", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "10", - "spread": "16", - "ou": null - }, - { - "date": "Oct 30, 1977", - "at": null, - "fav": "Buffalo Bills", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "56", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 1977", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "28", - "sU": "0", - "spread": "11", - "ou": null - }, - { - "date": "Nov 6, 1977", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "3", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 6, 1977", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "7", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1977", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "14", - "sU": "24", - "spread": "18", - "ou": null - }, - { - "date": "Nov 6, 1977", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "24", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Nov 6, 1977", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "14", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 6, 1977", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New Orleans Saints", - "sF": "28", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1977", - "at": null, - "fav": "Chicago Bears", - "und": "Houston Oilers", - "sF": "0", - "sU": "47", - "spread": "1", - "ou": null - }, - { - "date": "Nov 6, 1977", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Green Bay Packers", - "sF": "20", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 6, 1977", - "at": "@", - "fav": "Denver Broncos", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Nov 6, 1977", - "at": null, - "fav": "San Diego Chargers", - "und": "Detroit Lions", - "sF": "0", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1977", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "0", - "spread": "21", - "ou": null - }, - { - "date": "Nov 6, 1977", - "at": "@", - "fav": "Minnesota Vikings", - "und": "St Louis Cardinals", - "sF": "7", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1977", - "at": "@", - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "44", - "sU": "7", - "spread": "19", - "ou": null - }, - { - "date": "Nov 7, 1977", - "at": "@", - "fav": "Baltimore Colts", - "und": "Washington Redskins", - "sF": "10", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Nov 13, 1977", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Detroit Lions", - "sF": "17", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 1977", - "at": null, - "fav": "Baltimore Colts", - "und": "Buffalo Bills", - "sF": "31", - "sU": "13", - "spread": "11", - "ou": null - }, - { - "date": "Nov 13, 1977", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "5", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 1977", - "at": "@", - "fav": "New York Jets", - "und": "Seattle Seahawks", - "sF": "0", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Nov 13, 1977", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 1977", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "35", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 13, 1977", - "at": null, - "fav": "New York Giants", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 13, 1977", - "at": "@", - "fav": "Chicago Bears", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Nov 13, 1977", - "at": null, - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "24", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Nov 13, 1977", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "10", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 1977", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Cincinnati Bengals", - "sF": "42", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 1977", - "at": "@", - "fav": "Oakland Raiders", - "und": "Houston Oilers", - "sF": "34", - "sU": "29", - "spread": "13", - "ou": null - }, - { - "date": "Nov 13, 1977", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "17", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Nov 14, 1977", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "17", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 20, 1977", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "20", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 20, 1977", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "10", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 20, 1977", - "at": null, - "fav": "Miami Dolphins", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Nov 20, 1977", - "at": null, - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "21", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 20, 1977", - "at": "@", - "fav": "Baltimore Colts", - "und": "New York Jets", - "sF": "33", - "sU": "12", - "spread": "16", - "ou": null - }, - { - "date": "Nov 20, 1977", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "16", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Nov 20, 1977", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 20, 1977", - "at": null, - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "20", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 1977", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Nov 20, 1977", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Dallas Cowboys", - "sF": "28", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 20, 1977", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "7", - "sU": "12", - "spread": "12", - "ou": null - }, - { - "date": "Nov 20, 1977", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 20, 1977", - "at": null, - "fav": "Houston Oilers", - "und": "Seattle Seahawks", - "sF": "22", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 1977", - "at": "@", - "fav": "Washington Redskins", - "und": "Green Bay Packers", - "sF": "10", - "sU": "9", - "spread": "14", - "ou": null - }, - { - "date": "Nov 24, 1977", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "31", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 24, 1977", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Miami Dolphins", - "sF": "14", - "sU": "55", - "spread": "6", - "ou": null - }, - { - "date": "Nov 27, 1977", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New York Giants", - "sF": "30", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Nov 27, 1977", - "at": null, - "fav": "Los Angeles Rams", - "und": "Cleveland Browns", - "sF": "9", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Nov 27, 1977", - "at": "@", - "fav": "New England Patriots", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Nov 27, 1977", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "23", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Nov 27, 1977", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Nov 27, 1977", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "13", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Nov 27, 1977", - "at": "@", - "fav": "Houston Oilers", - "und": "Kansas City Chiefs", - "sF": "34", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Nov 27, 1977", - "at": "@", - "fav": "Denver Broncos", - "und": "Baltimore Colts", - "sF": "27", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 27, 1977", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 1977", - "at": null, - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "30", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Nov 27, 1977", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "14", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 1977", - "at": "@", - "fav": "Oakland Raiders", - "und": "Buffalo Bills", - "sF": "34", - "sU": "13", - "spread": "17", - "ou": null - }, - { - "date": "Dec 4, 1977", - "at": null, - "fav": "New England Patriots", - "und": "Atlanta Falcons", - "sF": "16", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 4, 1977", - "at": null, - "fav": "Washington Redskins", - "und": "Buffalo Bills", - "sF": "10", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Dec 4, 1977", - "at": null, - "fav": "Denver Broncos", - "und": "Houston Oilers", - "sF": "24", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Dec 4, 1977", - "at": null, - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "7", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Dec 4, 1977", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Seattle Seahawks", - "sF": "30", - "sU": "20", - "spread": "20", - "ou": null - }, - { - "date": "Dec 4, 1977", - "at": null, - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "0", - "spread": "14", - "ou": null - }, - { - "date": "Dec 4, 1977", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Dec 4, 1977", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "10", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Dec 4, 1977", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 4, 1977", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "28", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 4, 1977", - "at": null, - "fav": "Oakland Raiders", - "und": "Los Angeles Rams", - "sF": "14", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Dec 4, 1977", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Jets", - "sF": "13", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Dec 4, 1977", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cleveland Browns", - "sF": "37", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 5, 1977", - "at": null, - "fav": "Baltimore Colts", - "und": "Miami Dolphins", - "sF": "6", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 1977", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 1977", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "20", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Dec 11, 1977", - "at": null, - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "19", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 1977", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "14", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 11, 1977", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "10", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Dec 11, 1977", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "17", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 11, 1977", - "at": "@", - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "10", - "sU": "13", - "spread": "15", - "ou": null - }, - { - "date": "Dec 11, 1977", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "21", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 11, 1977", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Dec 11, 1977", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "14", - "sU": "33", - "spread": "12", - "ou": null - }, - { - "date": "Dec 11, 1977", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "17", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Dec 11, 1977", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Dec 11, 1977", - "at": "@", - "fav": "Oakland Raiders", - "und": "Minnesota Vikings", - "sF": "35", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Dec 12, 1977", - "at": null, - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "42", - "sU": "35", - "spread": "7", - "ou": null - }, - { - "date": "Dec 17, 1977", - "at": null, - "fav": "Los Angeles Rams", - "und": "Washington Redskins", - "sF": "14", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 17, 1977", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "31", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Dec 17, 1977", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "30", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Dec 18, 1977", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "35", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 1977", - "at": null, - "fav": "Chicago Bears", - "und": "New York Giants", - "sF": "12", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Dec 18, 1977", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Jets", - "sF": "27", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Dec 18, 1977", - "at": null, - "fav": "St Louis Cardinals", - "und": "Tampa Bay Buccaneers", - "sF": "7", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 18, 1977", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Denver Broncos", - "sF": "14", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Dec 18, 1977", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "16", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 18, 1977", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "16", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 1977", - "at": "@", - "fav": "Baltimore Colts", - "und": "New England Patriots", - "sF": "30", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Dec 18, 1977", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "21", - "sU": "20", - "spread": "12", - "ou": null - }, - { - "date": "Dec 18, 1977", - "at": "@", - "fav": "San Diego Chargers", - "und": "Pittsburgh Steelers", - "sF": "9", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 1977", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Cleveland Browns", - "sF": "20", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 1977", - "at": null, - "fav": "Oakland Raiders (4)", - "und": "Baltimore Colts (2)", - "sF": "37", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 1977", - "at": "@", - "fav": "Denver Broncos (1)", - "und": "Pittsburgh Steelers (3)", - "sF": "34", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Dec 26, 1977", - "at": "@", - "fav": "Dallas Cowboys (1)", - "und": "Chicago Bears (4)", - "sF": "37", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Dec 26, 1977", - "at": "@", - "fav": "Los Angeles Rams (2)", - "und": "Minnesota Vikings (3)", - "sF": "7", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Jan 1, 1978", - "at": null, - "fav": "Oakland Raiders (4)", - "und": "Denver Broncos (1)", - "sF": "17", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Jan 1, 1978", - "at": "@", - "fav": "Dallas Cowboys (1)", - "und": "Minnesota Vikings (3)", - "sF": "23", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Jan 15, 1978", - "at": "N", - "fav": "Dallas Cowboys (1)", - "und": "Denver Broncos (1)", - "sF": "27", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 2, 1978", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New York Giants", - "sF": "13", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Sep 3, 1978", - "at": null, - "fav": "Houston Oilers", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 3, 1978", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Buffalo Bills", - "sF": "28", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Sep 3, 1978", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Kansas City Chiefs", - "sF": "23", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Sep 3, 1978", - "at": "@", - "fav": "Cleveland Browns", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 3, 1978", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "7", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Sep 3, 1978", - "at": "@", - "fav": "New England Patriots", - "und": "Washington Redskins", - "sF": "14", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Sep 3, 1978", - "at": null, - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "24", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Sep 3, 1978", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "20", - "sU": "33", - "spread": "4", - "ou": null - }, - { - "date": "Sep 3, 1978", - "at": null, - "fav": "Los Angeles Rams", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 3, 1978", - "at": "@", - "fav": "Chicago Bears", - "und": "St Louis Cardinals", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 3, 1978", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "6", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 3, 1978", - "at": null, - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 4, 1978", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Baltimore Colts", - "sF": "38", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Sep 9, 1978", - "at": null, - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "15", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Sep 10, 1978", - "at": null, - "fav": "New Orleans Saints", - "und": "Green Bay Packers", - "sF": "17", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Sep 10, 1978", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "34", - "sU": "24", - "spread": "11", - "ou": null - }, - { - "date": "Sep 10, 1978", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Sep 10, 1978", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "35", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 1978", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "13", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Sep 10, 1978", - "at": null, - "fav": "Houston Oilers", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 10, 1978", - "at": null, - "fav": "New England Patriots", - "und": "St Louis Cardinals", - "sF": "16", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Sep 10, 1978", - "at": null, - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "42", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 1978", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "21", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 10, 1978", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Sep 10, 1978", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "21", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 10, 1978", - "at": null, - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "16", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 1978", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 1978", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "19", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 1978", - "at": "@", - "fav": "New York Giants", - "und": "Kansas City Chiefs", - "sF": "26", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 1978", - "at": "@", - "fav": "New York Jets", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 17, 1978", - "at": null, - "fav": "Oakland Raiders", - "und": "Green Bay Packers", - "sF": "28", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Sep 17, 1978", - "at": "@", - "fav": "Houston Oilers", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "19", - "spread": "9", - "ou": null - }, - { - "date": "Sep 17, 1978", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Sep 17, 1978", - "at": null, - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "28", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 1978", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "27", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 1978", - "at": null, - "fav": "Dallas Cowboys", - "und": "Los Angeles Rams", - "sF": "14", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 1978", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "31", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Sep 18, 1978", - "at": "@", - "fav": "New England Patriots", - "und": "Baltimore Colts", - "sF": "27", - "sU": "34", - "spread": "17", - "ou": null - }, - { - "date": "Sep 24, 1978", - "at": "@", - "fav": "Buffalo Bills", - "und": "Baltimore Colts", - "sF": "24", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 24, 1978", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New Orleans Saints", - "sF": "18", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 1978", - "at": null, - "fav": "Los Angeles Rams", - "und": "Houston Oilers", - "sF": "10", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Sep 24, 1978", - "at": null, - "fav": "Miami Dolphins", - "und": "Philadelphia Eagles", - "sF": "3", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 24, 1978", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "15", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Sep 24, 1978", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Jets", - "sF": "23", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 24, 1978", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "23", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 1978", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "21", - "sU": "12", - "spread": "17", - "ou": null - }, - { - "date": "Sep 24, 1978", - "at": "@", - "fav": "New York Giants", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 24, 1978", - "at": "@", - "fav": "San Diego Chargers", - "und": "Green Bay Packers", - "sF": "3", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Sep 24, 1978", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Detroit Lions", - "sF": "28", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Sep 24, 1978", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "9", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Sep 24, 1978", - "at": "@", - "fav": "Oakland Raiders", - "und": "New England Patriots", - "sF": "14", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 1978", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 1978", - "at": null, - "fav": "New York Giants", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 1978", - "at": "@", - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 1978", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "13", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Oct 1, 1978", - "at": "@", - "fav": "Miami Dolphins", - "und": "St Louis Cardinals", - "sF": "24", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 1, 1978", - "at": "@", - "fav": "New England Patriots", - "und": "San Diego Chargers", - "sF": "28", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Oct 1, 1978", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "28", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Oct 1, 1978", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 1, 1978", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Baltimore Colts", - "sF": "17", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Oct 1, 1978", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "35", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Oct 1, 1978", - "at": null, - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "26", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Oct 1, 1978", - "at": null, - "fav": "Oakland Raiders", - "und": "Chicago Bears", - "sF": "25", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Oct 1, 1978", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "28", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Oct 1, 1978", - "at": null, - "fav": "Cincinnati Bengals", - "und": "San Francisco 49ers", - "sF": "12", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 1978", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "5", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Oct 8, 1978", - "at": null, - "fav": "Washington Redskins", - "und": "Detroit Lions", - "sF": "21", - "sU": "19", - "spread": "9", - "ou": null - }, - { - "date": "Oct 8, 1978", - "at": "@", - "fav": "New England Patriots", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 8, 1978", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "14", - "sU": "45", - "spread": "2", - "ou": null - }, - { - "date": "Oct 8, 1978", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Oct 8, 1978", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "24", - "sU": "3", - "spread": "11", - "ou": null - }, - { - "date": "Oct 8, 1978", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "14", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Oct 8, 1978", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Oct 8, 1978", - "at": null, - "fav": "Cleveland Browns", - "und": "New Orleans Saints", - "sF": "24", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 1978", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Baltimore Colts", - "sF": "17", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Oct 8, 1978", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Oct 8, 1978", - "at": "@", - "fav": "Oakland Raiders", - "und": "Houston Oilers", - "sF": "21", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 8, 1978", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "0", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 8, 1978", - "at": null, - "fav": "Minnesota Vikings", - "und": "Seattle Seahawks", - "sF": "28", - "sU": "29", - "spread": "5", - "ou": null - }, - { - "date": "Oct 9, 1978", - "at": "@", - "fav": "Miami Dolphins", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Oct 15, 1978", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Detroit Lions", - "sF": "14", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Oct 15, 1978", - "at": null, - "fav": "New England Patriots", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Oct 15, 1978", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "34", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 15, 1978", - "at": "@", - "fav": "Green Bay Packers", - "und": "Seattle Seahawks", - "sF": "45", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Oct 15, 1978", - "at": "@", - "fav": "New York Giants", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 15, 1978", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 15, 1978", - "at": "@", - "fav": "Baltimore Colts", - "und": "New York Jets", - "sF": "10", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Oct 15, 1978", - "at": "@", - "fav": "Houston Oilers", - "und": "Buffalo Bills", - "sF": "17", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Oct 15, 1978", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "24", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Oct 15, 1978", - "at": null, - "fav": "Los Angeles Rams", - "und": "Minnesota Vikings", - "sF": "34", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 15, 1978", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Oct 15, 1978", - "at": "@", - "fav": "San Diego Chargers", - "und": "Miami Dolphins", - "sF": "21", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Oct 15, 1978", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "7", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 16, 1978", - "at": "@", - "fav": "Denver Broncos", - "und": "Chicago Bears", - "sF": "16", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 22, 1978", - "at": "@", - "fav": "Buffalo Bills", - "und": "Cincinnati Bengals", - "sF": "5", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 1978", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "6", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 22, 1978", - "at": "@", - "fav": "New York Jets", - "und": "St Louis Cardinals", - "sF": "23", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Oct 22, 1978", - "at": null, - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "19", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 1978", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Oct 22, 1978", - "at": null, - "fav": "San Diego Chargers", - "und": "Detroit Lions", - "sF": "14", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 1978", - "at": null, - "fav": "Cleveland Browns", - "und": "Kansas City Chiefs", - "sF": "3", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 22, 1978", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "21", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 1978", - "at": null, - "fav": "Denver Broncos", - "und": "Baltimore Colts", - "sF": "6", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 1978", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "3", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Oct 22, 1978", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "33", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Oct 22, 1978", - "at": null, - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 1978", - "at": null, - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "7", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 1978", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "17", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 26, 1978", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Minnesota Vikings", - "sF": "10", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 29, 1978", - "at": null, - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "13", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Oct 29, 1978", - "at": "@", - "fav": "Cleveland Browns", - "und": "Buffalo Bills", - "sF": "41", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 1978", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "55", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Oct 29, 1978", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "10", - "sU": "16", - "spread": "11", - "ou": null - }, - { - "date": "Oct 29, 1978", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Oct 29, 1978", - "at": "@", - "fav": "Washington Redskins", - "und": "San Francisco 49ers", - "sF": "38", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Oct 29, 1978", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "17", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Oct 29, 1978", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "9", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Oct 29, 1978", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Giants", - "sF": "28", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 29, 1978", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "26", - "sU": "8", - "spread": "12", - "ou": null - }, - { - "date": "Oct 29, 1978", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "23", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 1978", - "at": null, - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 1978", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "7", - "sU": "15", - "spread": "6", - "ou": null - }, - { - "date": "Nov 5, 1978", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 5, 1978", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "14", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 5, 1978", - "at": "@", - "fav": "Chicago Bears", - "und": "Seattle Seahawks", - "sF": "29", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 1978", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "17", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 5, 1978", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Green Bay Packers", - "sF": "10", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 1978", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New Orleans Saints", - "sF": "20", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Nov 5, 1978", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "20", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 1978", - "at": "@", - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "14", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 5, 1978", - "at": null, - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 5, 1978", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Jets", - "sF": "28", - "sU": "31", - "spread": "9", - "ou": null - }, - { - "date": "Nov 5, 1978", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Tampa Bay Buccaneers", - "sF": "26", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Nov 5, 1978", - "at": "@", - "fav": "Miami Dolphins", - "und": "Dallas Cowboys", - "sF": "23", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Nov 5, 1978", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "22", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 6, 1978", - "at": null, - "fav": "Washington Redskins", - "und": "Baltimore Colts", - "sF": "17", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 1978", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "25", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 12, 1978", - "at": null, - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "19", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Nov 12, 1978", - "at": "@", - "fav": "New England Patriots", - "und": "Houston Oilers", - "sF": "23", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Nov 12, 1978", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Jets", - "sF": "17", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Nov 12, 1978", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "16", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 12, 1978", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "34", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 1978", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 1978", - "at": null, - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "42", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 12, 1978", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "17", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Nov 12, 1978", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "29", - "sU": "23", - "spread": "9", - "ou": null - }, - { - "date": "Nov 12, 1978", - "at": null, - "fav": "St Louis Cardinals", - "und": "San Francisco 49ers", - "sF": "16", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 12, 1978", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Baltimore Colts", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 1978", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 1978", - "at": null, - "fav": "Oakland Raiders", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 19, 1978", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Diego Chargers", - "sF": "7", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 1978", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "19", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 19, 1978", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "19", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 19, 1978", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Buffalo Bills", - "sF": "31", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 1978", - "at": "@", - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "17", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 19, 1978", - "at": "@", - "fav": "Baltimore Colts", - "und": "Cleveland Browns", - "sF": "24", - "sU": "45", - "spread": "6", - "ou": null - }, - { - "date": "Nov 19, 1978", - "at": null, - "fav": "Atlanta Falcons", - "und": "Chicago Bears", - "sF": "7", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 1978", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "27", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Nov 19, 1978", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "10", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 19, 1978", - "at": "@", - "fav": "Denver Broncos", - "und": "Green Bay Packers", - "sF": "16", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Nov 19, 1978", - "at": "@", - "fav": "Oakland Raiders", - "und": "Detroit Lions", - "sF": "29", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 19, 1978", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "7", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Nov 19, 1978", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Nov 20, 1978", - "at": "@", - "fav": "Houston Oilers", - "und": "Miami Dolphins", - "sF": "35", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Nov 23, 1978", - "at": null, - "fav": "Denver Broncos", - "und": "Detroit Lions", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1978", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "37", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Nov 26, 1978", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1978", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Giants", - "sF": "41", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1978", - "at": null, - "fav": "Los Angeles Rams", - "und": "Cleveland Browns", - "sF": "19", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Nov 26, 1978", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "13", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 26, 1978", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "14", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1978", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "10", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1978", - "at": "@", - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 26, 1978", - "at": null, - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "0", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Nov 26, 1978", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1978", - "at": null, - "fav": "New England Patriots", - "und": "Baltimore Colts", - "sF": "35", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 26, 1978", - "at": "@", - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "16", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 27, 1978", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 3, 1978", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Atlanta Falcons", - "sF": "37", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Dec 3, 1978", - "at": null, - "fav": "Los Angeles Rams", - "und": "New York Giants", - "sF": "20", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 3, 1978", - "at": "@", - "fav": "New York Jets", - "und": "Baltimore Colts", - "sF": "24", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Dec 3, 1978", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Green Bay Packers", - "sF": "7", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 3, 1978", - "at": null, - "fav": "Miami Dolphins", - "und": "Washington Redskins", - "sF": "16", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 1978", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "14", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 3, 1978", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 1978", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 3, 1978", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Detroit Lions", - "sF": "21", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Dec 3, 1978", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New England Patriots", - "sF": "17", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 3, 1978", - "at": "@", - "fav": "Houston Oilers", - "und": "Pittsburgh Steelers", - "sF": "3", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 3, 1978", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Cleveland Browns", - "sF": "47", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 1978", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "6", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Dec 4, 1978", - "at": "@", - "fav": "San Diego Chargers", - "und": "Chicago Bears", - "sF": "40", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 9, 1978", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Colts", - "sF": "35", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Dec 9, 1978", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "14", - "sU": "45", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 1978", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Washington Redskins", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 1978", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "26", - "sU": "24", - "spread": "11", - "ou": null - }, - { - "date": "Dec 10, 1978", - "at": null, - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "0", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 1978", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Dec 10, 1978", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "0", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Dec 10, 1978", - "at": null, - "fav": "Houston Oilers", - "und": "New Orleans Saints", - "sF": "17", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 1978", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Dec 10, 1978", - "at": "@", - "fav": "Miami Dolphins", - "und": "Oakland Raiders", - "sF": "23", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Dec 10, 1978", - "at": "@", - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "37", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 1978", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "6", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 1978", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Cincinnati Bengals", - "sF": "19", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 16, 1978", - "at": "@", - "fav": "Washington Redskins", - "und": "Chicago Bears", - "sF": "10", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 16, 1978", - "at": "@", - "fav": "Denver Broncos", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Dec 17, 1978", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "48", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 1978", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "33", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 17, 1978", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Jets", - "sF": "30", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 1978", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "20", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 1978", - "at": null, - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 1978", - "at": "@", - "fav": "Baltimore Colts", - "und": "Buffalo Bills", - "sF": "14", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 1978", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Atlanta Falcons", - "sF": "42", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Dec 17, 1978", - "at": "@", - "fav": "Houston Oilers", - "und": "San Diego Chargers", - "sF": "24", - "sU": "45", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 1978", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "31", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Dec 17, 1978", - "at": "@", - "fav": "Oakland Raiders", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 1978", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "23", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Dec 18, 1978", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "23", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 1978", - "at": "@", - "fav": "Atlanta Falcons (4)", - "und": "Philadelphia Eagles (5)", - "sF": "14", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 24, 1978", - "at": "@", - "fav": "Miami Dolphins (4)", - "und": "Houston Oilers (5)", - "sF": "9", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 30, 1978", - "at": "@", - "fav": "Pittsburgh Steelers (1)", - "und": "Denver Broncos (3)", - "sF": "33", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 30, 1978", - "at": "@", - "fav": "Dallas Cowboys (2)", - "und": "Atlanta Falcons (4)", - "sF": "27", - "sU": "20", - "spread": "15", - "ou": null - }, - { - "date": "Dec 31, 1978", - "at": "@", - "fav": "New England Patriots (2)", - "und": "Houston Oilers (4)", - "sF": "14", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Dec 31, 1978", - "at": "@", - "fav": "Los Angeles Rams (1)", - "und": "Minnesota Vikings (3)", - "sF": "34", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Jan 7, 1979", - "at": "@", - "fav": "Pittsburgh Steelers (1)", - "und": "Houston Oilers (4)", - "sF": "34", - "sU": "5", - "spread": "7", - "ou": null - }, - { - "date": "Jan 7, 1979", - "at": null, - "fav": "Dallas Cowboys (2)", - "und": "Los Angeles Rams (1)", - "sF": "28", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Jan 21, 1979", - "at": "N", - "fav": "Pittsburgh Steelers (1)", - "und": "Dallas Cowboys (2)", - "sF": "35", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 1, 1979", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "31", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 2, 1979", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "9", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Sep 2, 1979", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "28", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Sep 2, 1979", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "23", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 2, 1979", - "at": null, - "fav": "Houston Oilers", - "und": "Washington Redskins", - "sF": "29", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Sep 2, 1979", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "6", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 2, 1979", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "40", - "spread": "5", - "ou": null - }, - { - "date": "Sep 2, 1979", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "22", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 2, 1979", - "at": "@", - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Sep 2, 1979", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Baltimore Colts", - "sF": "14", - "sU": "0", - "spread": "1", - "ou": null - }, - { - "date": "Sep 2, 1979", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Oakland Raiders", - "sF": "17", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Sep 2, 1979", - "at": "@", - "fav": "New York Jets", - "und": "Cleveland Browns", - "sF": "22", - "sU": "25", - "spread": "2", - "ou": null - }, - { - "date": "Sep 2, 1979", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "16", - "sU": "33", - "spread": "2", - "ou": null - }, - { - "date": "Sep 3, 1979", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New England Patriots", - "sF": "16", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 6, 1979", - "at": "@", - "fav": "Denver Broncos", - "und": "Los Angeles Rams", - "sF": "9", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 9, 1979", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Buffalo Bills", - "sF": "24", - "sU": "51", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 1979", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "26", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 9, 1979", - "at": "@", - "fav": "Green Bay Packers", - "und": "New Orleans Saints", - "sF": "28", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 1979", - "at": null, - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "27", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 1979", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "38", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 9, 1979", - "at": "@", - "fav": "Miami Dolphins", - "und": "Seattle Seahawks", - "sF": "19", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 9, 1979", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "56", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Sep 9, 1979", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "30", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 1979", - "at": null, - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Sep 10, 1979", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 16, 1979", - "at": null, - "fav": "Denver Broncos", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 1979", - "at": null, - "fav": "New England Patriots", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 16, 1979", - "at": "@", - "fav": "Cleveland Browns", - "und": "Baltimore Colts", - "sF": "13", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 16, 1979", - "at": "@", - "fav": "New Orleans Saints", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 1979", - "at": "@", - "fav": "New York Jets", - "und": "Detroit Lions", - "sF": "31", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 16, 1979", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Sep 16, 1979", - "at": "@", - "fav": "Houston Oilers", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Sep 16, 1979", - "at": null, - "fav": "Miami Dolphins", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Sep 16, 1979", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "24", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Sep 16, 1979", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Sep 16, 1979", - "at": "@", - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "27", - "sU": "19", - "spread": "9", - "ou": null - }, - { - "date": "Sep 16, 1979", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Oakland Raiders", - "sF": "27", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 1979", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "St Louis Cardinals", - "sF": "24", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Sep 17, 1979", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "27", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Sep 23, 1979", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "46", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 1979", - "at": null, - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "30", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 1979", - "at": null, - "fav": "Atlanta Falcons", - "und": "Detroit Lions", - "sF": "23", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Sep 23, 1979", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "27", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Sep 23, 1979", - "at": "@", - "fav": "New England Patriots", - "und": "San Diego Chargers", - "sF": "27", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 1979", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Colts", - "sF": "17", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Sep 23, 1979", - "at": null, - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "7", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 1979", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "7", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 1979", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "37", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Sep 23, 1979", - "at": "@", - "fav": "Miami Dolphins", - "und": "Chicago Bears", - "sF": "31", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Sep 23, 1979", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "17", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Sep 23, 1979", - "at": null, - "fav": "Los Angeles Rams", - "und": "Tampa Bay Buccaneers", - "sF": "6", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 1979", - "at": null, - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "7", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 1979", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Washington Redskins", - "sF": "7", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 1979", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 1979", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Giants", - "sF": "24", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 30, 1979", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "27", - "sU": "33", - "spread": "4", - "ou": null - }, - { - "date": "Sep 30, 1979", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 30, 1979", - "at": "@", - "fav": "Baltimore Colts", - "und": "Buffalo Bills", - "sF": "13", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 1979", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 30, 1979", - "at": "@", - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "31", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 30, 1979", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Cincinnati Bengals", - "sF": "38", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Sep 30, 1979", - "at": "@", - "fav": "Los Angeles Rams", - "und": "St Louis Cardinals", - "sF": "21", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Sep 30, 1979", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "3", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 1979", - "at": "@", - "fav": "San Diego Chargers", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "9", - "spread": "13", - "ou": null - }, - { - "date": "Sep 30, 1979", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "6", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 1, 1979", - "at": null, - "fav": "New England Patriots", - "und": "Green Bay Packers", - "sF": "14", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Oct 7, 1979", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Green Bay Packers", - "sF": "25", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 1979", - "at": "@", - "fav": "Buffalo Bills", - "und": "Chicago Bears", - "sF": "0", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Oct 7, 1979", - "at": "@", - "fav": "New England Patriots", - "und": "Detroit Lions", - "sF": "24", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Oct 7, 1979", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "New York Giants", - "sF": "14", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 1979", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "28", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 7, 1979", - "at": "@", - "fav": "Houston Oilers", - "und": "St Louis Cardinals", - "sF": "17", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 7, 1979", - "at": null, - "fav": "New York Jets", - "und": "Baltimore Colts", - "sF": "8", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 1979", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "51", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Oct 7, 1979", - "at": null, - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "0", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Oct 7, 1979", - "at": null, - "fav": "Dallas Cowboys", - "und": "Minnesota Vikings", - "sF": "36", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 7, 1979", - "at": null, - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "35", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 7, 1979", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "35", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Oct 8, 1979", - "at": null, - "fav": "Miami Dolphins", - "und": "Oakland Raiders", - "sF": "3", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 14, 1979", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "34", - "spread": "10", - "ou": null - }, - { - "date": "Oct 14, 1979", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "9", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Oct 14, 1979", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "17", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 14, 1979", - "at": "@", - "fav": "New York Giants", - "und": "San Francisco 49ers", - "sF": "32", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Oct 14, 1979", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 1979", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "14", - "sU": "42", - "spread": "8", - "ou": null - }, - { - "date": "Oct 14, 1979", - "at": null, - "fav": "Houston Oilers", - "und": "Baltimore Colts", - "sF": "28", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Oct 14, 1979", - "at": null, - "fav": "New England Patriots", - "und": "Chicago Bears", - "sF": "27", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Oct 14, 1979", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "24", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Oct 14, 1979", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 14, 1979", - "at": "@", - "fav": "Oakland Raiders", - "und": "Atlanta Falcons", - "sF": "50", - "sU": "19", - "spread": "10", - "ou": null - }, - { - "date": "Oct 14, 1979", - "at": "@", - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Oct 14, 1979", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 1979", - "at": "@", - "fav": "New York Jets", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Oct 21, 1979", - "at": "@", - "fav": "Buffalo Bills", - "und": "Baltimore Colts", - "sF": "13", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 21, 1979", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 1979", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "28", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Oct 21, 1979", - "at": null, - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "19", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 1979", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Green Bay Packers", - "sF": "21", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Oct 21, 1979", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "7", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 21, 1979", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "22", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Oct 21, 1979", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "30", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 21, 1979", - "at": "@", - "fav": "New Orleans Saints", - "und": "Detroit Lions", - "sF": "17", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 21, 1979", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Giants", - "sF": "17", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Oct 21, 1979", - "at": null, - "fav": "San Diego Chargers", - "und": "Los Angeles Rams", - "sF": "40", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Oct 21, 1979", - "at": null, - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "15", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 21, 1979", - "at": null, - "fav": "Houston Oilers", - "und": "Seattle Seahawks", - "sF": "14", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Oct 22, 1979", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Denver Broncos", - "sF": "42", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 25, 1979", - "at": null, - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "22", - "sU": "45", - "spread": "1", - "ou": null - }, - { - "date": "Oct 28, 1979", - "at": null, - "fav": "Buffalo Bills", - "und": "Detroit Lions", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 1979", - "at": "@", - "fav": "Houston Oilers", - "und": "New York Jets", - "sF": "27", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 28, 1979", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Dallas Cowboys", - "sF": "14", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 1979", - "at": "@", - "fav": "Washington Redskins", - "und": "New Orleans Saints", - "sF": "10", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 28, 1979", - "at": null, - "fav": "New England Patriots", - "und": "Baltimore Colts", - "sF": "26", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Oct 28, 1979", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Cleveland Browns", - "sF": "20", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 1979", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Philadelphia Eagles", - "sF": "37", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 1979", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Oct 28, 1979", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New York Giants", - "sF": "14", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 28, 1979", - "at": "@", - "fav": "Miami Dolphins", - "und": "Green Bay Packers", - "sF": "27", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Oct 28, 1979", - "at": null, - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "28", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 1979", - "at": null, - "fav": "Seattle Seahawks", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Nov 4, 1979", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 4, 1979", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "26", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Nov 4, 1979", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "16", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Nov 4, 1979", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Cleveland Browns", - "sF": "19", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 1979", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "38", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Nov 4, 1979", - "at": "@", - "fav": "Baltimore Colts", - "und": "Cincinnati Bengals", - "sF": "38", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 1979", - "at": null, - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 4, 1979", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Minnesota Vikings", - "sF": "37", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 4, 1979", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "35", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 4, 1979", - "at": "@", - "fav": "Denver Broncos", - "und": "New Orleans Saints", - "sF": "10", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Nov 4, 1979", - "at": null, - "fav": "New York Jets", - "und": "Green Bay Packers", - "sF": "27", - "sU": "22", - "spread": "4", - "ou": null - }, - { - "date": "Nov 4, 1979", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Nov 4, 1979", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Los Angeles Rams", - "sF": "0", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 1979", - "at": "@", - "fav": "Miami Dolphins", - "und": "Houston Oilers", - "sF": "6", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 1979", - "at": null, - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 11, 1979", - "at": "@", - "fav": "Cleveland Browns", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "29", - "spread": "6", - "ou": null - }, - { - "date": "Nov 11, 1979", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "16", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Nov 11, 1979", - "at": "@", - "fav": "Houston Oilers", - "und": "Oakland Raiders", - "sF": "31", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 11, 1979", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "30", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Nov 11, 1979", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "19", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 11, 1979", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "12", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 11, 1979", - "at": "@", - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "30", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 1979", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "19", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 11, 1979", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 11, 1979", - "at": null, - "fav": "New England Patriots", - "und": "Denver Broncos", - "sF": "10", - "sU": "45", - "spread": "1", - "ou": null - }, - { - "date": "Nov 11, 1979", - "at": "@", - "fav": "New York Giants", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Nov 12, 1979", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "31", - "spread": "10", - "ou": null - }, - { - "date": "Nov 18, 1979", - "at": "@", - "fav": "Buffalo Bills", - "und": "Green Bay Packers", - "sF": "19", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Nov 18, 1979", - "at": "@", - "fav": "Chicago Bears", - "und": "New York Jets", - "sF": "23", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 1979", - "at": "@", - "fav": "New England Patriots", - "und": "Baltimore Colts", - "sF": "50", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Nov 18, 1979", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 1979", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "20", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Nov 18, 1979", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "14", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 18, 1979", - "at": "@", - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "42", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Nov 18, 1979", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "21", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Nov 18, 1979", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "7", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Nov 18, 1979", - "at": null, - "fav": "Denver Broncos", - "und": "San Francisco 49ers", - "sF": "38", - "sU": "28", - "spread": "9", - "ou": null - }, - { - "date": "Nov 18, 1979", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New Orleans Saints", - "sF": "38", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 1979", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New York Giants", - "sF": "31", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 1979", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 1979", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "0", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 22, 1979", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Houston Oilers", - "sF": "24", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Nov 25, 1979", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "37", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Nov 25, 1979", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "St Louis Cardinals", - "sF": "34", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Nov 25, 1979", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "13", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Nov 25, 1979", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "6", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 1979", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "33", - "sU": "30", - "spread": "10", - "ou": null - }, - { - "date": "Nov 25, 1979", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Minnesota Vikings", - "sF": "22", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Nov 25, 1979", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Green Bay Packers", - "sF": "21", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 25, 1979", - "at": null, - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "28", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 25, 1979", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "10", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Nov 25, 1979", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 25, 1979", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "26", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 26, 1979", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New York Jets", - "sF": "30", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 29, 1979", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "39", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 1979", - "at": null, - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "19", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Dec 2, 1979", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "14", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Dec 2, 1979", - "at": "@", - "fav": "New York Jets", - "und": "Baltimore Colts", - "sF": "30", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 1979", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Detroit Lions", - "sF": "44", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Dec 2, 1979", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "37", - "sU": "17", - "spread": "14", - "ou": null - }, - { - "date": "Dec 2, 1979", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "0", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 2, 1979", - "at": "@", - "fav": "Washington Redskins", - "und": "Green Bay Packers", - "sF": "38", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Dec 2, 1979", - "at": null, - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "21", - "sU": "37", - "spread": "1", - "ou": null - }, - { - "date": "Dec 2, 1979", - "at": "@", - "fav": "St Louis Cardinals", - "und": "San Francisco 49ers", - "sF": "13", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 1979", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "28", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Dec 2, 1979", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 2, 1979", - "at": "@", - "fav": "San Diego Chargers", - "und": "Atlanta Falcons", - "sF": "26", - "sU": "28", - "spread": "14", - "ou": null - }, - { - "date": "Dec 3, 1979", - "at": "@", - "fav": "New Orleans Saints", - "und": "Oakland Raiders", - "sF": "35", - "sU": "42", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 1979", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 1979", - "at": null, - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "23", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 1979", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 1979", - "at": null, - "fav": "Miami Dolphins", - "und": "Detroit Lions", - "sF": "28", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 9, 1979", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "15", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 9, 1979", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "29", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Dec 9, 1979", - "at": "@", - "fav": "Washington Redskins", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 9, 1979", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Buffalo Bills", - "sF": "10", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Dec 9, 1979", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Diego Chargers", - "sF": "0", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Dec 9, 1979", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "26", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Dec 9, 1979", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cleveland Browns", - "sF": "19", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 1979", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "San Francisco 49ers", - "sF": "7", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 1979", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 1979", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "24", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 15, 1979", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "13", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 1979", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 1979", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "16", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Dec 16, 1979", - "at": "@", - "fav": "New England Patriots", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Dec 16, 1979", - "at": "@", - "fav": "New York Giants", - "und": "Baltimore Colts", - "sF": "7", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Dec 16, 1979", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Buffalo Bills", - "sF": "28", - "sU": "0", - "spread": "12", - "ou": null - }, - { - "date": "Dec 16, 1979", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Kansas City Chiefs", - "sF": "3", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 1979", - "at": "@", - "fav": "Chicago Bears", - "und": "St Louis Cardinals", - "sF": "42", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Dec 16, 1979", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "35", - "sU": "34", - "spread": "8", - "ou": null - }, - { - "date": "Dec 16, 1979", - "at": "@", - "fav": "Houston Oilers", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Dec 16, 1979", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "14", - "sU": "29", - "spread": "6", - "ou": null - }, - { - "date": "Dec 16, 1979", - "at": "@", - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "29", - "spread": "8", - "ou": null - }, - { - "date": "Dec 17, 1979", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "17", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 23, 1979", - "at": "@", - "fav": "Philadelphia Eagles (4)", - "und": "Chicago Bears (5)", - "sF": "27", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 23, 1979", - "at": "@", - "fav": "Houston Oilers (4)", - "und": "Denver Broncos (5)", - "sF": "13", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 29, 1979", - "at": null, - "fav": "Philadelphia Eagles (4)", - "und": "Tampa Bay Buccaneers (2)", - "sF": "17", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 29, 1979", - "at": "@", - "fav": "San Diego Chargers (1)", - "und": "Houston Oilers (4)", - "sF": "14", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 30, 1979", - "at": "@", - "fav": "Pittsburgh Steelers (2)", - "und": "Miami Dolphins (3)", - "sF": "34", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Dec 30, 1979", - "at": "@", - "fav": "Dallas Cowboys (1)", - "und": "Los Angeles Rams (3)", - "sF": "19", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Jan 6, 1980", - "at": "@", - "fav": "Pittsburgh Steelers (2)", - "und": "Houston Oilers (4)", - "sF": "27", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Jan 6, 1980", - "at": null, - "fav": "Los Angeles Rams (3)", - "und": "Tampa Bay Buccaneers (2)", - "sF": "9", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Jan 20, 1980", - "at": "N", - "fav": "Pittsburgh Steelers (2)", - "und": "Los Angeles Rams (3)", - "sF": "31", - "sU": "19", - "spread": "10", - "ou": null - }, - { - "date": "Sep 7, 1980", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "7", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 1980", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Sep 7, 1980", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "6", - "sU": "12", - "spread": "6", - "ou": null - }, - { - "date": "Sep 7, 1980", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Sep 7, 1980", - "at": "@", - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "34", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 7, 1980", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Sep 7, 1980", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "31", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 7, 1980", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "35", - "sU": "41", - "spread": "7", - "ou": null - }, - { - "date": "Sep 7, 1980", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "14", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 1980", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "20", - "sU": "41", - "spread": "9", - "ou": null - }, - { - "date": "Sep 7, 1980", - "at": "@", - "fav": "New York Jets", - "und": "Baltimore Colts", - "sF": "14", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 7, 1980", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Denver Broncos", - "sF": "27", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 1980", - "at": null, - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 8, 1980", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "3", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 11, 1980", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Los Angeles Rams", - "sF": "10", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Sep 14, 1980", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Philadelphia Eagles", - "sF": "7", - "sU": "42", - "spread": "4", - "ou": null - }, - { - "date": "Sep 14, 1980", - "at": "@", - "fav": "New England Patriots", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "37", - "spread": "8", - "ou": null - }, - { - "date": "Sep 14, 1980", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Baltimore Colts", - "sF": "20", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 14, 1980", - "at": "@", - "fav": "Chicago Bears", - "und": "New Orleans Saints", - "sF": "22", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Sep 14, 1980", - "at": null, - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "29", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 14, 1980", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "16", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 1980", - "at": "@", - "fav": "Denver Broncos", - "und": "Dallas Cowboys", - "sF": "41", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 1980", - "at": "@", - "fav": "Miami Dolphins", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Sep 14, 1980", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "23", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 14, 1980", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "30", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 14, 1980", - "at": "@", - "fav": "San Francisco 49ers", - "und": "St Louis Cardinals", - "sF": "24", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 1980", - "at": null, - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "16", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 21, 1980", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Miami Dolphins", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 1980", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Sep 21, 1980", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Sep 21, 1980", - "at": "@", - "fav": "Cleveland Browns", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Sep 21, 1980", - "at": "@", - "fav": "Detroit Lions", - "und": "St Louis Cardinals", - "sF": "20", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 21, 1980", - "at": "@", - "fav": "New York Jets", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "37", - "spread": "5", - "ou": null - }, - { - "date": "Sep 21, 1980", - "at": "@", - "fav": "Houston Oilers", - "und": "Baltimore Colts", - "sF": "21", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Sep 21, 1980", - "at": "@", - "fav": "New Orleans Saints", - "und": "Buffalo Bills", - "sF": "26", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Sep 21, 1980", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Tampa Bay Buccaneers", - "sF": "28", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 21, 1980", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "13", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Sep 21, 1980", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "51", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Sep 21, 1980", - "at": "@", - "fav": "Oakland Raiders", - "und": "Washington Redskins", - "sF": "24", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 21, 1980", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New England Patriots", - "sF": "31", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Sep 22, 1980", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "35", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Sep 28, 1980", - "at": "@", - "fav": "Buffalo Bills", - "und": "Oakland Raiders", - "sF": "24", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Sep 28, 1980", - "at": null, - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 1980", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 28, 1980", - "at": null, - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "28", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Sep 28, 1980", - "at": "@", - "fav": "Miami Dolphins", - "und": "New Orleans Saints", - "sF": "21", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Sep 28, 1980", - "at": null, - "fav": "Los Angeles Rams", - "und": "New York Giants", - "sF": "28", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Sep 28, 1980", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Chicago Bears", - "sF": "38", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Sep 28, 1980", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Cleveland Browns", - "sF": "27", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 1980", - "at": null, - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "14", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Sep 28, 1980", - "at": "@", - "fav": "Baltimore Colts", - "und": "New York Jets", - "sF": "35", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 28, 1980", - "at": null, - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 28, 1980", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 1980", - "at": "@", - "fav": "Washington Redskins", - "und": "Seattle Seahawks", - "sF": "0", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 29, 1980", - "at": "@", - "fav": "New England Patriots", - "und": "Denver Broncos", - "sF": "23", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 5, 1980", - "at": null, - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "43", - "spread": "2", - "ou": null - }, - { - "date": "Oct 5, 1980", - "at": "@", - "fav": "Cleveland Browns", - "und": "Denver Broncos", - "sF": "16", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Oct 5, 1980", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Green Bay Packers", - "sF": "9", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1980", - "at": "@", - "fav": "Houston Oilers", - "und": "Seattle Seahawks", - "sF": "7", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1980", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "17", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Oct 5, 1980", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Oct 5, 1980", - "at": null, - "fav": "St Louis Cardinals", - "und": "New Orleans Saints", - "sF": "40", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Oct 5, 1980", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "21", - "sU": "11", - "spread": "4", - "ou": null - }, - { - "date": "Oct 5, 1980", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "24", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1980", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "24", - "sU": "3", - "spread": "12", - "ou": null - }, - { - "date": "Oct 5, 1980", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "48", - "sU": "26", - "spread": "9", - "ou": null - }, - { - "date": "Oct 5, 1980", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1980", - "at": "@", - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "24", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Oct 6, 1980", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "0", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 12, 1980", - "at": "@", - "fav": "Buffalo Bills", - "und": "Baltimore Colts", - "sF": "12", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 1980", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "34", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Oct 12, 1980", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "31", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Oct 12, 1980", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "16", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Oct 12, 1980", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Green Bay Packers", - "sF": "14", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Oct 12, 1980", - "at": "@", - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "59", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Oct 12, 1980", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "13", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 1980", - "at": null, - "fav": "Los Angeles Rams", - "und": "St Louis Cardinals", - "sF": "21", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 1980", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New York Jets", - "sF": "7", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 12, 1980", - "at": "@", - "fav": "Detroit Lions", - "und": "New Orleans Saints", - "sF": "24", - "sU": "13", - "spread": "11", - "ou": null - }, - { - "date": "Oct 12, 1980", - "at": null, - "fav": "Houston Oilers", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Oct 12, 1980", - "at": null, - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "24", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Oct 12, 1980", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Cleveland Browns", - "sF": "3", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Oct 13, 1980", - "at": "@", - "fav": "Denver Broncos", - "und": "Washington Redskins", - "sF": "20", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 19, 1980", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Oct 19, 1980", - "at": "@", - "fav": "Cleveland Browns", - "und": "Green Bay Packers", - "sF": "26", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Oct 19, 1980", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "14", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 19, 1980", - "at": "@", - "fav": "New York Jets", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 19, 1980", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 1980", - "at": "@", - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "23", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Oct 19, 1980", - "at": "@", - "fav": "Baltimore Colts", - "und": "New England Patriots", - "sF": "21", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 1980", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "7", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 1980", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 19, 1980", - "at": null, - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "41", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 1980", - "at": "@", - "fav": "Houston Oilers", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Oct 19, 1980", - "at": "@", - "fav": "San Diego Chargers", - "und": "New York Giants", - "sF": "44", - "sU": "7", - "spread": "15", - "ou": null - }, - { - "date": "Oct 19, 1980", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Oct 20, 1980", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Oakland Raiders", - "sF": "34", - "sU": "45", - "spread": "10", - "ou": null - }, - { - "date": "Oct 26, 1980", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 1980", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "13", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Oct 26, 1980", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "26", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 1980", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "16", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Oct 26, 1980", - "at": null, - "fav": "Denver Broncos", - "und": "New York Giants", - "sF": "14", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Oct 26, 1980", - "at": "@", - "fav": "Washington Redskins", - "und": "New Orleans Saints", - "sF": "22", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Oct 26, 1980", - "at": "@", - "fav": "Baltimore Colts", - "und": "St Louis Cardinals", - "sF": "10", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Oct 26, 1980", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Detroit Lions", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 1980", - "at": "@", - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Oct 26, 1980", - "at": "@", - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "33", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 26, 1980", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "17", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 26, 1980", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 26, 1980", - "at": "@", - "fav": "Dallas Cowboys", - "und": "San Diego Chargers", - "sF": "42", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 1980", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "17", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Nov 2, 1980", - "at": "@", - "fav": "Buffalo Bills", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Nov 2, 1980", - "at": null, - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 1980", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Nov 2, 1980", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Baltimore Colts", - "sF": "24", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Nov 2, 1980", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Green Bay Packers", - "sF": "22", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Nov 2, 1980", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New York Giants", - "sF": "30", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 2, 1980", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Nov 2, 1980", - "at": null, - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "20", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Nov 2, 1980", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "45", - "sU": "31", - "spread": "14", - "ou": null - }, - { - "date": "Nov 2, 1980", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "34", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Nov 2, 1980", - "at": "@", - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "16", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 2, 1980", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 2, 1980", - "at": "@", - "fav": "Washington Redskins", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "39", - "spread": "9", - "ou": null - }, - { - "date": "Nov 3, 1980", - "at": "@", - "fav": "Cleveland Browns", - "und": "Chicago Bears", - "sF": "27", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Nov 9, 1980", - "at": "@", - "fav": "Chicago Bears", - "und": "Washington Redskins", - "sF": "35", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 1980", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "35", - "sU": "38", - "spread": "10", - "ou": null - }, - { - "date": "Nov 9, 1980", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 9, 1980", - "at": "@", - "fav": "Baltimore Colts", - "und": "Cleveland Browns", - "sF": "27", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Nov 9, 1980", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 1980", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "34", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Nov 9, 1980", - "at": null, - "fav": "Atlanta Falcons", - "und": "St Louis Cardinals", - "sF": "33", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 9, 1980", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Miami Dolphins", - "sF": "14", - "sU": "35", - "spread": "11", - "ou": null - }, - { - "date": "Nov 9, 1980", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New Orleans Saints", - "sF": "34", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Nov 9, 1980", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "31", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 9, 1980", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 9, 1980", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "13", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Nov 9, 1980", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "30", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 1980", - "at": "@", - "fav": "Houston Oilers", - "und": "New England Patriots", - "sF": "38", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1980", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "31", - "sU": "13", - "spread": "12", - "ou": null - }, - { - "date": "Nov 16, 1980", - "at": null, - "fav": "Buffalo Bills", - "und": "Cincinnati Bengals", - "sF": "14", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Nov 16, 1980", - "at": null, - "fav": "Baltimore Colts", - "und": "Detroit Lions", - "sF": "10", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Nov 16, 1980", - "at": "@", - "fav": "New England Patriots", - "und": "Los Angeles Rams", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1980", - "at": null, - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "21", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 16, 1980", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "16", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 16, 1980", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "24", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 16, 1980", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "31", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Nov 16, 1980", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "38", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Nov 16, 1980", - "at": null, - "fav": "Houston Oilers", - "und": "Chicago Bears", - "sF": "10", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1980", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Jets", - "sF": "31", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 16, 1980", - "at": "@", - "fav": "Miami Dolphins", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Nov 16, 1980", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Nov 17, 1980", - "at": null, - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "19", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 1980", - "at": null, - "fav": "San Diego Chargers", - "und": "Miami Dolphins", - "sF": "27", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 23, 1980", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Chicago Bears", - "sF": "28", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 1980", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Buffalo Bills", - "sF": "13", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Nov 23, 1980", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 1980", - "at": "@", - "fav": "New England Patriots", - "und": "Baltimore Colts", - "sF": "47", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 23, 1980", - "at": null, - "fav": "Houston Oilers", - "und": "New York Jets", - "sF": "28", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 23, 1980", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Oakland Raiders", - "sF": "10", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 23, 1980", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "10", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1980", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "13", - "sU": "25", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 1980", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Kansas City Chiefs", - "sF": "13", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 23, 1980", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "14", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Nov 23, 1980", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "36", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 23, 1980", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "12", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 1980", - "at": null, - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "27", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 27, 1980", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "17", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 1980", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Seattle Seahawks", - "sF": "51", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 30, 1980", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Washington Redskins", - "sF": "10", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Nov 30, 1980", - "at": null, - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "23", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 30, 1980", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Miami Dolphins", - "sF": "23", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 30, 1980", - "at": null, - "fav": "Buffalo Bills", - "und": "Baltimore Colts", - "sF": "24", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 1980", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 30, 1980", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cincinnati Bengals", - "sF": "6", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 30, 1980", - "at": null, - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "23", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 30, 1980", - "at": "@", - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 1980", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New York Jets", - "sF": "38", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Nov 30, 1980", - "at": "@", - "fav": "San Diego Chargers", - "und": "Philadelphia Eagles", - "sF": "22", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 1980", - "at": null, - "fav": "New England Patriots", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 1, 1980", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "9", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Dec 4, 1980", - "at": "@", - "fav": "Houston Oilers", - "und": "Pittsburgh Steelers", - "sF": "6", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Dec 7, 1980", - "at": null, - "fav": "Baltimore Colts", - "und": "Cincinnati Bengals", - "sF": "33", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Dec 7, 1980", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Jets", - "sF": "17", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Dec 7, 1980", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 7, 1980", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Minnesota Vikings", - "sF": "10", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Dec 7, 1980", - "at": null, - "fav": "San Diego Chargers", - "und": "Washington Redskins", - "sF": "17", - "sU": "40", - "spread": "7", - "ou": null - }, - { - "date": "Dec 7, 1980", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "61", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 7, 1980", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Detroit Lions", - "sF": "24", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 7, 1980", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Dec 7, 1980", - "at": null, - "fav": "Dallas Cowboys", - "und": "Oakland Raiders", - "sF": "19", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 7, 1980", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "38", - "sU": "35", - "spread": "7", - "ou": null - }, - { - "date": "Dec 7, 1980", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New York Giants", - "sF": "21", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 8, 1980", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "13", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1980", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "16", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 1980", - "at": "@", - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Dec 14, 1980", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "35", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Dec 14, 1980", - "at": null, - "fav": "Houston Oilers", - "und": "Green Bay Packers", - "sF": "22", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Dec 14, 1980", - "at": null, - "fav": "Cleveland Browns", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 1980", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "24", - "sU": "2", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 1980", - "at": "@", - "fav": "New York Jets", - "und": "New Orleans Saints", - "sF": "20", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 1980", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "17", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Dec 14, 1980", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "21", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Dec 14, 1980", - "at": "@", - "fav": "Chicago Bears", - "und": "Cincinnati Bengals", - "sF": "14", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 14, 1980", - "at": "@", - "fav": "Baltimore Colts", - "und": "Miami Dolphins", - "sF": "14", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 1980", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "24", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 1980", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 15, 1980", - "at": null, - "fav": "Dallas Cowboys", - "und": "Los Angeles Rams", - "sF": "14", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Dec 20, 1980", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "17", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Dec 20, 1980", - "at": null, - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "14", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 21, 1980", - "at": null, - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 1980", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "24", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Dec 21, 1980", - "at": "@", - "fav": "Houston Oilers", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Dec 21, 1980", - "at": null, - "fav": "New England Patriots", - "und": "New Orleans Saints", - "sF": "38", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Dec 21, 1980", - "at": null, - "fav": "Oakland Raiders", - "und": "New York Giants", - "sF": "33", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 21, 1980", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "7", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Dec 21, 1980", - "at": "@", - "fav": "Baltimore Colts", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 1980", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "35", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Dec 21, 1980", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 1980", - "at": null, - "fav": "Buffalo Bills", - "und": "San Francisco 49ers", - "sF": "18", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 21, 1980", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Denver Broncos", - "sF": "17", - "sU": "25", - "spread": "2", - "ou": null - }, - { - "date": "Dec 22, 1980", - "at": "@", - "fav": "San Diego Chargers", - "und": "Pittsburgh Steelers", - "sF": "26", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 28, 1980", - "at": "@", - "fav": "Dallas Cowboys (4)", - "und": "Los Angeles Rams (5)", - "sF": "34", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 28, 1980", - "at": null, - "fav": "Houston Oilers (5)", - "und": "Oakland Raiders (4)", - "sF": "7", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Jan 3, 1981", - "at": "@", - "fav": "Philadelphia Eagles (2)", - "und": "Minnesota Vikings (3)", - "sF": "31", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Jan 3, 1981", - "at": "@", - "fav": "San Diego Chargers (1)", - "und": "Buffalo Bills (3)", - "sF": "20", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Jan 4, 1981", - "at": "@", - "fav": "Cleveland Browns (2)", - "und": "Oakland Raiders (4)", - "sF": "12", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Jan 4, 1981", - "at": "@", - "fav": "Atlanta Falcons (1)", - "und": "Dallas Cowboys (4)", - "sF": "27", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Jan 11, 1981", - "at": null, - "fav": "Dallas Cowboys (4)", - "und": "Philadelphia Eagles (2)", - "sF": "7", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Jan 11, 1981", - "at": "@", - "fav": "San Diego Chargers (1)", - "und": "Oakland Raiders (4)", - "sF": "27", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Jan 25, 1981", - "at": "N", - "fav": "Philadelphia Eagles (2)", - "und": "Oakland Raiders (4)", - "sF": "10", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 5, 1981", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Sep 6, 1981", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "27", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Sep 6, 1981", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 6, 1981", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 6, 1981", - "at": "@", - "fav": "New England Patriots", - "und": "Baltimore Colts", - "sF": "28", - "sU": "29", - "spread": "6", - "ou": null - }, - { - "date": "Sep 6, 1981", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "24", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 6, 1981", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "33", - "sU": "37", - "spread": "10", - "ou": null - }, - { - "date": "Sep 6, 1981", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "26", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 6, 1981", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "9", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Sep 6, 1981", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "31", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Sep 6, 1981", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "7", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Sep 6, 1981", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Houston Oilers", - "sF": "20", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Sep 7, 1981", - "at": "@", - "fav": "Cleveland Browns", - "und": "San Diego Chargers", - "sF": "14", - "sU": "44", - "spread": "2", - "ou": null - }, - { - "date": "Sep 10, 1981", - "at": "@", - "fav": "Miami Dolphins", - "und": "Pittsburgh Steelers", - "sF": "30", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 13, 1981", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "3", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Sep 13, 1981", - "at": null, - "fav": "Atlanta Falcons", - "und": "Green Bay Packers", - "sF": "31", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 13, 1981", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Tampa Bay Buccaneers", - "sF": "19", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 1981", - "at": null, - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "17", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Sep 13, 1981", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "7", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 13, 1981", - "at": null, - "fav": "Buffalo Bills", - "und": "Baltimore Colts", - "sF": "35", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Sep 13, 1981", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "30", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Sep 13, 1981", - "at": "@", - "fav": "New York Jets", - "und": "Cincinnati Bengals", - "sF": "30", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 1981", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New England Patriots", - "sF": "13", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 1981", - "at": "@", - "fav": "San Diego Chargers", - "und": "Detroit Lions", - "sF": "28", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Sep 14, 1981", - "at": null, - "fav": "Oakland Raiders", - "und": "Minnesota Vikings", - "sF": "36", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 1981", - "at": "@", - "fav": "Buffalo Bills", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 20, 1981", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Sep 20, 1981", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "17", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Sep 20, 1981", - "at": "@", - "fav": "Houston Oilers", - "und": "Miami Dolphins", - "sF": "10", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 1981", - "at": null, - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 1981", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "38", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Sep 20, 1981", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "40", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 1981", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "28", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 1981", - "at": null, - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "42", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Sep 20, 1981", - "at": "@", - "fav": "Denver Broncos", - "und": "Baltimore Colts", - "sF": "28", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 1981", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "35", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 1981", - "at": "@", - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "20", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 1981", - "at": "@", - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 21, 1981", - "at": null, - "fav": "Dallas Cowboys", - "und": "New England Patriots", - "sF": "35", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Sep 27, 1981", - "at": null, - "fav": "Buffalo Bills", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Sep 27, 1981", - "at": null, - "fav": "Atlanta Falcons", - "und": "Cleveland Browns", - "sF": "17", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Sep 27, 1981", - "at": null, - "fav": "Oakland Raiders", - "und": "Detroit Lions", - "sF": "0", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Sep 27, 1981", - "at": null, - "fav": "Houston Oilers", - "und": "New York Jets", - "sF": "17", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 1981", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "36", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Sep 27, 1981", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New England Patriots", - "sF": "27", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 27, 1981", - "at": null, - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "31", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 1981", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 1981", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "18", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Sep 27, 1981", - "at": null, - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "24", - "sU": "42", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 1981", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "21", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 1981", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 27, 1981", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "St Louis Cardinals", - "sF": "20", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Sep 28, 1981", - "at": null, - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "24", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Oct 4, 1981", - "at": "@", - "fav": "Buffalo Bills", - "und": "Baltimore Colts", - "sF": "23", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 4, 1981", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "24", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Oct 4, 1981", - "at": "@", - "fav": "New England Patriots", - "und": "Kansas City Chiefs", - "sF": "33", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 4, 1981", - "at": "@", - "fav": "New York Giants", - "und": "Green Bay Packers", - "sF": "14", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 1981", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "17", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Oct 4, 1981", - "at": "@", - "fav": "Washington Redskins", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Oct 4, 1981", - "at": "@", - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 1981", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New Orleans Saints", - "sF": "20", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Oct 4, 1981", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Cleveland Browns", - "sF": "27", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Oct 4, 1981", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "28", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Oct 4, 1981", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "0", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 4, 1981", - "at": "@", - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 4, 1981", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "28", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 5, 1981", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "16", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Oct 11, 1981", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Los Angeles Rams", - "sF": "35", - "sU": "37", - "spread": "4", - "ou": null - }, - { - "date": "Oct 11, 1981", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New Orleans Saints", - "sF": "31", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Oct 11, 1981", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "24", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 11, 1981", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "13", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 11, 1981", - "at": "@", - "fav": "Baltimore Colts", - "und": "Cincinnati Bengals", - "sF": "19", - "sU": "41", - "spread": "2", - "ou": null - }, - { - "date": "Oct 11, 1981", - "at": "@", - "fav": "Chicago Bears", - "und": "Washington Redskins", - "sF": "7", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Oct 11, 1981", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Oct 11, 1981", - "at": "@", - "fav": "Houston Oilers", - "und": "Seattle Seahawks", - "sF": "35", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 1981", - "at": null, - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "0", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 11, 1981", - "at": "@", - "fav": "Denver Broncos", - "und": "Detroit Lions", - "sF": "27", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 1981", - "at": "@", - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "34", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 11, 1981", - "at": "@", - "fav": "San Diego Chargers", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "33", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 1981", - "at": null, - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "45", - "spread": "5", - "ou": null - }, - { - "date": "Oct 12, 1981", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "31", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Oct 18, 1981", - "at": "@", - "fav": "Atlanta Falcons", - "und": "St Louis Cardinals", - "sF": "41", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Oct 18, 1981", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "7", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Oct 18, 1981", - "at": "@", - "fav": "Cleveland Browns", - "und": "New Orleans Saints", - "sF": "20", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Oct 18, 1981", - "at": null, - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "13", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Oct 18, 1981", - "at": "@", - "fav": "Miami Dolphins", - "und": "Washington Redskins", - "sF": "13", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 18, 1981", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 1981", - "at": "@", - "fav": "New England Patriots", - "und": "Houston Oilers", - "sF": "38", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 1981", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "14", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 1981", - "at": null, - "fav": "San Diego Chargers", - "und": "Baltimore Colts", - "sF": "43", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 18, 1981", - "at": "@", - "fav": "Oakland Raiders", - "und": "Tampa Bay Buccaneers", - "sF": "18", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Oct 18, 1981", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New York Giants", - "sF": "0", - "sU": "32", - "spread": "1", - "ou": null - }, - { - "date": "Oct 18, 1981", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Los Angeles Rams", - "sF": "29", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 19, 1981", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "48", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 1981", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New York Giants", - "sF": "24", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Oct 25, 1981", - "at": "@", - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "9", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Oct 25, 1981", - "at": "@", - "fav": "Cleveland Browns", - "und": "Baltimore Colts", - "sF": "42", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Oct 25, 1981", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "31", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Oct 25, 1981", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 25, 1981", - "at": null, - "fav": "Minnesota Vikings", - "und": "St Louis Cardinals", - "sF": "17", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Oct 25, 1981", - "at": null, - "fav": "New England Patriots", - "und": "Washington Redskins", - "sF": "22", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 1981", - "at": null, - "fav": "Cincinnati Bengals", - "und": "New Orleans Saints", - "sF": "7", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 1981", - "at": null, - "fav": "San Diego Chargers", - "und": "Chicago Bears", - "sF": "17", - "sU": "20", - "spread": "11", - "ou": null - }, - { - "date": "Oct 25, 1981", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Miami Dolphins", - "sF": "28", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 1981", - "at": "@", - "fav": "New York Jets", - "und": "Seattle Seahawks", - "sF": "3", - "sU": "19", - "spread": "9", - "ou": null - }, - { - "date": "Oct 25, 1981", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 1981", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 26, 1981", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "26", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Nov 1, 1981", - "at": "@", - "fav": "Buffalo Bills", - "und": "Cleveland Browns", - "sF": "22", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Nov 1, 1981", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "34", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 1, 1981", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "27", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 1, 1981", - "at": null, - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "41", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 1, 1981", - "at": "@", - "fav": "New York Giants", - "und": "New York Jets", - "sF": "7", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Nov 1, 1981", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 1, 1981", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "20", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 1, 1981", - "at": "@", - "fav": "Green Bay Packers", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 1, 1981", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "20", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 1, 1981", - "at": "@", - "fav": "Oakland Raiders", - "und": "New England Patriots", - "sF": "27", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 1, 1981", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 1981", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "22", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 1, 1981", - "at": "@", - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "42", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 2, 1981", - "at": "@", - "fav": "Denver Broncos", - "und": "Minnesota Vikings", - "sF": "19", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 8, 1981", - "at": "@", - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "26", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 1981", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "25", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 8, 1981", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "27", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 1981", - "at": null, - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "52", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 8, 1981", - "at": "@", - "fav": "Washington Redskins", - "und": "Detroit Lions", - "sF": "33", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Nov 8, 1981", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Chicago Bears", - "sF": "13", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Nov 8, 1981", - "at": null, - "fav": "New York Jets", - "und": "Baltimore Colts", - "sF": "41", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 1981", - "at": "@", - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "23", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 8, 1981", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "13", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Nov 8, 1981", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "40", - "spread": "4", - "ou": null - }, - { - "date": "Nov 8, 1981", - "at": null, - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 8, 1981", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Nov 9, 1981", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Buffalo Bills", - "sF": "27", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 1981", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "34", - "spread": "5", - "ou": null - }, - { - "date": "Nov 15, 1981", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 1981", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "21", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 1981", - "at": "@", - "fav": "Miami Dolphins", - "und": "Oakland Raiders", - "sF": "17", - "sU": "33", - "spread": "5", - "ou": null - }, - { - "date": "Nov 15, 1981", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "20", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Nov 15, 1981", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "6", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 15, 1981", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Baltimore Colts", - "sF": "38", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Nov 15, 1981", - "at": null, - "fav": "Buffalo Bills", - "und": "St Louis Cardinals", - "sF": "0", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Nov 15, 1981", - "at": null, - "fav": "Denver Broncos", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Nov 15, 1981", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "23", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 15, 1981", - "at": null, - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 1981", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "27", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Nov 15, 1981", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Cleveland Browns", - "sF": "12", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1981", - "at": null, - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "23", - "sU": "44", - "spread": "6", - "ou": null - }, - { - "date": "Nov 22, 1981", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "20", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 1981", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "23", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 1981", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Denver Broncos", - "sF": "38", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 1981", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "32", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 1981", - "at": "@", - "fav": "Houston Oilers", - "und": "New Orleans Saints", - "sF": "24", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Nov 22, 1981", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "10", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Nov 22, 1981", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Green Bay Packers", - "sF": "37", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 1981", - "at": null, - "fav": "St Louis Cardinals", - "und": "Baltimore Colts", - "sF": "35", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 22, 1981", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "40", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 1981", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "24", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 1981", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 1981", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "16", - "sU": "15", - "spread": "2", - "ou": null - }, - { - "date": "Nov 22, 1981", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "21", - "sU": "55", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1981", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Nov 26, 1981", - "at": "@", - "fav": "Detroit Lions", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1981", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "10", - "sU": "9", - "spread": "13", - "ou": null - }, - { - "date": "Nov 29, 1981", - "at": "@", - "fav": "Buffalo Bills", - "und": "Washington Redskins", - "sF": "21", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Nov 29, 1981", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "41", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 29, 1981", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "23", - "sU": "35", - "spread": "7", - "ou": null - }, - { - "date": "Nov 29, 1981", - "at": "@", - "fav": "New England Patriots", - "und": "St Louis Cardinals", - "sF": "20", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 29, 1981", - "at": "@", - "fav": "New York Jets", - "und": "Baltimore Colts", - "sF": "25", - "sU": "0", - "spread": "11", - "ou": null - }, - { - "date": "Nov 29, 1981", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 29, 1981", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "31", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Nov 29, 1981", - "at": null, - "fav": "Atlanta Falcons", - "und": "Houston Oilers", - "sF": "31", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 29, 1981", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "34", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 29, 1981", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "17", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 30, 1981", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Miami Dolphins", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 1981", - "at": "@", - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "17", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 6, 1981", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "9", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 1981", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "San Francisco 49ers", - "sF": "3", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 6, 1981", - "at": null, - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "17", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Dec 6, 1981", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "24", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 6, 1981", - "at": "@", - "fav": "New York Giants", - "und": "Los Angeles Rams", - "sF": "10", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 1981", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New Orleans Saints", - "sF": "30", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Dec 6, 1981", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "13", - "sU": "15", - "spread": "4", - "ou": null - }, - { - "date": "Dec 6, 1981", - "at": null, - "fav": "Dallas Cowboys", - "und": "Baltimore Colts", - "sF": "37", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Dec 6, 1981", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 1981", - "at": "@", - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "27", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Dec 6, 1981", - "at": null, - "fav": "New York Jets", - "und": "Seattle Seahawks", - "sF": "23", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Dec 6, 1981", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 1981", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Oakland Raiders", - "sF": "27", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Dec 12, 1981", - "at": null, - "fav": "New York Jets", - "und": "Cleveland Browns", - "sF": "14", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 12, 1981", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "45", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Dec 13, 1981", - "at": null, - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "19", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1981", - "at": null, - "fav": "Green Bay Packers", - "und": "New Orleans Saints", - "sF": "35", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1981", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "10", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Dec 13, 1981", - "at": null, - "fav": "San Diego Chargers", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 13, 1981", - "at": "@", - "fav": "Washington Redskins", - "und": "Baltimore Colts", - "sF": "38", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Dec 13, 1981", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Miami Dolphins", - "sF": "7", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 13, 1981", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1981", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "23", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Dec 13, 1981", - "at": "@", - "fav": "Oakland Raiders", - "und": "Chicago Bears", - "sF": "6", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Dec 13, 1981", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Houston Oilers", - "sF": "28", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 1981", - "at": null, - "fav": "Atlanta Falcons", - "und": "Los Angeles Rams", - "sF": "16", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Dec 19, 1981", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 1981", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "16", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1981", - "at": null, - "fav": "Denver Broncos", - "und": "Chicago Bears", - "sF": "24", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1981", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 20, 1981", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Kansas City Chiefs", - "sF": "6", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Dec 20, 1981", - "at": "@", - "fav": "New York Jets", - "und": "Green Bay Packers", - "sF": "28", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1981", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "38", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Dec 20, 1981", - "at": null, - "fav": "New England Patriots", - "und": "Baltimore Colts", - "sF": "21", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Dec 20, 1981", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "21", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 20, 1981", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1981", - "at": null, - "fav": "Washington Redskins", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Dec 20, 1981", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Cleveland Browns", - "sF": "42", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Dec 21, 1981", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "23", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 27, 1981", - "at": "@", - "fav": "New York Jets (4)", - "und": "Buffalo Bills (5)", - "sF": "27", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 27, 1981", - "at": "@", - "fav": "Philadelphia Eagles (4)", - "und": "New York Giants (5)", - "sF": "21", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Jan 2, 1982", - "at": "@", - "fav": "Dallas Cowboys (2)", - "und": "Tampa Bay Buccaneers (3)", - "sF": "38", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Jan 2, 1982", - "at": null, - "fav": "San Diego Chargers (3)", - "und": "Miami Dolphins (2)", - "sF": "41", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Jan 3, 1982", - "at": "@", - "fav": "Cincinnati Bengals (1)", - "und": "Buffalo Bills (5)", - "sF": "28", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Jan 3, 1982", - "at": "@", - "fav": "San Francisco 49ers (1)", - "und": "New York Giants (5)", - "sF": "38", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Jan 10, 1982", - "at": "@", - "fav": "Cincinnati Bengals (1)", - "und": "San Diego Chargers (3)", - "sF": "27", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Jan 10, 1982", - "at": null, - "fav": "Dallas Cowboys (2)", - "und": "San Francisco 49ers (1)", - "sF": "27", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Jan 24, 1982", - "at": "N", - "fav": "San Francisco 49ers (1)", - "und": "Cincinnati Bengals (1)", - "sF": "26", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Sep 12, 1982", - "at": "@", - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 1982", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "27", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Sep 12, 1982", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "17", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Sep 12, 1982", - "at": null, - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "23", - "sU": "35", - "spread": "1", - "ou": null - }, - { - "date": "Sep 12, 1982", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 12, 1982", - "at": null, - "fav": "St Louis Cardinals", - "und": "New Orleans Saints", - "sF": "21", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Sep 12, 1982", - "at": "@", - "fav": "New York Giants", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Sep 12, 1982", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "34", - "sU": "37", - "spread": "6", - "ou": null - }, - { - "date": "Sep 12, 1982", - "at": null, - "fav": "New England Patriots", - "und": "Baltimore Colts", - "sF": "24", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 12, 1982", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "3", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Sep 12, 1982", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "28", - "sU": "45", - "spread": "2", - "ou": null - }, - { - "date": "Sep 12, 1982", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Raiders", - "sF": "17", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Sep 12, 1982", - "at": null, - "fav": "Cleveland Browns", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Sep 13, 1982", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Pittsburgh Steelers", - "sF": "28", - "sU": "36", - "spread": "5", - "ou": null - }, - { - "date": "Sep 16, 1982", - "at": "@", - "fav": "Buffalo Bills", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 1982", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Los Angeles Raiders", - "sF": "14", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 1982", - "at": "@", - "fav": "Chicago Bears", - "und": "New Orleans Saints", - "sF": "0", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 19, 1982", - "at": "@", - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 19, 1982", - "at": null, - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "12", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 1982", - "at": null, - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "31", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Sep 19, 1982", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Sep 19, 1982", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "24", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 19, 1982", - "at": "@", - "fav": "Denver Broncos", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Sep 19, 1982", - "at": "@", - "fav": "Houston Oilers", - "und": "Seattle Seahawks", - "sF": "23", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 1982", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "14", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Sep 19, 1982", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "24", - "sU": "20", - "spread": "12", - "ou": null - }, - { - "date": "Sep 19, 1982", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Washington Redskins", - "sF": "13", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 1982", - "at": "@", - "fav": "New York Giants", - "und": "Green Bay Packers", - "sF": "19", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 21, 1982", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Los Angeles Rams", - "sF": "34", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 1982", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "7", - "sU": "9", - "spread": "1", - "ou": null - }, - { - "date": "Nov 21, 1982", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 1982", - "at": "@", - "fav": "Cleveland Browns", - "und": "New England Patriots", - "sF": "10", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 21, 1982", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Tampa Bay Buccaneers", - "sF": "14", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 1982", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "26", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 21, 1982", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "24", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 21, 1982", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New Orleans Saints", - "sF": "17", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 21, 1982", - "at": "@", - "fav": "New York Jets", - "und": "Baltimore Colts", - "sF": "37", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Nov 21, 1982", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Cincinnati Bengals", - "sF": "14", - "sU": "18", - "spread": "1", - "ou": null - }, - { - "date": "Nov 21, 1982", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "10", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 1982", - "at": null, - "fav": "San Francisco 49ers", - "und": "St Louis Cardinals", - "sF": "31", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 22, 1982", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "28", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Nov 25, 1982", - "at": "@", - "fav": "Detroit Lions", - "und": "New York Giants", - "sF": "6", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Nov 25, 1982", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "31", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 28, 1982", - "at": "@", - "fav": "Atlanta Falcons", - "und": "St Louis Cardinals", - "sF": "20", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 1982", - "at": "@", - "fav": "Buffalo Bills", - "und": "Baltimore Colts", - "sF": "20", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Nov 28, 1982", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Los Angeles Raiders", - "sF": "31", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 28, 1982", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "35", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 28, 1982", - "at": "@", - "fav": "New England Patriots", - "und": "Houston Oilers", - "sF": "29", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 28, 1982", - "at": "@", - "fav": "New York Jets", - "und": "Green Bay Packers", - "sF": "15", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 1982", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Nov 28, 1982", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 28, 1982", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "30", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 28, 1982", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "20", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 1982", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Seattle Seahawks", - "sF": "0", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Nov 29, 1982", - "at": null, - "fav": "Miami Dolphins", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 2, 1982", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 5, 1982", - "at": "@", - "fav": "Chicago Bears", - "und": "New England Patriots", - "sF": "26", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 5, 1982", - "at": null, - "fav": "San Diego Chargers", - "und": "Cleveland Browns", - "sF": "30", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 1982", - "at": "@", - "fav": "Green Bay Packers", - "und": "Buffalo Bills", - "sF": "33", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Dec 5, 1982", - "at": "@", - "fav": "Miami Dolphins", - "und": "Minnesota Vikings", - "sF": "22", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 5, 1982", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 5, 1982", - "at": "@", - "fav": "New York Giants", - "und": "Houston Oilers", - "sF": "17", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 1982", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "20", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Dec 5, 1982", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "35", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 5, 1982", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Baltimore Colts", - "sF": "20", - "sU": "17", - "spread": "14", - "ou": null - }, - { - "date": "Dec 5, 1982", - "at": "@", - "fav": "Denver Broncos", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 1982", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "28", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Dec 5, 1982", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "24", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Dec 6, 1982", - "at": "@", - "fav": "Detroit Lions", - "und": "New York Jets", - "sF": "13", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Dec 11, 1982", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 11, 1982", - "at": "@", - "fav": "San Francisco 49ers", - "und": "San Diego Chargers", - "sF": "37", - "sU": "41", - "spread": "2", - "ou": null - }, - { - "date": "Dec 12, 1982", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "23", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Dec 12, 1982", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "10", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Dec 12, 1982", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Baltimore Colts", - "sF": "13", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Dec 12, 1982", - "at": null, - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "0", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Dec 12, 1982", - "at": "@", - "fav": "New York Jets", - "und": "Tampa Bay Buccaneers", - "sF": "32", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 1982", - "at": null, - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "12", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Dec 12, 1982", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "35", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 1982", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Kansas City Chiefs", - "sF": "21", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 1982", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Denver Broncos", - "sF": "24", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 12, 1982", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Chicago Bears", - "sF": "20", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1982", - "at": null, - "fav": "Dallas Cowboys", - "und": "Houston Oilers", - "sF": "37", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Dec 18, 1982", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Los Angeles Rams", - "sF": "37", - "sU": "31", - "spread": "8", - "ou": null - }, - { - "date": "Dec 19, 1982", - "at": null, - "fav": "St Louis Cardinals", - "und": "Chicago Bears", - "sF": "10", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Dec 19, 1982", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "9", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 1982", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Dec 19, 1982", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Houston Oilers", - "sF": "35", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 19, 1982", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "15", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 1982", - "at": null, - "fav": "Green Bay Packers", - "und": "Baltimore Colts", - "sF": "20", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 19, 1982", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "21", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Dec 19, 1982", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "16", - "sU": "37", - "spread": "6", - "ou": null - }, - { - "date": "Dec 19, 1982", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New England Patriots", - "sF": "0", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Dec 19, 1982", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Buffalo Bills", - "sF": "24", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Dec 19, 1982", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "7", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 20, 1982", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "50", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1982", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Green Bay Packers", - "sF": "7", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1982", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 26, 1982", - "at": null, - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "20", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 26, 1982", - "at": null, - "fav": "San Francisco 49ers", - "und": "Kansas City Chiefs", - "sF": "26", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1982", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New England Patriots", - "sF": "37", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 26, 1982", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "24", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Dec 26, 1982", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "23", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1982", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Dec 26, 1982", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Denver Broncos", - "sF": "27", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 26, 1982", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "26", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1982", - "at": null, - "fav": "New York Jets", - "und": "Minnesota Vikings", - "sF": "42", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 26, 1982", - "at": null, - "fav": "Washington Redskins", - "und": "New Orleans Saints", - "sF": "27", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1982", - "at": "@", - "fav": "San Diego Chargers", - "und": "Baltimore Colts", - "sF": "44", - "sU": "26", - "spread": "13", - "ou": null - }, - { - "date": "Dec 27, 1982", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "27", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Jan 2, 1983", - "at": null, - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "6", - "sU": "35", - "spread": "5", - "ou": null - }, - { - "date": "Jan 2, 1983", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "35", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Jan 2, 1983", - "at": null, - "fav": "New York Jets", - "und": "Kansas City Chiefs", - "sF": "13", - "sU": "37", - "spread": "5", - "ou": null - }, - { - "date": "Jan 2, 1983", - "at": null, - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "19", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Jan 2, 1983", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "24", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Jan 2, 1983", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "37", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Jan 2, 1983", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "26", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Jan 2, 1983", - "at": "@", - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "28", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Jan 2, 1983", - "at": null, - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "34", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Jan 2, 1983", - "at": "@", - "fav": "San Diego Chargers", - "und": "Los Angeles Raiders", - "sF": "34", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Jan 2, 1983", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Jan 2, 1983", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Denver Broncos", - "sF": "13", - "sU": "11", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 1983", - "at": null, - "fav": "Dallas Cowboys", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Jan 8, 1983", - "at": "@", - "fav": "Green Bay Packers (3)", - "und": "St Louis Cardinals (6)", - "sF": "41", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Jan 8, 1983", - "at": "@", - "fav": "Washington Redskins (1)", - "und": "Detroit Lions (8)", - "sF": "31", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Jan 8, 1983", - "at": "@", - "fav": "Miami Dolphins (2)", - "und": "New England Patriots (7)", - "sF": "28", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Jan 8, 1983", - "at": "@", - "fav": "Los Angeles Raiders (1)", - "und": "Cleveland Browns (8)", - "sF": "27", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Jan 9, 1983", - "at": "@", - "fav": "Cincinnati Bengals (3)", - "und": "New York Jets (6)", - "sF": "17", - "sU": "44", - "spread": "4", - "ou": null - }, - { - "date": "Jan 9, 1983", - "at": "@", - "fav": "Pittsburgh Steelers (4)", - "und": "San Diego Chargers (5)", - "sF": "28", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Jan 9, 1983", - "at": "@", - "fav": "Minnesota Vikings (4)", - "und": "Atlanta Falcons (5)", - "sF": "30", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Jan 9, 1983", - "at": "@", - "fav": "Dallas Cowboys (2)", - "und": "Tampa Bay Buccaneers (7)", - "sF": "30", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Jan 15, 1983", - "at": "@", - "fav": "Washington Redskins (1)", - "und": "Minnesota Vikings (4)", - "sF": "21", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Jan 15, 1983", - "at": "@", - "fav": "Los Angeles Raiders (1)", - "und": "New York Jets (6)", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Jan 16, 1983", - "at": null, - "fav": "San Diego Chargers (5)", - "und": "Miami Dolphins (2)", - "sF": "13", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Jan 16, 1983", - "at": "@", - "fav": "Dallas Cowboys (2)", - "und": "Green Bay Packers (3)", - "sF": "37", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Jan 22, 1983", - "at": null, - "fav": "Dallas Cowboys (2)", - "und": "Washington Redskins (1)", - "sF": "17", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Jan 23, 1983", - "at": "@", - "fav": "Miami Dolphins (2)", - "und": "New York Jets (6)", - "sF": "14", - "sU": "0", - "spread": "1", - "ou": null - }, - { - "date": "Jan 30, 1983", - "at": "N", - "fav": "Miami Dolphins (2)", - "und": "Washington Redskins (1)", - "sF": "17", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 3, 1983", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Sep 4, 1983", - "at": "@", - "fav": "New Orleans Saints", - "und": "St Louis Cardinals", - "sF": "28", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 4, 1983", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "12", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Sep 4, 1983", - "at": "@", - "fav": "Chicago Bears", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Sep 4, 1983", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Los Angeles Raiders", - "sF": "10", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 4, 1983", - "at": "@", - "fav": "Cleveland Browns", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Sep 4, 1983", - "at": null, - "fav": "Green Bay Packers", - "und": "Houston Oilers", - "sF": "41", - "sU": "38", - "spread": "4", - "ou": null - }, - { - "date": "Sep 4, 1983", - "at": "@", - "fav": "New England Patriots", - "und": "Baltimore Colts", - "sF": "23", - "sU": "29", - "spread": "6", - "ou": null - }, - { - "date": "Sep 4, 1983", - "at": "@", - "fav": "New York Giants", - "und": "Los Angeles Rams", - "sF": "6", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Sep 4, 1983", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Denver Broncos", - "sF": "10", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Sep 4, 1983", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "0", - "sU": "11", - "spread": "3", - "ou": null - }, - { - "date": "Sep 4, 1983", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 4, 1983", - "at": "@", - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "29", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Sep 5, 1983", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "31", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Sep 8, 1983", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "48", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 1983", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New York Giants", - "sF": "13", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 1983", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 11, 1983", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Buffalo Bills", - "sF": "6", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 11, 1983", - "at": "@", - "fav": "Detroit Lions", - "und": "Cleveland Browns", - "sF": "26", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 1983", - "at": "@", - "fav": "Green Bay Packers", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "25", - "spread": "1", - "ou": null - }, - { - "date": "Sep 11, 1983", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "34", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 11, 1983", - "at": null, - "fav": "Denver Broncos", - "und": "Baltimore Colts", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 1983", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Houston Oilers", - "sF": "20", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Sep 11, 1983", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "30", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 1983", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "34", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Sep 11, 1983", - "at": "@", - "fav": "New York Jets", - "und": "Seattle Seahawks", - "sF": "10", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Sep 12, 1983", - "at": null, - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 1983", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 1983", - "at": "@", - "fav": "Buffalo Bills", - "und": "Baltimore Colts", - "sF": "28", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Sep 18, 1983", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 1983", - "at": "@", - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 1983", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "40", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Sep 18, 1983", - "at": null, - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "13", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Sep 18, 1983", - "at": "@", - "fav": "New Orleans Saints", - "und": "Chicago Bears", - "sF": "34", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 1983", - "at": null, - "fav": "San Francisco 49ers", - "und": "St Louis Cardinals", - "sF": "42", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 1983", - "at": "@", - "fav": "Washington Redskins", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Sep 18, 1983", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "28", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Sep 18, 1983", - "at": "@", - "fav": "Denver Broncos", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 18, 1983", - "at": null, - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 1983", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "19", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Sep 19, 1983", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Miami Dolphins", - "sF": "27", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Sep 25, 1983", - "at": "@", - "fav": "Buffalo Bills", - "und": "Houston Oilers", - "sF": "30", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Sep 25, 1983", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "21", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Sep 25, 1983", - "at": "@", - "fav": "Miami Dolphins", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Sep 25, 1983", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 25, 1983", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "11", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 1983", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New England Patriots", - "sF": "23", - "sU": "28", - "spread": "8", - "ou": null - }, - { - "date": "Sep 25, 1983", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Sep 25, 1983", - "at": null, - "fav": "Chicago Bears", - "und": "Baltimore Colts", - "sF": "19", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Sep 25, 1983", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Denver Broncos", - "sF": "22", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 1983", - "at": "@", - "fav": "New York Jets", - "und": "Los Angeles Rams", - "sF": "27", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Sep 25, 1983", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cleveland Browns", - "sF": "24", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 1983", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 25, 1983", - "at": null, - "fav": "Washington Redskins", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 26, 1983", - "at": "@", - "fav": "New York Giants", - "und": "Green Bay Packers", - "sF": "27", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 1983", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 1983", - "at": "@", - "fav": "Chicago Bears", - "und": "Denver Broncos", - "sF": "31", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 2, 1983", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Baltimore Colts", - "sF": "31", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Oct 2, 1983", - "at": "@", - "fav": "Cleveland Browns", - "und": "Seattle Seahawks", - "sF": "9", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 1983", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "55", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 2, 1983", - "at": null, - "fav": "Dallas Cowboys", - "und": "Minnesota Vikings", - "sF": "37", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 1983", - "at": null, - "fav": "San Francisco 49ers", - "und": "New England Patriots", - "sF": "33", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 1983", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "17", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Oct 2, 1983", - "at": "@", - "fav": "Washington Redskins", - "und": "Los Angeles Raiders", - "sF": "37", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 1983", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "St Louis Cardinals", - "sF": "38", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 1983", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "21", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 2, 1983", - "at": null, - "fav": "Miami Dolphins", - "und": "New Orleans Saints", - "sF": "7", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 1983", - "at": "@", - "fav": "New York Giants", - "und": "San Diego Chargers", - "sF": "34", - "sU": "41", - "spread": "1", - "ou": null - }, - { - "date": "Oct 3, 1983", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "34", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 9, 1983", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "17", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Oct 9, 1983", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 9, 1983", - "at": null, - "fav": "New York Jets", - "und": "Cleveland Browns", - "sF": "7", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 9, 1983", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "14", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Oct 9, 1983", - "at": null, - "fav": "Denver Broncos", - "und": "Houston Oilers", - "sF": "26", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 9, 1983", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "35", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Oct 9, 1983", - "at": null, - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "38", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 9, 1983", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Oct 9, 1983", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Kansas City Chiefs", - "sF": "21", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Oct 9, 1983", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 9, 1983", - "at": "@", - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "28", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Oct 9, 1983", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "7", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 10, 1983", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 16, 1983", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "31", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 1983", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Houston Oilers", - "sF": "34", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Oct 16, 1983", - "at": null, - "fav": "San Diego Chargers", - "und": "New England Patriots", - "sF": "21", - "sU": "37", - "spread": "4", - "ou": null - }, - { - "date": "Oct 16, 1983", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "13", - "sU": "32", - "spread": "1", - "ou": null - }, - { - "date": "Oct 16, 1983", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "14", - "sU": "32", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 1983", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "44", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 16, 1983", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 1983", - "at": null, - "fav": "Buffalo Bills", - "und": "Baltimore Colts", - "sF": "30", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Oct 16, 1983", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "37", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Oct 16, 1983", - "at": "@", - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 16, 1983", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Giants", - "sF": "38", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 16, 1983", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 1983", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "36", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 1983", - "at": null, - "fav": "Washington Redskins", - "und": "Green Bay Packers", - "sF": "47", - "sU": "48", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 1983", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "0", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 1983", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Oct 23, 1983", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 1983", - "at": "@", - "fav": "New York Jets", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 1983", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "6", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Oct 23, 1983", - "at": "@", - "fav": "Washington Redskins", - "und": "Detroit Lions", - "sF": "38", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 1983", - "at": null, - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "21", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 1983", - "at": null, - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "6", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 1983", - "at": null, - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 1983", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Los Angeles Raiders", - "sF": "38", - "sU": "40", - "spread": "4", - "ou": null - }, - { - "date": "Oct 24, 1983", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "20", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 30, 1983", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New England Patriots", - "sF": "24", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 1983", - "at": "@", - "fav": "Buffalo Bills", - "und": "New Orleans Saints", - "sF": "27", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Oct 30, 1983", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "17", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Oct 30, 1983", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "25", - "sU": "19", - "spread": "9", - "ou": null - }, - { - "date": "Oct 30, 1983", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "38", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 30, 1983", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Baltimore Colts", - "sF": "21", - "sU": "22", - "spread": "5", - "ou": null - }, - { - "date": "Oct 30, 1983", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "12", - "spread": "10", - "ou": null - }, - { - "date": "Oct 30, 1983", - "at": null, - "fav": "Minnesota Vikings", - "und": "St Louis Cardinals", - "sF": "31", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 1983", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Green Bay Packers", - "sF": "34", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 30, 1983", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 30, 1983", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Oct 30, 1983", - "at": "@", - "fav": "Miami Dolphins", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 1983", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Jets", - "sF": "13", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Oct 31, 1983", - "at": null, - "fav": "Washington Redskins", - "und": "San Diego Chargers", - "sF": "27", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 6, 1983", - "at": "@", - "fav": "Green Bay Packers", - "und": "Cleveland Browns", - "sF": "35", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 6, 1983", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "55", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Nov 6, 1983", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1983", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "12", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 6, 1983", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "21", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Nov 6, 1983", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Nov 6, 1983", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 6, 1983", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "26", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Nov 6, 1983", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "21", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 6, 1983", - "at": "@", - "fav": "New York Jets", - "und": "Baltimore Colts", - "sF": "14", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 6, 1983", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Miami Dolphins", - "sF": "17", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 6, 1983", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Denver Broncos", - "sF": "27", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1983", - "at": "@", - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "45", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 7, 1983", - "at": "@", - "fav": "Detroit Lions", - "und": "New York Giants", - "sF": "15", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Nov 13, 1983", - "at": "@", - "fav": "Cleveland Browns", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Nov 13, 1983", - "at": null, - "fav": "Detroit Lions", - "und": "Houston Oilers", - "sF": "17", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Nov 13, 1983", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Kansas City Chiefs", - "sF": "15", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 1983", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "21", - "sU": "29", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 1983", - "at": null, - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "6", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 1983", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 1983", - "at": null, - "fav": "Seattle Seahawks", - "und": "St Louis Cardinals", - "sF": "28", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 1983", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Baltimore Colts", - "sF": "24", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 1983", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Denver Broncos", - "sF": "22", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 1983", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "33", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 13, 1983", - "at": null, - "fav": "Dallas Cowboys", - "und": "San Diego Chargers", - "sF": "23", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 1983", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "27", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Nov 14, 1983", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Los Angeles Rams", - "sF": "13", - "sU": "36", - "spread": "1", - "ou": null - }, - { - "date": "Nov 20, 1983", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Buffalo Bills", - "sF": "27", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 20, 1983", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "38", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 20, 1983", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "20", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Nov 20, 1983", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Colts", - "sF": "37", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Nov 20, 1983", - "at": "@", - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "0", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Nov 20, 1983", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "0", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Nov 20, 1983", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 20, 1983", - "at": null, - "fav": "San Diego Chargers", - "und": "St Louis Cardinals", - "sF": "14", - "sU": "44", - "spread": "1", - "ou": null - }, - { - "date": "Nov 20, 1983", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 1983", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Kansas City Chiefs", - "sF": "41", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Nov 20, 1983", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "38", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 20, 1983", - "at": null, - "fav": "Washington Redskins", - "und": "Los Angeles Rams", - "sF": "42", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 1983", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Jets", - "sF": "28", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 1983", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Detroit Lions", - "sF": "3", - "sU": "45", - "spread": "2", - "ou": null - }, - { - "date": "Nov 24, 1983", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "35", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 27, 1983", - "at": null, - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "3", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Nov 27, 1983", - "at": "@", - "fav": "Cleveland Browns", - "und": "Baltimore Colts", - "sF": "41", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Nov 27, 1983", - "at": "@", - "fav": "New Orleans Saints", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Nov 27, 1983", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "26", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Nov 27, 1983", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Houston Oilers", - "sF": "33", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 27, 1983", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "24", - "spread": "15", - "ou": null - }, - { - "date": "Nov 27, 1983", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Green Bay Packers", - "sF": "47", - "sU": "41", - "spread": "2", - "ou": null - }, - { - "date": "Nov 27, 1983", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "New York Giants", - "sF": "27", - "sU": "12", - "spread": "10", - "ou": null - }, - { - "date": "Nov 27, 1983", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Buffalo Bills", - "sF": "41", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 1983", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "31", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 27, 1983", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "51", - "sU": "48", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 1983", - "at": "@", - "fav": "Miami Dolphins", - "und": "Cincinnati Bengals", - "sF": "38", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Dec 1, 1983", - "at": null, - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "42", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Dec 4, 1983", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "31", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 1983", - "at": null, - "fav": "Miami Dolphins", - "und": "Houston Oilers", - "sF": "24", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 4, 1983", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "9", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Dec 4, 1983", - "at": null, - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "10", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Dec 4, 1983", - "at": null, - "fav": "Los Angeles Rams", - "und": "Philadelphia Eagles", - "sF": "9", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Dec 4, 1983", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Dec 4, 1983", - "at": "@", - "fav": "Washington Redskins", - "und": "Atlanta Falcons", - "sF": "37", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Dec 4, 1983", - "at": null, - "fav": "New York Jets", - "und": "Baltimore Colts", - "sF": "10", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 1983", - "at": null, - "fav": "Cleveland Browns", - "und": "Denver Broncos", - "sF": "6", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Dec 4, 1983", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "35", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Dec 4, 1983", - "at": null, - "fav": "Dallas Cowboys", - "und": "Seattle Seahawks", - "sF": "35", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 5, 1983", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "2", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 1983", - "at": "@", - "fav": "New York Jets", - "und": "Pittsburgh Steelers", - "sF": "7", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 1983", - "at": "@", - "fav": "Miami Dolphins", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Dec 11, 1983", - "at": null, - "fav": "San Francisco 49ers", - "und": "Buffalo Bills", - "sF": "23", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Dec 11, 1983", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Detroit Lions", - "sF": "17", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 1983", - "at": null, - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "27", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Dec 11, 1983", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "13", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 1983", - "at": null, - "fav": "Seattle Seahawks", - "und": "New York Giants", - "sF": "17", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 1983", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New Orleans Saints", - "sF": "17", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 11, 1983", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "10", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 1983", - "at": "@", - "fav": "Denver Broncos", - "und": "Baltimore Colts", - "sF": "21", - "sU": "19", - "spread": "8", - "ou": null - }, - { - "date": "Dec 11, 1983", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "St Louis Cardinals", - "sF": "24", - "sU": "34", - "spread": "9", - "ou": null - }, - { - "date": "Dec 11, 1983", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New England Patriots", - "sF": "7", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Dec 11, 1983", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "41", - "sU": "38", - "spread": "4", - "ou": null - }, - { - "date": "Dec 12, 1983", - "at": null, - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "12", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Dec 16, 1983", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "34", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Dec 17, 1983", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "31", - "sU": "22", - "spread": "15", - "ou": null - }, - { - "date": "Dec 17, 1983", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 1983", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Buffalo Bills", - "sF": "31", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Dec 18, 1983", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "21", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Dec 18, 1983", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "30", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 1983", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "48", - "spread": "2", - "ou": null - }, - { - "date": "Dec 18, 1983", - "at": "@", - "fav": "New Orleans Saints", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Dec 18, 1983", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 18, 1983", - "at": "@", - "fav": "Baltimore Colts", - "und": "Houston Oilers", - "sF": "20", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 18, 1983", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Dec 18, 1983", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "30", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Dec 18, 1983", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New England Patriots", - "sF": "24", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Dec 24, 1983", - "at": "@", - "fav": "Seattle Seahawks (4)", - "und": "Denver Broncos (5)", - "sF": "31", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1983", - "at": "@", - "fav": "Dallas Cowboys (4)", - "und": "Los Angeles Rams (5)", - "sF": "17", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Dec 31, 1983", - "at": "@", - "fav": "Miami Dolphins (2)", - "und": "Seattle Seahawks (4)", - "sF": "20", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Dec 31, 1983", - "at": "@", - "fav": "San Francisco 49ers (2)", - "und": "Detroit Lions (3)", - "sF": "24", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Jan 1, 1984", - "at": "@", - "fav": "Washington Redskins (1)", - "und": "Los Angeles Rams (5)", - "sF": "51", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Jan 1, 1984", - "at": "@", - "fav": "Los Angeles Raiders (1)", - "und": "Pittsburgh Steelers (3)", - "sF": "38", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Jan 8, 1984", - "at": "@", - "fav": "Washington Redskins (1)", - "und": "San Francisco 49ers (2)", - "sF": "24", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Jan 8, 1984", - "at": "@", - "fav": "Los Angeles Raiders (1)", - "und": "Seattle Seahawks (4)", - "sF": "30", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Jan 22, 1984", - "at": "N", - "fav": "Washington Redskins (1)", - "und": "Los Angeles Raiders (1)", - "sF": "9", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Sep 2, 1984", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "21", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 2, 1984", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "34", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 2, 1984", - "at": null, - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "30", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Sep 2, 1984", - "at": "@", - "fav": "Green Bay Packers", - "und": "St Louis Cardinals", - "sF": "24", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 2, 1984", - "at": null, - "fav": "San Diego Chargers", - "und": "Minnesota Vikings", - "sF": "42", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 2, 1984", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "36", - "spread": "6", - "ou": null - }, - { - "date": "Sep 2, 1984", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Sep 2, 1984", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "37", - "spread": "6", - "ou": null - }, - { - "date": "Sep 2, 1984", - "at": "@", - "fav": "Washington Redskins", - "und": "Miami Dolphins", - "sF": "17", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Sep 2, 1984", - "at": "@", - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 2, 1984", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Houston Oilers", - "sF": "24", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 2, 1984", - "at": null, - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "23", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Sep 3, 1984", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Cleveland Browns", - "sF": "33", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Sep 3, 1984", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Dallas Cowboys", - "sF": "13", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 6, 1984", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "23", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 9, 1984", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Detroit Lions", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 1984", - "at": "@", - "fav": "Chicago Bears", - "und": "Denver Broncos", - "sF": "27", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Sep 9, 1984", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Kansas City Chiefs", - "sF": "22", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Sep 9, 1984", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "28", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 9, 1984", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Sep 9, 1984", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "7", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Sep 9, 1984", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Minnesota Vikings", - "sF": "19", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Sep 9, 1984", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Buffalo Bills", - "sF": "37", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 9, 1984", - "at": "@", - "fav": "Houston Oilers", - "und": "Indianapolis Colts", - "sF": "21", - "sU": "35", - "spread": "5", - "ou": null - }, - { - "date": "Sep 9, 1984", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Green Bay Packers", - "sF": "28", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 9, 1984", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Cleveland Browns", - "sF": "20", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 9, 1984", - "at": null, - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Sep 10, 1984", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "37", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Sep 16, 1984", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "7", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Sep 16, 1984", - "at": null, - "fav": "St Louis Cardinals", - "und": "Indianapolis Colts", - "sF": "34", - "sU": "33", - "spread": "5", - "ou": null - }, - { - "date": "Sep 16, 1984", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Kansas City Chiefs", - "sF": "22", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 16, 1984", - "at": null, - "fav": "Atlanta Falcons", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Sep 16, 1984", - "at": "@", - "fav": "New England Patriots", - "und": "Seattle Seahawks", - "sF": "38", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 1984", - "at": null, - "fav": "Cincinnati Bengals", - "und": "New York Jets", - "sF": "23", - "sU": "43", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 1984", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Sep 16, 1984", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 1984", - "at": "@", - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "31", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Sep 16, 1984", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "30", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 16, 1984", - "at": null, - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 1984", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "30", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 16, 1984", - "at": "@", - "fav": "Cleveland Browns", - "und": "Denver Broncos", - "sF": "14", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 1984", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "21", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Sep 23, 1984", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Houston Oilers", - "sF": "42", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Sep 23, 1984", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "28", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Sep 23, 1984", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Los Angeles Rams", - "sF": "14", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Sep 23, 1984", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "10", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 23, 1984", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "29", - "spread": "6", - "ou": null - }, - { - "date": "Sep 23, 1984", - "at": null, - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Sep 23, 1984", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "20", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Sep 23, 1984", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "44", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Sep 23, 1984", - "at": "@", - "fav": "New York Giants", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 23, 1984", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Chicago Bears", - "sF": "38", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Sep 24, 1984", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "33", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Sep 30, 1984", - "at": null, - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "23", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 1984", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Buffalo Bills", - "sF": "31", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 1984", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cleveland Browns", - "sF": "10", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Sep 30, 1984", - "at": null, - "fav": "Seattle Seahawks", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "12", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 1984", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "21", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Sep 30, 1984", - "at": null, - "fav": "Miami Dolphins", - "und": "St Louis Cardinals", - "sF": "36", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 1984", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Denver Broncos", - "sF": "13", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Sep 30, 1984", - "at": null, - "fav": "New Orleans Saints", - "und": "Houston Oilers", - "sF": "27", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Sep 30, 1984", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New York Giants", - "sF": "33", - "sU": "12", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 1984", - "at": "@", - "fav": "San Diego Chargers", - "und": "Detroit Lions", - "sF": "27", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Sep 30, 1984", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "5", - "spread": "6", - "ou": null - }, - { - "date": "Sep 30, 1984", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Green Bay Packers", - "sF": "30", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 1984", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Oct 1, 1984", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "38", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 1984", - "at": "@", - "fav": "Buffalo Bills", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 7, 1984", - "at": "@", - "fav": "Chicago Bears", - "und": "New Orleans Saints", - "sF": "20", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Oct 7, 1984", - "at": null, - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "17", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Oct 7, 1984", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "20", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 1984", - "at": "@", - "fav": "Detroit Lions", - "und": "Denver Broncos", - "sF": "7", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 1984", - "at": null, - "fav": "Washington Redskins", - "und": "Indianapolis Colts", - "sF": "35", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 7, 1984", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "16", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 7, 1984", - "at": null, - "fav": "Miami Dolphins", - "und": "Pittsburgh Steelers", - "sF": "31", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Oct 7, 1984", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Minnesota Vikings", - "sF": "35", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 1984", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "13", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Oct 7, 1984", - "at": null, - "fav": "San Diego Chargers", - "und": "Green Bay Packers", - "sF": "34", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 7, 1984", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "28", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Oct 7, 1984", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 1984", - "at": null, - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "31", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 1984", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New York Giants", - "sF": "7", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 1984", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 1984", - "at": null, - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "13", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Oct 14, 1984", - "at": "@", - "fav": "Miami Dolphins", - "und": "Houston Oilers", - "sF": "28", - "sU": "10", - "spread": "17", - "ou": null - }, - { - "date": "Oct 14, 1984", - "at": "@", - "fav": "New England Patriots", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 14, 1984", - "at": "@", - "fav": "New Orleans Saints", - "und": "Los Angeles Rams", - "sF": "10", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 1984", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Indianapolis Colts", - "sF": "16", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Oct 14, 1984", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Chicago Bears", - "sF": "38", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 1984", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Oct 14, 1984", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Oct 14, 1984", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Buffalo Bills", - "sF": "31", - "sU": "28", - "spread": "11", - "ou": null - }, - { - "date": "Oct 14, 1984", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "34", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 15, 1984", - "at": "@", - "fav": "Denver Broncos", - "und": "Green Bay Packers", - "sF": "17", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 21, 1984", - "at": null, - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "37", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 1984", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "12", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Oct 21, 1984", - "at": null, - "fav": "Seattle Seahawks", - "und": "Green Bay Packers", - "sF": "30", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 21, 1984", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Indianapolis Colts", - "sF": "16", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 21, 1984", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "14", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Oct 21, 1984", - "at": null, - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "44", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Oct 21, 1984", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Oct 21, 1984", - "at": null, - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "24", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 1984", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "9", - "sU": "44", - "spread": "1", - "ou": null - }, - { - "date": "Oct 21, 1984", - "at": null, - "fav": "San Francisco 49ers", - "und": "Houston Oilers", - "sF": "34", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Oct 21, 1984", - "at": "@", - "fav": "New York Jets", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Oct 21, 1984", - "at": null, - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "44", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 1984", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "30", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 1984", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Los Angeles Rams", - "sF": "10", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Oct 28, 1984", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "16", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 28, 1984", - "at": "@", - "fav": "Cleveland Browns", - "und": "New Orleans Saints", - "sF": "14", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Oct 28, 1984", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Indianapolis Colts", - "sF": "22", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Oct 28, 1984", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "41", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Oct 28, 1984", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "31", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Oct 28, 1984", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 28, 1984", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "30", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 1984", - "at": null, - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "34", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 1984", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Atlanta Falcons", - "sF": "35", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 1984", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Denver Broncos", - "sF": "19", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Oct 28, 1984", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "33", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 1984", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "38", - "sU": "7", - "spread": "17", - "ou": null - }, - { - "date": "Oct 28, 1984", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "13", - "sU": "37", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 1984", - "at": "@", - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "0", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 4, 1984", - "at": null, - "fav": "Cleveland Browns", - "und": "Buffalo Bills", - "sF": "13", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 4, 1984", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Chicago Bears", - "sF": "6", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 4, 1984", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "7", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Nov 4, 1984", - "at": "@", - "fav": "Detroit Lions", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 1984", - "at": null, - "fav": "San Diego Chargers", - "und": "Indianapolis Colts", - "sF": "38", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 4, 1984", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 4, 1984", - "at": "@", - "fav": "New Orleans Saints", - "und": "Green Bay Packers", - "sF": "13", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 4, 1984", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "35", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Nov 4, 1984", - "at": "@", - "fav": "Denver Broncos", - "und": "New England Patriots", - "sF": "26", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Nov 4, 1984", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "31", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 4, 1984", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 4, 1984", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "45", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Nov 4, 1984", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Los Angeles Rams", - "sF": "13", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Nov 5, 1984", - "at": "@", - "fav": "Washington Redskins", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Nov 11, 1984", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "13", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 11, 1984", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "22", - "spread": "1", - "ou": null - }, - { - "date": "Nov 11, 1984", - "at": null, - "fav": "San Francisco 49ers", - "und": "Cleveland Browns", - "sF": "41", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 11, 1984", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "45", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 11, 1984", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "16", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Nov 11, 1984", - "at": "@", - "fav": "Miami Dolphins", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "23", - "spread": "14", - "ou": null - }, - { - "date": "Nov 11, 1984", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "38", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Nov 11, 1984", - "at": "@", - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "5", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Nov 11, 1984", - "at": "@", - "fav": "Washington Redskins", - "und": "Detroit Lions", - "sF": "28", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Nov 11, 1984", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "29", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 11, 1984", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "16", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Nov 11, 1984", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 11, 1984", - "at": null, - "fav": "New York Giants", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 12, 1984", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Los Angeles Raiders", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 1984", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Cleveland Browns", - "sF": "7", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 1984", - "at": null, - "fav": "Dallas Cowboys", - "und": "Buffalo Bills", - "sF": "3", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Nov 18, 1984", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "16", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 18, 1984", - "at": null, - "fav": "Seattle Seahawks", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Nov 18, 1984", - "at": "@", - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Nov 18, 1984", - "at": null, - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "50", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 18, 1984", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Nov 18, 1984", - "at": "@", - "fav": "Denver Broncos", - "und": "Minnesota Vikings", - "sF": "42", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Nov 18, 1984", - "at": null, - "fav": "New York Jets", - "und": "Houston Oilers", - "sF": "20", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 18, 1984", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Nov 18, 1984", - "at": null, - "fav": "Miami Dolphins", - "und": "San Diego Chargers", - "sF": "28", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Nov 18, 1984", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Nov 19, 1984", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New Orleans Saints", - "sF": "24", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 1984", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "28", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 1984", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New England Patriots", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 1984", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Atlanta Falcons", - "sF": "35", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 25, 1984", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "27", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 25, 1984", - "at": "@", - "fav": "New York Giants", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Nov 25, 1984", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "52", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 1984", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Nov 25, 1984", - "at": null, - "fav": "Los Angeles Rams", - "und": "Tampa Bay Buccaneers", - "sF": "34", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 1984", - "at": "@", - "fav": "Washington Redskins", - "und": "Buffalo Bills", - "sF": "41", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Nov 25, 1984", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 1984", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Indianapolis Colts", - "sF": "21", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Nov 25, 1984", - "at": null, - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "34", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 1984", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "35", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Nov 26, 1984", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "28", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Nov 29, 1984", - "at": null, - "fav": "Washington Redskins", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 2, 1984", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "35", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Dec 2, 1984", - "at": "@", - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "21", - "sU": "15", - "spread": "1", - "ou": null - }, - { - "date": "Dec 2, 1984", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 1984", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "20", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 1984", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "13", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Dec 2, 1984", - "at": "@", - "fav": "New England Patriots", - "und": "St Louis Cardinals", - "sF": "10", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 1984", - "at": null, - "fav": "New York Giants", - "und": "New York Jets", - "sF": "20", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 1984", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "26", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 2, 1984", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "34", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 2, 1984", - "at": "@", - "fav": "Miami Dolphins", - "und": "Los Angeles Raiders", - "sF": "34", - "sU": "45", - "spread": "5", - "ou": null - }, - { - "date": "Dec 2, 1984", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Detroit Lions", - "sF": "38", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Dec 3, 1984", - "at": null, - "fav": "Chicago Bears", - "und": "San Diego Chargers", - "sF": "7", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 8, 1984", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "21", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 1984", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "51", - "sU": "7", - "spread": "17", - "ou": null - }, - { - "date": "Dec 9, 1984", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "14", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 1984", - "at": null, - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "35", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Dec 9, 1984", - "at": null, - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "7", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Dec 9, 1984", - "at": null, - "fav": "Cincinnati Bengals", - "und": "New Orleans Saints", - "sF": "24", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 1984", - "at": null, - "fav": "New England Patriots", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 1984", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "23", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Dec 9, 1984", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New York Giants", - "sF": "31", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 1984", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Dec 9, 1984", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "16", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 9, 1984", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Houston Oilers", - "sF": "27", - "sU": "16", - "spread": "11", - "ou": null - }, - { - "date": "Dec 10, 1984", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Detroit Lions", - "sF": "24", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Dec 14, 1984", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "19", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Dec 15, 1984", - "at": "@", - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "3", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 15, 1984", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Denver Broncos", - "sF": "14", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Dec 16, 1984", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Buffalo Bills", - "sF": "52", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Dec 16, 1984", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "13", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Dec 16, 1984", - "at": "@", - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "20", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 16, 1984", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "38", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 16, 1984", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "16", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Dec 16, 1984", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New York Jets", - "sF": "41", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Dec 16, 1984", - "at": "@", - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "29", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 16, 1984", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 1984", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Pittsburgh Steelers", - "sF": "7", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 16, 1984", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "21", - "sU": "42", - "spread": "2", - "ou": null - }, - { - "date": "Dec 17, 1984", - "at": "@", - "fav": "Miami Dolphins", - "und": "Dallas Cowboys", - "sF": "28", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Dec 22, 1984", - "at": null, - "fav": "Los Angeles Raiders (5)", - "und": "Seattle Seahawks (4)", - "sF": "7", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 23, 1984", - "at": "@", - "fav": "Los Angeles Rams (4)", - "und": "New York Giants (5)", - "sF": "13", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Dec 29, 1984", - "at": "@", - "fav": "Miami Dolphins (1)", - "und": "Seattle Seahawks (4)", - "sF": "31", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 29, 1984", - "at": "@", - "fav": "San Francisco 49ers (1)", - "und": "New York Giants (4)", - "sF": "21", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Dec 30, 1984", - "at": "@", - "fav": "Washington Redskins (2)", - "und": "Chicago Bears (3)", - "sF": "19", - "sU": "23", - "spread": "9", - "ou": null - }, - { - "date": "Dec 30, 1984", - "at": "@", - "fav": "Denver Broncos (2)", - "und": "Pittsburgh Steelers (3)", - "sF": "17", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Jan 6, 1985", - "at": "@", - "fav": "Miami Dolphins (1)", - "und": "Pittsburgh Steelers (3)", - "sF": "45", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Jan 6, 1985", - "at": "@", - "fav": "San Francisco 49ers (1)", - "und": "Chicago Bears (3)", - "sF": "23", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Jan 20, 1985", - "at": "N", - "fav": "San Francisco 49ers (1)", - "und": "Miami Dolphins (1)", - "sF": "38", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 1985", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Detroit Lions", - "sF": "27", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 1985", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "38", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Sep 8, 1985", - "at": null, - "fav": "Seattle Seahawks", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 1985", - "at": null, - "fav": "St Louis Cardinals", - "und": "Cleveland Browns", - "sF": "27", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 8, 1985", - "at": null, - "fav": "Miami Dolphins", - "und": "Houston Oilers", - "sF": "23", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Sep 8, 1985", - "at": null, - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "28", - "spread": "11", - "ou": null - }, - { - "date": "Sep 8, 1985", - "at": "@", - "fav": "New England Patriots", - "und": "Green Bay Packers", - "sF": "26", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 8, 1985", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Sep 8, 1985", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Indianapolis Colts", - "sF": "45", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Sep 8, 1985", - "at": null, - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "14", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Sep 8, 1985", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "New York Jets", - "sF": "31", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Sep 9, 1985", - "at": null, - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "14", - "sU": "44", - "spread": "1", - "ou": null - }, - { - "date": "Sep 12, 1985", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "36", - "spread": "1", - "ou": null - }, - { - "date": "Sep 15, 1985", - "at": "@", - "fav": "Chicago Bears", - "und": "New England Patriots", - "sF": "20", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 15, 1985", - "at": null, - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "21", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Sep 15, 1985", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "30", - "sU": "13", - "spread": "17", - "ou": null - }, - { - "date": "Sep 15, 1985", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "42", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 1985", - "at": null, - "fav": "Los Angeles Rams", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Sep 15, 1985", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Cincinnati Bengals", - "sF": "41", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Sep 15, 1985", - "at": "@", - "fav": "Washington Redskins", - "und": "Houston Oilers", - "sF": "16", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Sep 15, 1985", - "at": "@", - "fav": "Denver Broncos", - "und": "New Orleans Saints", - "sF": "34", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Sep 15, 1985", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "49", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Sep 15, 1985", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "35", - "sU": "16", - "spread": "14", - "ou": null - }, - { - "date": "Sep 15, 1985", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Minnesota Vikings", - "sF": "16", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 1985", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "7", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 19, 1985", - "at": null, - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "33", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 1985", - "at": null, - "fav": "Denver Broncos", - "und": "Atlanta Falcons", - "sF": "44", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Sep 22, 1985", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "17", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 22, 1985", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "San Diego Chargers", - "sF": "41", - "sU": "44", - "spread": "4", - "ou": null - }, - { - "date": "Sep 22, 1985", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "20", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 22, 1985", - "at": null, - "fav": "Detroit Lions", - "und": "Indianapolis Colts", - "sF": "6", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Sep 22, 1985", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 22, 1985", - "at": "@", - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 22, 1985", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "20", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Sep 22, 1985", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "6", - "sU": "19", - "spread": "14", - "ou": null - }, - { - "date": "Sep 22, 1985", - "at": "@", - "fav": "Green Bay Packers", - "und": "New York Jets", - "sF": "3", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Sep 22, 1985", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Raiders", - "sF": "34", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 1985", - "at": "@", - "fav": "Miami Dolphins", - "und": "Kansas City Chiefs", - "sF": "31", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Sep 23, 1985", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "35", - "spread": "6", - "ou": null - }, - { - "date": "Sep 29, 1985", - "at": null, - "fav": "Minnesota Vikings", - "und": "Buffalo Bills", - "sF": "27", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 1985", - "at": "@", - "fav": "Chicago Bears", - "und": "Washington Redskins", - "sF": "45", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 29, 1985", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "30", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Sep 29, 1985", - "at": null, - "fav": "Dallas Cowboys", - "und": "Houston Oilers", - "sF": "17", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Sep 29, 1985", - "at": null, - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "7", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 1985", - "at": "@", - "fav": "New England Patriots", - "und": "Los Angeles Raiders", - "sF": "20", - "sU": "35", - "spread": "1", - "ou": null - }, - { - "date": "Sep 29, 1985", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Sep 29, 1985", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Green Bay Packers", - "sF": "43", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Sep 29, 1985", - "at": null, - "fav": "Miami Dolphins", - "und": "Denver Broncos", - "sF": "30", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Sep 29, 1985", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Sep 29, 1985", - "at": "@", - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "25", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Sep 29, 1985", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cleveland Browns", - "sF": "7", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 29, 1985", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "17", - "sU": "20", - "spread": "16", - "ou": null - }, - { - "date": "Sep 30, 1985", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "37", - "spread": "6", - "ou": null - }, - { - "date": "Oct 6, 1985", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Oct 6, 1985", - "at": "@", - "fav": "Cleveland Browns", - "und": "New England Patriots", - "sF": "24", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1985", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "43", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1985", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Buffalo Bills", - "sF": "49", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1985", - "at": "@", - "fav": "Miami Dolphins", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 6, 1985", - "at": "@", - "fav": "New Orleans Saints", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1985", - "at": null, - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "19", - "spread": "8", - "ou": null - }, - { - "date": "Oct 6, 1985", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New York Jets", - "sF": "20", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1985", - "at": "@", - "fav": "Denver Broncos", - "und": "Houston Oilers", - "sF": "31", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Oct 6, 1985", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Kansas City Chiefs", - "sF": "19", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1985", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 6, 1985", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "26", - "sU": "21", - "spread": "12", - "ou": null - }, - { - "date": "Oct 6, 1985", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "29", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Oct 7, 1985", - "at": null, - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "10", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 13, 1985", - "at": null, - "fav": "New York Giants", - "und": "Cincinnati Bengals", - "sF": "30", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Oct 13, 1985", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Oct 13, 1985", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 1985", - "at": null, - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "21", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Oct 13, 1985", - "at": null, - "fav": "Denver Broncos", - "und": "Indianapolis Colts", - "sF": "15", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 1985", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "14", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Oct 13, 1985", - "at": null, - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "7", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 1985", - "at": null, - "fav": "Los Angeles Rams", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 1985", - "at": "@", - "fav": "Washington Redskins", - "und": "Detroit Lions", - "sF": "24", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Oct 13, 1985", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "New Orleans Saints", - "sF": "23", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Oct 13, 1985", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "20", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 1985", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "10", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Oct 13, 1985", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "26", - "spread": "14", - "ou": null - }, - { - "date": "Oct 14, 1985", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "7", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 20, 1985", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Cleveland Browns", - "sF": "21", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 20, 1985", - "at": null, - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "21", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Oct 20, 1985", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "27", - "sU": "44", - "spread": "4", - "ou": null - }, - { - "date": "Oct 20, 1985", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Diego Chargers", - "sF": "21", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 1985", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "17", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 1985", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Oct 20, 1985", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "St Louis Cardinals", - "sF": "23", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 20, 1985", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 1985", - "at": "@", - "fav": "Miami Dolphins", - "und": "Tampa Bay Buccaneers", - "sF": "41", - "sU": "38", - "spread": "13", - "ou": null - }, - { - "date": "Oct 20, 1985", - "at": null, - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "13", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 21, 1985", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "23", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Oct 27, 1985", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Oct 27, 1985", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "7", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 1985", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Oct 27, 1985", - "at": null, - "fav": "Miami Dolphins", - "und": "Detroit Lions", - "sF": "21", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Oct 27, 1985", - "at": null, - "fav": "Green Bay Packers", - "und": "Indianapolis Colts", - "sF": "10", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 1985", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "30", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 27, 1985", - "at": "@", - "fav": "New York Jets", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 1985", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Buffalo Bills", - "sF": "21", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Oct 27, 1985", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Houston Oilers", - "sF": "10", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 27, 1985", - "at": null, - "fav": "New England Patriots", - "und": "Tampa Bay Buccaneers", - "sF": "32", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 1985", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Oct 27, 1985", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "28", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 27, 1985", - "at": null, - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "21", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Oct 28, 1985", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "34", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 3, 1985", - "at": null, - "fav": "Washington Redskins", - "und": "Atlanta Falcons", - "sF": "44", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 3, 1985", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Buffalo Bills", - "sF": "23", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 1985", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "16", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 3, 1985", - "at": "@", - "fav": "Houston Oilers", - "und": "Kansas City Chiefs", - "sF": "23", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 3, 1985", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 1985", - "at": "@", - "fav": "New York Giants", - "und": "Tampa Bay Buccaneers", - "sF": "22", - "sU": "20", - "spread": "12", - "ou": null - }, - { - "date": "Nov 3, 1985", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "10", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Nov 3, 1985", - "at": null, - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "35", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 1985", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "28", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 3, 1985", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "10", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Nov 3, 1985", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Nov 3, 1985", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Los Angeles Raiders", - "sF": "33", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Nov 4, 1985", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "10", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 1985", - "at": null, - "fav": "Houston Oilers", - "und": "Buffalo Bills", - "sF": "0", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 10, 1985", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "24", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Nov 10, 1985", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "27", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 1985", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Pittsburgh Steelers", - "sF": "28", - "sU": "36", - "spread": "1", - "ou": null - }, - { - "date": "Nov 10, 1985", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "17", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Nov 10, 1985", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "34", - "sU": "15", - "spread": "9", - "ou": null - }, - { - "date": "Nov 10, 1985", - "at": null, - "fav": "Seattle Seahawks", - "und": "New Orleans Saints", - "sF": "27", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Nov 10, 1985", - "at": "@", - "fav": "New York Giants", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Nov 10, 1985", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 10, 1985", - "at": null, - "fav": "St Louis Cardinals", - "und": "Tampa Bay Buccaneers", - "sF": "0", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Nov 10, 1985", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "21", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 1985", - "at": null, - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "34", - "sU": "40", - "spread": "2", - "ou": null - }, - { - "date": "Nov 10, 1985", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "7", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 1985", - "at": null, - "fav": "San Francisco 49ers", - "und": "Denver Broncos", - "sF": "16", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 17, 1985", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 1985", - "at": "@", - "fav": "Cleveland Browns", - "und": "Buffalo Bills", - "sF": "17", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Nov 17, 1985", - "at": "@", - "fav": "Green Bay Packers", - "und": "New Orleans Saints", - "sF": "38", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Nov 17, 1985", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "30", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 1985", - "at": null, - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "34", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 17, 1985", - "at": "@", - "fav": "New York Jets", - "und": "Tampa Bay Buccaneers", - "sF": "62", - "sU": "28", - "spread": "9", - "ou": null - }, - { - "date": "Nov 17, 1985", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 17, 1985", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "30", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 17, 1985", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "41", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 1985", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Cincinnati Bengals", - "sF": "13", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 1985", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Kansas City Chiefs", - "sF": "31", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Nov 17, 1985", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New England Patriots", - "sF": "13", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 1985", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "23", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 24, 1985", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "23", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Nov 24, 1985", - "at": "@", - "fav": "Chicago Bears", - "und": "Atlanta Falcons", - "sF": "36", - "sU": "0", - "spread": "16", - "ou": null - }, - { - "date": "Nov 24, 1985", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 1985", - "at": null, - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "35", - "sU": "37", - "spread": "6", - "ou": null - }, - { - "date": "Nov 24, 1985", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "23", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Nov 24, 1985", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 1985", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "23", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Nov 24, 1985", - "at": null, - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "16", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Nov 24, 1985", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "34", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 24, 1985", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 1985", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Denver Broncos", - "sF": "31", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 1985", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "34", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 24, 1985", - "at": null, - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "34", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Nov 25, 1985", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "19", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Nov 28, 1985", - "at": null, - "fav": "New York Jets", - "und": "Detroit Lions", - "sF": "20", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 1985", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "35", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Dec 1, 1985", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "45", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 1, 1985", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Dec 1, 1985", - "at": null, - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "38", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Dec 1, 1985", - "at": null, - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "3", - "sU": "29", - "spread": "5", - "ou": null - }, - { - "date": "Dec 1, 1985", - "at": "@", - "fav": "New York Giants", - "und": "Cleveland Browns", - "sF": "33", - "sU": "35", - "spread": "6", - "ou": null - }, - { - "date": "Dec 1, 1985", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Dec 1, 1985", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 1, 1985", - "at": "@", - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "40", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Dec 1, 1985", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "6", - "spread": "8", - "ou": null - }, - { - "date": "Dec 1, 1985", - "at": null, - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "35", - "sU": "8", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 1985", - "at": null, - "fav": "Chicago Bears", - "und": "Miami Dolphins", - "sF": "24", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Dec 8, 1985", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "27", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Dec 8, 1985", - "at": "@", - "fav": "Chicago Bears", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "10", - "spread": "19", - "ou": null - }, - { - "date": "Dec 8, 1985", - "at": null, - "fav": "Dallas Cowboys", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "50", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 1985", - "at": null, - "fav": "Miami Dolphins", - "und": "Green Bay Packers", - "sF": "34", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 8, 1985", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 1985", - "at": "@", - "fav": "New England Patriots", - "und": "Detroit Lions", - "sF": "23", - "sU": "6", - "spread": "8", - "ou": null - }, - { - "date": "Dec 8, 1985", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Dec 8, 1985", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New Orleans Saints", - "sF": "28", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 1985", - "at": "@", - "fav": "Denver Broncos", - "und": "Los Angeles Raiders", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 1985", - "at": null, - "fav": "New York Giants", - "und": "Houston Oilers", - "sF": "35", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 8, 1985", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "26", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 1985", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Cleveland Browns", - "sF": "31", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Dec 8, 1985", - "at": "@", - "fav": "San Diego Chargers", - "und": "Pittsburgh Steelers", - "sF": "54", - "sU": "44", - "spread": "5", - "ou": null - }, - { - "date": "Dec 9, 1985", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Dec 14, 1985", - "at": null, - "fav": "Chicago Bears", - "und": "New York Jets", - "sF": "19", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Dec 14, 1985", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Dec 15, 1985", - "at": null, - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 15, 1985", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "28", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Dec 15, 1985", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "28", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 1985", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "23", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Dec 15, 1985", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "31", - "sU": "19", - "spread": "10", - "ou": null - }, - { - "date": "Dec 15, 1985", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Buffalo Bills", - "sF": "30", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Dec 15, 1985", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Indianapolis Colts", - "sF": "23", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 1985", - "at": "@", - "fav": "Washington Redskins", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 15, 1985", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "13", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Dec 15, 1985", - "at": "@", - "fav": "Los Angeles Rams", - "und": "St Louis Cardinals", - "sF": "46", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Dec 15, 1985", - "at": "@", - "fav": "San Diego Chargers", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 16, 1985", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "30", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Dec 21, 1985", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "28", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Dec 21, 1985", - "at": null, - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Dec 22, 1985", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "37", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 22, 1985", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "38", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Dec 22, 1985", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "28", - "sU": "0", - "spread": "17", - "ou": null - }, - { - "date": "Dec 22, 1985", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Philadelphia Eagles", - "sF": "35", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Dec 22, 1985", - "at": "@", - "fav": "New England Patriots", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Dec 22, 1985", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Dec 22, 1985", - "at": "@", - "fav": "New York Jets", - "und": "Cleveland Browns", - "sF": "37", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 22, 1985", - "at": null, - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 22, 1985", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Oilers", - "sF": "34", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Dec 22, 1985", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Dec 23, 1985", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Los Angeles Rams", - "sF": "16", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Dec 28, 1985", - "at": "@", - "fav": "New York Jets (4)", - "und": "New England Patriots (5)", - "sF": "14", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 29, 1985", - "at": null, - "fav": "San Francisco 49ers (5)", - "und": "New York Giants (4)", - "sF": "3", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Jan 4, 1986", - "at": "@", - "fav": "Miami Dolphins (2)", - "und": "Cleveland Browns (3)", - "sF": "24", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Jan 4, 1986", - "at": "@", - "fav": "Los Angeles Rams (2)", - "und": "Dallas Cowboys (3)", - "sF": "20", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Jan 5, 1986", - "at": "@", - "fav": "Chicago Bears (1)", - "und": "New York Giants (4)", - "sF": "21", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Jan 5, 1986", - "at": "@", - "fav": "Los Angeles Raiders (1)", - "und": "New England Patriots (5)", - "sF": "20", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Jan 12, 1986", - "at": "@", - "fav": "Chicago Bears (1)", - "und": "Los Angeles Rams (2)", - "sF": "24", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Jan 12, 1986", - "at": "@", - "fav": "Miami Dolphins (2)", - "und": "New England Patriots (5)", - "sF": "14", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Jan 26, 1986", - "at": "N", - "fav": "Chicago Bears (1)", - "und": "New England Patriots (5)", - "sF": "46", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Sep 7, 1986", - "at": "@", - "fav": "Chicago Bears", - "und": "Cleveland Browns", - "sF": "41", - "sU": "31", - "spread": "10", - "ou": null - }, - { - "date": "Sep 7, 1986", - "at": "@", - "fav": "Green Bay Packers", - "und": "Houston Oilers", - "sF": "3", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Sep 7, 1986", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 1986", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 1986", - "at": null, - "fav": "Los Angeles Rams", - "und": "St Louis Cardinals", - "sF": "16", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 7, 1986", - "at": null, - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Sep 7, 1986", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "41", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Sep 7, 1986", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "28", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Sep 7, 1986", - "at": "@", - "fav": "Denver Broncos", - "und": "Los Angeles Raiders", - "sF": "38", - "sU": "36", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 1986", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Sep 7, 1986", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "33", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Sep 7, 1986", - "at": null, - "fav": "Miami Dolphins", - "und": "San Diego Chargers", - "sF": "28", - "sU": "50", - "spread": "1", - "ou": null - }, - { - "date": "Sep 7, 1986", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Pittsburgh Steelers", - "sF": "30", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Sep 8, 1986", - "at": null, - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "28", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Sep 11, 1986", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "6", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Sep 14, 1986", - "at": "@", - "fav": "Atlanta Falcons", - "und": "St Louis Cardinals", - "sF": "33", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 1986", - "at": "@", - "fav": "Chicago Bears", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "10", - "spread": "15", - "ou": null - }, - { - "date": "Sep 14, 1986", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Buffalo Bills", - "sF": "36", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Sep 14, 1986", - "at": null, - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "31", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 1986", - "at": "@", - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "20", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Sep 14, 1986", - "at": "@", - "fav": "New Orleans Saints", - "und": "Green Bay Packers", - "sF": "24", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 1986", - "at": "@", - "fav": "New York Giants", - "und": "San Diego Chargers", - "sF": "20", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 14, 1986", - "at": "@", - "fav": "Washington Redskins", - "und": "Los Angeles Raiders", - "sF": "10", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 1986", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "13", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 1986", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "30", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Sep 14, 1986", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "23", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Sep 14, 1986", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Sep 15, 1986", - "at": null, - "fav": "Denver Broncos", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Sep 18, 1986", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "13", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Sep 21, 1986", - "at": "@", - "fav": "Buffalo Bills", - "und": "St Louis Cardinals", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 1986", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "35", - "sU": "37", - "spread": "7", - "ou": null - }, - { - "date": "Sep 21, 1986", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Sep 21, 1986", - "at": null, - "fav": "Los Angeles Rams", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 21, 1986", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Pittsburgh Steelers", - "sF": "31", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Sep 21, 1986", - "at": "@", - "fav": "New England Patriots", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Sep 21, 1986", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "45", - "sU": "51", - "spread": "2", - "ou": null - }, - { - "date": "Sep 21, 1986", - "at": null, - "fav": "Denver Broncos", - "und": "Philadelphia Eagles", - "sF": "33", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 1986", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "27", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 1986", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "New York Giants", - "sF": "9", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 1986", - "at": "@", - "fav": "San Diego Chargers", - "und": "Washington Redskins", - "sF": "27", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 1986", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "26", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Sep 22, 1986", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "25", - "sU": "12", - "spread": "11", - "ou": null - }, - { - "date": "Sep 28, 1986", - "at": "@", - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 28, 1986", - "at": null, - "fav": "Chicago Bears", - "und": "Cincinnati Bengals", - "sF": "44", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 28, 1986", - "at": "@", - "fav": "Cleveland Browns", - "und": "Detroit Lions", - "sF": "24", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Sep 28, 1986", - "at": "@", - "fav": "Houston Oilers", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Sep 28, 1986", - "at": "@", - "fav": "Miami Dolphins", - "und": "San Francisco 49ers", - "sF": "16", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 1986", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "42", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 28, 1986", - "at": "@", - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "20", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Sep 28, 1986", - "at": null, - "fav": "Los Angeles Rams", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Sep 28, 1986", - "at": "@", - "fav": "Washington Redskins", - "und": "Seattle Seahawks", - "sF": "19", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 28, 1986", - "at": "@", - "fav": "Denver Broncos", - "und": "New England Patriots", - "sF": "27", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 1986", - "at": null, - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "26", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Sep 28, 1986", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "17", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 1986", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 29, 1986", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "31", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1986", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Philadelphia Eagles", - "sF": "0", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Oct 5, 1986", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "0", - "spread": "12", - "ou": null - }, - { - "date": "Oct 5, 1986", - "at": "@", - "fav": "Detroit Lions", - "und": "Houston Oilers", - "sF": "24", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 5, 1986", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Green Bay Packers", - "sF": "34", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1986", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 5, 1986", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "34", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 5, 1986", - "at": null, - "fav": "Washington Redskins", - "und": "New Orleans Saints", - "sF": "14", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1986", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 5, 1986", - "at": null, - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "13", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1986", - "at": "@", - "fav": "Denver Broncos", - "und": "Dallas Cowboys", - "sF": "29", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Oct 5, 1986", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Tampa Bay Buccaneers", - "sF": "26", - "sU": "20", - "spread": "11", - "ou": null - }, - { - "date": "Oct 5, 1986", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "14", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1986", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Indianapolis Colts", - "sF": "35", - "sU": "14", - "spread": "17", - "ou": null - }, - { - "date": "Oct 6, 1986", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "33", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 12, 1986", - "at": "@", - "fav": "Cleveland Browns", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Oct 12, 1986", - "at": null, - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "21", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 12, 1986", - "at": null, - "fav": "Chicago Bears", - "und": "Houston Oilers", - "sF": "20", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Oct 12, 1986", - "at": null, - "fav": "New Orleans Saints", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 12, 1986", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "27", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 12, 1986", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "24", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Oct 12, 1986", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "St Louis Cardinals", - "sF": "19", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 1986", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "14", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 1986", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "35", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Oct 12, 1986", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "31", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Oct 12, 1986", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Oct 13, 1986", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Oct 19, 1986", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 1986", - "at": "@", - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Oct 19, 1986", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "31", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Oct 19, 1986", - "at": "@", - "fav": "Cleveland Browns", - "und": "Green Bay Packers", - "sF": "14", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Oct 19, 1986", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Miami Dolphins", - "sF": "30", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Oct 19, 1986", - "at": null, - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "7", - "sU": "23", - "spread": "9", - "ou": null - }, - { - "date": "Oct 19, 1986", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "38", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Oct 19, 1986", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Oct 19, 1986", - "at": null, - "fav": "New England Patriots", - "und": "Pittsburgh Steelers", - "sF": "34", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Oct 19, 1986", - "at": "@", - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "28", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Oct 19, 1986", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "42", - "sU": "41", - "spread": "5", - "ou": null - }, - { - "date": "Oct 19, 1986", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "14", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 19, 1986", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New York Giants", - "sF": "17", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 1986", - "at": null, - "fav": "Denver Broncos", - "und": "New York Jets", - "sF": "10", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 1986", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "23", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Oct 26, 1986", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "13", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Oct 26, 1986", - "at": null, - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "31", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Oct 26, 1986", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Houston Oilers", - "sF": "28", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 26, 1986", - "at": null, - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Oct 26, 1986", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Oct 26, 1986", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Cleveland Browns", - "sF": "20", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 26, 1986", - "at": "@", - "fav": "New York Jets", - "und": "New Orleans Saints", - "sF": "28", - "sU": "23", - "spread": "9", - "ou": null - }, - { - "date": "Oct 26, 1986", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "San Diego Chargers", - "sF": "23", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Oct 26, 1986", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "9", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Oct 26, 1986", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Cardinals", - "sF": "37", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Oct 26, 1986", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Oct 26, 1986", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 1986", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "27", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 1986", - "at": "@", - "fav": "Detroit Lions", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 2, 1986", - "at": null, - "fav": "Cleveland Browns", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Nov 2, 1986", - "at": "@", - "fav": "Miami Dolphins", - "und": "Houston Oilers", - "sF": "28", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 2, 1986", - "at": "@", - "fav": "New England Patriots", - "und": "Atlanta Falcons", - "sF": "25", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Nov 2, 1986", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "10", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Nov 2, 1986", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 1986", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Green Bay Packers", - "sF": "27", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Nov 2, 1986", - "at": null, - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "10", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 2, 1986", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Denver Broncos", - "sF": "10", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 1986", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "23", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 2, 1986", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New York Jets", - "sF": "7", - "sU": "38", - "spread": "4", - "ou": null - }, - { - "date": "Nov 2, 1986", - "at": "@", - "fav": "Washington Redskins", - "und": "Minnesota Vikings", - "sF": "44", - "sU": "38", - "spread": "7", - "ou": null - }, - { - "date": "Nov 3, 1986", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "17", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Nov 9, 1986", - "at": null, - "fav": "New York Jets", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 1986", - "at": "@", - "fav": "Buffalo Bills", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Nov 9, 1986", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "24", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 1986", - "at": null, - "fav": "Washington Redskins", - "und": "Green Bay Packers", - "sF": "16", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Nov 9, 1986", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "28", - "sU": "32", - "spread": "4", - "ou": null - }, - { - "date": "Nov 9, 1986", - "at": null, - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "30", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Nov 9, 1986", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Nov 9, 1986", - "at": null, - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "0", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Nov 9, 1986", - "at": null, - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Nov 9, 1986", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Los Angeles Raiders", - "sF": "13", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 1986", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "3", - "sU": "9", - "spread": "13", - "ou": null - }, - { - "date": "Nov 9, 1986", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 1986", - "at": "@", - "fav": "San Francisco 49ers", - "und": "St Louis Cardinals", - "sF": "43", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Nov 10, 1986", - "at": "@", - "fav": "Cleveland Browns", - "und": "Miami Dolphins", - "sF": "26", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1986", - "at": null, - "fav": "Chicago Bears", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 16, 1986", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "34", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Nov 16, 1986", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1986", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 16, 1986", - "at": null, - "fav": "New York Giants", - "und": "Minnesota Vikings", - "sF": "22", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 16, 1986", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Detroit Lions", - "sF": "11", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1986", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "21", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 16, 1986", - "at": null, - "fav": "New Orleans Saints", - "und": "St Louis Cardinals", - "sF": "16", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1986", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "38", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 16, 1986", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Cleveland Browns", - "sF": "27", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 16, 1986", - "at": null, - "fav": "New England Patriots", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Nov 16, 1986", - "at": "@", - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "16", - "spread": "16", - "ou": null - }, - { - "date": "Nov 16, 1986", - "at": null, - "fav": "Dallas Cowboys", - "und": "San Diego Chargers", - "sF": "24", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 1986", - "at": "@", - "fav": "Washington Redskins", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Nov 20, 1986", - "at": null, - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "37", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 23, 1986", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "12", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Nov 23, 1986", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1986", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "37", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 23, 1986", - "at": "@", - "fav": "Houston Oilers", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 1986", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "22", - "sU": "19", - "spread": "13", - "ou": null - }, - { - "date": "Nov 23, 1986", - "at": "@", - "fav": "New York Giants", - "und": "Denver Broncos", - "sF": "19", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1986", - "at": null, - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "38", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1986", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "26", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 23, 1986", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Nov 23, 1986", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 23, 1986", - "at": null, - "fav": "Kansas City Chiefs", - "und": "St Louis Cardinals", - "sF": "14", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1986", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "41", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 1986", - "at": null, - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "3", - "sU": "45", - "spread": "2", - "ou": null - }, - { - "date": "Nov 27, 1986", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "40", - "sU": "44", - "spread": "5", - "ou": null - }, - { - "date": "Nov 27, 1986", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Seattle Seahawks", - "sF": "14", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Nov 30, 1986", - "at": "@", - "fav": "Chicago Bears", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Nov 30, 1986", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "13", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 30, 1986", - "at": null, - "fav": "San Diego Chargers", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Nov 30, 1986", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "14", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 30, 1986", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "45", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Nov 30, 1986", - "at": null, - "fav": "New England Patriots", - "und": "New Orleans Saints", - "sF": "21", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 1986", - "at": "@", - "fav": "New York Jets", - "und": "Los Angeles Rams", - "sF": "3", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 30, 1986", - "at": null, - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "20", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 30, 1986", - "at": "@", - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Nov 30, 1986", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "33", - "spread": "11", - "ou": null - }, - { - "date": "Nov 30, 1986", - "at": "@", - "fav": "Miami Dolphins", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Dec 1, 1986", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "17", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 1986", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Indianapolis Colts", - "sF": "23", - "sU": "28", - "spread": "11", - "ou": null - }, - { - "date": "Dec 7, 1986", - "at": null, - "fav": "Cleveland Browns", - "und": "Buffalo Bills", - "sF": "21", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 1986", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "48", - "sU": "14", - "spread": "17", - "ou": null - }, - { - "date": "Dec 7, 1986", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "32", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 1986", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "10", - "sU": "37", - "spread": "5", - "ou": null - }, - { - "date": "Dec 7, 1986", - "at": "@", - "fav": "New England Patriots", - "und": "Cincinnati Bengals", - "sF": "7", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Dec 7, 1986", - "at": "@", - "fav": "New Orleans Saints", - "und": "Miami Dolphins", - "sF": "27", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 1986", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "10", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 7, 1986", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Detroit Lions", - "sF": "27", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 7, 1986", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "14", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 1986", - "at": "@", - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "27", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Dec 7, 1986", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Jets", - "sF": "24", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 7, 1986", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Dallas Cowboys", - "sF": "29", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 8, 1986", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "0", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Dec 13, 1986", - "at": "@", - "fav": "New York Jets", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "45", - "spread": "6", - "ou": null - }, - { - "date": "Dec 13, 1986", - "at": "@", - "fav": "Denver Broncos", - "und": "Washington Redskins", - "sF": "31", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 1986", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "9", - "spread": "1", - "ou": null - }, - { - "date": "Dec 14, 1986", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "3", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 1986", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Dec 14, 1986", - "at": null, - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "14", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 14, 1986", - "at": null, - "fav": "San Francisco 49ers", - "und": "New England Patriots", - "sF": "29", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 14, 1986", - "at": "@", - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "27", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Dec 14, 1986", - "at": null, - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Dec 14, 1986", - "at": null, - "fav": "Minnesota Vikings", - "und": "Houston Oilers", - "sF": "10", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 1986", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 14, 1986", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Miami Dolphins", - "sF": "31", - "sU": "37", - "spread": "6", - "ou": null - }, - { - "date": "Dec 14, 1986", - "at": "@", - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Dec 15, 1986", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "16", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Dec 19, 1986", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 20, 1986", - "at": "@", - "fav": "New York Giants", - "und": "Green Bay Packers", - "sF": "55", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Dec 20, 1986", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Denver Broncos", - "sF": "41", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 1986", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New York Jets", - "sF": "52", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 1986", - "at": "@", - "fav": "Cleveland Browns", - "und": "San Diego Chargers", - "sF": "47", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 21, 1986", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "6", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 1986", - "at": "@", - "fav": "Houston Oilers", - "und": "Buffalo Bills", - "sF": "16", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 1986", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "33", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 1986", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 21, 1986", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "19", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 21, 1986", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Dec 21, 1986", - "at": null, - "fav": "Chicago Bears", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 1986", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "30", - "spread": "9", - "ou": null - }, - { - "date": "Dec 22, 1986", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "27", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 28, 1986", - "at": "@", - "fav": "New York Jets (4)", - "und": "Kansas City Chiefs (5)", - "sF": "35", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Dec 28, 1986", - "at": "@", - "fav": "Washington Redskins (4)", - "und": "Los Angeles Rams (5)", - "sF": "19", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Jan 3, 1987", - "at": "@", - "fav": "Cleveland Browns (1)", - "und": "New York Jets (4)", - "sF": "23", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Jan 3, 1987", - "at": "@", - "fav": "Chicago Bears (2)", - "und": "Washington Redskins (4)", - "sF": "13", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Jan 4, 1987", - "at": "@", - "fav": "New York Giants (1)", - "und": "San Francisco 49ers (3)", - "sF": "49", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Jan 4, 1987", - "at": "@", - "fav": "Denver Broncos (2)", - "und": "New England Patriots (3)", - "sF": "22", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Jan 11, 1987", - "at": "@", - "fav": "Cleveland Browns (1)", - "und": "Denver Broncos (2)", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Jan 11, 1987", - "at": "@", - "fav": "New York Giants (1)", - "und": "Washington Redskins (4)", - "sF": "17", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Jan 25, 1987", - "at": "N", - "fav": "New York Giants (1)", - "und": "Denver Broncos (2)", - "sF": "39", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Sep 13, 1987", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "31", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Sep 13, 1987", - "at": null, - "fav": "Los Angeles Rams", - "und": "Houston Oilers", - "sF": "16", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 13, 1987", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Indianapolis Colts", - "sF": "23", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Sep 13, 1987", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "20", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 1987", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "34", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Sep 13, 1987", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "28", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Sep 13, 1987", - "at": null, - "fav": "Cleveland Browns", - "und": "New Orleans Saints", - "sF": "21", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Sep 13, 1987", - "at": null, - "fav": "San Francisco 49ers", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Sep 13, 1987", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "48", - "spread": "2", - "ou": null - }, - { - "date": "Sep 13, 1987", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "34", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Sep 13, 1987", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "40", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 1987", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Green Bay Packers", - "sF": "20", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Sep 14, 1987", - "at": "@", - "fav": "Chicago Bears", - "und": "New York Giants", - "sF": "34", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Sep 20, 1987", - "at": null, - "fav": "Washington Redskins", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Sep 20, 1987", - "at": "@", - "fav": "Buffalo Bills", - "und": "Houston Oilers", - "sF": "34", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 1987", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Sep 20, 1987", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "34", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 1987", - "at": null, - "fav": "Denver Broncos", - "und": "Green Bay Packers", - "sF": "17", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Sep 20, 1987", - "at": null, - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "23", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Sep 20, 1987", - "at": null, - "fav": "New Orleans Saints", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Sep 20, 1987", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Detroit Lions", - "sF": "27", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 1987", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Minnesota Vikings", - "sF": "16", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 20, 1987", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "14", - "sU": "16", - "spread": "12", - "ou": null - }, - { - "date": "Sep 20, 1987", - "at": "@", - "fav": "San Diego Chargers", - "und": "St Louis Cardinals", - "sF": "28", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Sep 20, 1987", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "43", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Sep 21, 1987", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "24", - "sU": "43", - "spread": "2", - "ou": null - }, - { - "date": "Oct 4, 1987", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 1987", - "at": null, - "fav": "Indianapolis Colts", - "und": "Buffalo Bills", - "sF": "47", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 1987", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "San Diego Chargers", - "sF": "9", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 4, 1987", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "31", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 4, 1987", - "at": "@", - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "10", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 4, 1987", - "at": "@", - "fav": "New Orleans Saints", - "und": "Los Angeles Rams", - "sF": "37", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Oct 4, 1987", - "at": null, - "fav": "Chicago Bears", - "und": "Philadelphia Eagles", - "sF": "35", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Oct 4, 1987", - "at": null, - "fav": "St Louis Cardinals", - "und": "Washington Redskins", - "sF": "21", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Oct 4, 1987", - "at": "@", - "fav": "Denver Broncos", - "und": "Houston Oilers", - "sF": "10", - "sU": "40", - "spread": "7", - "ou": null - }, - { - "date": "Oct 4, 1987", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Kansas City Chiefs", - "sF": "35", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 4, 1987", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 1987", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Jets", - "sF": "38", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 4, 1987", - "at": null, - "fav": "Miami Dolphins", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 5, 1987", - "at": null, - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "41", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 1987", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "7", - "spread": "18", - "ou": null - }, - { - "date": "Oct 11, 1987", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "10", - "sU": "15", - "spread": "2", - "ou": null - }, - { - "date": "Oct 11, 1987", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "41", - "sU": "22", - "spread": "21", - "ou": null - }, - { - "date": "Oct 11, 1987", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "16", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 1987", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "6", - "sU": "0", - "spread": "11", - "ou": null - }, - { - "date": "Oct 11, 1987", - "at": "@", - "fav": "Miami Dolphins", - "und": "Kansas City Chiefs", - "sF": "42", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Oct 11, 1987", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "14", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Oct 11, 1987", - "at": "@", - "fav": "St Louis Cardinals", - "und": "New Orleans Saints", - "sF": "24", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Oct 11, 1987", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "San Diego Chargers", - "sF": "13", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 11, 1987", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "25", - "sU": "17", - "spread": "23", - "ou": null - }, - { - "date": "Oct 11, 1987", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Los Angeles Rams", - "sF": "21", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 11, 1987", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "38", - "sU": "12", - "spread": "10", - "ou": null - }, - { - "date": "Oct 11, 1987", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 12, 1987", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Denver Broncos", - "sF": "14", - "sU": "30", - "spread": "11", - "ou": null - }, - { - "date": "Oct 18, 1987", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Oct 18, 1987", - "at": "@", - "fav": "Chicago Bears", - "und": "New Orleans Saints", - "sF": "17", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Oct 18, 1987", - "at": null, - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Oct 18, 1987", - "at": null, - "fav": "Seattle Seahawks", - "und": "Detroit Lions", - "sF": "37", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 1987", - "at": "@", - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 18, 1987", - "at": "@", - "fav": "Houston Oilers", - "und": "New England Patriots", - "sF": "7", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Oct 18, 1987", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "31", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 1987", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Indianapolis Colts", - "sF": "21", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Oct 18, 1987", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Oct 18, 1987", - "at": null, - "fav": "New York Giants", - "und": "Buffalo Bills", - "sF": "3", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Oct 18, 1987", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "26", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Oct 18, 1987", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "17", - "sU": "23", - "spread": "11", - "ou": null - }, - { - "date": "Oct 18, 1987", - "at": "@", - "fav": "San Francisco 49ers", - "und": "St Louis Cardinals", - "sF": "34", - "sU": "28", - "spread": "13", - "ou": null - }, - { - "date": "Oct 19, 1987", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "7", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Oct 25, 1987", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "33", - "sU": "34", - "spread": "5", - "ou": null - }, - { - "date": "Oct 25, 1987", - "at": "@", - "fav": "Houston Oilers", - "und": "Atlanta Falcons", - "sF": "37", - "sU": "33", - "spread": "4", - "ou": null - }, - { - "date": "Oct 25, 1987", - "at": null, - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "16", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 1987", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "31", - "sU": "34", - "spread": "9", - "ou": null - }, - { - "date": "Oct 25, 1987", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "24", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 1987", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "37", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 25, 1987", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 25, 1987", - "at": null, - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "26", - "spread": "10", - "ou": null - }, - { - "date": "Oct 25, 1987", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Jets", - "sF": "17", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 25, 1987", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "13", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Oct 25, 1987", - "at": "@", - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "30", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Oct 25, 1987", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "42", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Oct 26, 1987", - "at": "@", - "fav": "Cleveland Browns", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 26, 1987", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Denver Broncos", - "sF": "34", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 1, 1987", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Nov 1, 1987", - "at": null, - "fav": "Washington Redskins", - "und": "Buffalo Bills", - "sF": "27", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 1987", - "at": "@", - "fav": "Chicago Bears", - "und": "Kansas City Chiefs", - "sF": "31", - "sU": "28", - "spread": "14", - "ou": null - }, - { - "date": "Nov 1, 1987", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "29", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 1, 1987", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 1, 1987", - "at": "@", - "fav": "Miami Dolphins", - "und": "Pittsburgh Steelers", - "sF": "35", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 1, 1987", - "at": "@", - "fav": "New England Patriots", - "und": "Los Angeles Raiders", - "sF": "26", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 1987", - "at": "@", - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "14", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Nov 1, 1987", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Nov 1, 1987", - "at": "@", - "fav": "Denver Broncos", - "und": "Detroit Lions", - "sF": "34", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Nov 1, 1987", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 1, 1987", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cleveland Browns", - "sF": "27", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Nov 1, 1987", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 2, 1987", - "at": null, - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "33", - "spread": "7", - "ou": null - }, - { - "date": "Nov 8, 1987", - "at": null, - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "14", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Nov 8, 1987", - "at": "@", - "fav": "Cleveland Browns", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Nov 8, 1987", - "at": null, - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "17", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Nov 8, 1987", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "26", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Nov 8, 1987", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 8, 1987", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Los Angeles Raiders", - "sF": "31", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 8, 1987", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 8, 1987", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Nov 8, 1987", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Miami Dolphins", - "sF": "14", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 8, 1987", - "at": null, - "fav": "New Orleans Saints", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 1987", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Houston Oilers", - "sF": "27", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Nov 8, 1987", - "at": "@", - "fav": "New York Giants", - "und": "New England Patriots", - "sF": "17", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 9, 1987", - "at": null, - "fav": "Seattle Seahawks", - "und": "New York Jets", - "sF": "14", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 1987", - "at": "@", - "fav": "Cleveland Browns", - "und": "Buffalo Bills", - "sF": "27", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 15, 1987", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "9", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 1987", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "21", - "sU": "40", - "spread": "7", - "ou": null - }, - { - "date": "Nov 15, 1987", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Nov 15, 1987", - "at": "@", - "fav": "New England Patriots", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 1987", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "3", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 1987", - "at": "@", - "fav": "St Louis Cardinals", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Nov 15, 1987", - "at": "@", - "fav": "Washington Redskins", - "und": "Detroit Lions", - "sF": "20", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Nov 15, 1987", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Atlanta Falcons", - "sF": "16", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 15, 1987", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 15, 1987", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "24", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Nov 15, 1987", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Green Bay Packers", - "sF": "24", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Nov 15, 1987", - "at": "@", - "fav": "San Diego Chargers", - "und": "Los Angeles Raiders", - "sF": "16", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Nov 16, 1987", - "at": "@", - "fav": "Denver Broncos", - "und": "Chicago Bears", - "sF": "31", - "sU": "29", - "spread": "2", - "ou": null - }, - { - "date": "Nov 22, 1987", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "30", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Nov 22, 1987", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Nov 22, 1987", - "at": null, - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "40", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 22, 1987", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Green Bay Packers", - "sF": "3", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Nov 22, 1987", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Nov 22, 1987", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "0", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 1987", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 1987", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "St Louis Cardinals", - "sF": "19", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 22, 1987", - "at": null, - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 22, 1987", - "at": null, - "fav": "Denver Broncos", - "und": "Los Angeles Raiders", - "sF": "23", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 1987", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Giants", - "sF": "23", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 22, 1987", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "34", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Nov 22, 1987", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Miami Dolphins", - "sF": "14", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 23, 1987", - "at": "@", - "fav": "Washington Redskins", - "und": "Los Angeles Rams", - "sF": "26", - "sU": "30", - "spread": "10", - "ou": null - }, - { - "date": "Nov 26, 1987", - "at": "@", - "fav": "Detroit Lions", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Nov 26, 1987", - "at": null, - "fav": "Minnesota Vikings", - "und": "Dallas Cowboys", - "sF": "44", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Nov 29, 1987", - "at": null, - "fav": "St Louis Cardinals", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 29, 1987", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "0", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 29, 1987", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "23", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Nov 29, 1987", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Oilers", - "sF": "51", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 1987", - "at": "@", - "fav": "New England Patriots", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 1987", - "at": "@", - "fav": "New York Jets", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 29, 1987", - "at": null, - "fav": "New Orleans Saints", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Nov 29, 1987", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Tampa Bay Buccaneers", - "sF": "35", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Nov 29, 1987", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "31", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 29, 1987", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "23", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 1987", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Cleveland Browns", - "sF": "38", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 1987", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Los Angeles Raiders", - "sF": "14", - "sU": "37", - "spread": "9", - "ou": null - }, - { - "date": "Dec 6, 1987", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Kansas City Chiefs", - "sF": "30", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Dec 6, 1987", - "at": "@", - "fav": "Cleveland Browns", - "und": "Indianapolis Colts", - "sF": "7", - "sU": "9", - "spread": "8", - "ou": null - }, - { - "date": "Dec 6, 1987", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Dec 6, 1987", - "at": null, - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "37", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 1987", - "at": null, - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "23", - "sU": "12", - "spread": "6", - "ou": null - }, - { - "date": "Dec 6, 1987", - "at": null, - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "18", - "sU": "33", - "spread": "2", - "ou": null - }, - { - "date": "Dec 6, 1987", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Dec 6, 1987", - "at": null, - "fav": "Seattle Seahawks", - "und": "Pittsburgh Steelers", - "sF": "9", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 1987", - "at": null, - "fav": "Washington Redskins", - "und": "St Louis Cardinals", - "sF": "34", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 1987", - "at": "@", - "fav": "Denver Broncos", - "und": "New England Patriots", - "sF": "31", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Dec 6, 1987", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Buffalo Bills", - "sF": "34", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 1987", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "44", - "sU": "34", - "spread": "10", - "ou": null - }, - { - "date": "Dec 6, 1987", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "24", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Dec 7, 1987", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "37", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1987", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "38", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 1987", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "10", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Dec 13, 1987", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Buffalo Bills", - "sF": "3", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1987", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "42", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Dec 13, 1987", - "at": "@", - "fav": "New Orleans Saints", - "und": "Houston Oilers", - "sF": "24", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 1987", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Miami Dolphins", - "sF": "10", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Dec 13, 1987", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Dec 13, 1987", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Kansas City Chiefs", - "sF": "10", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Dec 13, 1987", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "33", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Dec 13, 1987", - "at": "@", - "fav": "San Diego Chargers", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1987", - "at": null, - "fav": "New York Giants", - "und": "St Louis Cardinals", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1987", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "10", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 13, 1987", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Denver Broncos", - "sF": "28", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 1987", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "41", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Dec 19, 1987", - "at": "@", - "fav": "New York Giants", - "und": "Green Bay Packers", - "sF": "20", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 19, 1987", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 20, 1987", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "7", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Dec 20, 1987", - "at": "@", - "fav": "Chicago Bears", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1987", - "at": null, - "fav": "New Orleans Saints", - "und": "Cincinnati Bengals", - "sF": "41", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1987", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "17", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 20, 1987", - "at": "@", - "fav": "New York Jets", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Dec 20, 1987", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Cleveland Browns", - "sF": "17", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 20, 1987", - "at": "@", - "fav": "San Diego Chargers", - "und": "Indianapolis Colts", - "sF": "7", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1987", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "35", - "sU": "7", - "spread": "16", - "ou": null - }, - { - "date": "Dec 20, 1987", - "at": null, - "fav": "St Louis Cardinals", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1987", - "at": "@", - "fav": "Miami Dolphins", - "und": "Washington Redskins", - "sF": "23", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 1987", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Dallas Cowboys", - "sF": "21", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Dec 26, 1987", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "19", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1987", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Washington Redskins", - "sF": "24", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 27, 1987", - "at": null, - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 27, 1987", - "at": null, - "fav": "St Louis Cardinals", - "und": "Dallas Cowboys", - "sF": "16", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Dec 27, 1987", - "at": "@", - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 27, 1987", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Dec 27, 1987", - "at": null, - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "41", - "spread": "6", - "ou": null - }, - { - "date": "Dec 27, 1987", - "at": "@", - "fav": "New Orleans Saints", - "und": "Green Bay Packers", - "sF": "33", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Dec 27, 1987", - "at": "@", - "fav": "New York Giants", - "und": "New York Jets", - "sF": "20", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Dec 27, 1987", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Buffalo Bills", - "sF": "17", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 27, 1987", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "24", - "sU": "0", - "spread": "11", - "ou": null - }, - { - "date": "Dec 27, 1987", - "at": null, - "fav": "Chicago Bears", - "und": "Los Angeles Raiders", - "sF": "6", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Dec 27, 1987", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "48", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Dec 28, 1987", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "10", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Jan 3, 1988", - "at": "@", - "fav": "New Orleans Saints (4)", - "und": "Minnesota Vikings (5)", - "sF": "10", - "sU": "44", - "spread": "6", - "ou": null - }, - { - "date": "Jan 3, 1988", - "at": null, - "fav": "Seattle Seahawks (5)", - "und": "Houston Oilers (4)", - "sF": "20", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Jan 9, 1988", - "at": "@", - "fav": "Cleveland Browns (2)", - "und": "Indianapolis Colts (3)", - "sF": "38", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Jan 9, 1988", - "at": "@", - "fav": "San Francisco 49ers (1)", - "und": "Minnesota Vikings (5)", - "sF": "24", - "sU": "36", - "spread": "11", - "ou": null - }, - { - "date": "Jan 10, 1988", - "at": "@", - "fav": "Chicago Bears (2)", - "und": "Washington Redskins (3)", - "sF": "17", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Jan 10, 1988", - "at": "@", - "fav": "Denver Broncos (1)", - "und": "Houston Oilers (4)", - "sF": "34", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Jan 17, 1988", - "at": "@", - "fav": "Washington Redskins (3)", - "und": "Minnesota Vikings (5)", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Jan 17, 1988", - "at": "@", - "fav": "Denver Broncos (1)", - "und": "Cleveland Browns (2)", - "sF": "38", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Jan 31, 1988", - "at": "N", - "fav": "Denver Broncos (1)", - "und": "Washington Redskins (3)", - "sF": "10", - "sU": "42", - "spread": "3", - "ou": null - }, - { - "date": "Sep 4, 1988", - "at": null, - "fav": "Minnesota Vikings", - "und": "Buffalo Bills", - "sF": "10", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 4, 1988", - "at": "@", - "fav": "Chicago Bears", - "und": "Miami Dolphins", - "sF": "34", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 4, 1988", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Phoenix Cardinals", - "sF": "21", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Sep 4, 1988", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 4, 1988", - "at": null, - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "34", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 4, 1988", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 4, 1988", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Tampa Bay Buccaneers", - "sF": "41", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 4, 1988", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "14", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 4, 1988", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Oilers", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 4, 1988", - "at": null, - "fav": "Cleveland Browns", - "und": "Kansas City Chiefs", - "sF": "6", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 4, 1988", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "24", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Sep 4, 1988", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "28", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 5, 1988", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "27", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 11, 1988", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "29", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Sep 11, 1988", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "9", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 1988", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Sep 11, 1988", - "at": null, - "fav": "Chicago Bears", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Sep 11, 1988", - "at": "@", - "fav": "New York Giants", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 11, 1988", - "at": "@", - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "30", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Sep 11, 1988", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Jets", - "sF": "3", - "sU": "23", - "spread": "9", - "ou": null - }, - { - "date": "Sep 11, 1988", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "34", - "sU": "3", - "spread": "12", - "ou": null - }, - { - "date": "Sep 11, 1988", - "at": "@", - "fav": "Houston Oilers", - "und": "Los Angeles Raiders", - "sF": "38", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Sep 11, 1988", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "17", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Sep 11, 1988", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New England Patriots", - "sF": "36", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Sep 11, 1988", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Sep 11, 1988", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "31", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Sep 12, 1988", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "Dallas Cowboys", - "sF": "14", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 18, 1988", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "7", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 1988", - "at": null, - "fav": "New Orleans Saints", - "und": "Detroit Lions", - "sF": "22", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Sep 18, 1988", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "13", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 18, 1988", - "at": "@", - "fav": "Miami Dolphins", - "und": "Green Bay Packers", - "sF": "24", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Sep 18, 1988", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "14", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Sep 18, 1988", - "at": null, - "fav": "Houston Oilers", - "und": "New York Jets", - "sF": "3", - "sU": "45", - "spread": "2", - "ou": null - }, - { - "date": "Sep 18, 1988", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "12", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 18, 1988", - "at": null, - "fav": "Phoenix Cardinals", - "und": "Tampa Bay Buccaneers", - "sF": "30", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 1988", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Sep 18, 1988", - "at": null, - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "12", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 1988", - "at": null, - "fav": "Los Angeles Rams", - "und": "Los Angeles Raiders", - "sF": "22", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 18, 1988", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "6", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Sep 18, 1988", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "34", - "spread": "14", - "ou": null - }, - { - "date": "Sep 19, 1988", - "at": "@", - "fav": "Cleveland Browns", - "und": "Indianapolis Colts", - "sF": "23", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 25, 1988", - "at": "@", - "fav": "Buffalo Bills", - "und": "Pittsburgh Steelers", - "sF": "36", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Sep 25, 1988", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 1988", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "26", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 1988", - "at": null, - "fav": "New York Jets", - "und": "Detroit Lions", - "sF": "17", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 25, 1988", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "24", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 1988", - "at": "@", - "fav": "Houston Oilers", - "und": "New England Patriots", - "sF": "31", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 1988", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Miami Dolphins", - "sF": "15", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 25, 1988", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 1988", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "9", - "spread": "13", - "ou": null - }, - { - "date": "Sep 25, 1988", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "23", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 1988", - "at": "@", - "fav": "New York Giants", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "45", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 1988", - "at": null, - "fav": "Washington Redskins", - "und": "Phoenix Cardinals", - "sF": "21", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 1988", - "at": null, - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "38", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Sep 26, 1988", - "at": "@", - "fav": "Denver Broncos", - "und": "Los Angeles Raiders", - "sF": "27", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Oct 2, 1988", - "at": null, - "fav": "Seattle Seahawks", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 2, 1988", - "at": "@", - "fav": "Chicago Bears", - "und": "Buffalo Bills", - "sF": "24", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Oct 2, 1988", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "21", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 1988", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Houston Oilers", - "sF": "32", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 2, 1988", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "9", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 1988", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Green Bay Packers", - "sF": "27", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 1988", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "23", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 1988", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "45", - "spread": "1", - "ou": null - }, - { - "date": "Oct 2, 1988", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Phoenix Cardinals", - "sF": "27", - "sU": "41", - "spread": "7", - "ou": null - }, - { - "date": "Oct 2, 1988", - "at": null, - "fav": "Minnesota Vikings", - "und": "Miami Dolphins", - "sF": "7", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 1988", - "at": "@", - "fav": "New York Jets", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 2, 1988", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "12", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Oct 2, 1988", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "20", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Oct 3, 1988", - "at": "@", - "fav": "New Orleans Saints", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 9, 1988", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "33", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Oct 9, 1988", - "at": "@", - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "34", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 9, 1988", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New York Jets", - "sF": "36", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Oct 9, 1988", - "at": "@", - "fav": "Cleveland Browns", - "und": "Seattle Seahawks", - "sF": "10", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 1988", - "at": null, - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "35", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 9, 1988", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "24", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 9, 1988", - "at": null, - "fav": "New England Patriots", - "und": "Green Bay Packers", - "sF": "3", - "sU": "45", - "spread": "2", - "ou": null - }, - { - "date": "Oct 9, 1988", - "at": "@", - "fav": "Houston Oilers", - "und": "Kansas City Chiefs", - "sF": "7", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Oct 9, 1988", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "14", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Oct 9, 1988", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Miami Dolphins", - "sF": "14", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 9, 1988", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "Pittsburgh Steelers", - "sF": "31", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 9, 1988", - "at": null, - "fav": "New Orleans Saints", - "und": "San Diego Chargers", - "sF": "23", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 9, 1988", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Denver Broncos", - "sF": "13", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Oct 10, 1988", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "24", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Oct 16, 1988", - "at": "@", - "fav": "Chicago Bears", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 16, 1988", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tampa Bay Buccaneers", - "sF": "35", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Oct 16, 1988", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Raiders", - "sF": "17", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 1988", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "14", - "sU": "34", - "spread": "10", - "ou": null - }, - { - "date": "Oct 16, 1988", - "at": null, - "fav": "Cincinnati Bengals", - "und": "New England Patriots", - "sF": "21", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Oct 16, 1988", - "at": "@", - "fav": "New York Giants", - "und": "Detroit Lions", - "sF": "30", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Oct 16, 1988", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "14", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Oct 16, 1988", - "at": "@", - "fav": "Washington Redskins", - "und": "Phoenix Cardinals", - "sF": "33", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 16, 1988", - "at": "@", - "fav": "Denver Broncos", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Oct 16, 1988", - "at": "@", - "fav": "Miami Dolphins", - "und": "San Diego Chargers", - "sF": "31", - "sU": "28", - "spread": "9", - "ou": null - }, - { - "date": "Oct 16, 1988", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New Orleans Saints", - "sF": "19", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 17, 1988", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "14", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 1988", - "at": null, - "fav": "New York Giants", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 1988", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "23", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 23, 1988", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "44", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Oct 23, 1988", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Detroit Lions", - "sF": "6", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 23, 1988", - "at": "@", - "fav": "New Orleans Saints", - "und": "Los Angeles Raiders", - "sF": "20", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Oct 23, 1988", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Oct 23, 1988", - "at": null, - "fav": "Denver Broncos", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "39", - "spread": "4", - "ou": null - }, - { - "date": "Oct 23, 1988", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "49", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 1988", - "at": null, - "fav": "Washington Redskins", - "und": "Green Bay Packers", - "sF": "20", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 23, 1988", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 23, 1988", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "30", - "sU": "44", - "spread": "6", - "ou": null - }, - { - "date": "Oct 23, 1988", - "at": null, - "fav": "Cleveland Browns", - "und": "Phoenix Cardinals", - "sF": "29", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Oct 24, 1988", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "10", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Oct 30, 1988", - "at": "@", - "fav": "Buffalo Bills", - "und": "Green Bay Packers", - "sF": "28", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Oct 30, 1988", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 1988", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Phoenix Cardinals", - "sF": "10", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 1988", - "at": null, - "fav": "Chicago Bears", - "und": "New England Patriots", - "sF": "7", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Oct 30, 1988", - "at": "@", - "fav": "New Orleans Saints", - "und": "Los Angeles Rams", - "sF": "10", - "sU": "12", - "spread": "2", - "ou": null - }, - { - "date": "Oct 30, 1988", - "at": "@", - "fav": "New York Jets", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 30, 1988", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Oct 30, 1988", - "at": null, - "fav": "Miami Dolphins", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 30, 1988", - "at": null, - "fav": "New York Giants", - "und": "Detroit Lions", - "sF": "13", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 30, 1988", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 30, 1988", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Oct 30, 1988", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "17", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Oct 30, 1988", - "at": null, - "fav": "Washington Redskins", - "und": "Houston Oilers", - "sF": "17", - "sU": "41", - "spread": "1", - "ou": null - }, - { - "date": "Oct 31, 1988", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Denver Broncos", - "sF": "55", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Nov 6, 1988", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Green Bay Packers", - "sF": "20", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1988", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "28", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 6, 1988", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "42", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Nov 6, 1988", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "44", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Nov 6, 1988", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "21", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1988", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "29", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 6, 1988", - "at": null, - "fav": "Los Angeles Rams", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Nov 6, 1988", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "11", - "spread": "8", - "ou": null - }, - { - "date": "Nov 6, 1988", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "38", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Nov 6, 1988", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1988", - "at": "@", - "fav": "Washington Redskins", - "und": "New Orleans Saints", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1988", - "at": null, - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "13", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 1988", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Diego Chargers", - "sF": "7", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 13, 1988", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 1988", - "at": null, - "fav": "Indianapolis Colts", - "und": "Green Bay Packers", - "sF": "20", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Nov 13, 1988", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 13, 1988", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "13", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 1988", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 1988", - "at": "@", - "fav": "Washington Redskins", - "und": "Chicago Bears", - "sF": "14", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 1988", - "at": null, - "fav": "Cleveland Browns", - "und": "Denver Broncos", - "sF": "7", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 1988", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "10", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 1988", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "New York Giants", - "sF": "24", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 1988", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Raiders", - "sF": "3", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Nov 13, 1988", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Houston Oilers", - "sF": "27", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Nov 13, 1988", - "at": null, - "fav": "Minnesota Vikings", - "und": "Dallas Cowboys", - "sF": "43", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Nov 14, 1988", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "31", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Nov 20, 1988", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "9", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Nov 20, 1988", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Nov 20, 1988", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Dallas Cowboys", - "sF": "38", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 20, 1988", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "9", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Nov 20, 1988", - "at": "@", - "fav": "Houston Oilers", - "und": "Phoenix Cardinals", - "sF": "38", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 20, 1988", - "at": null, - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 20, 1988", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Indianapolis Colts", - "sF": "12", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Nov 20, 1988", - "at": null, - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "15", - "spread": "7", - "ou": null - }, - { - "date": "Nov 20, 1988", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Atlanta Falcons", - "sF": "6", - "sU": "12", - "spread": "8", - "ou": null - }, - { - "date": "Nov 20, 1988", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Diego Chargers", - "sF": "24", - "sU": "38", - "spread": "11", - "ou": null - }, - { - "date": "Nov 20, 1988", - "at": "@", - "fav": "New Orleans Saints", - "und": "Denver Broncos", - "sF": "42", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Nov 20, 1988", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 1988", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "3", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 1988", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "37", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 1988", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "23", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 24, 1988", - "at": null, - "fav": "Houston Oilers", - "und": "Dallas Cowboys", - "sF": "25", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 27, 1988", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 27, 1988", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "16", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Nov 27, 1988", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Buffalo Bills", - "sF": "35", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 1988", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "38", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Nov 27, 1988", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Phoenix Cardinals", - "sF": "31", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Nov 27, 1988", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "16", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 27, 1988", - "at": "@", - "fav": "Washington Redskins", - "und": "Cleveland Browns", - "sF": "13", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 27, 1988", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "24", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Nov 27, 1988", - "at": null, - "fav": "San Francisco 49ers", - "und": "San Diego Chargers", - "sF": "48", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 27, 1988", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Giants", - "sF": "12", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Nov 28, 1988", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Los Angeles Raiders", - "sF": "35", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 4, 1988", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Dec 4, 1988", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "San Diego Chargers", - "sF": "27", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Dec 4, 1988", - "at": "@", - "fav": "Cleveland Browns", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Dec 4, 1988", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "30", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 1988", - "at": null, - "fav": "Indianapolis Colts", - "und": "Miami Dolphins", - "sF": "31", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Dec 4, 1988", - "at": "@", - "fav": "New England Patriots", - "und": "Seattle Seahawks", - "sF": "13", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 1988", - "at": "@", - "fav": "New York Giants", - "und": "Phoenix Cardinals", - "sF": "44", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Dec 4, 1988", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "19", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 1988", - "at": null, - "fav": "Buffalo Bills", - "und": "Tampa Bay Buccaneers", - "sF": "5", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 4, 1988", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "38", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Dec 4, 1988", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Denver Broncos", - "sF": "21", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Dec 4, 1988", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "45", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Dec 4, 1988", - "at": "@", - "fav": "Houston Oilers", - "und": "Pittsburgh Steelers", - "sF": "34", - "sU": "37", - "spread": "10", - "ou": null - }, - { - "date": "Dec 5, 1988", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "23", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 1988", - "at": null, - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "16", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 1988", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 11, 1988", - "at": "@", - "fav": "Buffalo Bills", - "und": "Los Angeles Raiders", - "sF": "37", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 11, 1988", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "13", - "sU": "12", - "spread": "10", - "ou": null - }, - { - "date": "Dec 11, 1988", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "6", - "sU": "18", - "spread": "10", - "ou": null - }, - { - "date": "Dec 11, 1988", - "at": "@", - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "41", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Dec 11, 1988", - "at": "@", - "fav": "New England Patriots", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Dec 11, 1988", - "at": "@", - "fav": "New York Giants", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "12", - "spread": "9", - "ou": null - }, - { - "date": "Dec 11, 1988", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 11, 1988", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "22", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Dec 11, 1988", - "at": "@", - "fav": "San Diego Chargers", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Dec 11, 1988", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "30", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 11, 1988", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Denver Broncos", - "sF": "42", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 1988", - "at": null, - "fav": "Cleveland Browns", - "und": "Miami Dolphins", - "sF": "31", - "sU": "38", - "spread": "5", - "ou": null - }, - { - "date": "Dec 17, 1988", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Washington Redskins", - "sF": "20", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 17, 1988", - "at": null, - "fav": "New England Patriots", - "und": "Denver Broncos", - "sF": "10", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Dec 18, 1988", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "28", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 18, 1988", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "23", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 18, 1988", - "at": null, - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 1988", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "9", - "spread": "8", - "ou": null - }, - { - "date": "Dec 18, 1988", - "at": null, - "fav": "New York Giants", - "und": "New York Jets", - "sF": "21", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 18, 1988", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Miami Dolphins", - "sF": "40", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 18, 1988", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "21", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 1988", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "37", - "sU": "43", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 1988", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "Green Bay Packers", - "sF": "17", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 1988", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 18, 1988", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "16", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Dec 19, 1988", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "28", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 24, 1988", - "at": "@", - "fav": "Cleveland Browns (4)", - "und": "Houston Oilers (5)", - "sF": "23", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1988", - "at": "@", - "fav": "Minnesota Vikings (4)", - "und": "Los Angeles Rams (5)", - "sF": "28", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 31, 1988", - "at": "@", - "fav": "Chicago Bears (1)", - "und": "Philadelphia Eagles (3)", - "sF": "20", - "sU": "12", - "spread": "5", - "ou": null - }, - { - "date": "Dec 31, 1988", - "at": "@", - "fav": "Cincinnati Bengals (1)", - "und": "Seattle Seahawks (3)", - "sF": "21", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Jan 1, 1989", - "at": "@", - "fav": "Buffalo Bills (2)", - "und": "Houston Oilers (5)", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 1989", - "at": "@", - "fav": "San Francisco 49ers (2)", - "und": "Minnesota Vikings (4)", - "sF": "34", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Jan 8, 1989", - "at": "@", - "fav": "Cincinnati Bengals (1)", - "und": "Buffalo Bills (2)", - "sF": "21", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Jan 8, 1989", - "at": null, - "fav": "San Francisco 49ers (2)", - "und": "Chicago Bears (1)", - "sF": "28", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Jan 22, 1989", - "at": "N", - "fav": "San Francisco 49ers (2)", - "und": "Cincinnati Bengals (1)", - "sF": "20", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Sep 10, 1989", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Sep 10, 1989", - "at": "@", - "fav": "Chicago Bears", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 1989", - "at": null, - "fav": "Phoenix Cardinals", - "und": "Detroit Lions", - "sF": "16", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Sep 10, 1989", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 1989", - "at": null, - "fav": "San Francisco 49ers", - "und": "Indianapolis Colts", - "sF": "30", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 1989", - "at": "@", - "fav": "New Orleans Saints", - "und": "Dallas Cowboys", - "sF": "28", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Sep 10, 1989", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "34", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 10, 1989", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "40", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 1989", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "27", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Sep 10, 1989", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Houston Oilers", - "sF": "38", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Sep 10, 1989", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "24", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Sep 10, 1989", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Sep 10, 1989", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "51", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Sep 11, 1989", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "24", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 1989", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 1989", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "41", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Sep 17, 1989", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Jets", - "sF": "38", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 17, 1989", - "at": null, - "fav": "New Orleans Saints", - "und": "Green Bay Packers", - "sF": "34", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 1989", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Raiders", - "sF": "24", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 1989", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "10", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Sep 17, 1989", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "37", - "sU": "42", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 1989", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "7", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Sep 17, 1989", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 17, 1989", - "at": "@", - "fav": "New York Giants", - "und": "Detroit Lions", - "sF": "24", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Sep 17, 1989", - "at": null, - "fav": "Houston Oilers", - "und": "San Diego Chargers", - "sF": "34", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 1989", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Phoenix Cardinals", - "sF": "24", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Sep 17, 1989", - "at": null, - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Sep 18, 1989", - "at": "@", - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "14", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Sep 24, 1989", - "at": null, - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "30", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Sep 24, 1989", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "47", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 1989", - "at": "@", - "fav": "Houston Oilers", - "und": "Buffalo Bills", - "sF": "41", - "sU": "47", - "spread": "4", - "ou": null - }, - { - "date": "Sep 24, 1989", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 1989", - "at": "@", - "fav": "New England Patriots", - "und": "Seattle Seahawks", - "sF": "3", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 1989", - "at": "@", - "fav": "New York Giants", - "und": "Phoenix Cardinals", - "sF": "35", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 1989", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "San Francisco 49ers", - "sF": "28", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Sep 24, 1989", - "at": null, - "fav": "Minnesota Vikings", - "und": "Pittsburgh Steelers", - "sF": "14", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Sep 24, 1989", - "at": null, - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 24, 1989", - "at": "@", - "fav": "Denver Broncos", - "und": "Los Angeles Raiders", - "sF": "31", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Sep 24, 1989", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "41", - "sU": "38", - "spread": "9", - "ou": null - }, - { - "date": "Sep 24, 1989", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "33", - "sU": "40", - "spread": "4", - "ou": null - }, - { - "date": "Sep 24, 1989", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "21", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Sep 25, 1989", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "21", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 1, 1989", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "31", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 1, 1989", - "at": "@", - "fav": "Cleveland Browns", - "und": "Denver Broncos", - "sF": "16", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Oct 1, 1989", - "at": "@", - "fav": "Detroit Lions", - "und": "Pittsburgh Steelers", - "sF": "3", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 1, 1989", - "at": "@", - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 1, 1989", - "at": "@", - "fav": "Houston Oilers", - "und": "Miami Dolphins", - "sF": "39", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 1, 1989", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Kansas City Chiefs", - "sF": "21", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 1, 1989", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Oct 1, 1989", - "at": null, - "fav": "Washington Redskins", - "und": "New Orleans Saints", - "sF": "16", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 1, 1989", - "at": "@", - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "10", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 1989", - "at": null, - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "30", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 1, 1989", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 1, 1989", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "San Diego Chargers", - "sF": "13", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Oct 1, 1989", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "12", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Oct 2, 1989", - "at": "@", - "fav": "Chicago Bears", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 1989", - "at": "@", - "fav": "Green Bay Packers", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Oct 8, 1989", - "at": null, - "fav": "Cleveland Browns", - "und": "Miami Dolphins", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 1989", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "24", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Oct 8, 1989", - "at": null, - "fav": "Houston Oilers", - "und": "New England Patriots", - "sF": "13", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Oct 8, 1989", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "21", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Oct 8, 1989", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "26", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 1989", - "at": null, - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "35", - "sU": "42", - "spread": "5", - "ou": null - }, - { - "date": "Oct 8, 1989", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "16", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 8, 1989", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "26", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Oct 8, 1989", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "24", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 1989", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "16", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 8, 1989", - "at": "@", - "fav": "Washington Redskins", - "und": "Phoenix Cardinals", - "sF": "30", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Oct 9, 1989", - "at": "@", - "fav": "New York Jets", - "und": "Los Angeles Raiders", - "sF": "7", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 1989", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New England Patriots", - "sF": "16", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 1989", - "at": "@", - "fav": "Chicago Bears", - "und": "Houston Oilers", - "sF": "28", - "sU": "33", - "spread": "7", - "ou": null - }, - { - "date": "Oct 15, 1989", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Miami Dolphins", - "sF": "13", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 15, 1989", - "at": null, - "fav": "San Francisco 49ers", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Oct 15, 1989", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "26", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 15, 1989", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 1989", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "16", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 15, 1989", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "7", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 15, 1989", - "at": "@", - "fav": "Denver Broncos", - "und": "Indianapolis Colts", - "sF": "14", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 1989", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 1989", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Jets", - "sF": "29", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 15, 1989", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Phoenix Cardinals", - "sF": "17", - "sU": "5", - "spread": "4", - "ou": null - }, - { - "date": "Oct 15, 1989", - "at": "@", - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "16", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 16, 1989", - "at": null, - "fav": "Los Angeles Rams", - "und": "Buffalo Bills", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 1989", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "34", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 1989", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Indianapolis Colts", - "sF": "12", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 1989", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "20", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 22, 1989", - "at": "@", - "fav": "Houston Oilers", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Oct 22, 1989", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Dallas Cowboys", - "sF": "36", - "sU": "28", - "spread": "8", - "ou": null - }, - { - "date": "Oct 22, 1989", - "at": "@", - "fav": "Miami Dolphins", - "und": "Green Bay Packers", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 1989", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Los Angeles Raiders", - "sF": "10", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 1989", - "at": "@", - "fav": "Washington Redskins", - "und": "Tampa Bay Buccaneers", - "sF": "32", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Oct 22, 1989", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "21", - "sU": "40", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 1989", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 22, 1989", - "at": null, - "fav": "New York Giants", - "und": "San Diego Chargers", - "sF": "20", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Oct 22, 1989", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New England Patriots", - "sF": "37", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Oct 22, 1989", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Denver Broncos", - "sF": "21", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 1989", - "at": "@", - "fav": "Cleveland Browns", - "und": "Chicago Bears", - "sF": "27", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Oct 29, 1989", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "31", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 29, 1989", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 29, 1989", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Tampa Bay Buccaneers", - "sF": "56", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 1989", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "28", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 29, 1989", - "at": null, - "fav": "Phoenix Cardinals", - "und": "Dallas Cowboys", - "sF": "19", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 1989", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "23", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 1989", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "20", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 1989", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 29, 1989", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "23", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 29, 1989", - "at": "@", - "fav": "Denver Broncos", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 1989", - "at": null, - "fav": "Washington Redskins", - "und": "Los Angeles Raiders", - "sF": "24", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Oct 29, 1989", - "at": null, - "fav": "San Francisco 49ers", - "und": "New York Jets", - "sF": "23", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 29, 1989", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "10", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 30, 1989", - "at": "@", - "fav": "New York Giants", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 5, 1989", - "at": null, - "fav": "Buffalo Bills", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 1989", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "13", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 1989", - "at": "@", - "fav": "Houston Oilers", - "und": "Detroit Lions", - "sF": "35", - "sU": "31", - "spread": "10", - "ou": null - }, - { - "date": "Nov 5, 1989", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 5, 1989", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "19", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 1989", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "23", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 5, 1989", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "26", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Nov 5, 1989", - "at": null, - "fav": "Cleveland Browns", - "und": "Tampa Bay Buccaneers", - "sF": "42", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 1989", - "at": "@", - "fav": "Denver Broncos", - "und": "Pittsburgh Steelers", - "sF": "34", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 5, 1989", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Los Angeles Raiders", - "sF": "7", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Nov 5, 1989", - "at": null, - "fav": "New York Giants", - "und": "Phoenix Cardinals", - "sF": "20", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 1989", - "at": null, - "fav": "Philadelphia Eagles", - "und": "San Diego Chargers", - "sF": "17", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 5, 1989", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "3", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Nov 6, 1989", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "31", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Nov 12, 1989", - "at": "@", - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "30", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 12, 1989", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "22", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Nov 12, 1989", - "at": null, - "fav": "New Orleans Saints", - "und": "New England Patriots", - "sF": "28", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 1989", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "31", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 1989", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "3", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 12, 1989", - "at": null, - "fav": "Chicago Bears", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 1989", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 12, 1989", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New York Giants", - "sF": "31", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 12, 1989", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 12, 1989", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "45", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Nov 12, 1989", - "at": null, - "fav": "Cleveland Browns", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 12, 1989", - "at": null, - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "12", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 1989", - "at": "@", - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Nov 19, 1989", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "26", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 1989", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "32", - "spread": "11", - "ou": null - }, - { - "date": "Nov 19, 1989", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Detroit Lions", - "sF": "42", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 19, 1989", - "at": "@", - "fav": "Cleveland Browns", - "und": "Kansas City Chiefs", - "sF": "10", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 19, 1989", - "at": null, - "fav": "Miami Dolphins", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 19, 1989", - "at": null, - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "24", - "sU": "33", - "spread": "5", - "ou": null - }, - { - "date": "Nov 19, 1989", - "at": null, - "fav": "Minnesota Vikings", - "und": "Philadelphia Eagles", - "sF": "9", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Nov 19, 1989", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 1989", - "at": "@", - "fav": "Houston Oilers", - "und": "Los Angeles Raiders", - "sF": "23", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 19, 1989", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Phoenix Cardinals", - "sF": "37", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Nov 19, 1989", - "at": "@", - "fav": "New York Giants", - "und": "Seattle Seahawks", - "sF": "15", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Nov 19, 1989", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "17", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Nov 19, 1989", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "27", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 20, 1989", - "at": "@", - "fav": "Washington Redskins", - "und": "Denver Broncos", - "sF": "10", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Nov 23, 1989", - "at": null, - "fav": "Cleveland Browns", - "und": "Detroit Lions", - "sF": "10", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 1989", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 26, 1989", - "at": "@", - "fav": "Buffalo Bills", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1989", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "19", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1989", - "at": "@", - "fav": "Indianapolis Colts", - "und": "San Diego Chargers", - "sF": "10", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Nov 26, 1989", - "at": null, - "fav": "Houston Oilers", - "und": "Kansas City Chiefs", - "sF": "0", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Nov 26, 1989", - "at": "@", - "fav": "Miami Dolphins", - "und": "Pittsburgh Steelers", - "sF": "14", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Nov 26, 1989", - "at": "@", - "fav": "New York Jets", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 26, 1989", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "41", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Nov 26, 1989", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "New England Patriots", - "sF": "24", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 26, 1989", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Nov 26, 1989", - "at": null, - "fav": "Chicago Bears", - "und": "Washington Redskins", - "sF": "14", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Nov 27, 1989", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "34", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Dec 3, 1989", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Dec 3, 1989", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "0", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Dec 3, 1989", - "at": null, - "fav": "Los Angeles Rams", - "und": "Dallas Cowboys", - "sF": "35", - "sU": "31", - "spread": "10", - "ou": null - }, - { - "date": "Dec 3, 1989", - "at": null, - "fav": "New Orleans Saints", - "und": "Detroit Lions", - "sF": "14", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Dec 3, 1989", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Miami Dolphins", - "sF": "26", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Dec 3, 1989", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "22", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Dec 3, 1989", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 1989", - "at": null, - "fav": "Houston Oilers", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 1989", - "at": null, - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Dec 3, 1989", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Denver Broncos", - "sF": "16", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 3, 1989", - "at": null, - "fav": "Washington Redskins", - "und": "Phoenix Cardinals", - "sF": "29", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 3, 1989", - "at": "@", - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "17", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Dec 3, 1989", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "27", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Dec 4, 1989", - "at": null, - "fav": "Buffalo Bills", - "und": "Seattle Seahawks", - "sF": "16", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 10, 1989", - "at": "@", - "fav": "Buffalo Bills", - "und": "New Orleans Saints", - "sF": "19", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Dec 10, 1989", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "17", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 10, 1989", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Dec 10, 1989", - "at": "@", - "fav": "Green Bay Packers", - "und": "Kansas City Chiefs", - "sF": "3", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 1989", - "at": "@", - "fav": "Houston Oilers", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 10, 1989", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "43", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Dec 10, 1989", - "at": "@", - "fav": "New York Jets", - "und": "Pittsburgh Steelers", - "sF": "0", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 10, 1989", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Dec 10, 1989", - "at": "@", - "fav": "Washington Redskins", - "und": "San Diego Chargers", - "sF": "26", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Dec 10, 1989", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Giants", - "sF": "7", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 1989", - "at": null, - "fav": "Cleveland Browns", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Dec 10, 1989", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Phoenix Cardinals", - "sF": "16", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Dec 10, 1989", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "31", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 11, 1989", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 16, 1989", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "15", - "sU": "0", - "spread": "12", - "ou": null - }, - { - "date": "Dec 16, 1989", - "at": null, - "fav": "Denver Broncos", - "und": "Phoenix Cardinals", - "sF": "37", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Dec 17, 1989", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "28", - "sU": "40", - "spread": "2", - "ou": null - }, - { - "date": "Dec 17, 1989", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "61", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 1989", - "at": null, - "fav": "Minnesota Vikings", - "und": "Cleveland Browns", - "sF": "17", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Dec 17, 1989", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "33", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 1989", - "at": null, - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "13", - "sU": "42", - "spread": "1", - "ou": null - }, - { - "date": "Dec 17, 1989", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "13", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Dec 17, 1989", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New England Patriots", - "sF": "28", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 1989", - "at": null, - "fav": "Washington Redskins", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Dec 17, 1989", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New York Jets", - "sF": "38", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Dec 17, 1989", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Buffalo Bills", - "sF": "21", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 1989", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Dec 18, 1989", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New Orleans Saints", - "sF": "20", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Dec 23, 1989", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "37", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Dec 23, 1989", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Washington Redskins", - "sF": "0", - "sU": "29", - "spread": "2", - "ou": null - }, - { - "date": "Dec 23, 1989", - "at": "@", - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "20", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 1989", - "at": null, - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 1989", - "at": null, - "fav": "Green Bay Packers", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 24, 1989", - "at": "@", - "fav": "Miami Dolphins", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 1989", - "at": null, - "fav": "Los Angeles Rams", - "und": "New England Patriots", - "sF": "24", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 24, 1989", - "at": "@", - "fav": "New Orleans Saints", - "und": "Indianapolis Colts", - "sF": "41", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Dec 24, 1989", - "at": "@", - "fav": "New York Giants", - "und": "Los Angeles Raiders", - "sF": "34", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 24, 1989", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Phoenix Cardinals", - "sF": "31", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Dec 24, 1989", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 1989", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "16", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Dec 24, 1989", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "26", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Dec 25, 1989", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Cincinnati Bengals", - "sF": "29", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Dec 31, 1989", - "at": "@", - "fav": "Philadelphia Eagles (4)", - "und": "Los Angeles Rams (5)", - "sF": "7", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 31, 1989", - "at": "@", - "fav": "Houston Oilers (4)", - "und": "Pittsburgh Steelers (5)", - "sF": "23", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Jan 6, 1990", - "at": "@", - "fav": "Cleveland Browns (2)", - "und": "Buffalo Bills (3)", - "sF": "34", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Jan 6, 1990", - "at": "@", - "fav": "San Francisco 49ers (1)", - "und": "Minnesota Vikings (3)", - "sF": "41", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Jan 7, 1990", - "at": "@", - "fav": "New York Giants (2)", - "und": "Los Angeles Rams (5)", - "sF": "13", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Jan 7, 1990", - "at": "@", - "fav": "Denver Broncos (1)", - "und": "Pittsburgh Steelers (5)", - "sF": "24", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Jan 14, 1990", - "at": "@", - "fav": "Denver Broncos (1)", - "und": "Cleveland Browns (2)", - "sF": "37", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Jan 14, 1990", - "at": "@", - "fav": "San Francisco 49ers (1)", - "und": "Los Angeles Rams (5)", - "sF": "30", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Jan 28, 1990", - "at": "N", - "fav": "San Francisco 49ers (1)", - "und": "Denver Broncos (1)", - "sF": "55", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Sep 9, 1990", - "at": "@", - "fav": "Chicago Bears", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Sep 9, 1990", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Sep 9, 1990", - "at": null, - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "24", - "sU": "36", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 1990", - "at": null, - "fav": "Minnesota Vikings", - "und": "Kansas City Chiefs", - "sF": "21", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Sep 9, 1990", - "at": "@", - "fav": "Washington Redskins", - "und": "Phoenix Cardinals", - "sF": "31", - "sU": "0", - "spread": "12", - "ou": null - }, - { - "date": "Sep 9, 1990", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Houston Oilers", - "sF": "47", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Sep 9, 1990", - "at": "@", - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "26", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 9, 1990", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New York Jets", - "sF": "25", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Sep 9, 1990", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 1990", - "at": null, - "fav": "San Diego Chargers", - "und": "Dallas Cowboys", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 1990", - "at": null, - "fav": "Denver Broncos", - "und": "Los Angeles Raiders", - "sF": "9", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Sep 9, 1990", - "at": null, - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "27", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Sep 9, 1990", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 10, 1990", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "13", - "sU": "12", - "spread": "4", - "ou": null - }, - { - "date": "Sep 16, 1990", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 1990", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "13", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 1990", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "14", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Sep 16, 1990", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "7", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Sep 16, 1990", - "at": null, - "fav": "Cleveland Browns", - "und": "New York Jets", - "sF": "21", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 16, 1990", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Phoenix Cardinals", - "sF": "21", - "sU": "23", - "spread": "13", - "ou": null - }, - { - "date": "Sep 16, 1990", - "at": null, - "fav": "Los Angeles Rams", - "und": "Tampa Bay Buccaneers", - "sF": "35", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 1990", - "at": null, - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "28", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 16, 1990", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "32", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 16, 1990", - "at": null, - "fav": "Cincinnati Bengals", - "und": "San Diego Chargers", - "sF": "21", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 1990", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "26", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Sep 16, 1990", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Sep 16, 1990", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "20", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 1990", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Sep 23, 1990", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "19", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Sep 23, 1990", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New England Patriots", - "sF": "41", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Sep 23, 1990", - "at": "@", - "fav": "Cleveland Browns", - "und": "San Diego Chargers", - "sF": "14", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Sep 23, 1990", - "at": "@", - "fav": "Green Bay Packers", - "und": "Kansas City Chiefs", - "sF": "3", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 23, 1990", - "at": "@", - "fav": "Houston Oilers", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Sep 23, 1990", - "at": "@", - "fav": "New Orleans Saints", - "und": "Phoenix Cardinals", - "sF": "28", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Sep 23, 1990", - "at": "@", - "fav": "New York Giants", - "und": "Miami Dolphins", - "sF": "20", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 23, 1990", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "19", - "sU": "15", - "spread": "14", - "ou": null - }, - { - "date": "Sep 23, 1990", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "31", - "spread": "9", - "ou": null - }, - { - "date": "Sep 23, 1990", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Sep 23, 1990", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Sep 23, 1990", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "19", - "sU": "13", - "spread": "11", - "ou": null - }, - { - "date": "Sep 23, 1990", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 1990", - "at": "@", - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "29", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 1990", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "21", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 1990", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Sep 30, 1990", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Sep 30, 1990", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Indianapolis Colts", - "sF": "23", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Sep 30, 1990", - "at": null, - "fav": "Miami Dolphins", - "und": "Pittsburgh Steelers", - "sF": "28", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 1990", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cleveland Browns", - "sF": "34", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Sep 30, 1990", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Chicago Bears", - "sF": "24", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Sep 30, 1990", - "at": "@", - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "7", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 1990", - "at": null, - "fav": "Washington Redskins", - "und": "Phoenix Cardinals", - "sF": "38", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 1, 1990", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Seattle Seahawks", - "sF": "16", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Oct 7, 1990", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "28", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 7, 1990", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Dallas Cowboys", - "sF": "10", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 7, 1990", - "at": null, - "fav": "San Francisco 49ers", - "und": "Houston Oilers", - "sF": "24", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Oct 7, 1990", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Indianapolis Colts", - "sF": "19", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 1990", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "20", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 1990", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "27", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Oct 7, 1990", - "at": null, - "fav": "Seattle Seahawks", - "und": "New England Patriots", - "sF": "33", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 1990", - "at": null, - "fav": "San Diego Chargers", - "und": "Pittsburgh Steelers", - "sF": "14", - "sU": "36", - "spread": "1", - "ou": null - }, - { - "date": "Oct 7, 1990", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "27", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Oct 7, 1990", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "34", - "spread": "5", - "ou": null - }, - { - "date": "Oct 7, 1990", - "at": "@", - "fav": "Buffalo Bills", - "und": "Los Angeles Raiders", - "sF": "38", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 1990", - "at": "@", - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "29", - "sU": "30", - "spread": "9", - "ou": null - }, - { - "date": "Oct 14, 1990", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "45", - "sU": "35", - "spread": "5", - "ou": null - }, - { - "date": "Oct 14, 1990", - "at": "@", - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "48", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 14, 1990", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Detroit Lions", - "sF": "43", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 14, 1990", - "at": "@", - "fav": "New Orleans Saints", - "und": "Cleveland Browns", - "sF": "25", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Oct 14, 1990", - "at": "@", - "fav": "New York Jets", - "und": "San Diego Chargers", - "sF": "3", - "sU": "39", - "spread": "4", - "ou": null - }, - { - "date": "Oct 14, 1990", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Green Bay Packers", - "sF": "26", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 14, 1990", - "at": "@", - "fav": "Denver Broncos", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Oct 14, 1990", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 14, 1990", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Oct 14, 1990", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "24", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Oct 14, 1990", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "38", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Oct 15, 1990", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Minnesota Vikings", - "sF": "32", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Oct 18, 1990", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "17", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Oct 21, 1990", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "30", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Oct 21, 1990", - "at": "@", - "fav": "Houston Oilers", - "und": "New Orleans Saints", - "sF": "23", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Oct 21, 1990", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Denver Broncos", - "sF": "17", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 21, 1990", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Dallas Cowboys", - "sF": "13", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Oct 21, 1990", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Oct 21, 1990", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "44", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 21, 1990", - "at": "@", - "fav": "New York Giants", - "und": "Phoenix Cardinals", - "sF": "20", - "sU": "19", - "spread": "13", - "ou": null - }, - { - "date": "Oct 21, 1990", - "at": null, - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "24", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 1990", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Oct 21, 1990", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "19", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Oct 22, 1990", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "13", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Oct 28, 1990", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "21", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 1990", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 28, 1990", - "at": "@", - "fav": "Houston Oilers", - "und": "New York Jets", - "sF": "12", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Oct 28, 1990", - "at": null, - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "27", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Oct 28, 1990", - "at": null, - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "27", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 28, 1990", - "at": "@", - "fav": "New Orleans Saints", - "und": "Detroit Lions", - "sF": "10", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Oct 28, 1990", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "21", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 1990", - "at": null, - "fav": "Chicago Bears", - "und": "Phoenix Cardinals", - "sF": "31", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Oct 28, 1990", - "at": "@", - "fav": "San Diego Chargers", - "und": "Tampa Bay Buccaneers", - "sF": "41", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 1990", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Cleveland Browns", - "sF": "20", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Oct 29, 1990", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Los Angeles Rams", - "sF": "41", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Nov 4, 1990", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New Orleans Saints", - "sF": "7", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 4, 1990", - "at": null, - "fav": "Washington Redskins", - "und": "Detroit Lions", - "sF": "41", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 1990", - "at": null, - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "24", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 4, 1990", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Raiders", - "sF": "9", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 4, 1990", - "at": "@", - "fav": "Miami Dolphins", - "und": "Phoenix Cardinals", - "sF": "23", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Nov 4, 1990", - "at": "@", - "fav": "New York Jets", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Nov 4, 1990", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New England Patriots", - "sF": "48", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Nov 4, 1990", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Nov 4, 1990", - "at": null, - "fav": "Buffalo Bills", - "und": "Cleveland Browns", - "sF": "42", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 1990", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Houston Oilers", - "sF": "17", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Nov 4, 1990", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "14", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Nov 4, 1990", - "at": null, - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "26", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Nov 4, 1990", - "at": null, - "fav": "Denver Broncos", - "und": "Minnesota Vikings", - "sF": "22", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 5, 1990", - "at": null, - "fav": "New York Giants", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 11, 1990", - "at": "@", - "fav": "Buffalo Bills", - "und": "Phoenix Cardinals", - "sF": "45", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Nov 11, 1990", - "at": "@", - "fav": "Chicago Bears", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Nov 11, 1990", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "7", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 11, 1990", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "16", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 11, 1990", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "10", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 11, 1990", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "35", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 11, 1990", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "17", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 1990", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Green Bay Packers", - "sF": "16", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Nov 11, 1990", - "at": null, - "fav": "New York Giants", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 11, 1990", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "19", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 11, 1990", - "at": null, - "fav": "San Francisco 49ers", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Nov 12, 1990", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "28", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 1990", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Nov 18, 1990", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "14", - "sU": "0", - "spread": "15", - "ou": null - }, - { - "date": "Nov 18, 1990", - "at": null, - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "35", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 1990", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "27", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 1990", - "at": "@", - "fav": "New York Giants", - "und": "Detroit Lions", - "sF": "20", - "sU": "0", - "spread": "12", - "ou": null - }, - { - "date": "Nov 18, 1990", - "at": "@", - "fav": "Washington Redskins", - "und": "New Orleans Saints", - "sF": "31", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 1990", - "at": null, - "fav": "Chicago Bears", - "und": "Denver Broncos", - "sF": "16", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 18, 1990", - "at": null, - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 1990", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Dallas Cowboys", - "sF": "21", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Nov 18, 1990", - "at": null, - "fav": "Green Bay Packers", - "und": "Phoenix Cardinals", - "sF": "24", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Nov 18, 1990", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Nov 18, 1990", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 1990", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Nov 19, 1990", - "at": "@", - "fav": "Miami Dolphins", - "und": "Los Angeles Raiders", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 1990", - "at": "@", - "fav": "Detroit Lions", - "und": "Denver Broncos", - "sF": "40", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 1990", - "at": null, - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Nov 25, 1990", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "34", - "spread": "11", - "ou": null - }, - { - "date": "Nov 25, 1990", - "at": null, - "fav": "Miami Dolphins", - "und": "Cleveland Browns", - "sF": "30", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Nov 25, 1990", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 25, 1990", - "at": null, - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "41", - "spread": "2", - "ou": null - }, - { - "date": "Nov 25, 1990", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 25, 1990", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 1990", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 25, 1990", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "24", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 1990", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "New England Patriots", - "sF": "34", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Nov 25, 1990", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "17", - "sU": "28", - "spread": "11", - "ou": null - }, - { - "date": "Nov 25, 1990", - "at": "@", - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1990", - "at": "@", - "fav": "Houston Oilers", - "und": "Buffalo Bills", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 1990", - "at": "@", - "fav": "Buffalo Bills", - "und": "Philadelphia Eagles", - "sF": "30", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 1990", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "23", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 2, 1990", - "at": null, - "fav": "Los Angeles Rams", - "und": "Cleveland Browns", - "sF": "38", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 1990", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New England Patriots", - "sF": "37", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Dec 2, 1990", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "12", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Dec 2, 1990", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 2, 1990", - "at": "@", - "fav": "Washington Redskins", - "und": "Miami Dolphins", - "sF": "42", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 1990", - "at": null, - "fav": "New Orleans Saints", - "und": "Dallas Cowboys", - "sF": "13", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 2, 1990", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Denver Broncos", - "sF": "23", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Dec 2, 1990", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 2, 1990", - "at": "@", - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "38", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 2, 1990", - "at": null, - "fav": "Houston Oilers", - "und": "Seattle Seahawks", - "sF": "10", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 2, 1990", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "23", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 3, 1990", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "7", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 1990", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Phoenix Cardinals", - "sF": "13", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Dec 9, 1990", - "at": null, - "fav": "San Francisco 49ers", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 1990", - "at": "@", - "fav": "Green Bay Packers", - "und": "Seattle Seahawks", - "sF": "14", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 1990", - "at": "@", - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "58", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Dec 9, 1990", - "at": null, - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Dec 9, 1990", - "at": "@", - "fav": "New York Giants", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "15", - "spread": "6", - "ou": null - }, - { - "date": "Dec 9, 1990", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New England Patriots", - "sF": "24", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Dec 9, 1990", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "31", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 9, 1990", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "20", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Dec 9, 1990", - "at": "@", - "fav": "Washington Redskins", - "und": "Chicago Bears", - "sF": "10", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Dec 9, 1990", - "at": "@", - "fav": "Miami Dolphins", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 10, 1990", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Detroit Lions", - "sF": "38", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 1990", - "at": "@", - "fav": "New York Giants", - "und": "Buffalo Bills", - "sF": "13", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 15, 1990", - "at": null, - "fav": "Washington Redskins", - "und": "New England Patriots", - "sF": "25", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Dec 16, 1990", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Phoenix Cardinals", - "sF": "41", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 16, 1990", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "10", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 1990", - "at": "@", - "fav": "Miami Dolphins", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 16, 1990", - "at": "@", - "fav": "New Orleans Saints", - "und": "Pittsburgh Steelers", - "sF": "6", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 1990", - "at": "@", - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "21", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 1990", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Dec 16, 1990", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "20", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Dec 16, 1990", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 16, 1990", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Green Bay Packers", - "sF": "31", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Dec 16, 1990", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "21", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 1990", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "26", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 22, 1990", - "at": null, - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 1990", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Dec 22, 1990", - "at": null, - "fav": "Washington Redskins", - "und": "Indianapolis Colts", - "sF": "28", - "sU": "35", - "spread": "5", - "ou": null - }, - { - "date": "Dec 23, 1990", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 1990", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "24", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 1990", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 23, 1990", - "at": null, - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "40", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 1990", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "42", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 23, 1990", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Dec 23, 1990", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "35", - "sU": "0", - "spread": "11", - "ou": null - }, - { - "date": "Dec 23, 1990", - "at": null, - "fav": "New York Giants", - "und": "Phoenix Cardinals", - "sF": "24", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Dec 23, 1990", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "24", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 1990", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "10", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Dec 23, 1990", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Denver Broncos", - "sF": "17", - "sU": "12", - "spread": "5", - "ou": null - }, - { - "date": "Dec 29, 1990", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Chicago Bears", - "sF": "21", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Dec 29, 1990", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Phoenix Cardinals", - "sF": "23", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 30, 1990", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Dallas Cowboys", - "sF": "26", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 30, 1990", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "21", - "sU": "14", - "spread": "16", - "ou": null - }, - { - "date": "Dec 30, 1990", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "23", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 30, 1990", - "at": null, - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 30, 1990", - "at": null, - "fav": "New York Giants", - "und": "New England Patriots", - "sF": "13", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Dec 30, 1990", - "at": "@", - "fav": "Washington Redskins", - "und": "Buffalo Bills", - "sF": "29", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 30, 1990", - "at": "@", - "fav": "Denver Broncos", - "und": "Green Bay Packers", - "sF": "22", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 30, 1990", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "17", - "sU": "12", - "spread": "10", - "ou": null - }, - { - "date": "Dec 30, 1990", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Detroit Lions", - "sF": "30", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 30, 1990", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New York Jets", - "sF": "14", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 30, 1990", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "14", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Dec 31, 1990", - "at": "@", - "fav": "New Orleans Saints", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Jan 5, 1991", - "at": "@", - "fav": "Philadelphia Eagles (4)", - "und": "Washington Redskins (5)", - "sF": "6", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Jan 5, 1991", - "at": "@", - "fav": "Miami Dolphins (4)", - "und": "Kansas City Chiefs (5)", - "sF": "17", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Jan 6, 1991", - "at": "@", - "fav": "Cincinnati Bengals (3)", - "und": "Houston Oilers (6)", - "sF": "41", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Jan 6, 1991", - "at": "@", - "fav": "Chicago Bears (3)", - "und": "New Orleans Saints (6)", - "sF": "16", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Jan 12, 1991", - "at": "@", - "fav": "Buffalo Bills (1)", - "und": "Miami Dolphins (4)", - "sF": "44", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Jan 12, 1991", - "at": "@", - "fav": "San Francisco 49ers (1)", - "und": "Washington Redskins (5)", - "sF": "28", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Jan 13, 1991", - "at": "@", - "fav": "New York Giants (2)", - "und": "Chicago Bears (3)", - "sF": "31", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Jan 13, 1991", - "at": "@", - "fav": "Los Angeles Raiders (2)", - "und": "Cincinnati Bengals (3)", - "sF": "20", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Jan 20, 1991", - "at": "@", - "fav": "Buffalo Bills (1)", - "und": "Los Angeles Raiders (2)", - "sF": "51", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Jan 20, 1991", - "at": "@", - "fav": "San Francisco 49ers (1)", - "und": "New York Giants (2)", - "sF": "13", - "sU": "15", - "spread": "8", - "ou": null - }, - { - "date": "Jan 27, 1991", - "at": "N", - "fav": "Buffalo Bills (1)", - "und": "New York Giants (2)", - "sF": "19", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 1, 1991", - "at": null, - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "26", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Sep 1, 1991", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Green Bay Packers", - "sF": "20", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Sep 1, 1991", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Sep 1, 1991", - "at": "@", - "fav": "New Orleans Saints", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Sep 1, 1991", - "at": "@", - "fav": "New York Jets", - "und": "Tampa Bay Buccaneers", - "sF": "16", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 1, 1991", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "35", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Sep 1, 1991", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "10", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Sep 1, 1991", - "at": "@", - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "45", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Sep 1, 1991", - "at": "@", - "fav": "Houston Oilers", - "und": "Los Angeles Raiders", - "sF": "47", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 1, 1991", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "7", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Sep 1, 1991", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Phoenix Cardinals", - "sF": "14", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 1, 1991", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "26", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 1, 1991", - "at": "@", - "fav": "Washington Redskins", - "und": "Detroit Lions", - "sF": "45", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Sep 2, 1991", - "at": "@", - "fav": "New York Giants", - "und": "San Francisco 49ers", - "sF": "16", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Sep 8, 1991", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Minnesota Vikings", - "sF": "19", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Sep 8, 1991", - "at": "@", - "fav": "Buffalo Bills", - "und": "Pittsburgh Steelers", - "sF": "52", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Sep 8, 1991", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "23", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Sep 8, 1991", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New Orleans Saints", - "sF": "10", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 8, 1991", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "6", - "spread": "8", - "ou": null - }, - { - "date": "Sep 8, 1991", - "at": null, - "fav": "Cleveland Browns", - "und": "New England Patriots", - "sF": "20", - "sU": "0", - "spread": "1", - "ou": null - }, - { - "date": "Sep 8, 1991", - "at": "@", - "fav": "New York Giants", - "und": "Los Angeles Rams", - "sF": "13", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Sep 8, 1991", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Phoenix Cardinals", - "sF": "10", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Sep 8, 1991", - "at": null, - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 1991", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Denver Broncos", - "sF": "16", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Sep 8, 1991", - "at": "@", - "fav": "San Francisco 49ers", - "und": "San Diego Chargers", - "sF": "34", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Sep 8, 1991", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New York Jets", - "sF": "20", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Sep 8, 1991", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "7", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Sep 9, 1991", - "at": null, - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "33", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Sep 15, 1991", - "at": null, - "fav": "New York Giants", - "und": "Chicago Bears", - "sF": "17", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Sep 15, 1991", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "13", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 1991", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "0", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 1991", - "at": null, - "fav": "Miami Dolphins", - "und": "Detroit Lions", - "sF": "13", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 1991", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "15", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 1991", - "at": null, - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 1991", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New England Patriots", - "sF": "20", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Sep 15, 1991", - "at": "@", - "fav": "Washington Redskins", - "und": "Phoenix Cardinals", - "sF": "34", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Sep 15, 1991", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "16", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 15, 1991", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Indianapolis Colts", - "sF": "16", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Sep 15, 1991", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "23", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Sep 15, 1991", - "at": "@", - "fav": "San Diego Chargers", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 15, 1991", - "at": "@", - "fav": "New Orleans Saints", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 1991", - "at": "@", - "fav": "Houston Oilers", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 22, 1991", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Sep 22, 1991", - "at": null, - "fav": "Washington Redskins", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 1991", - "at": null, - "fav": "Detroit Lions", - "und": "Indianapolis Colts", - "sF": "33", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Sep 22, 1991", - "at": "@", - "fav": "Miami Dolphins", - "und": "Green Bay Packers", - "sF": "16", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Sep 22, 1991", - "at": null, - "fav": "Houston Oilers", - "und": "New England Patriots", - "sF": "20", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Sep 22, 1991", - "at": "@", - "fav": "New Orleans Saints", - "und": "Minnesota Vikings", - "sF": "26", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 1991", - "at": "@", - "fav": "New York Giants", - "und": "Cleveland Browns", - "sF": "13", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Sep 22, 1991", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 1991", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "27", - "sU": "19", - "spread": "8", - "ou": null - }, - { - "date": "Sep 22, 1991", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Sep 22, 1991", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "27", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 22, 1991", - "at": null, - "fav": "Buffalo Bills", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Sep 22, 1991", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "Dallas Cowboys", - "sF": "9", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 23, 1991", - "at": "@", - "fav": "Chicago Bears", - "und": "New York Jets", - "sF": "19", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Sep 29, 1991", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 1991", - "at": "@", - "fav": "Buffalo Bills", - "und": "Chicago Bears", - "sF": "35", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Sep 29, 1991", - "at": null, - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "16", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 1991", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 29, 1991", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Raiders", - "sF": "6", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 1991", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "23", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 29, 1991", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "23", - "sU": "41", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 1991", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "New England Patriots", - "sF": "24", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 29, 1991", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "14", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 1991", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Sep 29, 1991", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Denver Broncos", - "sF": "6", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Sep 30, 1991", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Oct 6, 1991", - "at": null, - "fav": "Washington Redskins", - "und": "Chicago Bears", - "sF": "20", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1991", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Seattle Seahawks", - "sF": "7", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1991", - "at": null, - "fav": "New York Jets", - "und": "Cleveland Browns", - "sF": "17", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 6, 1991", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1991", - "at": null, - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 6, 1991", - "at": "@", - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "42", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 6, 1991", - "at": null, - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "20", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 6, 1991", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1991", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "13", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 6, 1991", - "at": "@", - "fav": "New York Giants", - "und": "Phoenix Cardinals", - "sF": "20", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Oct 6, 1991", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Indianapolis Colts", - "sF": "21", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 1991", - "at": null, - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "6", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 1991", - "at": "@", - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "42", - "sU": "6", - "spread": "20", - "ou": null - }, - { - "date": "Oct 13, 1991", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Cincinnati Bengals", - "sF": "35", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 1991", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Phoenix Cardinals", - "sF": "34", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 1991", - "at": null, - "fav": "New Orleans Saints", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 1991", - "at": "@", - "fav": "Washington Redskins", - "und": "Cleveland Browns", - "sF": "42", - "sU": "17", - "spread": "14", - "ou": null - }, - { - "date": "Oct 13, 1991", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Miami Dolphins", - "sF": "42", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 13, 1991", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Diego Chargers", - "sF": "30", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 1991", - "at": null, - "fav": "Houston Oilers", - "und": "New York Jets", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 1991", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "39", - "spread": "10", - "ou": null - }, - { - "date": "Oct 13, 1991", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Los Angeles Raiders", - "sF": "20", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 14, 1991", - "at": null, - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 1991", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "10", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 1991", - "at": null, - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "6", - "spread": "12", - "ou": null - }, - { - "date": "Oct 20, 1991", - "at": null, - "fav": "Houston Oilers", - "und": "Miami Dolphins", - "sF": "17", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Oct 20, 1991", - "at": null, - "fav": "Minnesota Vikings", - "und": "New England Patriots", - "sF": "23", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Oct 20, 1991", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Oct 20, 1991", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Seattle Seahawks", - "sF": "7", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 1991", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "16", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Oct 20, 1991", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 20, 1991", - "at": null, - "fav": "Atlanta Falcons", - "und": "Phoenix Cardinals", - "sF": "10", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Oct 20, 1991", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cleveland Browns", - "sF": "24", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Oct 20, 1991", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "35", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Oct 21, 1991", - "at": "@", - "fav": "Buffalo Bills", - "und": "Cincinnati Bengals", - "sF": "35", - "sU": "16", - "spread": "13", - "ou": null - }, - { - "date": "Oct 27, 1991", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 1991", - "at": "@", - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "35", - "sU": "3", - "spread": "15", - "ou": null - }, - { - "date": "Oct 27, 1991", - "at": "@", - "fav": "New Orleans Saints", - "und": "Chicago Bears", - "sF": "17", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 27, 1991", - "at": null, - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Oct 27, 1991", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Green Bay Packers", - "sF": "0", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 1991", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 27, 1991", - "at": "@", - "fav": "Detroit Lions", - "und": "Dallas Cowboys", - "sF": "34", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 1991", - "at": null, - "fav": "Denver Broncos", - "und": "New England Patriots", - "sF": "9", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Oct 27, 1991", - "at": null, - "fav": "Minnesota Vikings", - "und": "Phoenix Cardinals", - "sF": "28", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 1991", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "20", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Oct 27, 1991", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "17", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Oct 28, 1991", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Raiders", - "sF": "24", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 3, 1991", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 3, 1991", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "22", - "sU": "17", - "spread": "17", - "ou": null - }, - { - "date": "Nov 3, 1991", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "20", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 3, 1991", - "at": null, - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 3, 1991", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "28", - "sU": "13", - "spread": "11", - "ou": null - }, - { - "date": "Nov 3, 1991", - "at": "@", - "fav": "New York Jets", - "und": "Green Bay Packers", - "sF": "19", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Nov 3, 1991", - "at": "@", - "fav": "Washington Redskins", - "und": "Houston Oilers", - "sF": "16", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 3, 1991", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Phoenix Cardinals", - "sF": "27", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Nov 3, 1991", - "at": null, - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "10", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Nov 3, 1991", - "at": null, - "fav": "New Orleans Saints", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 3, 1991", - "at": "@", - "fav": "Denver Broncos", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 4, 1991", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "7", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 1991", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "33", - "spread": "1", - "ou": null - }, - { - "date": "Nov 10, 1991", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Cleveland Browns", - "sF": "32", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Nov 10, 1991", - "at": null, - "fav": "Buffalo Bills", - "und": "Green Bay Packers", - "sF": "34", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 10, 1991", - "at": "@", - "fav": "Houston Oilers", - "und": "Dallas Cowboys", - "sF": "26", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Nov 10, 1991", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "10", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Nov 10, 1991", - "at": "@", - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "27", - "sU": "28", - "spread": "13", - "ou": null - }, - { - "date": "Nov 10, 1991", - "at": null, - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 1991", - "at": "@", - "fav": "Washington Redskins", - "und": "Atlanta Falcons", - "sF": "56", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Nov 10, 1991", - "at": "@", - "fav": "Denver Broncos", - "und": "Los Angeles Raiders", - "sF": "16", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 1991", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Los Angeles Rams", - "sF": "27", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 10, 1991", - "at": null, - "fav": "New York Giants", - "und": "Phoenix Cardinals", - "sF": "21", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 10, 1991", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "14", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 10, 1991", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "30", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 11, 1991", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "17", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 1991", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "43", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 1991", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "35", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 17, 1991", - "at": null, - "fav": "Chicago Bears", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Nov 17, 1991", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "20", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 1991", - "at": null, - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "28", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 1991", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 17, 1991", - "at": null, - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "41", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 17, 1991", - "at": "@", - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "21", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 17, 1991", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 1991", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "22", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 1991", - "at": null, - "fav": "New Orleans Saints", - "und": "San Diego Chargers", - "sF": "21", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 17, 1991", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Phoenix Cardinals", - "sF": "14", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Nov 17, 1991", - "at": "@", - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "28", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Nov 18, 1991", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "41", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 1991", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Cincinnati Bengals", - "sF": "38", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 24, 1991", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Cleveland Browns", - "sF": "15", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 1991", - "at": "@", - "fav": "Green Bay Packers", - "und": "Indianapolis Colts", - "sF": "14", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 24, 1991", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "14", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Nov 24, 1991", - "at": null, - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "13", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Nov 24, 1991", - "at": null, - "fav": "Houston Oilers", - "und": "Pittsburgh Steelers", - "sF": "14", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Nov 24, 1991", - "at": null, - "fav": "New York Giants", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Nov 24, 1991", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "21", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Nov 24, 1991", - "at": "@", - "fav": "Chicago Bears", - "und": "Miami Dolphins", - "sF": "13", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Nov 24, 1991", - "at": "@", - "fav": "New York Jets", - "und": "San Diego Chargers", - "sF": "24", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 1991", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Phoenix Cardinals", - "sF": "34", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 24, 1991", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Denver Broncos", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 1991", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Nov 25, 1991", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "33", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 1991", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "16", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 1991", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 1, 1991", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Green Bay Packers", - "sF": "35", - "sU": "31", - "spread": "8", - "ou": null - }, - { - "date": "Dec 1, 1991", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "24", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Dec 1, 1991", - "at": null, - "fav": "Cleveland Browns", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Dec 1, 1991", - "at": "@", - "fav": "Miami Dolphins", - "und": "Tampa Bay Buccaneers", - "sF": "33", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Dec 1, 1991", - "at": null, - "fav": "New York Giants", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 1, 1991", - "at": "@", - "fav": "Denver Broncos", - "und": "New England Patriots", - "sF": "20", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Dec 1, 1991", - "at": null, - "fav": "Washington Redskins", - "und": "Los Angeles Rams", - "sF": "27", - "sU": "6", - "spread": "12", - "ou": null - }, - { - "date": "Dec 1, 1991", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "38", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 1, 1991", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "6", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Dec 1, 1991", - "at": null, - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "9", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Dec 2, 1991", - "at": "@", - "fav": "Houston Oilers", - "und": "Philadelphia Eagles", - "sF": "6", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 1991", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "27", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Dec 8, 1991", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "23", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 8, 1991", - "at": "@", - "fav": "Houston Oilers", - "und": "Pittsburgh Steelers", - "sF": "31", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Dec 8, 1991", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "20", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 8, 1991", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "23", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 8, 1991", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 1991", - "at": "@", - "fav": "Detroit Lions", - "und": "New York Jets", - "sF": "34", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Dec 8, 1991", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Buffalo Bills", - "sF": "27", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Dec 8, 1991", - "at": null, - "fav": "Atlanta Falcons", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 1991", - "at": null, - "fav": "Washington Redskins", - "und": "Phoenix Cardinals", - "sF": "20", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Dec 8, 1991", - "at": null, - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 1991", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "26", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 9, 1991", - "at": "@", - "fav": "Miami Dolphins", - "und": "Cincinnati Bengals", - "sF": "37", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Dec 14, 1991", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Dec 14, 1991", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 15, 1991", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Seattle Seahawks", - "sF": "26", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 1991", - "at": null, - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 1991", - "at": null, - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "21", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 1991", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 15, 1991", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "3", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 1991", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "13", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 1991", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 15, 1991", - "at": "@", - "fav": "Denver Broncos", - "und": "Phoenix Cardinals", - "sF": "24", - "sU": "19", - "spread": "11", - "ou": null - }, - { - "date": "Dec 15, 1991", - "at": null, - "fav": "Miami Dolphins", - "und": "San Diego Chargers", - "sF": "30", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Dec 15, 1991", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "34", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 15, 1991", - "at": null, - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "35", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Dec 16, 1991", - "at": "@", - "fav": "New Orleans Saints", - "und": "Los Angeles Raiders", - "sF": "27", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 1991", - "at": null, - "fav": "Houston Oilers", - "und": "New York Giants", - "sF": "20", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 1991", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "7", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 22, 1991", - "at": "@", - "fav": "Buffalo Bills", - "und": "Detroit Lions", - "sF": "14", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Dec 22, 1991", - "at": null, - "fav": "New England Patriots", - "und": "Cincinnati Bengals", - "sF": "7", - "sU": "29", - "spread": "2", - "ou": null - }, - { - "date": "Dec 22, 1991", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 1991", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "20", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Dec 22, 1991", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 1991", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Dec 22, 1991", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Kansas City Chiefs", - "sF": "21", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 22, 1991", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "22", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 1991", - "at": null, - "fav": "New Orleans Saints", - "und": "Phoenix Cardinals", - "sF": "27", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Dec 22, 1991", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 1991", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Los Angeles Rams", - "sF": "23", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Dec 23, 1991", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "52", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Dec 28, 1991", - "at": "@", - "fav": "Kansas City Chiefs (4)", - "und": "Los Angeles Raiders (5)", - "sF": "10", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Dec 28, 1991", - "at": "@", - "fav": "New Orleans Saints (3)", - "und": "Atlanta Falcons (6)", - "sF": "20", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 29, 1991", - "at": "@", - "fav": "Chicago Bears (4)", - "und": "Dallas Cowboys (5)", - "sF": "13", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 29, 1991", - "at": "@", - "fav": "Houston Oilers (3)", - "und": "New York Jets (6)", - "sF": "17", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Jan 4, 1992", - "at": "@", - "fav": "Washington Redskins (1)", - "und": "Atlanta Falcons (6)", - "sF": "24", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Jan 4, 1992", - "at": "@", - "fav": "Denver Broncos (2)", - "und": "Houston Oilers (3)", - "sF": "26", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Jan 5, 1992", - "at": "@", - "fav": "Buffalo Bills (1)", - "und": "Kansas City Chiefs (4)", - "sF": "37", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Jan 12, 1992", - "at": "@", - "fav": "Buffalo Bills (1)", - "und": "Denver Broncos (2)", - "sF": "10", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Jan 12, 1992", - "at": "@", - "fav": "Washington Redskins (1)", - "und": "Detroit Lions (2)", - "sF": "41", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Jan 26, 1992", - "at": "N", - "fav": "Washington Redskins (1)", - "und": "Buffalo Bills (1)", - "sF": "37", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 6, 1992", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New York Jets", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 6, 1992", - "at": "@", - "fav": "Buffalo Bills", - "und": "Los Angeles Rams", - "sF": "40", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Sep 6, 1992", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 6, 1992", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "23", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 6, 1992", - "at": "@", - "fav": "Houston Oilers", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "29", - "spread": "12", - "ou": null - }, - { - "date": "Sep 6, 1992", - "at": null, - "fav": "Cleveland Browns", - "und": "Indianapolis Colts", - "sF": "3", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 6, 1992", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New Orleans Saints", - "sF": "15", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 6, 1992", - "at": null, - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "31", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 6, 1992", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "24", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 6, 1992", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Cincinnati Bengals", - "sF": "3", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 6, 1992", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Phoenix Cardinals", - "sF": "23", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Sep 6, 1992", - "at": "@", - "fav": "Denver Broncos", - "und": "Los Angeles Raiders", - "sF": "17", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 1992", - "at": null, - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "10", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Sep 13, 1992", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 13, 1992", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 1992", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "26", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Sep 13, 1992", - "at": "@", - "fav": "New Orleans Saints", - "und": "Chicago Bears", - "sF": "28", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Sep 13, 1992", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "34", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 1992", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Green Bay Packers", - "sF": "31", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Sep 13, 1992", - "at": "@", - "fav": "Washington Redskins", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Sep 13, 1992", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "21", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Sep 13, 1992", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Oilers", - "sF": "10", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Sep 13, 1992", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New England Patriots", - "sF": "14", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Sep 13, 1992", - "at": null, - "fav": "New York Jets", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Sep 13, 1992", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Buffalo Bills", - "sF": "31", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 1992", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Phoenix Cardinals", - "sF": "31", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Sep 14, 1992", - "at": null, - "fav": "Miami Dolphins", - "und": "Cleveland Browns", - "sF": "27", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Sep 20, 1992", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "7", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Sep 20, 1992", - "at": "@", - "fav": "Houston Oilers", - "und": "Kansas City Chiefs", - "sF": "23", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 20, 1992", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "26", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 1992", - "at": "@", - "fav": "New England Patriots", - "und": "Seattle Seahawks", - "sF": "6", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 1992", - "at": null, - "fav": "San Francisco 49ers", - "und": "New York Jets", - "sF": "31", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 20, 1992", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Denver Broncos", - "sF": "30", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Sep 20, 1992", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Phoenix Cardinals", - "sF": "31", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Sep 20, 1992", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Cleveland Browns", - "sF": "16", - "sU": "28", - "spread": "8", - "ou": null - }, - { - "date": "Sep 20, 1992", - "at": "@", - "fav": "Miami Dolphins", - "und": "Los Angeles Rams", - "sF": "26", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Sep 20, 1992", - "at": "@", - "fav": "San Diego Chargers", - "und": "Pittsburgh Steelers", - "sF": "6", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 1992", - "at": "@", - "fav": "Washington Redskins", - "und": "Detroit Lions", - "sF": "13", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Sep 20, 1992", - "at": "@", - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "38", - "sU": "0", - "spread": "17", - "ou": null - }, - { - "date": "Sep 21, 1992", - "at": "@", - "fav": "Chicago Bears", - "und": "New York Giants", - "sF": "14", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Sep 27, 1992", - "at": "@", - "fav": "Chicago Bears", - "und": "Atlanta Falcons", - "sF": "41", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Sep 27, 1992", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Minnesota Vikings", - "sF": "7", - "sU": "42", - "spread": "2", - "ou": null - }, - { - "date": "Sep 27, 1992", - "at": null, - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "12", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Sep 27, 1992", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Sep 27, 1992", - "at": "@", - "fav": "Houston Oilers", - "und": "San Diego Chargers", - "sF": "27", - "sU": "0", - "spread": "11", - "ou": null - }, - { - "date": "Sep 27, 1992", - "at": null, - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "41", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Sep 27, 1992", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Green Bay Packers", - "sF": "3", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 1992", - "at": null, - "fav": "Miami Dolphins", - "und": "Seattle Seahawks", - "sF": "19", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 1992", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "16", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 1992", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Raiders", - "sF": "27", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 4, 1992", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Green Bay Packers", - "sF": "24", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 4, 1992", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "10", - "sU": "37", - "spread": "10", - "ou": null - }, - { - "date": "Oct 4, 1992", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "21", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 4, 1992", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Indianapolis Colts", - "sF": "14", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Oct 4, 1992", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Oct 4, 1992", - "at": null, - "fav": "Washington Redskins", - "und": "Phoenix Cardinals", - "sF": "24", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Oct 4, 1992", - "at": "@", - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 1992", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "27", - "sU": "24", - "spread": "15", - "ou": null - }, - { - "date": "Oct 4, 1992", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "30", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Oct 5, 1992", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 11, 1992", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "9", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 11, 1992", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "0", - "spread": "18", - "ou": null - }, - { - "date": "Oct 11, 1992", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 11, 1992", - "at": "@", - "fav": "Miami Dolphins", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Oct 11, 1992", - "at": null, - "fav": "San Francisco 49ers", - "und": "New England Patriots", - "sF": "24", - "sU": "12", - "spread": "17", - "ou": null - }, - { - "date": "Oct 11, 1992", - "at": "@", - "fav": "New York Giants", - "und": "Phoenix Cardinals", - "sF": "31", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Oct 11, 1992", - "at": null, - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "38", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 1992", - "at": null, - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "3", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Oct 11, 1992", - "at": null, - "fav": "Buffalo Bills", - "und": "Los Angeles Raiders", - "sF": "3", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Oct 11, 1992", - "at": "@", - "fav": "New Orleans Saints", - "und": "Los Angeles Rams", - "sF": "13", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 12, 1992", - "at": "@", - "fav": "Washington Redskins", - "und": "Denver Broncos", - "sF": "34", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Oct 15, 1992", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "31", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Oct 18, 1992", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Oct 18, 1992", - "at": "@", - "fav": "Cleveland Browns", - "und": "Green Bay Packers", - "sF": "17", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 1992", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 18, 1992", - "at": "@", - "fav": "Indianapolis Colts", - "und": "San Diego Chargers", - "sF": "14", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Oct 18, 1992", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "12", - "spread": "2", - "ou": null - }, - { - "date": "Oct 18, 1992", - "at": null, - "fav": "Houston Oilers", - "und": "Denver Broncos", - "sF": "21", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 1992", - "at": null, - "fav": "New York Giants", - "und": "Los Angeles Rams", - "sF": "17", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Oct 18, 1992", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "38", - "sU": "17", - "spread": "15", - "ou": null - }, - { - "date": "Oct 18, 1992", - "at": null, - "fav": "New Orleans Saints", - "und": "Phoenix Cardinals", - "sF": "30", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 18, 1992", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "56", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 18, 1992", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "19", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Oct 19, 1992", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Oct 25, 1992", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "30", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 1992", - "at": "@", - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "10", - "spread": "17", - "ou": null - }, - { - "date": "Oct 25, 1992", - "at": null, - "fav": "Washington Redskins", - "und": "Minnesota Vikings", - "sF": "15", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Oct 25, 1992", - "at": "@", - "fav": "New York Giants", - "und": "Seattle Seahawks", - "sF": "23", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Oct 25, 1992", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Phoenix Cardinals", - "sF": "7", - "sU": "3", - "spread": "15", - "ou": null - }, - { - "date": "Oct 25, 1992", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "7", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Oct 25, 1992", - "at": null, - "fav": "Dallas Cowboys", - "und": "Los Angeles Raiders", - "sF": "28", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 1992", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "31", - "spread": "13", - "ou": null - }, - { - "date": "Oct 25, 1992", - "at": null, - "fav": "Cleveland Browns", - "und": "New England Patriots", - "sF": "19", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 25, 1992", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "24", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Oct 25, 1992", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Pittsburgh Steelers", - "sF": "3", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Oct 26, 1992", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "24", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Nov 1, 1992", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Nov 1, 1992", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "16", - "sU": "7", - "spread": "19", - "ou": null - }, - { - "date": "Nov 1, 1992", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "13", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Nov 1, 1992", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Nov 1, 1992", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "14", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Nov 1, 1992", - "at": null, - "fav": "Houston Oilers", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 1992", - "at": null, - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Nov 1, 1992", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 1, 1992", - "at": null, - "fav": "San Francisco 49ers", - "und": "Phoenix Cardinals", - "sF": "14", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Nov 1, 1992", - "at": "@", - "fav": "San Diego Chargers", - "und": "Indianapolis Colts", - "sF": "26", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 1, 1992", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "7", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Nov 2, 1992", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "10", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 1992", - "at": null, - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "37", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 1992", - "at": "@", - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "14", - "sU": "24", - "spread": "11", - "ou": null - }, - { - "date": "Nov 8, 1992", - "at": null, - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "28", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 1992", - "at": null, - "fav": "New Orleans Saints", - "und": "New England Patriots", - "sF": "31", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Nov 8, 1992", - "at": "@", - "fav": "New York Giants", - "und": "Green Bay Packers", - "sF": "27", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Nov 8, 1992", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Los Angeles Raiders", - "sF": "31", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 1992", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "35", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 1992", - "at": "@", - "fav": "Buffalo Bills", - "und": "Pittsburgh Steelers", - "sF": "28", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 8, 1992", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Jets", - "sF": "27", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 1992", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "16", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 1992", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Phoenix Cardinals", - "sF": "14", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Nov 8, 1992", - "at": null, - "fav": "Washington Redskins", - "und": "Seattle Seahawks", - "sF": "16", - "sU": "3", - "spread": "12", - "ou": null - }, - { - "date": "Nov 8, 1992", - "at": "@", - "fav": "Chicago Bears", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "31", - "spread": "9", - "ou": null - }, - { - "date": "Nov 9, 1992", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "41", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 15, 1992", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Phoenix Cardinals", - "sF": "20", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 15, 1992", - "at": "@", - "fav": "Cleveland Browns", - "und": "San Diego Chargers", - "sF": "13", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 15, 1992", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Green Bay Packers", - "sF": "24", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Nov 15, 1992", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "34", - "sU": "37", - "spread": "7", - "ou": null - }, - { - "date": "Nov 15, 1992", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Washington Redskins", - "sF": "35", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Nov 15, 1992", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Houston Oilers", - "sF": "13", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 15, 1992", - "at": "@", - "fav": "New York Jets", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 15, 1992", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Detroit Lions", - "sF": "17", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Nov 15, 1992", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Los Angeles Rams", - "sF": "23", - "sU": "27", - "spread": "14", - "ou": null - }, - { - "date": "Nov 15, 1992", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Nov 15, 1992", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "21", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 15, 1992", - "at": null, - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 15, 1992", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Giants", - "sF": "27", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1992", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "26", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 1992", - "at": "@", - "fav": "Buffalo Bills", - "und": "Atlanta Falcons", - "sF": "41", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Nov 22, 1992", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "3", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 22, 1992", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Detroit Lions", - "sF": "13", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Nov 22, 1992", - "at": "@", - "fav": "Miami Dolphins", - "und": "Houston Oilers", - "sF": "19", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 1992", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Cleveland Browns", - "sF": "17", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Nov 22, 1992", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "47", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 1992", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Indianapolis Colts", - "sF": "30", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Nov 22, 1992", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Denver Broncos", - "sF": "24", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 1992", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "27", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 1992", - "at": null, - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "3", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 22, 1992", - "at": null, - "fav": "Dallas Cowboys", - "und": "Phoenix Cardinals", - "sF": "16", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Nov 22, 1992", - "at": "@", - "fav": "San Diego Chargers", - "und": "Tampa Bay Buccaneers", - "sF": "29", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Nov 22, 1992", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Nov 23, 1992", - "at": "@", - "fav": "New Orleans Saints", - "und": "Washington Redskins", - "sF": "20", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Nov 26, 1992", - "at": null, - "fav": "Houston Oilers", - "und": "Detroit Lions", - "sF": "24", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 26, 1992", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "30", - "sU": "3", - "spread": "15", - "ou": null - }, - { - "date": "Nov 29, 1992", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New England Patriots", - "sF": "34", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Nov 29, 1992", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Nov 29, 1992", - "at": "@", - "fav": "Cleveland Browns", - "und": "Chicago Bears", - "sF": "27", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 1992", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "19", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Nov 29, 1992", - "at": "@", - "fav": "New Orleans Saints", - "und": "Miami Dolphins", - "sF": "24", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Nov 29, 1992", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "23", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 29, 1992", - "at": "@", - "fav": "Washington Redskins", - "und": "Phoenix Cardinals", - "sF": "41", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Nov 29, 1992", - "at": null, - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "13", - "sU": "16", - "spread": "16", - "ou": null - }, - { - "date": "Nov 29, 1992", - "at": null, - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 29, 1992", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 29, 1992", - "at": "@", - "fav": "San Diego Chargers", - "und": "Los Angeles Raiders", - "sF": "27", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 1992", - "at": null, - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "13", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Dec 3, 1992", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "22", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 6, 1992", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "17", - "sU": "24", - "spread": "17", - "ou": null - }, - { - "date": "Dec 6, 1992", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "37", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Dec 6, 1992", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "38", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 1992", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "0", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Dec 6, 1992", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Dec 6, 1992", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Dec 6, 1992", - "at": null, - "fav": "Dallas Cowboys", - "und": "Denver Broncos", - "sF": "31", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 6, 1992", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Los Angeles Raiders", - "sF": "7", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Dec 6, 1992", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "28", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 6, 1992", - "at": null, - "fav": "San Diego Chargers", - "und": "Phoenix Cardinals", - "sF": "27", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Dec 6, 1992", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Miami Dolphins", - "sF": "27", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Dec 6, 1992", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Los Angeles Rams", - "sF": "27", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Dec 7, 1992", - "at": "@", - "fav": "Houston Oilers", - "und": "Chicago Bears", - "sF": "24", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Dec 12, 1992", - "at": "@", - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "27", - "sU": "17", - "spread": "14", - "ou": null - }, - { - "date": "Dec 12, 1992", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "New York Giants", - "sF": "19", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Dec 13, 1992", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Chicago Bears", - "sF": "6", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1992", - "at": null, - "fav": "Cleveland Browns", - "und": "Detroit Lions", - "sF": "14", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1992", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New England Patriots", - "sF": "27", - "sU": "20", - "spread": "16", - "ou": null - }, - { - "date": "Dec 13, 1992", - "at": null, - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Dec 13, 1992", - "at": "@", - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "6", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 13, 1992", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "35", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Dec 13, 1992", - "at": null, - "fav": "New Orleans Saints", - "und": "Los Angeles Rams", - "sF": "37", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Dec 13, 1992", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Dec 13, 1992", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 13, 1992", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1992", - "at": "@", - "fav": "Houston Oilers", - "und": "Green Bay Packers", - "sF": "14", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 1992", - "at": "@", - "fav": "Miami Dolphins", - "und": "Los Angeles Raiders", - "sF": "20", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 19, 1992", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New York Giants", - "sF": "21", - "sU": "35", - "spread": "7", - "ou": null - }, - { - "date": "Dec 19, 1992", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "14", - "spread": "20", - "ou": null - }, - { - "date": "Dec 20, 1992", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New England Patriots", - "sF": "20", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 20, 1992", - "at": null, - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "17", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Dec 20, 1992", - "at": "@", - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "28", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 20, 1992", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Phoenix Cardinals", - "sF": "16", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 20, 1992", - "at": "@", - "fav": "New Orleans Saints", - "und": "Buffalo Bills", - "sF": "16", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1992", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "17", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1992", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Minnesota Vikings", - "sF": "3", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Dec 20, 1992", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "10", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Dec 20, 1992", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "16", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1992", - "at": null, - "fav": "San Diego Chargers", - "und": "Los Angeles Raiders", - "sF": "36", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1992", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "19", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Dec 21, 1992", - "at": null, - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "41", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 26, 1992", - "at": null, - "fav": "New Orleans Saints", - "und": "New York Jets", - "sF": "20", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Dec 26, 1992", - "at": "@", - "fav": "Washington Redskins", - "und": "Los Angeles Raiders", - "sF": "20", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Dec 27, 1992", - "at": null, - "fav": "Indianapolis Colts", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 27, 1992", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "42", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 27, 1992", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "27", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 27, 1992", - "at": null, - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "16", - "sU": "13", - "spread": "11", - "ou": null - }, - { - "date": "Dec 27, 1992", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "20", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Dec 27, 1992", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "23", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 27, 1992", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "27", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Dec 27, 1992", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Dec 27, 1992", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "Tampa Bay Buccaneers", - "sF": "3", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 27, 1992", - "at": null, - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Dec 27, 1992", - "at": null, - "fav": "Buffalo Bills", - "und": "Houston Oilers", - "sF": "3", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 28, 1992", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "24", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Jan 2, 1993", - "at": "@", - "fav": "Minnesota Vikings (3)", - "und": "Washington Redskins (6)", - "sF": "7", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Jan 2, 1993", - "at": "@", - "fav": "San Diego Chargers (3)", - "und": "Kansas City Chiefs (6)", - "sF": "17", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 1993", - "at": "@", - "fav": "Buffalo Bills (4)", - "und": "Houston Oilers (5)", - "sF": "41", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 1993", - "at": "@", - "fav": "New Orleans Saints (4)", - "und": "Philadelphia Eagles (5)", - "sF": "20", - "sU": "36", - "spread": "3", - "ou": null - }, - { - "date": "Jan 9, 1993", - "at": "@", - "fav": "Pittsburgh Steelers (1)", - "und": "Buffalo Bills (4)", - "sF": "3", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Jan 9, 1993", - "at": "@", - "fav": "San Francisco 49ers (1)", - "und": "Washington Redskins (6)", - "sF": "20", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Jan 10, 1993", - "at": "@", - "fav": "Dallas Cowboys (2)", - "und": "Philadelphia Eagles (5)", - "sF": "34", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Jan 10, 1993", - "at": "@", - "fav": "Miami Dolphins (2)", - "und": "San Diego Chargers (3)", - "sF": "31", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Jan 17, 1993", - "at": null, - "fav": "Buffalo Bills (4)", - "und": "Miami Dolphins (2)", - "sF": "29", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Jan 17, 1993", - "at": "@", - "fav": "San Francisco 49ers (1)", - "und": "Dallas Cowboys (2)", - "sF": "20", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Jan 31, 1993", - "at": "N", - "fav": "Dallas Cowboys (2)", - "und": "Buffalo Bills (4)", - "sF": "52", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 5, 1993", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "38", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Sep 5, 1993", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Sep 5, 1993", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Sep 5, 1993", - "at": "@", - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "36", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Sep 5, 1993", - "at": null, - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 5, 1993", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Phoenix Cardinals", - "sF": "23", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 5, 1993", - "at": null, - "fav": "San Francisco 49ers", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Sep 5, 1993", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Sep 5, 1993", - "at": "@", - "fav": "Chicago Bears", - "und": "New York Giants", - "sF": "20", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Sep 5, 1993", - "at": null, - "fav": "Minnesota Vikings", - "und": "Los Angeles Raiders", - "sF": "7", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 5, 1993", - "at": "@", - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "18", - "sU": "12", - "spread": "11", - "ou": null - }, - { - "date": "Sep 5, 1993", - "at": "@", - "fav": "New Orleans Saints", - "und": "Houston Oilers", - "sF": "33", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 6, 1993", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "35", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Sep 12, 1993", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 1993", - "at": null, - "fav": "Indianapolis Colts", - "und": "Cincinnati Bengals", - "sF": "9", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Sep 12, 1993", - "at": "@", - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 1993", - "at": "@", - "fav": "Houston Oilers", - "und": "Kansas City Chiefs", - "sF": "30", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 1993", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "10", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 12, 1993", - "at": null, - "fav": "Detroit Lions", - "und": "New England Patriots", - "sF": "19", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Sep 12, 1993", - "at": "@", - "fav": "New York Giants", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Sep 12, 1993", - "at": "@", - "fav": "Washington Redskins", - "und": "Phoenix Cardinals", - "sF": "10", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Sep 12, 1993", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Buffalo Bills", - "sF": "10", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Sep 12, 1993", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "34", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 1993", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Los Angeles Rams", - "sF": "0", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 1993", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "14", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Sep 12, 1993", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 1993", - "at": null, - "fav": "San Francisco 49ers", - "und": "Cleveland Browns", - "sF": "13", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Sep 19, 1993", - "at": "@", - "fav": "New England Patriots", - "und": "Seattle Seahawks", - "sF": "14", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 19, 1993", - "at": "@", - "fav": "New Orleans Saints", - "und": "Detroit Lions", - "sF": "14", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Sep 19, 1993", - "at": "@", - "fav": "New York Giants", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 19, 1993", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "34", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Sep 19, 1993", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Sep 19, 1993", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Cleveland Browns", - "sF": "16", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 1993", - "at": "@", - "fav": "San Diego Chargers", - "und": "Houston Oilers", - "sF": "18", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 19, 1993", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "37", - "sU": "30", - "spread": "13", - "ou": null - }, - { - "date": "Sep 19, 1993", - "at": null, - "fav": "Dallas Cowboys", - "und": "Phoenix Cardinals", - "sF": "17", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 20, 1993", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "15", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 26, 1993", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "13", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Sep 26, 1993", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "47", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 26, 1993", - "at": "@", - "fav": "Detroit Lions", - "und": "Phoenix Cardinals", - "sF": "26", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 26, 1993", - "at": "@", - "fav": "Houston Oilers", - "und": "Los Angeles Rams", - "sF": "13", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Sep 26, 1993", - "at": null, - "fav": "Cleveland Browns", - "und": "Indianapolis Colts", - "sF": "10", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Sep 26, 1993", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "15", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 1993", - "at": null, - "fav": "Seattle Seahawks", - "und": "Cincinnati Bengals", - "sF": "19", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 1993", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "13", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Sep 26, 1993", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "45", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Sep 27, 1993", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "45", - "spread": "3", - "ou": null - }, - { - "date": "Oct 3, 1993", - "at": "@", - "fav": "Chicago Bears", - "und": "Atlanta Falcons", - "sF": "6", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Oct 3, 1993", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "36", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Oct 3, 1993", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Raiders", - "sF": "24", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Oct 3, 1993", - "at": null, - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 1993", - "at": "@", - "fav": "Denver Broncos", - "und": "Indianapolis Colts", - "sF": "35", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Oct 3, 1993", - "at": null, - "fav": "New Orleans Saints", - "und": "Los Angeles Rams", - "sF": "37", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Oct 3, 1993", - "at": "@", - "fav": "New York Jets", - "und": "Philadelphia Eagles", - "sF": "30", - "sU": "35", - "spread": "1", - "ou": null - }, - { - "date": "Oct 3, 1993", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "38", - "sU": "19", - "spread": "9", - "ou": null - }, - { - "date": "Oct 3, 1993", - "at": null, - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "14", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 3, 1993", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Giants", - "sF": "17", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 4, 1993", - "at": "@", - "fav": "Miami Dolphins", - "und": "Washington Redskins", - "sF": "17", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 10, 1993", - "at": null, - "fav": "Miami Dolphins", - "und": "Cleveland Browns", - "sF": "24", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 10, 1993", - "at": null, - "fav": "Dallas Cowboys", - "und": "Indianapolis Colts", - "sF": "27", - "sU": "3", - "spread": "11", - "ou": null - }, - { - "date": "Oct 10, 1993", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "15", - "spread": "14", - "ou": null - }, - { - "date": "Oct 10, 1993", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "15", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Oct 10, 1993", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "6", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 10, 1993", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "7", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 1993", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "New York Jets", - "sF": "24", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 10, 1993", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "New England Patriots", - "sF": "21", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Oct 10, 1993", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "16", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Oct 10, 1993", - "at": "@", - "fav": "Green Bay Packers", - "und": "Denver Broncos", - "sF": "30", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 11, 1993", - "at": "@", - "fav": "Buffalo Bills", - "und": "Houston Oilers", - "sF": "35", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 1993", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Oct 17, 1993", - "at": null, - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 17, 1993", - "at": "@", - "fav": "Detroit Lions", - "und": "Seattle Seahawks", - "sF": "30", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Oct 17, 1993", - "at": null, - "fav": "Houston Oilers", - "und": "New England Patriots", - "sF": "28", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 17, 1993", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 17, 1993", - "at": null, - "fav": "New Orleans Saints", - "und": "Pittsburgh Steelers", - "sF": "14", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 1993", - "at": "@", - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "26", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 17, 1993", - "at": null, - "fav": "Washington Redskins", - "und": "Phoenix Cardinals", - "sF": "6", - "sU": "36", - "spread": "1", - "ou": null - }, - { - "date": "Oct 17, 1993", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "17", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 18, 1993", - "at": "@", - "fav": "Denver Broncos", - "und": "Los Angeles Raiders", - "sF": "20", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 24, 1993", - "at": "@", - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "12", - "spread": "13", - "ou": null - }, - { - "date": "Oct 24, 1993", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "15", - "sU": "26", - "spread": "11", - "ou": null - }, - { - "date": "Oct 24, 1993", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "19", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 1993", - "at": null, - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "37", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 24, 1993", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "23", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 24, 1993", - "at": null, - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "16", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 24, 1993", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Phoenix Cardinals", - "sF": "28", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Oct 24, 1993", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New England Patriots", - "sF": "10", - "sU": "9", - "spread": "8", - "ou": null - }, - { - "date": "Oct 24, 1993", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "41", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Oct 25, 1993", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "12", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 1993", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "31", - "spread": "9", - "ou": null - }, - { - "date": "Oct 31, 1993", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "17", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Oct 31, 1993", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "9", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Oct 31, 1993", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Miami Dolphins", - "sF": "10", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Oct 31, 1993", - "at": "@", - "fav": "New York Giants", - "und": "New York Jets", - "sF": "6", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 31, 1993", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "28", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Oct 31, 1993", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "23", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Oct 31, 1993", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Oct 31, 1993", - "at": null, - "fav": "New Orleans Saints", - "und": "Phoenix Cardinals", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 1993", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "40", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Oct 31, 1993", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "27", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Nov 1, 1993", - "at": "@", - "fav": "Buffalo Bills", - "und": "Washington Redskins", - "sF": "24", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 7, 1993", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Nov 7, 1993", - "at": "@", - "fav": "Cleveland Browns", - "und": "Denver Broncos", - "sF": "14", - "sU": "29", - "spread": "2", - "ou": null - }, - { - "date": "Nov 7, 1993", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "31", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Nov 7, 1993", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "0", - "spread": "12", - "ou": null - }, - { - "date": "Nov 7, 1993", - "at": "@", - "fav": "Houston Oilers", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Nov 7, 1993", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Diego Chargers", - "sF": "17", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Nov 7, 1993", - "at": null, - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "13", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 7, 1993", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Chicago Bears", - "sF": "16", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 7, 1993", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "10", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 7, 1993", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Nov 7, 1993", - "at": "@", - "fav": "Washington Redskins", - "und": "Indianapolis Colts", - "sF": "30", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 1993", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Green Bay Packers", - "sF": "23", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Nov 14, 1993", - "at": null, - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "38", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Nov 14, 1993", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Phoenix Cardinals", - "sF": "20", - "sU": "15", - "spread": "12", - "ou": null - }, - { - "date": "Nov 14, 1993", - "at": "@", - "fav": "New Orleans Saints", - "und": "Green Bay Packers", - "sF": "17", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Nov 14, 1993", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "20", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Nov 14, 1993", - "at": null, - "fav": "Miami Dolphins", - "und": "Philadelphia Eagles", - "sF": "19", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 14, 1993", - "at": null, - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "45", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Nov 14, 1993", - "at": "@", - "fav": "Denver Broncos", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Nov 14, 1993", - "at": null, - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 14, 1993", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 14, 1993", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "0", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 14, 1993", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Cleveland Browns", - "sF": "22", - "sU": "5", - "spread": "3", - "ou": null - }, - { - "date": "Nov 14, 1993", - "at": "@", - "fav": "San Diego Chargers", - "und": "Chicago Bears", - "sF": "13", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Nov 15, 1993", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Buffalo Bills", - "sF": "23", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 1993", - "at": null, - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Nov 21, 1993", - "at": "@", - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "23", - "sU": "9", - "spread": "13", - "ou": null - }, - { - "date": "Nov 21, 1993", - "at": null, - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "27", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 21, 1993", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "26", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 1993", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Chicago Bears", - "sF": "17", - "sU": "19", - "spread": "10", - "ou": null - }, - { - "date": "Nov 21, 1993", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "17", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Nov 21, 1993", - "at": "@", - "fav": "New York Jets", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "12", - "spread": "15", - "ou": null - }, - { - "date": "Nov 21, 1993", - "at": "@", - "fav": "Denver Broncos", - "und": "Pittsburgh Steelers", - "sF": "37", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 1993", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Washington Redskins", - "sF": "10", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Nov 21, 1993", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "7", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Nov 21, 1993", - "at": "@", - "fav": "San Diego Chargers", - "und": "Los Angeles Raiders", - "sF": "7", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 1993", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Nov 22, 1993", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "42", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Nov 25, 1993", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "6", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 25, 1993", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Miami Dolphins", - "sF": "14", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Nov 28, 1993", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Cleveland Browns", - "sF": "17", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 28, 1993", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Nov 28, 1993", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Nov 28, 1993", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "14", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 28, 1993", - "at": null, - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "6", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Nov 28, 1993", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 28, 1993", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "23", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 1993", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "35", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Nov 28, 1993", - "at": "@", - "fav": "New York Giants", - "und": "Phoenix Cardinals", - "sF": "19", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 1993", - "at": null, - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 1993", - "at": "@", - "fav": "Houston Oilers", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 1993", - "at": null, - "fav": "San Diego Chargers", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Dec 5, 1993", - "at": "@", - "fav": "Buffalo Bills", - "und": "Los Angeles Raiders", - "sF": "24", - "sU": "25", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 1993", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "30", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 5, 1993", - "at": null, - "fav": "New Orleans Saints", - "und": "Cleveland Browns", - "sF": "13", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 5, 1993", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "0", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 1993", - "at": "@", - "fav": "Houston Oilers", - "und": "Atlanta Falcons", - "sF": "33", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 1993", - "at": "@", - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "6", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Dec 5, 1993", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New England Patriots", - "sF": "17", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Dec 5, 1993", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Washington Redskins", - "sF": "17", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 5, 1993", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Giants", - "sF": "14", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 1993", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "Los Angeles Rams", - "sF": "38", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 1993", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 1993", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 1993", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "8", - "spread": "24", - "ou": null - }, - { - "date": "Dec 6, 1993", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "17", - "spread": "16", - "ou": null - }, - { - "date": "Dec 11, 1993", - "at": null, - "fav": "New York Jets", - "und": "Washington Redskins", - "sF": "3", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 1993", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Dec 12, 1993", - "at": "@", - "fav": "Houston Oilers", - "und": "Cleveland Browns", - "sF": "19", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Dec 12, 1993", - "at": "@", - "fav": "New England Patriots", - "und": "Cincinnati Bengals", - "sF": "7", - "sU": "2", - "spread": "5", - "ou": null - }, - { - "date": "Dec 12, 1993", - "at": "@", - "fav": "New Orleans Saints", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "23", - "spread": "14", - "ou": null - }, - { - "date": "Dec 12, 1993", - "at": "@", - "fav": "New York Giants", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Dec 12, 1993", - "at": null, - "fav": "Buffalo Bills", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Dec 12, 1993", - "at": null, - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Dec 12, 1993", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Dec 12, 1993", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Dec 12, 1993", - "at": null, - "fav": "Dallas Cowboys", - "und": "Minnesota Vikings", - "sF": "37", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 12, 1993", - "at": "@", - "fav": "Phoenix Cardinals", - "und": "Detroit Lions", - "sF": "14", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 12, 1993", - "at": "@", - "fav": "San Diego Chargers", - "und": "Green Bay Packers", - "sF": "13", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1993", - "at": "@", - "fav": "Miami Dolphins", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 1993", - "at": null, - "fav": "Denver Broncos", - "und": "Chicago Bears", - "sF": "13", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Dec 18, 1993", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Jets", - "sF": "28", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 19, 1993", - "at": null, - "fav": "Los Angeles Rams", - "und": "Cincinnati Bengals", - "sF": "3", - "sU": "15", - "spread": "1", - "ou": null - }, - { - "date": "Dec 19, 1993", - "at": "@", - "fav": "Cleveland Browns", - "und": "New England Patriots", - "sF": "17", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Dec 19, 1993", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Dec 19, 1993", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "34", - "sU": "47", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 1993", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "17", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 1993", - "at": null, - "fav": "Atlanta Falcons", - "und": "Washington Redskins", - "sF": "17", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 1993", - "at": null, - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "55", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 19, 1993", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "28", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Dec 19, 1993", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Dec 19, 1993", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Phoenix Cardinals", - "sF": "27", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Dec 19, 1993", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Dec 20, 1993", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Giants", - "sF": "14", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Dec 25, 1993", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Houston Oilers", - "sF": "7", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 26, 1993", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "16", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 26, 1993", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "14", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1993", - "at": null, - "fav": "Atlanta Falcons", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1993", - "at": "@", - "fav": "Green Bay Packers", - "und": "Los Angeles Raiders", - "sF": "28", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1993", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "38", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Dec 26, 1993", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New Orleans Saints", - "sF": "37", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1993", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "38", - "sU": "3", - "spread": "17", - "ou": null - }, - { - "date": "Dec 26, 1993", - "at": "@", - "fav": "Denver Broncos", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Dec 26, 1993", - "at": null, - "fav": "Cleveland Browns", - "und": "Los Angeles Rams", - "sF": "42", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 26, 1993", - "at": null, - "fav": "New York Giants", - "und": "Phoenix Cardinals", - "sF": "6", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1993", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Seattle Seahawks", - "sF": "6", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1993", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Minnesota Vikings", - "sF": "10", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 27, 1993", - "at": "@", - "fav": "San Diego Chargers", - "und": "Miami Dolphins", - "sF": "45", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 31, 1993", - "at": null, - "fav": "Minnesota Vikings", - "und": "Washington Redskins", - "sF": "14", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Jan 2, 1994", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Phoenix Cardinals", - "sF": "10", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Jan 2, 1994", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "20", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Jan 2, 1994", - "at": null, - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "30", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Jan 2, 1994", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Jan 2, 1994", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "16", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Jan 2, 1994", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "16", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Jan 2, 1994", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Denver Broncos", - "sF": "33", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Jan 2, 1994", - "at": null, - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "6", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Jan 2, 1994", - "at": "@", - "fav": "New Orleans Saints", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Jan 2, 1994", - "at": "@", - "fav": "Houston Oilers", - "und": "New York Jets", - "sF": "24", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Jan 3, 1994", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "34", - "sU": "37", - "spread": "10", - "ou": null - }, - { - "date": "Jan 8, 1994", - "at": "@", - "fav": "Kansas City Chiefs (3)", - "und": "Pittsburgh Steelers (6)", - "sF": "27", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Jan 8, 1994", - "at": "@", - "fav": "Detroit Lions (3)", - "und": "Green Bay Packers (6)", - "sF": "24", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Jan 9, 1994", - "at": "@", - "fav": "New York Giants (4)", - "und": "Minnesota Vikings (5)", - "sF": "17", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Jan 9, 1994", - "at": "@", - "fav": "Los Angeles Raiders (4)", - "und": "Denver Broncos (5)", - "sF": "42", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Jan 15, 1994", - "at": "@", - "fav": "Buffalo Bills (1)", - "und": "Los Angeles Raiders (4)", - "sF": "29", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Jan 15, 1994", - "at": "@", - "fav": "San Francisco 49ers (2)", - "und": "New York Giants (4)", - "sF": "44", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Jan 16, 1994", - "at": "@", - "fav": "Dallas Cowboys (1)", - "und": "Green Bay Packers (6)", - "sF": "27", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Jan 16, 1994", - "at": "@", - "fav": "Houston Oilers (2)", - "und": "Kansas City Chiefs (3)", - "sF": "20", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Jan 23, 1994", - "at": "@", - "fav": "Buffalo Bills (1)", - "und": "Kansas City Chiefs (3)", - "sF": "30", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Jan 23, 1994", - "at": "@", - "fav": "Dallas Cowboys (1)", - "und": "San Francisco 49ers (2)", - "sF": "38", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Jan 30, 1994", - "at": "N", - "fav": "Dallas Cowboys (1)", - "und": "Buffalo Bills (1)", - "sF": "30", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Sep 4, 1994", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Sep 4, 1994", - "at": null, - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 4, 1994", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Sep 4, 1994", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "16", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 4, 1994", - "at": null, - "fav": "Houston Oilers", - "und": "Indianapolis Colts", - "sF": "21", - "sU": "45", - "spread": "3", - "ou": null - }, - { - "date": "Sep 4, 1994", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New Orleans Saints", - "sF": "30", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 4, 1994", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 4, 1994", - "at": "@", - "fav": "Washington Redskins", - "und": "Seattle Seahawks", - "sF": "7", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Sep 4, 1994", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "3", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Sep 4, 1994", - "at": null, - "fav": "Arizona Cardinals", - "und": "Los Angeles Rams", - "sF": "12", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 4, 1994", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "39", - "sU": "35", - "spread": "5", - "ou": null - }, - { - "date": "Sep 4, 1994", - "at": null, - "fav": "Dallas Cowboys", - "und": "Pittsburgh Steelers", - "sF": "26", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Sep 4, 1994", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "34", - "sU": "37", - "spread": "7", - "ou": null - }, - { - "date": "Sep 5, 1994", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Raiders", - "sF": "44", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Sep 11, 1994", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Sep 11, 1994", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 11, 1994", - "at": "@", - "fav": "Green Bay Packers", - "und": "Miami Dolphins", - "sF": "14", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 1994", - "at": null, - "fav": "San Francisco 49ers", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 1994", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "10", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Sep 11, 1994", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "35", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Sep 11, 1994", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 11, 1994", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Houston Oilers", - "sF": "20", - "sU": "17", - "spread": "14", - "ou": null - }, - { - "date": "Sep 11, 1994", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "9", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Sep 11, 1994", - "at": "@", - "fav": "New Orleans Saints", - "und": "Washington Redskins", - "sF": "24", - "sU": "38", - "spread": "8", - "ou": null - }, - { - "date": "Sep 11, 1994", - "at": "@", - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "25", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 1994", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Sep 11, 1994", - "at": "@", - "fav": "Arizona Cardinals", - "und": "New York Giants", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 1994", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "30", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 1994", - "at": null, - "fav": "New England Patriots", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Sep 18, 1994", - "at": "@", - "fav": "Cleveland Browns", - "und": "Arizona Cardinals", - "sF": "32", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 1994", - "at": "@", - "fav": "Houston Oilers", - "und": "Buffalo Bills", - "sF": "7", - "sU": "15", - "spread": "2", - "ou": null - }, - { - "date": "Sep 18, 1994", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "28", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 1994", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Green Bay Packers", - "sF": "13", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 1994", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Sep 18, 1994", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "7", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 1994", - "at": "@", - "fav": "Denver Broncos", - "und": "Los Angeles Raiders", - "sF": "16", - "sU": "48", - "spread": "4", - "ou": null - }, - { - "date": "Sep 18, 1994", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "34", - "sU": "19", - "spread": "13", - "ou": null - }, - { - "date": "Sep 18, 1994", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "31", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Sep 18, 1994", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "10", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 1994", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 19, 1994", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "17", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Sep 25, 1994", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "30", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Sep 25, 1994", - "at": null, - "fav": "Cleveland Browns", - "und": "Indianapolis Colts", - "sF": "21", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Sep 25, 1994", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Rams", - "sF": "0", - "sU": "16", - "spread": "14", - "ou": null - }, - { - "date": "Sep 25, 1994", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Miami Dolphins", - "sF": "38", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 1994", - "at": null, - "fav": "Atlanta Falcons", - "und": "Washington Redskins", - "sF": "27", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Sep 25, 1994", - "at": "@", - "fav": "Detroit Lions", - "und": "New England Patriots", - "sF": "17", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 1994", - "at": "@", - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Sep 25, 1994", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "San Diego Chargers", - "sF": "24", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 1994", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "24", - "sU": "13", - "spread": "15", - "ou": null - }, - { - "date": "Sep 25, 1994", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Seattle Seahawks", - "sF": "13", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Sep 25, 1994", - "at": "@", - "fav": "New York Jets", - "und": "Chicago Bears", - "sF": "7", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Sep 26, 1994", - "at": "@", - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "27", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 2, 1994", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Jets", - "sF": "27", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 1994", - "at": null, - "fav": "Seattle Seahawks", - "und": "Indianapolis Colts", - "sF": "15", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 1994", - "at": "@", - "fav": "New England Patriots", - "und": "Green Bay Packers", - "sF": "17", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 1994", - "at": null, - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "14", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 1994", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "34", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Oct 2, 1994", - "at": null, - "fav": "Minnesota Vikings", - "und": "Arizona Cardinals", - "sF": "7", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 1994", - "at": null, - "fav": "Buffalo Bills", - "und": "Chicago Bears", - "sF": "13", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 1994", - "at": null, - "fav": "Atlanta Falcons", - "und": "Los Angeles Rams", - "sF": "8", - "sU": "5", - "spread": "1", - "ou": null - }, - { - "date": "Oct 2, 1994", - "at": null, - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "22", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 1994", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "8", - "sU": "40", - "spread": "9", - "ou": null - }, - { - "date": "Oct 2, 1994", - "at": null, - "fav": "Miami Dolphins", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Oct 3, 1994", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "30", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Oct 9, 1994", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "34", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 9, 1994", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "21", - "sU": "11", - "spread": "2", - "ou": null - }, - { - "date": "Oct 9, 1994", - "at": "@", - "fav": "Chicago Bears", - "und": "New Orleans Saints", - "sF": "17", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 1994", - "at": null, - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "27", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Oct 9, 1994", - "at": "@", - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Oct 9, 1994", - "at": "@", - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "16", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Oct 9, 1994", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "38", - "sU": "3", - "spread": "12", - "ou": null - }, - { - "date": "Oct 9, 1994", - "at": "@", - "fav": "New England Patriots", - "und": "Los Angeles Raiders", - "sF": "17", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 1994", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Oct 9, 1994", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Denver Broncos", - "sF": "9", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 1994", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "21", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Oct 10, 1994", - "at": "@", - "fav": "New York Giants", - "und": "Minnesota Vikings", - "sF": "10", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 13, 1994", - "at": null, - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "11", - "sU": "8", - "spread": "2", - "ou": null - }, - { - "date": "Oct 16, 1994", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "42", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Oct 16, 1994", - "at": "@", - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Oct 16, 1994", - "at": "@", - "fav": "Miami Dolphins", - "und": "Los Angeles Raiders", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 1994", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "24", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 16, 1994", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "14", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Oct 16, 1994", - "at": null, - "fav": "Arizona Cardinals", - "und": "Washington Redskins", - "sF": "19", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Oct 16, 1994", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Oct 16, 1994", - "at": null, - "fav": "New York Giants", - "und": "Los Angeles Rams", - "sF": "10", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 16, 1994", - "at": null, - "fav": "San Diego Chargers", - "und": "New Orleans Saints", - "sF": "36", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 1994", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Oct 20, 1994", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "13", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Oct 23, 1994", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "37", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Oct 23, 1994", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "21", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Oct 23, 1994", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Washington Redskins", - "sF": "27", - "sU": "41", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 1994", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "38", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 23, 1994", - "at": "@", - "fav": "New Orleans Saints", - "und": "Los Angeles Rams", - "sF": "37", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 1994", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "6", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 23, 1994", - "at": null, - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "28", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Oct 23, 1994", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 23, 1994", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "15", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 23, 1994", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "41", - "sU": "16", - "spread": "15", - "ou": null - }, - { - "date": "Oct 24, 1994", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Houston Oilers", - "sF": "21", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Oct 30, 1994", - "at": "@", - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "44", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 30, 1994", - "at": null, - "fav": "Dallas Cowboys", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "20", - "spread": "15", - "ou": null - }, - { - "date": "Oct 30, 1994", - "at": "@", - "fav": "New York Giants", - "und": "Detroit Lions", - "sF": "25", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Oct 30, 1994", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "31", - "sU": "29", - "spread": "6", - "ou": null - }, - { - "date": "Oct 30, 1994", - "at": "@", - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "26", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 1994", - "at": null, - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "25", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Oct 30, 1994", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Houston Oilers", - "sF": "17", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Oct 30, 1994", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "3", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 30, 1994", - "at": "@", - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "35", - "sU": "15", - "spread": "6", - "ou": null - }, - { - "date": "Oct 30, 1994", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "36", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 30, 1994", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 31, 1994", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "6", - "sU": "33", - "spread": "1", - "ou": null - }, - { - "date": "Nov 6, 1994", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Diego Chargers", - "sF": "10", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Nov 6, 1994", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "38", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Nov 6, 1994", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "12", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1994", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "22", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Nov 6, 1994", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "21", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Nov 6, 1994", - "at": null, - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1994", - "at": null, - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "37", - "sU": "22", - "spread": "10", - "ou": null - }, - { - "date": "Nov 6, 1994", - "at": "@", - "fav": "Cleveland Browns", - "und": "New England Patriots", - "sF": "13", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1994", - "at": null, - "fav": "Denver Broncos", - "und": "Los Angeles Rams", - "sF": "21", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 1994", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "17", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Nov 6, 1994", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 6, 1994", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 6, 1994", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Raiders", - "sF": "13", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 1994", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "38", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Nov 13, 1994", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "34", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Nov 13, 1994", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "13", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 1994", - "at": "@", - "fav": "Miami Dolphins", - "und": "Chicago Bears", - "sF": "14", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 1994", - "at": null, - "fav": "Minnesota Vikings", - "und": "New England Patriots", - "sF": "20", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 1994", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "33", - "sU": "32", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 1994", - "at": "@", - "fav": "New York Giants", - "und": "Arizona Cardinals", - "sF": "9", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Nov 13, 1994", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Cleveland Browns", - "sF": "7", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Nov 13, 1994", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 1994", - "at": "@", - "fav": "Green Bay Packers", - "und": "New York Jets", - "sF": "17", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 1994", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 1994", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Dallas Cowboys", - "sF": "21", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 1994", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "14", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Nov 14, 1994", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Buffalo Bills", - "sF": "23", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Nov 20, 1994", - "at": "@", - "fav": "Buffalo Bills", - "und": "Green Bay Packers", - "sF": "29", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 1994", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "20", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 1994", - "at": null, - "fav": "Indianapolis Colts", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Nov 20, 1994", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "31", - "sU": "7", - "spread": "15", - "ou": null - }, - { - "date": "Nov 20, 1994", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cleveland Browns", - "sF": "20", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Nov 20, 1994", - "at": null, - "fav": "San Diego Chargers", - "und": "New England Patriots", - "sF": "17", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 20, 1994", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Miami Dolphins", - "sF": "16", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 20, 1994", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "6", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 1994", - "at": "@", - "fav": "Denver Broncos", - "und": "Atlanta Falcons", - "sF": "32", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Nov 20, 1994", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "New Orleans Saints", - "sF": "24", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Nov 20, 1994", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New York Jets", - "sF": "21", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Nov 20, 1994", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Tampa Bay Buccaneers", - "sF": "22", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 20, 1994", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "27", - "spread": "14", - "ou": null - }, - { - "date": "Nov 21, 1994", - "at": "@", - "fav": "Houston Oilers", - "und": "New York Giants", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 1994", - "at": null, - "fav": "Buffalo Bills", - "und": "Detroit Lions", - "sF": "21", - "sU": "35", - "spread": "1", - "ou": null - }, - { - "date": "Nov 24, 1994", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "42", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 27, 1994", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Nov 27, 1994", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "34", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Nov 27, 1994", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Nov 27, 1994", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "24", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Nov 27, 1994", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Chicago Bears", - "sF": "16", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 1994", - "at": "@", - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "15", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Nov 27, 1994", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Pittsburgh Steelers", - "sF": "3", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 1994", - "at": "@", - "fav": "San Diego Chargers", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 27, 1994", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "9", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 1994", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "19", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 1994", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "10", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Nov 28, 1994", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "35", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Dec 1, 1994", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "33", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Dec 4, 1994", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "38", - "sU": "15", - "spread": "6", - "ou": null - }, - { - "date": "Dec 4, 1994", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "24", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 4, 1994", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Dec 4, 1994", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Washington Redskins", - "sF": "26", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Dec 4, 1994", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "13", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Dec 4, 1994", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "34", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Dec 4, 1994", - "at": null, - "fav": "Arizona Cardinals", - "und": "Houston Oilers", - "sF": "30", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 1994", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 1994", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "15", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 1994", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "50", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Dec 4, 1994", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Indianapolis Colts", - "sF": "19", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 1994", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "31", - "sU": "42", - "spread": "4", - "ou": null - }, - { - "date": "Dec 5, 1994", - "at": "@", - "fav": "San Diego Chargers", - "und": "Los Angeles Raiders", - "sF": "17", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 10, 1994", - "at": "@", - "fav": "New York Jets", - "und": "Detroit Lions", - "sF": "7", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 1994", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "14", - "sU": "19", - "spread": "10", - "ou": null - }, - { - "date": "Dec 11, 1994", - "at": "@", - "fav": "Buffalo Bills", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 1994", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "40", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Dec 11, 1994", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "28", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 11, 1994", - "at": "@", - "fav": "New York Giants", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Dec 11, 1994", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Dec 11, 1994", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 11, 1994", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Washington Redskins", - "sF": "17", - "sU": "15", - "spread": "7", - "ou": null - }, - { - "date": "Dec 11, 1994", - "at": "@", - "fav": "Houston Oilers", - "und": "Seattle Seahawks", - "sF": "14", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 1994", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Denver Broncos", - "sF": "23", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Dec 11, 1994", - "at": null, - "fav": "San Francisco 49ers", - "und": "San Diego Chargers", - "sF": "38", - "sU": "15", - "spread": "9", - "ou": null - }, - { - "date": "Dec 11, 1994", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "20", - "sU": "29", - "spread": "4", - "ou": null - }, - { - "date": "Dec 12, 1994", - "at": "@", - "fav": "Miami Dolphins", - "und": "Kansas City Chiefs", - "sF": "45", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Dec 17, 1994", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "41", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Dec 17, 1994", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Denver Broncos", - "sF": "42", - "sU": "19", - "spread": "15", - "ou": null - }, - { - "date": "Dec 18, 1994", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "17", - "sU": "41", - "spread": "1", - "ou": null - }, - { - "date": "Dec 18, 1994", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "27", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 1994", - "at": "@", - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 1994", - "at": null, - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "21", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Dec 18, 1994", - "at": "@", - "fav": "Washington Redskins", - "und": "Tampa Bay Buccaneers", - "sF": "14", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 18, 1994", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 1994", - "at": null, - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "6", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 1994", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "31", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Dec 18, 1994", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "13", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Dec 18, 1994", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "17", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 1994", - "at": null, - "fav": "Los Angeles Raiders", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Dec 19, 1994", - "at": null, - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "24", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Dec 24, 1994", - "at": null, - "fav": "Arizona Cardinals", - "und": "Atlanta Falcons", - "sF": "6", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 1994", - "at": null, - "fav": "New England Patriots", - "und": "Chicago Bears", - "sF": "13", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Dec 24, 1994", - "at": "@", - "fav": "Cleveland Browns", - "und": "Seattle Seahawks", - "sF": "35", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Dec 24, 1994", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Buffalo Bills", - "sF": "10", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 1994", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "10", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 1994", - "at": null, - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "34", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Dec 24, 1994", - "at": "@", - "fav": "Denver Broncos", - "und": "New Orleans Saints", - "sF": "28", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Dec 24, 1994", - "at": null, - "fav": "New York Jets", - "und": "Houston Oilers", - "sF": "10", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Dec 24, 1994", - "at": "@", - "fav": "Los Angeles Raiders", - "und": "Kansas City Chiefs", - "sF": "9", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 1994", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Washington Redskins", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 1994", - "at": "@", - "fav": "San Diego Chargers", - "und": "Pittsburgh Steelers", - "sF": "37", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 25, 1994", - "at": "@", - "fav": "Miami Dolphins", - "und": "Detroit Lions", - "sF": "27", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1994", - "at": null, - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Dec 31, 1994", - "at": "@", - "fav": "Green Bay Packers (4)", - "und": "Detroit Lions (5)", - "sF": "16", - "sU": "12", - "spread": "4", - "ou": null - }, - { - "date": "Dec 31, 1994", - "at": "@", - "fav": "Miami Dolphins (3)", - "und": "Kansas City Chiefs (6)", - "sF": "27", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 1995", - "at": "@", - "fav": "Cleveland Browns (4)", - "und": "New England Patriots (5)", - "sF": "20", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 1995", - "at": "@", - "fav": "Minnesota Vikings (3)", - "und": "Chicago Bears (6)", - "sF": "18", - "sU": "35", - "spread": "6", - "ou": null - }, - { - "date": "Jan 7, 1995", - "at": "@", - "fav": "Pittsburgh Steelers (1)", - "und": "Cleveland Browns (4)", - "sF": "29", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Jan 7, 1995", - "at": "@", - "fav": "San Francisco 49ers (1)", - "und": "Chicago Bears (6)", - "sF": "44", - "sU": "15", - "spread": "17", - "ou": null - }, - { - "date": "Jan 8, 1995", - "at": "@", - "fav": "Dallas Cowboys (2)", - "und": "Green Bay Packers (4)", - "sF": "35", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Jan 8, 1995", - "at": "@", - "fav": "San Diego Chargers (2)", - "und": "Miami Dolphins (3)", - "sF": "22", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Jan 15, 1995", - "at": "@", - "fav": "Pittsburgh Steelers (1)", - "und": "San Diego Chargers (2)", - "sF": "13", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Jan 15, 1995", - "at": "@", - "fav": "San Francisco 49ers (1)", - "und": "Dallas Cowboys (2)", - "sF": "38", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Jan 29, 1995", - "at": "N", - "fav": "San Francisco 49ers (1)", - "und": "San Diego Chargers (2)", - "sF": "49", - "sU": "26", - "spread": "18", - "ou": null - }, - { - "date": "Sep 3, 1995", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "23", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Sep 3, 1995", - "at": "@", - "fav": "Green Bay Packers", - "und": "St Louis Rams", - "sF": "14", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 3, 1995", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Sep 3, 1995", - "at": null, - "fav": "Houston Oilers", - "und": "Jacksonville Jaguars", - "sF": "10", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Sep 3, 1995", - "at": "@", - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 3, 1995", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "24", - "sU": "22", - "spread": "8", - "ou": null - }, - { - "date": "Sep 3, 1995", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Tampa Bay Buccaneers", - "sF": "6", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Sep 3, 1995", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Detroit Lions", - "sF": "23", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 3, 1995", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Sep 3, 1995", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "52", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Sep 3, 1995", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "17", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 3, 1995", - "at": null, - "fav": "Arizona Cardinals", - "und": "Washington Redskins", - "sF": "7", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 3, 1995", - "at": "@", - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "22", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 4, 1995", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "35", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Sep 10, 1995", - "at": "@", - "fav": "Buffalo Bills", - "und": "Carolina Panthers", - "sF": "31", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Sep 10, 1995", - "at": "@", - "fav": "Cleveland Browns", - "und": "Tampa Bay Buccaneers", - "sF": "22", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Sep 10, 1995", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "34", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Sep 10, 1995", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Giants", - "sF": "20", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Sep 10, 1995", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "20", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 1995", - "at": null, - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "20", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Sep 10, 1995", - "at": "@", - "fav": "St Louis Rams", - "und": "New Orleans Saints", - "sF": "17", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 10, 1995", - "at": null, - "fav": "Oakland Raiders", - "und": "Washington Redskins", - "sF": "20", - "sU": "8", - "spread": "4", - "ou": null - }, - { - "date": "Sep 10, 1995", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Sep 10, 1995", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Denver Broncos", - "sF": "31", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Sep 10, 1995", - "at": null, - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "27", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 10, 1995", - "at": "@", - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "14", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Sep 10, 1995", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "41", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Sep 10, 1995", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Philadelphia Eagles", - "sF": "19", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 1995", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 1995", - "at": "@", - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 1995", - "at": null, - "fav": "St Louis Rams", - "und": "Carolina Panthers", - "sF": "31", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 1995", - "at": "@", - "fav": "Detroit Lions", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 17, 1995", - "at": "@", - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "14", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Sep 17, 1995", - "at": null, - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "14", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Sep 17, 1995", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "23", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 1995", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 1995", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "San Diego Chargers", - "sF": "21", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 1995", - "at": "@", - "fav": "Denver Broncos", - "und": "Washington Redskins", - "sF": "38", - "sU": "31", - "spread": "9", - "ou": null - }, - { - "date": "Sep 17, 1995", - "at": "@", - "fav": "New York Jets", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 17, 1995", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New England Patriots", - "sF": "28", - "sU": "3", - "spread": "11", - "ou": null - }, - { - "date": "Sep 17, 1995", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 1995", - "at": null, - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "25", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 1995", - "at": null, - "fav": "Dallas Cowboys", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Sep 18, 1995", - "at": "@", - "fav": "Miami Dolphins", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 1995", - "at": "@", - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "45", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 1995", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "44", - "spread": "5", - "ou": null - }, - { - "date": "Sep 24, 1995", - "at": "@", - "fav": "St Louis Rams", - "und": "Chicago Bears", - "sF": "34", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Sep 24, 1995", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Washington Redskins", - "sF": "14", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 1995", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New York Jets", - "sF": "13", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Sep 24, 1995", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "28", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Sep 24, 1995", - "at": "@", - "fav": "Cleveland Browns", - "und": "Kansas City Chiefs", - "sF": "35", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 1995", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "34", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Sep 24, 1995", - "at": "@", - "fav": "Oakland Raiders", - "und": "Philadelphia Eagles", - "sF": "48", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 1995", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "17", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 1995", - "at": null, - "fav": "Green Bay Packers", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Sep 25, 1995", - "at": null, - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "24", - "sU": "27", - "spread": "11", - "ou": null - }, - { - "date": "Oct 1, 1995", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New England Patriots", - "sF": "30", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 1995", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "20", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Oct 1, 1995", - "at": null, - "fav": "Miami Dolphins", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Oct 1, 1995", - "at": "@", - "fav": "Indianapolis Colts", - "und": "St Louis Rams", - "sF": "21", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 1995", - "at": "@", - "fav": "New Orleans Saints", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "15", - "spread": "1", - "ou": null - }, - { - "date": "Oct 1, 1995", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "23", - "sU": "27", - "spread": "13", - "ou": null - }, - { - "date": "Oct 1, 1995", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Oct 1, 1995", - "at": "@", - "fav": "Houston Oilers", - "und": "Jacksonville Jaguars", - "sF": "16", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Oct 1, 1995", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "31", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Oct 1, 1995", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "20", - "sU": "6", - "spread": "15", - "ou": null - }, - { - "date": "Oct 1, 1995", - "at": null, - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "10", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 1995", - "at": null, - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "47", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 2, 1995", - "at": "@", - "fav": "Cleveland Browns", - "und": "Buffalo Bills", - "sF": "19", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Oct 8, 1995", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "29", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 8, 1995", - "at": "@", - "fav": "Chicago Bears", - "und": "Carolina Panthers", - "sF": "31", - "sU": "27", - "spread": "13", - "ou": null - }, - { - "date": "Oct 8, 1995", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "34", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Oct 8, 1995", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "16", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Oct 8, 1995", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Houston Oilers", - "sF": "23", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 8, 1995", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "37", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 1995", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Cincinnati Bengals", - "sF": "19", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 1995", - "at": null, - "fav": "Cleveland Browns", - "und": "Detroit Lions", - "sF": "20", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Oct 8, 1995", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Oct 8, 1995", - "at": "@", - "fav": "New York Giants", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Oct 8, 1995", - "at": "@", - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Oct 8, 1995", - "at": "@", - "fav": "New England Patriots", - "und": "Denver Broncos", - "sF": "3", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 1995", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "29", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 1995", - "at": "@", - "fav": "St Louis Rams", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 1995", - "at": "@", - "fav": "Buffalo Bills", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 15, 1995", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "30", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 1995", - "at": null, - "fav": "San Francisco 49ers", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "18", - "spread": "10", - "ou": null - }, - { - "date": "Oct 15, 1995", - "at": null, - "fav": "Chicago Bears", - "und": "Jacksonville Jaguars", - "sF": "30", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Oct 15, 1995", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New England Patriots", - "sF": "31", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Oct 15, 1995", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 1995", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 15, 1995", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Washington Redskins", - "sF": "24", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 15, 1995", - "at": null, - "fav": "New York Jets", - "und": "Carolina Panthers", - "sF": "15", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Oct 15, 1995", - "at": null, - "fav": "Miami Dolphins", - "und": "New Orleans Saints", - "sF": "30", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Oct 15, 1995", - "at": null, - "fav": "Dallas Cowboys", - "und": "San Diego Chargers", - "sF": "23", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Oct 16, 1995", - "at": null, - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "0", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 1995", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "9", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Oct 22, 1995", - "at": null, - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "3", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 1995", - "at": "@", - "fav": "Chicago Bears", - "und": "Houston Oilers", - "sF": "35", - "sU": "32", - "spread": "7", - "ou": null - }, - { - "date": "Oct 22, 1995", - "at": "@", - "fav": "Cleveland Browns", - "und": "Jacksonville Jaguars", - "sF": "15", - "sU": "23", - "spread": "13", - "ou": null - }, - { - "date": "Oct 22, 1995", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "38", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Oct 22, 1995", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "16", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Oct 22, 1995", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 1995", - "at": null, - "fav": "Detroit Lions", - "und": "Washington Redskins", - "sF": "30", - "sU": "36", - "spread": "1", - "ou": null - }, - { - "date": "Oct 22, 1995", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "7", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 1995", - "at": "@", - "fav": "Oakland Raiders", - "und": "Indianapolis Colts", - "sF": "30", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 22, 1995", - "at": null, - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "35", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 1995", - "at": null, - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "44", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 1995", - "at": null, - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Oct 29, 1995", - "at": null, - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "29", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Oct 29, 1995", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "24", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Oct 29, 1995", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "17", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Oct 29, 1995", - "at": "@", - "fav": "New England Patriots", - "und": "Carolina Panthers", - "sF": "17", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Oct 29, 1995", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "St Louis Rams", - "sF": "20", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 1995", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Oct 29, 1995", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 29, 1995", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Houston Oilers", - "sF": "7", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Oct 29, 1995", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "23", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 1995", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "7", - "sU": "11", - "spread": "14", - "ou": null - }, - { - "date": "Oct 29, 1995", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "15", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 1995", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "6", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 1995", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Detroit Lions", - "sF": "34", - "sU": "22", - "spread": "1", - "ou": null - }, - { - "date": "Nov 5, 1995", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Oilers", - "sF": "10", - "sU": "37", - "spread": "7", - "ou": null - }, - { - "date": "Nov 5, 1995", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Buffalo Bills", - "sF": "10", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Nov 5, 1995", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Washington Redskins", - "sF": "24", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Nov 5, 1995", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 5, 1995", - "at": "@", - "fav": "New Orleans Saints", - "und": "St Louis Rams", - "sF": "19", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Nov 5, 1995", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "20", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 5, 1995", - "at": "@", - "fav": "Chicago Bears", - "und": "Pittsburgh Steelers", - "sF": "34", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Nov 5, 1995", - "at": null, - "fav": "Oakland Raiders", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 5, 1995", - "at": "@", - "fav": "Denver Broncos", - "und": "Arizona Cardinals", - "sF": "38", - "sU": "6", - "spread": "8", - "ou": null - }, - { - "date": "Nov 5, 1995", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Carolina Panthers", - "sF": "7", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Nov 5, 1995", - "at": "@", - "fav": "San Diego Chargers", - "und": "Miami Dolphins", - "sF": "14", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Nov 6, 1995", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "34", - "sU": "12", - "spread": "14", - "ou": null - }, - { - "date": "Nov 12, 1995", - "at": "@", - "fav": "Buffalo Bills", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 1995", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Nov 12, 1995", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "35", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 1995", - "at": "@", - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "25", - "sU": "32", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 1995", - "at": null, - "fav": "Seattle Seahawks", - "und": "Jacksonville Jaguars", - "sF": "47", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Nov 12, 1995", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "17", - "sU": "34", - "spread": "8", - "ou": null - }, - { - "date": "Nov 12, 1995", - "at": "@", - "fav": "New Orleans Saints", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Nov 12, 1995", - "at": null, - "fav": "Oakland Raiders", - "und": "New York Giants", - "sF": "17", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 12, 1995", - "at": "@", - "fav": "St Louis Rams", - "und": "Carolina Panthers", - "sF": "28", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 12, 1995", - "at": null, - "fav": "Minnesota Vikings", - "und": "Arizona Cardinals", - "sF": "30", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 12, 1995", - "at": "@", - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "38", - "spread": "13", - "ou": null - }, - { - "date": "Nov 12, 1995", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "7", - "sU": "22", - "spread": "1", - "ou": null - }, - { - "date": "Nov 12, 1995", - "at": null, - "fav": "Denver Broncos", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Nov 13, 1995", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "20", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Nov 19, 1995", - "at": "@", - "fav": "Atlanta Falcons", - "und": "St Louis Rams", - "sF": "31", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 1995", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 1995", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "49", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Nov 19, 1995", - "at": null, - "fav": "Green Bay Packers", - "und": "Cleveland Browns", - "sF": "31", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 19, 1995", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "10", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 1995", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "28", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Nov 19, 1995", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 19, 1995", - "at": "@", - "fav": "Washington Redskins", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 1995", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "30", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 1995", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "43", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Nov 19, 1995", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "28", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Nov 19, 1995", - "at": null, - "fav": "Dallas Cowboys", - "und": "Oakland Raiders", - "sF": "34", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 1995", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "20", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Nov 20, 1995", - "at": "@", - "fav": "Miami Dolphins", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "44", - "spread": "2", - "ou": null - }, - { - "date": "Nov 23, 1995", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "44", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1995", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "12", - "spread": "10", - "ou": null - }, - { - "date": "Nov 26, 1995", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "25", - "sU": "35", - "spread": "6", - "ou": null - }, - { - "date": "Nov 26, 1995", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "35", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Nov 26, 1995", - "at": null, - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "28", - "sU": "36", - "spread": "2", - "ou": null - }, - { - "date": "Nov 26, 1995", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 26, 1995", - "at": null, - "fav": "Chicago Bears", - "und": "New York Giants", - "sF": "27", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 26, 1995", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "14", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1995", - "at": null, - "fav": "Atlanta Falcons", - "und": "Arizona Cardinals", - "sF": "37", - "sU": "40", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1995", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "20", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 26, 1995", - "at": null, - "fav": "Denver Broncos", - "und": "Houston Oilers", - "sF": "33", - "sU": "42", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1995", - "at": "@", - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "41", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Nov 26, 1995", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New York Jets", - "sF": "10", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 26, 1995", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "34", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Nov 27, 1995", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "6", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Nov 30, 1995", - "at": "@", - "fav": "Arizona Cardinals", - "und": "New York Giants", - "sF": "6", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Dec 3, 1995", - "at": null, - "fav": "Indianapolis Colts", - "und": "Carolina Panthers", - "sF": "10", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Dec 3, 1995", - "at": "@", - "fav": "Green Bay Packers", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 3, 1995", - "at": "@", - "fav": "Miami Dolphins", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Dec 3, 1995", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 3, 1995", - "at": "@", - "fav": "New England Patriots", - "und": "New Orleans Saints", - "sF": "17", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Dec 3, 1995", - "at": null, - "fav": "St Louis Rams", - "und": "New York Jets", - "sF": "23", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 3, 1995", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "21", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Dec 3, 1995", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "17", - "sU": "24", - "spread": "17", - "ou": null - }, - { - "date": "Dec 3, 1995", - "at": "@", - "fav": "Denver Broncos", - "und": "Jacksonville Jaguars", - "sF": "31", - "sU": "23", - "spread": "11", - "ou": null - }, - { - "date": "Dec 3, 1995", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "23", - "sU": "29", - "spread": "1", - "ou": null - }, - { - "date": "Dec 3, 1995", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cleveland Browns", - "sF": "31", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 3, 1995", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Seattle Seahawks", - "sF": "14", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 1995", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Buffalo Bills", - "sF": "27", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Dec 4, 1995", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "27", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 1995", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Cleveland Browns", - "sF": "27", - "sU": "11", - "spread": "9", - "ou": null - }, - { - "date": "Dec 9, 1995", - "at": "@", - "fav": "San Diego Chargers", - "und": "Arizona Cardinals", - "sF": "28", - "sU": "25", - "spread": "8", - "ou": null - }, - { - "date": "Dec 10, 1995", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "19", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Dec 10, 1995", - "at": null, - "fav": "San Francisco 49ers", - "und": "Carolina Panthers", - "sF": "31", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Dec 10, 1995", - "at": null, - "fav": "Chicago Bears", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 1995", - "at": null, - "fav": "Detroit Lions", - "und": "Houston Oilers", - "sF": "24", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 1995", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "41", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Dec 10, 1995", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "31", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Dec 10, 1995", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Dec 10, 1995", - "at": null, - "fav": "Buffalo Bills", - "und": "St Louis Rams", - "sF": "45", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 1995", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Dec 10, 1995", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "20", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 1995", - "at": "@", - "fav": "Oakland Raiders", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "29", - "spread": "1", - "ou": null - }, - { - "date": "Dec 10, 1995", - "at": null, - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 11, 1995", - "at": "@", - "fav": "Miami Dolphins", - "und": "Kansas City Chiefs", - "sF": "13", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 1995", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New England Patriots", - "sF": "41", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Dec 16, 1995", - "at": null, - "fav": "Green Bay Packers", - "und": "New Orleans Saints", - "sF": "34", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Dec 17, 1995", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 1995", - "at": null, - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "17", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Dec 17, 1995", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 17, 1995", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "10", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Dec 17, 1995", - "at": "@", - "fav": "Detroit Lions", - "und": "Jacksonville Jaguars", - "sF": "44", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Dec 17, 1995", - "at": "@", - "fav": "Houston Oilers", - "und": "New York Jets", - "sF": "23", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Dec 17, 1995", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "21", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Dec 17, 1995", - "at": "@", - "fav": "St Louis Rams", - "und": "Washington Redskins", - "sF": "23", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 1995", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "21", - "sU": "20", - "spread": "15", - "ou": null - }, - { - "date": "Dec 17, 1995", - "at": "@", - "fav": "Indianapolis Colts", - "und": "San Diego Chargers", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 1995", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "20", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 1995", - "at": null, - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "10", - "sU": "44", - "spread": "2", - "ou": null - }, - { - "date": "Dec 18, 1995", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "37", - "sU": "30", - "spread": "13", - "ou": null - }, - { - "date": "Dec 23, 1995", - "at": null, - "fav": "San Diego Chargers", - "und": "New York Giants", - "sF": "27", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 23, 1995", - "at": null, - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "37", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 23, 1995", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "10", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 24, 1995", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Dec 24, 1995", - "at": "@", - "fav": "Buffalo Bills", - "und": "Houston Oilers", - "sF": "17", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Dec 24, 1995", - "at": "@", - "fav": "Chicago Bears", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 1995", - "at": null, - "fav": "Minnesota Vikings", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Dec 24, 1995", - "at": "@", - "fav": "Green Bay Packers", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 1995", - "at": null, - "fav": "Cleveland Browns", - "und": "Jacksonville Jaguars", - "sF": "21", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 24, 1995", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "26", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Dec 24, 1995", - "at": null, - "fav": "New Orleans Saints", - "und": "New York Jets", - "sF": "12", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Dec 24, 1995", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "28", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Dec 24, 1995", - "at": null, - "fav": "Miami Dolphins", - "und": "St Louis Rams", - "sF": "41", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Dec 24, 1995", - "at": "@", - "fav": "Washington Redskins", - "und": "Carolina Panthers", - "sF": "20", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 25, 1995", - "at": null, - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "37", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Dec 30, 1995", - "at": "@", - "fav": "Buffalo Bills (3)", - "und": "Miami Dolphins (6)", - "sF": "37", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Dec 30, 1995", - "at": null, - "fav": "Detroit Lions (5)", - "und": "Philadelphia Eagles (4)", - "sF": "37", - "sU": "58", - "spread": "3", - "ou": null - }, - { - "date": "Dec 31, 1995", - "at": "@", - "fav": "Green Bay Packers (3)", - "und": "Atlanta Falcons (6)", - "sF": "37", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Dec 31, 1995", - "at": "@", - "fav": "San Diego Chargers (4)", - "und": "Indianapolis Colts (5)", - "sF": "20", - "sU": "35", - "spread": "5", - "ou": null - }, - { - "date": "Jan 6, 1996", - "at": "@", - "fav": "Pittsburgh Steelers (2)", - "und": "Buffalo Bills (3)", - "sF": "40", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Jan 6, 1996", - "at": "@", - "fav": "San Francisco 49ers (2)", - "und": "Green Bay Packers (3)", - "sF": "17", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Jan 7, 1996", - "at": "@", - "fav": "Dallas Cowboys (1)", - "und": "Philadelphia Eagles (4)", - "sF": "30", - "sU": "11", - "spread": "13", - "ou": null - }, - { - "date": "Jan 7, 1996", - "at": "@", - "fav": "Kansas City Chiefs (1)", - "und": "Indianapolis Colts (5)", - "sF": "7", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Jan 14, 1996", - "at": "@", - "fav": "Pittsburgh Steelers (2)", - "und": "Indianapolis Colts (5)", - "sF": "20", - "sU": "16", - "spread": "11", - "ou": null - }, - { - "date": "Jan 14, 1996", - "at": "@", - "fav": "Dallas Cowboys (1)", - "und": "Green Bay Packers (3)", - "sF": "38", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Jan 28, 1996", - "at": "N", - "fav": "Dallas Cowboys (1)", - "und": "Pittsburgh Steelers (2)", - "sF": "27", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Sep 1, 1996", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Oakland Raiders", - "sF": "19", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Sep 1, 1996", - "at": null, - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "6", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Sep 1, 1996", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Houston Oilers", - "sF": "20", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Sep 1, 1996", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Sep 1, 1996", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "9", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Sep 1, 1996", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "17", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 1, 1996", - "at": "@", - "fav": "St Louis Rams", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 1, 1996", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 1, 1996", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Jets", - "sF": "31", - "sU": "6", - "spread": "8", - "ou": null - }, - { - "date": "Sep 1, 1996", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "24", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 1, 1996", - "at": "@", - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "29", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 1, 1996", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "27", - "sU": "11", - "spread": "12", - "ou": null - }, - { - "date": "Sep 1, 1996", - "at": null, - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "34", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 1, 1996", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Giants", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 2, 1996", - "at": null, - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "6", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Sep 8, 1996", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Sep 8, 1996", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "17", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 8, 1996", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Sep 8, 1996", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Houston Oilers", - "sF": "27", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Sep 8, 1996", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "19", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 8, 1996", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "20", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 1996", - "at": null, - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "21", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 8, 1996", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "31", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 8, 1996", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "27", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Sep 8, 1996", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 8, 1996", - "at": "@", - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "34", - "sU": "0", - "spread": "12", - "ou": null - }, - { - "date": "Sep 8, 1996", - "at": null, - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "30", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 8, 1996", - "at": null, - "fav": "Miami Dolphins", - "und": "Arizona Cardinals", - "sF": "38", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 9, 1996", - "at": "@", - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "39", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Sep 15, 1996", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 1996", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New Orleans Saints", - "sF": "30", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 1996", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Diego Chargers", - "sF": "42", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Sep 15, 1996", - "at": "@", - "fav": "Houston Oilers", - "und": "Baltimore Ravens", - "sF": "29", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 1996", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "36", - "sU": "27", - "spread": "12", - "ou": null - }, - { - "date": "Sep 15, 1996", - "at": "@", - "fav": "New England Patriots", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Sep 15, 1996", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Detroit Lions", - "sF": "24", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 15, 1996", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "25", - "spread": "9", - "ou": null - }, - { - "date": "Sep 15, 1996", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "31", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Sep 15, 1996", - "at": "@", - "fav": "Oakland Raiders", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 15, 1996", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "35", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 1996", - "at": "@", - "fav": "Denver Broncos", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "23", - "spread": "13", - "ou": null - }, - { - "date": "Sep 16, 1996", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Buffalo Bills", - "sF": "24", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Sep 22, 1996", - "at": null, - "fav": "San Francisco 49ers", - "und": "Carolina Panthers", - "sF": "7", - "sU": "23", - "spread": "9", - "ou": null - }, - { - "date": "Sep 22, 1996", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "17", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Sep 22, 1996", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Sep 22, 1996", - "at": "@", - "fav": "New England Patriots", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "25", - "spread": "8", - "ou": null - }, - { - "date": "Sep 22, 1996", - "at": "@", - "fav": "New Orleans Saints", - "und": "Arizona Cardinals", - "sF": "14", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Sep 22, 1996", - "at": "@", - "fav": "New York Jets", - "und": "New York Giants", - "sF": "6", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 22, 1996", - "at": "@", - "fav": "St Louis Rams", - "und": "Washington Redskins", - "sF": "10", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 22, 1996", - "at": null, - "fav": "Dallas Cowboys", - "und": "Buffalo Bills", - "sF": "7", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 22, 1996", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "35", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Sep 22, 1996", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "34", - "sU": "40", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 1996", - "at": null, - "fav": "Seattle Seahawks", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 22, 1996", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Philadelphia Eagles", - "sF": "18", - "sU": "33", - "spread": "2", - "ou": null - }, - { - "date": "Sep 23, 1996", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Miami Dolphins", - "sF": "10", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 1996", - "at": "@", - "fav": "Baltimore Ravens", - "und": "New Orleans Saints", - "sF": "17", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 29, 1996", - "at": "@", - "fav": "Chicago Bears", - "und": "Oakland Raiders", - "sF": "19", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 1996", - "at": null, - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "14", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 1996", - "at": null, - "fav": "Carolina Panthers", - "und": "Jacksonville Jaguars", - "sF": "14", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 1996", - "at": null, - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "10", - "sU": "15", - "spread": "5", - "ou": null - }, - { - "date": "Sep 29, 1996", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "30", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Sep 29, 1996", - "at": null, - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Sep 29, 1996", - "at": "@", - "fav": "Arizona Cardinals", - "und": "St Louis Rams", - "sF": "31", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Sep 29, 1996", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "22", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 1996", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "39", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Sep 29, 1996", - "at": null, - "fav": "Green Bay Packers", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Sep 29, 1996", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Jets", - "sF": "31", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Sep 30, 1996", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "19", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 6, 1996", - "at": null, - "fav": "New England Patriots", - "und": "Baltimore Ravens", - "sF": "46", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Oct 6, 1996", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "37", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Oct 6, 1996", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Oct 6, 1996", - "at": "@", - "fav": "Miami Dolphins", - "und": "Seattle Seahawks", - "sF": "15", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Oct 6, 1996", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Carolina Panthers", - "sF": "14", - "sU": "12", - "spread": "6", - "ou": null - }, - { - "date": "Oct 6, 1996", - "at": null, - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "34", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1996", - "at": "@", - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1996", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "28", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1996", - "at": "@", - "fav": "New Orleans Saints", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Oct 6, 1996", - "at": null, - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "28", - "sU": "11", - "spread": "10", - "ou": null - }, - { - "date": "Oct 6, 1996", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Oilers", - "sF": "27", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Oct 7, 1996", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Pittsburgh Steelers", - "sF": "7", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 13, 1996", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Houston Oilers", - "sF": "13", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 13, 1996", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "7", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 1996", - "at": "@", - "fav": "Carolina Panthers", - "und": "St Louis Rams", - "sF": "45", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 13, 1996", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Oct 13, 1996", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "New York Jets", - "sF": "21", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 13, 1996", - "at": "@", - "fav": "New England Patriots", - "und": "Washington Redskins", - "sF": "22", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Oct 13, 1996", - "at": "@", - "fav": "New Orleans Saints", - "und": "Chicago Bears", - "sF": "27", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Oct 13, 1996", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Oct 13, 1996", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 1996", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "19", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 1996", - "at": "@", - "fav": "Oakland Raiders", - "und": "Detroit Lions", - "sF": "37", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Oct 13, 1996", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Baltimore Ravens", - "sF": "26", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Oct 14, 1996", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Oct 17, 1996", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Oct 20, 1996", - "at": "@", - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "19", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 20, 1996", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "32", - "sU": "28", - "spread": "15", - "ou": null - }, - { - "date": "Oct 20, 1996", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "9", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 1996", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Miami Dolphins", - "sF": "35", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 20, 1996", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "31", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 20, 1996", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 1996", - "at": "@", - "fav": "Denver Broncos", - "und": "Baltimore Ravens", - "sF": "45", - "sU": "34", - "spread": "11", - "ou": null - }, - { - "date": "Oct 20, 1996", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Oilers", - "sF": "13", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 20, 1996", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "25", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Oct 20, 1996", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Oct 21, 1996", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "14", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 1996", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 27, 1996", - "at": "@", - "fav": "Baltimore Ravens", - "und": "St Louis Rams", - "sF": "37", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Oct 27, 1996", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 1996", - "at": "@", - "fav": "Detroit Lions", - "und": "New York Giants", - "sF": "7", - "sU": "35", - "spread": "10", - "ou": null - }, - { - "date": "Oct 27, 1996", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "7", - "spread": "17", - "ou": null - }, - { - "date": "Oct 27, 1996", - "at": null, - "fav": "San Francisco 49ers", - "und": "Houston Oilers", - "sF": "10", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Oct 27, 1996", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Carolina Panthers", - "sF": "20", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Oct 27, 1996", - "at": "@", - "fav": "Washington Redskins", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 1996", - "at": "@", - "fav": "Arizona Cardinals", - "und": "New York Jets", - "sF": "21", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Oct 27, 1996", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "34", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 1996", - "at": null, - "fav": "Dallas Cowboys", - "und": "Miami Dolphins", - "sF": "29", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 1996", - "at": null, - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "13", - "sU": "32", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 1996", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "28", - "sU": "25", - "spread": "4", - "ou": null - }, - { - "date": "Oct 28, 1996", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "13", - "sU": "15", - "spread": "6", - "ou": null - }, - { - "date": "Nov 3, 1996", - "at": null, - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 3, 1996", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 1996", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 3, 1996", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "31", - "spread": "8", - "ou": null - }, - { - "date": "Nov 3, 1996", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "28", - "sU": "18", - "spread": "11", - "ou": null - }, - { - "date": "Nov 3, 1996", - "at": "@", - "fav": "Indianapolis Colts", - "und": "San Diego Chargers", - "sF": "19", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Nov 3, 1996", - "at": "@", - "fav": "New York Giants", - "und": "Arizona Cardinals", - "sF": "16", - "sU": "8", - "spread": "5", - "ou": null - }, - { - "date": "Nov 3, 1996", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "St Louis Rams", - "sF": "42", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Nov 3, 1996", - "at": "@", - "fav": "Buffalo Bills", - "und": "Washington Redskins", - "sF": "38", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 1996", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Nov 3, 1996", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "42", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Nov 3, 1996", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "24", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 4, 1996", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "21", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Nov 10, 1996", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Nov 10, 1996", - "at": null, - "fav": "Green Bay Packers", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 1996", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "37", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 1996", - "at": null, - "fav": "Houston Oilers", - "und": "New Orleans Saints", - "sF": "31", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 1996", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "31", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Nov 10, 1996", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Buffalo Bills", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 1996", - "at": null, - "fav": "Atlanta Falcons", - "und": "St Louis Rams", - "sF": "16", - "sU": "59", - "spread": "1", - "ou": null - }, - { - "date": "Nov 10, 1996", - "at": null, - "fav": "Oakland Raiders", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Nov 10, 1996", - "at": "@", - "fav": "Washington Redskins", - "und": "Arizona Cardinals", - "sF": "34", - "sU": "37", - "spread": "10", - "ou": null - }, - { - "date": "Nov 10, 1996", - "at": "@", - "fav": "Denver Broncos", - "und": "Chicago Bears", - "sF": "17", - "sU": "12", - "spread": "10", - "ou": null - }, - { - "date": "Nov 10, 1996", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Baltimore Ravens", - "sF": "30", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 1996", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 1996", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Minnesota Vikings", - "sF": "42", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 10, 1996", - "at": "@", - "fav": "Carolina Panthers", - "und": "New York Giants", - "sF": "27", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 11, 1996", - "at": "@", - "fav": "San Diego Chargers", - "und": "Detroit Lions", - "sF": "27", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 1996", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "17", - "sU": "15", - "spread": "4", - "ou": null - }, - { - "date": "Nov 17, 1996", - "at": "@", - "fav": "Buffalo Bills", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 17, 1996", - "at": "@", - "fav": "Detroit Lions", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Nov 17, 1996", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "34", - "sU": "29", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 1996", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Chicago Bears", - "sF": "14", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Nov 17, 1996", - "at": "@", - "fav": "New England Patriots", - "und": "Denver Broncos", - "sF": "8", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Nov 17, 1996", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "21", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 1996", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "3", - "spread": "11", - "ou": null - }, - { - "date": "Nov 17, 1996", - "at": null, - "fav": "Carolina Panthers", - "und": "St Louis Rams", - "sF": "20", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 1996", - "at": "@", - "fav": "Arizona Cardinals", - "und": "New York Giants", - "sF": "31", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Nov 17, 1996", - "at": "@", - "fav": "Houston Oilers", - "und": "Miami Dolphins", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 1996", - "at": "@", - "fav": "San Diego Chargers", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "25", - "spread": "7", - "ou": null - }, - { - "date": "Nov 17, 1996", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Baltimore Ravens", - "sF": "38", - "sU": "20", - "spread": "12", - "ou": null - }, - { - "date": "Nov 17, 1996", - "at": "@", - "fav": "Oakland Raiders", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Nov 18, 1996", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "21", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 1996", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Jacksonville Jaguars", - "sF": "25", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 1996", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "35", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 24, 1996", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "31", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 1996", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Atlanta Falcons", - "sF": "41", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 24, 1996", - "at": "@", - "fav": "Houston Oilers", - "und": "Carolina Panthers", - "sF": "6", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 1996", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "14", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Nov 24, 1996", - "at": null, - "fav": "Denver Broncos", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 24, 1996", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "27", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 24, 1996", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "13", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 24, 1996", - "at": null, - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "19", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 1996", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "30", - "sU": "36", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 1996", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "6", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Nov 24, 1996", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Oakland Raiders", - "sF": "21", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 24, 1996", - "at": null, - "fav": "Green Bay Packers", - "und": "St Louis Rams", - "sF": "24", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Nov 25, 1996", - "at": "@", - "fav": "Miami Dolphins", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 28, 1996", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Detroit Lions", - "sF": "28", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 28, 1996", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "21", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Dec 1, 1996", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "17", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Dec 1, 1996", - "at": "@", - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Dec 1, 1996", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "28", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Dec 1, 1996", - "at": null, - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 1996", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Cincinnati Bengals", - "sF": "30", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 1996", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Arizona Cardinals", - "sF": "41", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 1, 1996", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "24", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Dec 1, 1996", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Dec 1, 1996", - "at": "@", - "fav": "New Orleans Saints", - "und": "St Louis Rams", - "sF": "10", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 1996", - "at": null, - "fav": "Houston Oilers", - "und": "New York Jets", - "sF": "35", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 1996", - "at": "@", - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "17", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 1, 1996", - "at": "@", - "fav": "San Diego Chargers", - "und": "New England Patriots", - "sF": "7", - "sU": "45", - "spread": "2", - "ou": null - }, - { - "date": "Dec 2, 1996", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Dec 5, 1996", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Indianapolis Colts", - "sF": "10", - "sU": "37", - "spread": "4", - "ou": null - }, - { - "date": "Dec 8, 1996", - "at": "@", - "fav": "Chicago Bears", - "und": "St Louis Rams", - "sF": "35", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 1996", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Baltimore Ravens", - "sF": "21", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 1996", - "at": "@", - "fav": "Green Bay Packers", - "und": "Denver Broncos", - "sF": "41", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Dec 8, 1996", - "at": "@", - "fav": "Houston Oilers", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 1996", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Giants", - "sF": "7", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 8, 1996", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "15", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Dec 8, 1996", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "16", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Dec 8, 1996", - "at": null, - "fav": "Washington Redskins", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 1996", - "at": null, - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "10", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Dec 8, 1996", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "34", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Dec 8, 1996", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Carolina Panthers", - "sF": "24", - "sU": "30", - "spread": "9", - "ou": null - }, - { - "date": "Dec 8, 1996", - "at": null, - "fav": "Buffalo Bills", - "und": "Seattle Seahawks", - "sF": "18", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Dec 8, 1996", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "22", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 9, 1996", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "26", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 14, 1996", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Jets", - "sF": "21", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 1996", - "at": "@", - "fav": "Chicago Bears", - "und": "San Diego Chargers", - "sF": "27", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 1996", - "at": "@", - "fav": "Atlanta Falcons", - "und": "St Louis Rams", - "sF": "27", - "sU": "34", - "spread": "5", - "ou": null - }, - { - "date": "Dec 15, 1996", - "at": "@", - "fav": "Carolina Panthers", - "und": "Baltimore Ravens", - "sF": "27", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 1996", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New England Patriots", - "sF": "12", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Dec 15, 1996", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "31", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Dec 15, 1996", - "at": "@", - "fav": "Houston Oilers", - "und": "Cincinnati Bengals", - "sF": "13", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Dec 15, 1996", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 15, 1996", - "at": "@", - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "3", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 1996", - "at": null, - "fav": "San Francisco 49ers", - "und": "Pittsburgh Steelers", - "sF": "25", - "sU": "15", - "spread": "2", - "ou": null - }, - { - "date": "Dec 15, 1996", - "at": null, - "fav": "Washington Redskins", - "und": "Arizona Cardinals", - "sF": "26", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 1996", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "24", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 1996", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Indianapolis Colts", - "sF": "19", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 1996", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Dec 16, 1996", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "14", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Dec 21, 1996", - "at": null, - "fav": "New England Patriots", - "und": "New York Giants", - "sF": "23", - "sU": "22", - "spread": "8", - "ou": null - }, - { - "date": "Dec 21, 1996", - "at": "@", - "fav": "St Louis Rams", - "und": "New Orleans Saints", - "sF": "14", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Dec 22, 1996", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Houston Oilers", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 1996", - "at": "@", - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Dec 22, 1996", - "at": "@", - "fav": "Carolina Panthers", - "und": "Pittsburgh Steelers", - "sF": "18", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Dec 22, 1996", - "at": null, - "fav": "Indianapolis Colts", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Dec 22, 1996", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "38", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Dec 22, 1996", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Atlanta Falcons", - "sF": "19", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 22, 1996", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "31", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 1996", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "29", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Dec 22, 1996", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "34", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Dec 22, 1996", - "at": "@", - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Dec 22, 1996", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "10", - "sU": "37", - "spread": "1", - "ou": null - }, - { - "date": "Dec 22, 1996", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "10", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Dec 23, 1996", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "24", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Dec 28, 1996", - "at": "@", - "fav": "Buffalo Bills (4)", - "und": "Jacksonville Jaguars (5)", - "sF": "27", - "sU": "30", - "spread": "8", - "ou": null - }, - { - "date": "Dec 28, 1996", - "at": "@", - "fav": "Dallas Cowboys (3)", - "und": "Minnesota Vikings (6)", - "sF": "40", - "sU": "15", - "spread": "10", - "ou": null - }, - { - "date": "Dec 29, 1996", - "at": "@", - "fav": "Pittsburgh Steelers (3)", - "und": "Indianapolis Colts (6)", - "sF": "42", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Dec 29, 1996", - "at": "@", - "fav": "San Francisco 49ers (4)", - "und": "Philadelphia Eagles (5)", - "sF": "14", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Jan 4, 1997", - "at": "@", - "fav": "Green Bay Packers (1)", - "und": "San Francisco 49ers (4)", - "sF": "35", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Jan 4, 1997", - "at": "@", - "fav": "Denver Broncos (1)", - "und": "Jacksonville Jaguars (5)", - "sF": "27", - "sU": "30", - "spread": "14", - "ou": null - }, - { - "date": "Jan 5, 1997", - "at": "@", - "fav": "New England Patriots (2)", - "und": "Pittsburgh Steelers (3)", - "sF": "28", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Jan 5, 1997", - "at": null, - "fav": "Dallas Cowboys (3)", - "und": "Carolina Panthers (2)", - "sF": "17", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Jan 12, 1997", - "at": "@", - "fav": "Green Bay Packers (1)", - "und": "Carolina Panthers (2)", - "sF": "30", - "sU": "13", - "spread": "12", - "ou": null - }, - { - "date": "Jan 12, 1997", - "at": "@", - "fav": "New England Patriots (2)", - "und": "Jacksonville Jaguars (5)", - "sF": "20", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Jan 26, 1997", - "at": "N", - "fav": "Green Bay Packers (1)", - "und": "New England Patriots (2)", - "sF": "35", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Aug 31, 1997", - "at": "@", - "fav": "Buffalo Bills", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Aug 31, 1997", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Aug 31, 1997", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Aug 31, 1997", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "16", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Aug 31, 1997", - "at": "@", - "fav": "New England Patriots", - "und": "San Diego Chargers", - "sF": "41", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Aug 31, 1997", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "17", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Aug 31, 1997", - "at": null, - "fav": "Dallas Cowboys", - "und": "Pittsburgh Steelers", - "sF": "37", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Aug 31, 1997", - "at": "@", - "fav": "St Louis Rams", - "und": "New Orleans Saints", - "sF": "38", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Aug 31, 1997", - "at": null, - "fav": "Oakland Raiders", - "und": "Tennessee Oilers", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Aug 31, 1997", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Baltimore Ravens", - "sF": "28", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Aug 31, 1997", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "19", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Aug 31, 1997", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New York Jets", - "sF": "3", - "sU": "41", - "spread": "6", - "ou": null - }, - { - "date": "Aug 31, 1997", - "at": null, - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "6", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Aug 31, 1997", - "at": "@", - "fav": "Carolina Panthers", - "und": "Washington Redskins", - "sF": "10", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 1, 1997", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "38", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Sep 7, 1997", - "at": null, - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "9", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 1997", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Baltimore Ravens", - "sF": "10", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Sep 7, 1997", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "27", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Sep 7, 1997", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Sep 7, 1997", - "at": null, - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Sep 7, 1997", - "at": "@", - "fav": "Miami Dolphins", - "und": "Tennessee Oilers", - "sF": "16", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Sep 7, 1997", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Diego Chargers", - "sF": "6", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 7, 1997", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "22", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Sep 7, 1997", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "14", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 1997", - "at": null, - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "15", - "sU": "12", - "spread": "5", - "ou": null - }, - { - "date": "Sep 7, 1997", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "New York Giants", - "sF": "40", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Sep 7, 1997", - "at": null, - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "9", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 7, 1997", - "at": null, - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "35", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 7, 1997", - "at": null, - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "22", - "sU": "25", - "spread": "9", - "ou": null - }, - { - "date": "Sep 8, 1997", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Sep 14, 1997", - "at": null, - "fav": "Oakland Raiders", - "und": "Atlanta Falcons", - "sF": "36", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 1997", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "7", - "sU": "32", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 1997", - "at": "@", - "fav": "Green Bay Packers", - "und": "Miami Dolphins", - "sF": "23", - "sU": "18", - "spread": "11", - "ou": null - }, - { - "date": "Sep 14, 1997", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "22", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Sep 14, 1997", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "14", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Sep 14, 1997", - "at": "@", - "fav": "New York Giants", - "und": "Baltimore Ravens", - "sF": "23", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 1997", - "at": "@", - "fav": "Washington Redskins", - "und": "Arizona Cardinals", - "sF": "19", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Sep 14, 1997", - "at": "@", - "fav": "Denver Broncos", - "und": "St Louis Rams", - "sF": "35", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Sep 14, 1997", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Seattle Seahawks", - "sF": "3", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 1997", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "33", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Sep 14, 1997", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "27", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Sep 15, 1997", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Sep 21, 1997", - "at": "@", - "fav": "Carolina Panthers", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Sep 21, 1997", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "38", - "sU": "32", - "spread": "11", - "ou": null - }, - { - "date": "Sep 21, 1997", - "at": "@", - "fav": "New England Patriots", - "und": "Chicago Bears", - "sF": "31", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Sep 21, 1997", - "at": null, - "fav": "Detroit Lions", - "und": "New Orleans Saints", - "sF": "17", - "sU": "35", - "spread": "5", - "ou": null - }, - { - "date": "Sep 21, 1997", - "at": "@", - "fav": "Tennessee Oilers", - "und": "Baltimore Ravens", - "sF": "10", - "sU": "36", - "spread": "4", - "ou": null - }, - { - "date": "Sep 21, 1997", - "at": "@", - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "37", - "sU": "35", - "spread": "6", - "ou": null - }, - { - "date": "Sep 21, 1997", - "at": "@", - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "38", - "sU": "20", - "spread": "12", - "ou": null - }, - { - "date": "Sep 21, 1997", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "7", - "spread": "15", - "ou": null - }, - { - "date": "Sep 21, 1997", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "26", - "sU": "22", - "spread": "4", - "ou": null - }, - { - "date": "Sep 21, 1997", - "at": "@", - "fav": "St Louis Rams", - "und": "New York Giants", - "sF": "13", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 1997", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Miami Dolphins", - "sF": "31", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 1997", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Pittsburgh Steelers", - "sF": "30", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 1997", - "at": null, - "fav": "Denver Broncos", - "und": "Atlanta Falcons", - "sF": "29", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Sep 28, 1997", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "15", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Sep 28, 1997", - "at": "@", - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "14", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Sep 28, 1997", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Tennessee Oilers", - "sF": "37", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Sep 28, 1997", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Arizona Cardinals", - "sF": "19", - "sU": "18", - "spread": "7", - "ou": null - }, - { - "date": "Sep 28, 1997", - "at": "@", - "fav": "Washington Redskins", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Sep 28, 1997", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New York Jets", - "sF": "14", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Sep 28, 1997", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "27", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Sep 28, 1997", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 28, 1997", - "at": "@", - "fav": "Oakland Raiders", - "und": "St Louis Rams", - "sF": "35", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 28, 1997", - "at": "@", - "fav": "San Diego Chargers", - "und": "Baltimore Ravens", - "sF": "21", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 28, 1997", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 1997", - "at": null, - "fav": "San Francisco 49ers", - "und": "Carolina Panthers", - "sF": "34", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 5, 1997", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "42", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Oct 5, 1997", - "at": "@", - "fav": "Buffalo Bills", - "und": "Detroit Lions", - "sF": "22", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 5, 1997", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1997", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1997", - "at": "@", - "fav": "Miami Dolphins", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 5, 1997", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "17", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1997", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "24", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 5, 1997", - "at": null, - "fav": "Minnesota Vikings", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Oct 5, 1997", - "at": null, - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "16", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Oct 5, 1997", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "10", - "sU": "25", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 1997", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Tennessee Oilers", - "sF": "16", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Oct 5, 1997", - "at": "@", - "fav": "Chicago Bears", - "und": "New Orleans Saints", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 1997", - "at": "@", - "fav": "Denver Broncos", - "und": "New England Patriots", - "sF": "34", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Oct 12, 1997", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "24", - "sU": "23", - "spread": "11", - "ou": null - }, - { - "date": "Oct 12, 1997", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 1997", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "33", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Oct 12, 1997", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 12, 1997", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "20", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 1997", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "9", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Oct 12, 1997", - "at": "@", - "fav": "Tennessee Oilers", - "und": "Cincinnati Bengals", - "sF": "30", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Oct 12, 1997", - "at": "@", - "fav": "Arizona Cardinals", - "und": "New York Giants", - "sF": "13", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 1997", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Carolina Panthers", - "sF": "21", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 12, 1997", - "at": "@", - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "30", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Oct 12, 1997", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "22", - "spread": "10", - "ou": null - }, - { - "date": "Oct 13, 1997", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "16", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 1997", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "31", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Oct 19, 1997", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "35", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Oct 19, 1997", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Jacksonville Jaguars", - "sF": "26", - "sU": "22", - "spread": "4", - "ou": null - }, - { - "date": "Oct 19, 1997", - "at": null, - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "13", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Oct 19, 1997", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "19", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 1997", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "13", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Oct 19, 1997", - "at": null, - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "17", - "sU": "9", - "spread": "1", - "ou": null - }, - { - "date": "Oct 19, 1997", - "at": null, - "fav": "Washington Redskins", - "und": "Tennessee Oilers", - "sF": "14", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 19, 1997", - "at": null, - "fav": "Miami Dolphins", - "und": "Baltimore Ravens", - "sF": "24", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 19, 1997", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Oct 19, 1997", - "at": "@", - "fav": "Detroit Lions", - "und": "New York Giants", - "sF": "20", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Oct 19, 1997", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "25", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Oct 20, 1997", - "at": null, - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "9", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Oct 26, 1997", - "at": null, - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "23", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 26, 1997", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "23", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Oct 26, 1997", - "at": "@", - "fav": "New York Giants", - "und": "Cincinnati Bengals", - "sF": "29", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Oct 26, 1997", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "12", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 26, 1997", - "at": null, - "fav": "Kansas City Chiefs", - "und": "St Louis Rams", - "sF": "28", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Oct 26, 1997", - "at": "@", - "fav": "Washington Redskins", - "und": "Baltimore Ravens", - "sF": "17", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 26, 1997", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Tennessee Oilers", - "sF": "14", - "sU": "41", - "spread": "2", - "ou": null - }, - { - "date": "Oct 26, 1997", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "23", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 1997", - "at": "@", - "fav": "San Diego Chargers", - "und": "Indianapolis Colts", - "sF": "35", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Oct 26, 1997", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Oakland Raiders", - "sF": "45", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Oct 26, 1997", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Minnesota Vikings", - "sF": "6", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 26, 1997", - "at": "@", - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "12", - "spread": "8", - "ou": null - }, - { - "date": "Oct 27, 1997", - "at": "@", - "fav": "Miami Dolphins", - "und": "Chicago Bears", - "sF": "33", - "sU": "36", - "spread": "9", - "ou": null - }, - { - "date": "Oct 27, 1997", - "at": "@", - "fav": "New England Patriots", - "und": "Green Bay Packers", - "sF": "10", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Nov 2, 1997", - "at": "@", - "fav": "Atlanta Falcons", - "und": "St Louis Rams", - "sF": "34", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 1997", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "9", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Nov 2, 1997", - "at": "@", - "fav": "Carolina Panthers", - "und": "Oakland Raiders", - "sF": "38", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 2, 1997", - "at": null, - "fav": "Washington Redskins", - "und": "Chicago Bears", - "sF": "31", - "sU": "8", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 1997", - "at": null, - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Nov 2, 1997", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Nov 2, 1997", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New England Patriots", - "sF": "23", - "sU": "18", - "spread": "1", - "ou": null - }, - { - "date": "Nov 2, 1997", - "at": "@", - "fav": "New York Jets", - "und": "Baltimore Ravens", - "sF": "19", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Nov 2, 1997", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "21", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 2, 1997", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "30", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Nov 2, 1997", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 2, 1997", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Tennessee Oilers", - "sF": "30", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Nov 2, 1997", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "20", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Nov 3, 1997", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 1997", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 1997", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "6", - "spread": "8", - "ou": null - }, - { - "date": "Nov 9, 1997", - "at": "@", - "fav": "Green Bay Packers", - "und": "St Louis Rams", - "sF": "17", - "sU": "7", - "spread": "15", - "ou": null - }, - { - "date": "Nov 9, 1997", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Indianapolis Colts", - "sF": "28", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 9, 1997", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 9, 1997", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "24", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 9, 1997", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "29", - "sU": "22", - "spread": "9", - "ou": null - }, - { - "date": "Nov 9, 1997", - "at": "@", - "fav": "Washington Redskins", - "und": "Detroit Lions", - "sF": "30", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 9, 1997", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "31", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 1997", - "at": "@", - "fav": "Denver Broncos", - "und": "Carolina Panthers", - "sF": "34", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Nov 9, 1997", - "at": "@", - "fav": "Oakland Raiders", - "und": "New Orleans Saints", - "sF": "10", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Nov 9, 1997", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "37", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 1997", - "at": "@", - "fav": "Tennessee Oilers", - "und": "New York Giants", - "sF": "10", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Nov 9, 1997", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "37", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 10, 1997", - "at": null, - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1997", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 16, 1997", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "15", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Nov 16, 1997", - "at": null, - "fav": "Green Bay Packers", - "und": "Indianapolis Colts", - "sF": "38", - "sU": "41", - "spread": "13", - "ou": null - }, - { - "date": "Nov 16, 1997", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Tennessee Oilers", - "sF": "17", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Nov 16, 1997", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "22", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1997", - "at": null, - "fav": "Seattle Seahawks", - "und": "New Orleans Saints", - "sF": "17", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 16, 1997", - "at": "@", - "fav": "New York Giants", - "und": "Arizona Cardinals", - "sF": "19", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 16, 1997", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Nov 16, 1997", - "at": "@", - "fav": "St Louis Rams", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1997", - "at": null, - "fav": "New England Patriots", - "und": "Tampa Bay Buccaneers", - "sF": "7", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 16, 1997", - "at": null, - "fav": "New York Jets", - "und": "Chicago Bears", - "sF": "23", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 1997", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "17", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Nov 16, 1997", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Carolina Panthers", - "sF": "27", - "sU": "19", - "spread": "10", - "ou": null - }, - { - "date": "Nov 17, 1997", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "30", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 23, 1997", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "20", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Nov 23, 1997", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Arizona Cardinals", - "sF": "13", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Nov 23, 1997", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "7", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Nov 23, 1997", - "at": "@", - "fav": "Detroit Lions", - "und": "Indianapolis Colts", - "sF": "32", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Nov 23, 1997", - "at": "@", - "fav": "Green Bay Packers", - "und": "Dallas Cowboys", - "sF": "45", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 1997", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "27", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 23, 1997", - "at": "@", - "fav": "New York Jets", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1997", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1997", - "at": "@", - "fav": "Tennessee Oilers", - "und": "Buffalo Bills", - "sF": "31", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1997", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 23, 1997", - "at": "@", - "fav": "San Francisco 49ers", - "und": "San Diego Chargers", - "sF": "17", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Nov 23, 1997", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1997", - "at": null, - "fav": "Carolina Panthers", - "und": "St Louis Rams", - "sF": "16", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 1997", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "7", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 24, 1997", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "31", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Nov 27, 1997", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "55", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Nov 27, 1997", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Tennessee Oilers", - "sF": "14", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Nov 30, 1997", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "10", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 30, 1997", - "at": "@", - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "13", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Nov 30, 1997", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Baltimore Ravens", - "sF": "29", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Nov 30, 1997", - "at": null, - "fav": "San Francisco 49ers", - "und": "Kansas City Chiefs", - "sF": "9", - "sU": "44", - "spread": "4", - "ou": null - }, - { - "date": "Nov 30, 1997", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Nov 30, 1997", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Cincinnati Bengals", - "sF": "44", - "sU": "42", - "spread": "5", - "ou": null - }, - { - "date": "Nov 30, 1997", - "at": "@", - "fav": "Washington Redskins", - "und": "St Louis Rams", - "sF": "20", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Nov 30, 1997", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Arizona Cardinals", - "sF": "26", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Nov 30, 1997", - "at": "@", - "fav": "New York Giants", - "und": "Tampa Bay Buccaneers", - "sF": "8", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 30, 1997", - "at": null, - "fav": "Miami Dolphins", - "und": "Oakland Raiders", - "sF": "34", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Nov 30, 1997", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 30, 1997", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "38", - "sU": "28", - "spread": "8", - "ou": null - }, - { - "date": "Dec 1, 1997", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "11", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 1997", - "at": null, - "fav": "Tennessee Oilers", - "und": "Cincinnati Bengals", - "sF": "14", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 1997", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Dec 7, 1997", - "at": null, - "fav": "Buffalo Bills", - "und": "Chicago Bears", - "sF": "3", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 7, 1997", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "New England Patriots", - "sF": "20", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 1997", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "30", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Dec 7, 1997", - "at": "@", - "fav": "New Orleans Saints", - "und": "St Louis Rams", - "sF": "27", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Dec 7, 1997", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "21", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Dec 7, 1997", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Denver Broncos", - "sF": "35", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Dec 7, 1997", - "at": null, - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Dec 7, 1997", - "at": null, - "fav": "Washington Redskins", - "und": "Arizona Cardinals", - "sF": "38", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Dec 7, 1997", - "at": "@", - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "14", - "sU": "22", - "spread": "8", - "ou": null - }, - { - "date": "Dec 7, 1997", - "at": null, - "fav": "Atlanta Falcons", - "und": "San Diego Chargers", - "sF": "14", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 1997", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 7, 1997", - "at": "@", - "fav": "Miami Dolphins", - "und": "Detroit Lions", - "sF": "33", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 1997", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Carolina Panthers", - "sF": "13", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Dec 13, 1997", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "30", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1997", - "at": "@", - "fav": "New England Patriots", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 14, 1997", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 14, 1997", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Buffalo Bills", - "sF": "20", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Dec 14, 1997", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 1997", - "at": null, - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "0", - "sU": "41", - "spread": "4", - "ou": null - }, - { - "date": "Dec 14, 1997", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "13", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 14, 1997", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "New York Jets", - "sF": "0", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Dec 14, 1997", - "at": null, - "fav": "Green Bay Packers", - "und": "Carolina Panthers", - "sF": "31", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 1997", - "at": "@", - "fav": "New Orleans Saints", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Dec 14, 1997", - "at": "@", - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "22", - "spread": "1", - "ou": null - }, - { - "date": "Dec 14, 1997", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "29", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Dec 14, 1997", - "at": "@", - "fav": "St Louis Rams", - "und": "Chicago Bears", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 1997", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Denver Broncos", - "sF": "34", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 20, 1997", - "at": "@", - "fav": "Green Bay Packers", - "und": "Buffalo Bills", - "sF": "31", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 20, 1997", - "at": "@", - "fav": "Carolina Panthers", - "und": "St Louis Rams", - "sF": "18", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Dec 21, 1997", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Baltimore Ravens", - "sF": "16", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 1997", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "7", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 21, 1997", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New Orleans Saints", - "sF": "25", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 1997", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Indianapolis Colts", - "sF": "39", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Dec 21, 1997", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "31", - "sU": "15", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 1997", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Tennessee Oilers", - "sF": "6", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Dec 21, 1997", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "35", - "sU": "32", - "spread": "5", - "ou": null - }, - { - "date": "Dec 21, 1997", - "at": null, - "fav": "Atlanta Falcons", - "und": "Arizona Cardinals", - "sF": "26", - "sU": "29", - "spread": "1", - "ou": null - }, - { - "date": "Dec 21, 1997", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "38", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Dec 21, 1997", - "at": "@", - "fav": "Detroit Lions", - "und": "New York Jets", - "sF": "13", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 21, 1997", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Oakland Raiders", - "sF": "20", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Dec 21, 1997", - "at": null, - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "9", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Dec 22, 1997", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "12", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 27, 1997", - "at": "@", - "fav": "New York Giants (3)", - "und": "Minnesota Vikings (6)", - "sF": "22", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Dec 27, 1997", - "at": "@", - "fav": "Denver Broncos (4)", - "und": "Jacksonville Jaguars (5)", - "sF": "42", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 28, 1997", - "at": "@", - "fav": "New England Patriots (3)", - "und": "Miami Dolphins (6)", - "sF": "17", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Dec 28, 1997", - "at": "@", - "fav": "Tampa Bay Buccaneers (4)", - "und": "Detroit Lions (5)", - "sF": "20", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 1998", - "at": "@", - "fav": "Pittsburgh Steelers (2)", - "und": "New England Patriots (3)", - "sF": "7", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Jan 3, 1998", - "at": "@", - "fav": "San Francisco 49ers (1)", - "und": "Minnesota Vikings (6)", - "sF": "38", - "sU": "22", - "spread": "14", - "ou": null - }, - { - "date": "Jan 4, 1998", - "at": "@", - "fav": "Green Bay Packers (2)", - "und": "Tampa Bay Buccaneers (4)", - "sF": "21", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Jan 11, 1998", - "at": null, - "fav": "Denver Broncos (4)", - "und": "Pittsburgh Steelers (2)", - "sF": "24", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Jan 11, 1998", - "at": null, - "fav": "Green Bay Packers (2)", - "und": "San Francisco 49ers (1)", - "sF": "23", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Jan 25, 1998", - "at": "N", - "fav": "Green Bay Packers (2)", - "und": "Denver Broncos (4)", - "sF": "24", - "sU": "31", - "spread": "11", - "ou": null - }, - { - "date": "Sep 6, 1998", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "20", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 6, 1998", - "at": "@", - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Sep 6, 1998", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Chicago Bears", - "sF": "24", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Sep 6, 1998", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "38", - "sU": "19", - "spread": "9", - "ou": null - }, - { - "date": "Sep 6, 1998", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 6, 1998", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "31", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 6, 1998", - "at": null, - "fav": "Seattle Seahawks", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Sep 6, 1998", - "at": "@", - "fav": "St Louis Rams", - "und": "New Orleans Saints", - "sF": "17", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Sep 6, 1998", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "38", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Sep 6, 1998", - "at": null, - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Sep 6, 1998", - "at": "@", - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "16", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Sep 6, 1998", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Jets", - "sF": "36", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Sep 6, 1998", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "28", - "sU": "8", - "spread": "8", - "ou": null - }, - { - "date": "Sep 7, 1998", - "at": "@", - "fav": "Denver Broncos", - "und": "New England Patriots", - "sF": "27", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Sep 13, 1998", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "12", - "spread": "8", - "ou": null - }, - { - "date": "Sep 13, 1998", - "at": "@", - "fav": "Detroit Lions", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Sep 13, 1998", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "15", - "spread": "7", - "ou": null - }, - { - "date": "Sep 13, 1998", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Kansas City Chiefs", - "sF": "21", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 1998", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "13", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 13, 1998", - "at": null, - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "14", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Sep 13, 1998", - "at": "@", - "fav": "New York Jets", - "und": "Baltimore Ravens", - "sF": "10", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Sep 13, 1998", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Chicago Bears", - "sF": "17", - "sU": "12", - "spread": "11", - "ou": null - }, - { - "date": "Sep 13, 1998", - "at": null, - "fav": "Minnesota Vikings", - "und": "St Louis Rams", - "sF": "38", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Sep 13, 1998", - "at": "@", - "fav": "Tennessee Oilers", - "und": "San Diego Chargers", - "sF": "7", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Sep 13, 1998", - "at": "@", - "fav": "Denver Broncos", - "und": "Dallas Cowboys", - "sF": "42", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Sep 13, 1998", - "at": "@", - "fav": "Oakland Raiders", - "und": "New York Giants", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 13, 1998", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "33", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Sep 13, 1998", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "29", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Sep 14, 1998", - "at": null, - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "45", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 20, 1998", - "at": "@", - "fav": "Buffalo Bills", - "und": "St Louis Rams", - "sF": "33", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Sep 20, 1998", - "at": null, - "fav": "Green Bay Packers", - "und": "Cincinnati Bengals", - "sF": "13", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 1998", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "23", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Sep 20, 1998", - "at": "@", - "fav": "Miami Dolphins", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Sep 20, 1998", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "29", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Sep 20, 1998", - "at": "@", - "fav": "New England Patriots", - "und": "Tennessee Oilers", - "sF": "27", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Sep 20, 1998", - "at": "@", - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "44", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Sep 20, 1998", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Washington Redskins", - "sF": "24", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Sep 20, 1998", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "27", - "sU": "15", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 1998", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Baltimore Ravens", - "sF": "24", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 1998", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "34", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 1998", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Sep 21, 1998", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "7", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Sep 27, 1998", - "at": null, - "fav": "Green Bay Packers", - "und": "Carolina Panthers", - "sF": "37", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Sep 27, 1998", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Oakland Raiders", - "sF": "12", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Sep 27, 1998", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Sep 27, 1998", - "at": "@", - "fav": "St Louis Rams", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 1998", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Tennessee Oilers", - "sF": "27", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 1998", - "at": null, - "fav": "Denver Broncos", - "und": "Washington Redskins", - "sF": "38", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 1998", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Seattle Seahawks", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 1998", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "31", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 1998", - "at": null, - "fav": "New York Giants", - "und": "San Diego Chargers", - "sF": "34", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Sep 27, 1998", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "20", - "spread": "11", - "ou": null - }, - { - "date": "Sep 27, 1998", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Sep 28, 1998", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "6", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 4, 1998", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "51", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 1998", - "at": null, - "fav": "San Francisco 49ers", - "und": "Buffalo Bills", - "sF": "21", - "sU": "26", - "spread": "10", - "ou": null - }, - { - "date": "Oct 4, 1998", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "31", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 4, 1998", - "at": "@", - "fav": "Indianapolis Colts", - "und": "San Diego Chargers", - "sF": "17", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Oct 4, 1998", - "at": null, - "fav": "New England Patriots", - "und": "New Orleans Saints", - "sF": "30", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Oct 4, 1998", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "20", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Oct 4, 1998", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "10", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Oct 4, 1998", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Oakland Raiders", - "sF": "20", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 4, 1998", - "at": "@", - "fav": "Denver Broncos", - "und": "Philadelphia Eagles", - "sF": "41", - "sU": "16", - "spread": "15", - "ou": null - }, - { - "date": "Oct 4, 1998", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New York Giants", - "sF": "20", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Oct 4, 1998", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Oct 5, 1998", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "37", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 1998", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Tennessee Oilers", - "sF": "8", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Oct 11, 1998", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "25", - "spread": "2", - "ou": null - }, - { - "date": "Oct 11, 1998", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Carolina Panthers", - "sF": "27", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 1998", - "at": null, - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 11, 1998", - "at": "@", - "fav": "New England Patriots", - "und": "Kansas City Chiefs", - "sF": "40", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 11, 1998", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "31", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Oct 11, 1998", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "12", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 11, 1998", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Chicago Bears", - "sF": "20", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 11, 1998", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "7", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Oct 11, 1998", - "at": null, - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Oct 11, 1998", - "at": null, - "fav": "New York Jets", - "und": "St Louis Rams", - "sF": "10", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Oct 11, 1998", - "at": "@", - "fav": "New York Giants", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Oct 12, 1998", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Miami Dolphins", - "sF": "28", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Oct 15, 1998", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "20", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Oct 18, 1998", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "31", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Oct 18, 1998", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Buffalo Bills", - "sF": "16", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 1998", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Washington Redskins", - "sF": "41", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Oct 18, 1998", - "at": "@", - "fav": "New York Giants", - "und": "Arizona Cardinals", - "sF": "34", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Oct 18, 1998", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "16", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Oct 18, 1998", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "16", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 18, 1998", - "at": "@", - "fav": "Tennessee Oilers", - "und": "Cincinnati Bengals", - "sF": "44", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 1998", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Indianapolis Colts", - "sF": "34", - "sU": "31", - "spread": "18", - "ou": null - }, - { - "date": "Oct 18, 1998", - "at": null, - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "12", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 1998", - "at": "@", - "fav": "Miami Dolphins", - "und": "St Louis Rams", - "sF": "14", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Oct 18, 1998", - "at": "@", - "fav": "San Diego Chargers", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 1998", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "14", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 1998", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "34", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Oct 25, 1998", - "at": "@", - "fav": "Green Bay Packers", - "und": "Baltimore Ravens", - "sF": "28", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Oct 25, 1998", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "12", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Oct 25, 1998", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "3", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 1998", - "at": "@", - "fav": "New York Jets", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 1998", - "at": null, - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "28", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 25, 1998", - "at": "@", - "fav": "Tennessee Oilers", - "und": "Chicago Bears", - "sF": "20", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 1998", - "at": "@", - "fav": "Denver Broncos", - "und": "Jacksonville Jaguars", - "sF": "37", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Oct 25, 1998", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 25, 1998", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "27", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 1998", - "at": "@", - "fav": "Carolina Panthers", - "und": "Buffalo Bills", - "sF": "14", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Oct 26, 1998", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 1, 1998", - "at": "@", - "fav": "Atlanta Falcons", - "und": "St Louis Rams", - "sF": "37", - "sU": "15", - "spread": "7", - "ou": null - }, - { - "date": "Nov 1, 1998", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Baltimore Ravens", - "sF": "45", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 1998", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "30", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 1, 1998", - "at": "@", - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "31", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 1998", - "at": null, - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "33", - "sU": "26", - "spread": "11", - "ou": null - }, - { - "date": "Nov 1, 1998", - "at": "@", - "fav": "Detroit Lions", - "und": "Arizona Cardinals", - "sF": "15", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 1, 1998", - "at": null, - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "21", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Nov 1, 1998", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Tennessee Oilers", - "sF": "31", - "sU": "41", - "spread": "5", - "ou": null - }, - { - "date": "Nov 1, 1998", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Nov 1, 1998", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "14", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 1, 1998", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "17", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 1, 1998", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "36", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 1998", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Oakland Raiders", - "sF": "18", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Nov 2, 1998", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "34", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 1998", - "at": null, - "fav": "Oakland Raiders", - "und": "Baltimore Ravens", - "sF": "10", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 8, 1998", - "at": "@", - "fav": "Chicago Bears", - "und": "St Louis Rams", - "sF": "12", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 1998", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "16", - "sU": "6", - "spread": "8", - "ou": null - }, - { - "date": "Nov 8, 1998", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "11", - "spread": "10", - "ou": null - }, - { - "date": "Nov 8, 1998", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "27", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Nov 8, 1998", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "31", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Nov 8, 1998", - "at": "@", - "fav": "New England Patriots", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "41", - "spread": "4", - "ou": null - }, - { - "date": "Nov 8, 1998", - "at": null, - "fav": "Detroit Lions", - "und": "Philadelphia Eagles", - "sF": "9", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 8, 1998", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Washington Redskins", - "sF": "29", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 8, 1998", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Carolina Panthers", - "sF": "25", - "sU": "23", - "spread": "13", - "ou": null - }, - { - "date": "Nov 8, 1998", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "27", - "sU": "10", - "spread": "16", - "ou": null - }, - { - "date": "Nov 8, 1998", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "34", - "sU": "12", - "spread": "4", - "ou": null - }, - { - "date": "Nov 8, 1998", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 1998", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Tennessee Oilers", - "sF": "22", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 1998", - "at": null, - "fav": "Green Bay Packers", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 1998", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "19", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 1998", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 1998", - "at": null, - "fav": "Miami Dolphins", - "und": "Carolina Panthers", - "sF": "13", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 1998", - "at": null, - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "23", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 15, 1998", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "3", - "spread": "11", - "ou": null - }, - { - "date": "Nov 15, 1998", - "at": "@", - "fav": "New Orleans Saints", - "und": "St Louis Rams", - "sF": "24", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 1998", - "at": "@", - "fav": "Tennessee Oilers", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Nov 15, 1998", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Nov 15, 1998", - "at": null, - "fav": "Seattle Seahawks", - "und": "Oakland Raiders", - "sF": "17", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 15, 1998", - "at": null, - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "35", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 1998", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Tampa Bay Buccaneers", - "sF": "29", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 15, 1998", - "at": null, - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "37", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 15, 1998", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "26", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Nov 16, 1998", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "30", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 22, 1998", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Chicago Bears", - "sF": "20", - "sU": "13", - "spread": "12", - "ou": null - }, - { - "date": "Nov 22, 1998", - "at": "@", - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "34", - "sU": "11", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 1998", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Seattle Seahawks", - "sF": "30", - "sU": "22", - "spread": "5", - "ou": null - }, - { - "date": "Nov 22, 1998", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "28", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 1998", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Nov 22, 1998", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "30", - "sU": "15", - "spread": "2", - "ou": null - }, - { - "date": "Nov 22, 1998", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "25", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Nov 22, 1998", - "at": "@", - "fav": "Washington Redskins", - "und": "Arizona Cardinals", - "sF": "42", - "sU": "45", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 1998", - "at": "@", - "fav": "St Louis Rams", - "und": "Carolina Panthers", - "sF": "20", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 1998", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Baltimore Ravens", - "sF": "13", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 1998", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "40", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Nov 22, 1998", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "37", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 1998", - "at": "@", - "fav": "Tennessee Oilers", - "und": "New York Jets", - "sF": "3", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 22, 1998", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "31", - "sU": "20", - "spread": "12", - "ou": null - }, - { - "date": "Nov 23, 1998", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "26", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 1998", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Detroit Lions", - "sF": "16", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Nov 26, 1998", - "at": null, - "fav": "Minnesota Vikings", - "und": "Dallas Cowboys", - "sF": "46", - "sU": "36", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 1998", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Indianapolis Colts", - "sF": "38", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 29, 1998", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "31", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 1998", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 29, 1998", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Arizona Cardinals", - "sF": "34", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 1998", - "at": "@", - "fav": "New York Jets", - "und": "Carolina Panthers", - "sF": "48", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Nov 29, 1998", - "at": null, - "fav": "Atlanta Falcons", - "und": "St Louis Rams", - "sF": "21", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 29, 1998", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "25", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 29, 1998", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Tennessee Oilers", - "sF": "20", - "sU": "18", - "spread": "2", - "ou": null - }, - { - "date": "Nov 29, 1998", - "at": "@", - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "16", - "spread": "18", - "ou": null - }, - { - "date": "Nov 29, 1998", - "at": "@", - "fav": "Miami Dolphins", - "und": "New Orleans Saints", - "sF": "30", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Nov 29, 1998", - "at": "@", - "fav": "Oakland Raiders", - "und": "Washington Redskins", - "sF": "19", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Nov 29, 1998", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "31", - "sU": "16", - "spread": "13", - "ou": null - }, - { - "date": "Nov 30, 1998", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "31", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Dec 3, 1998", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "St Louis Rams", - "sF": "17", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Dec 6, 1998", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Indianapolis Colts", - "sF": "28", - "sU": "21", - "spread": "12", - "ou": null - }, - { - "date": "Dec 6, 1998", - "at": null, - "fav": "San Francisco 49ers", - "und": "Carolina Panthers", - "sF": "31", - "sU": "28", - "spread": "9", - "ou": null - }, - { - "date": "Dec 6, 1998", - "at": null, - "fav": "Buffalo Bills", - "und": "Cincinnati Bengals", - "sF": "33", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Dec 6, 1998", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Detroit Lions", - "sF": "37", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Dec 6, 1998", - "at": null, - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "3", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Dec 6, 1998", - "at": "@", - "fav": "New York Jets", - "und": "Seattle Seahawks", - "sF": "32", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Dec 6, 1998", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New England Patriots", - "sF": "9", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Dec 6, 1998", - "at": "@", - "fav": "Washington Redskins", - "und": "San Diego Chargers", - "sF": "24", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 1998", - "at": "@", - "fav": "Arizona Cardinals", - "und": "New York Giants", - "sF": "19", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Dec 6, 1998", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "35", - "sU": "31", - "spread": "13", - "ou": null - }, - { - "date": "Dec 6, 1998", - "at": null, - "fav": "Miami Dolphins", - "und": "Oakland Raiders", - "sF": "27", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 6, 1998", - "at": "@", - "fav": "Tennessee Oilers", - "und": "Baltimore Ravens", - "sF": "16", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 6, 1998", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "48", - "sU": "22", - "spread": "16", - "ou": null - }, - { - "date": "Dec 7, 1998", - "at": null, - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "22", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 13, 1998", - "at": "@", - "fav": "Buffalo Bills", - "und": "Oakland Raiders", - "sF": "44", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Dec 13, 1998", - "at": "@", - "fav": "Carolina Panthers", - "und": "Washington Redskins", - "sF": "25", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1998", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "26", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Dec 13, 1998", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Cincinnati Bengals", - "sF": "39", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Dec 13, 1998", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Tennessee Oilers", - "sF": "13", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Dec 13, 1998", - "at": null, - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "27", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 13, 1998", - "at": null, - "fav": "Denver Broncos", - "und": "New York Giants", - "sF": "16", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Dec 13, 1998", - "at": null, - "fav": "Arizona Cardinals", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1998", - "at": null, - "fav": "New England Patriots", - "und": "St Louis Rams", - "sF": "18", - "sU": "32", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 1998", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 1998", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "38", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 1998", - "at": null, - "fav": "Minnesota Vikings", - "und": "Baltimore Ravens", - "sF": "38", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Dec 13, 1998", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 13, 1998", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "16", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 1998", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "35", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Dec 19, 1998", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "10", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 19, 1998", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Washington Redskins", - "sF": "16", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1998", - "at": "@", - "fav": "Carolina Panthers", - "und": "St Louis Rams", - "sF": "20", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1998", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tennessee Oilers", - "sF": "30", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Dec 20, 1998", - "at": null, - "fav": "San Francisco 49ers", - "und": "New England Patriots", - "sF": "21", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 20, 1998", - "at": "@", - "fav": "New York Giants", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Dec 20, 1998", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "25", - "spread": "10", - "ou": null - }, - { - "date": "Dec 20, 1998", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "10", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1998", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Indianapolis Colts", - "sF": "27", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Dec 20, 1998", - "at": "@", - "fav": "Arizona Cardinals", - "und": "New Orleans Saints", - "sF": "19", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1998", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Dec 20, 1998", - "at": null, - "fav": "Atlanta Falcons", - "und": "Detroit Lions", - "sF": "24", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 20, 1998", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Jacksonville Jaguars", - "sF": "50", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Dec 21, 1998", - "at": null, - "fav": "Denver Broncos", - "und": "Miami Dolphins", - "sF": "21", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Dec 26, 1998", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tennessee Oilers", - "sF": "26", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Dec 26, 1998", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 27, 1998", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Miami Dolphins", - "sF": "38", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 27, 1998", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Detroit Lions", - "sF": "19", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Dec 27, 1998", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "16", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 27, 1998", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Cincinnati Bengals", - "sF": "35", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Dec 27, 1998", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Carolina Panthers", - "sF": "19", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Dec 27, 1998", - "at": null, - "fav": "Buffalo Bills", - "und": "New Orleans Saints", - "sF": "45", - "sU": "33", - "spread": "2", - "ou": null - }, - { - "date": "Dec 27, 1998", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "31", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 27, 1998", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 27, 1998", - "at": "@", - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "38", - "sU": "19", - "spread": "12", - "ou": null - }, - { - "date": "Dec 27, 1998", - "at": "@", - "fav": "Arizona Cardinals", - "und": "San Diego Chargers", - "sF": "16", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 27, 1998", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "28", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Dec 27, 1998", - "at": null, - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "7", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Dec 28, 1998", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Jan 2, 1999", - "at": "@", - "fav": "Miami Dolphins (4)", - "und": "Buffalo Bills (5)", - "sF": "24", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Jan 2, 1999", - "at": "@", - "fav": "Dallas Cowboys (3)", - "und": "Arizona Cardinals (6)", - "sF": "7", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Jan 3, 1999", - "at": "@", - "fav": "Jacksonville Jaguars (3)", - "und": "New England Patriots (6)", - "sF": "25", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Jan 3, 1999", - "at": "@", - "fav": "San Francisco 49ers (4)", - "und": "Green Bay Packers (5)", - "sF": "30", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Jan 9, 1999", - "at": "@", - "fav": "Atlanta Falcons (2)", - "und": "San Francisco 49ers (4)", - "sF": "20", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Jan 9, 1999", - "at": "@", - "fav": "Denver Broncos (1)", - "und": "Miami Dolphins (4)", - "sF": "38", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Jan 10, 1999", - "at": "@", - "fav": "New York Jets (2)", - "und": "Jacksonville Jaguars (3)", - "sF": "34", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Jan 10, 1999", - "at": "@", - "fav": "Minnesota Vikings (1)", - "und": "Arizona Cardinals (6)", - "sF": "41", - "sU": "21", - "spread": "16", - "ou": null - }, - { - "date": "Jan 17, 1999", - "at": "@", - "fav": "Minnesota Vikings (1)", - "und": "Atlanta Falcons (2)", - "sF": "27", - "sU": "30", - "spread": "11", - "ou": null - }, - { - "date": "Jan 17, 1999", - "at": "@", - "fav": "Denver Broncos (1)", - "und": "New York Jets (2)", - "sF": "23", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Jan 31, 1999", - "at": "N", - "fav": "Denver Broncos (1)", - "und": "Atlanta Falcons (2)", - "sF": "34", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Sep 12, 1999", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "35", - "sU": "41", - "spread": "2", - "ou": null - }, - { - "date": "Sep 12, 1999", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Chicago Bears", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 1999", - "at": "@", - "fav": "Green Bay Packers", - "und": "Oakland Raiders", - "sF": "28", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Sep 12, 1999", - "at": null, - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "14", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 1999", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "19", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 1999", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "28", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Sep 12, 1999", - "at": "@", - "fav": "Tennessee Titans", - "und": "Cincinnati Bengals", - "sF": "36", - "sU": "35", - "spread": "9", - "ou": null - }, - { - "date": "Sep 12, 1999", - "at": null, - "fav": "Arizona Cardinals", - "und": "Philadelphia Eagles", - "sF": "25", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 1999", - "at": null, - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 12, 1999", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Detroit Lions", - "sF": "20", - "sU": "28", - "spread": "9", - "ou": null - }, - { - "date": "Sep 12, 1999", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New York Giants", - "sF": "13", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Sep 12, 1999", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "San Francisco 49ers", - "sF": "41", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Sep 12, 1999", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "43", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Sep 13, 1999", - "at": "@", - "fav": "Denver Broncos", - "und": "Miami Dolphins", - "sF": "21", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Sep 19, 1999", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "San Diego Chargers", - "sF": "7", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Sep 19, 1999", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Oakland Raiders", - "sF": "17", - "sU": "22", - "spread": "11", - "ou": null - }, - { - "date": "Sep 19, 1999", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "23", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 19, 1999", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Carolina Panthers", - "sF": "22", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Sep 19, 1999", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "15", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Sep 19, 1999", - "at": "@", - "fav": "Miami Dolphins", - "und": "Arizona Cardinals", - "sF": "19", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Sep 19, 1999", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Sep 19, 1999", - "at": null, - "fav": "Seattle Seahawks", - "und": "Chicago Bears", - "sF": "14", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 1999", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "21", - "sU": "50", - "spread": "2", - "ou": null - }, - { - "date": "Sep 19, 1999", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Philadelphia Eagles", - "sF": "19", - "sU": "5", - "spread": "6", - "ou": null - }, - { - "date": "Sep 19, 1999", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "28", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Sep 19, 1999", - "at": "@", - "fav": "Tennessee Titans", - "und": "Cleveland Browns", - "sF": "26", - "sU": "9", - "spread": "16", - "ou": null - }, - { - "date": "Sep 19, 1999", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "10", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 1999", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "17", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Sep 20, 1999", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 26, 1999", - "at": "@", - "fav": "Carolina Panthers", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Sep 26, 1999", - "at": null, - "fav": "Atlanta Falcons", - "und": "St Louis Rams", - "sF": "7", - "sU": "35", - "spread": "1", - "ou": null - }, - { - "date": "Sep 26, 1999", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "17", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Sep 26, 1999", - "at": "@", - "fav": "Buffalo Bills", - "und": "Philadelphia Eagles", - "sF": "26", - "sU": "0", - "spread": "11", - "ou": null - }, - { - "date": "Sep 26, 1999", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Detroit Lions", - "sF": "31", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 1999", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Seattle Seahawks", - "sF": "10", - "sU": "29", - "spread": "4", - "ou": null - }, - { - "date": "Sep 26, 1999", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Denver Broncos", - "sF": "13", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 26, 1999", - "at": null, - "fav": "Washington Redskins", - "und": "New York Jets", - "sF": "27", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Sep 26, 1999", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "19", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Sep 26, 1999", - "at": null, - "fav": "Indianapolis Colts", - "und": "San Diego Chargers", - "sF": "27", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Sep 26, 1999", - "at": "@", - "fav": "Oakland Raiders", - "und": "Chicago Bears", - "sF": "24", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 26, 1999", - "at": "@", - "fav": "New England Patriots", - "und": "New York Giants", - "sF": "16", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 1999", - "at": null, - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 3, 1999", - "at": null, - "fav": "St Louis Rams", - "und": "Cincinnati Bengals", - "sF": "38", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 3, 1999", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 1999", - "at": "@", - "fav": "Washington Redskins", - "und": "Carolina Panthers", - "sF": "38", - "sU": "36", - "spread": "8", - "ou": null - }, - { - "date": "Oct 3, 1999", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 3, 1999", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Baltimore Ravens", - "sF": "13", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Oct 3, 1999", - "at": null, - "fav": "New Orleans Saints", - "und": "Chicago Bears", - "sF": "10", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 3, 1999", - "at": null, - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "19", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Oct 3, 1999", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "15", - "spread": "9", - "ou": null - }, - { - "date": "Oct 3, 1999", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "35", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 1999", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Jets", - "sF": "13", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Oct 3, 1999", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "21", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 3, 1999", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Tennessee Titans", - "sF": "24", - "sU": "22", - "spread": "1", - "ou": null - }, - { - "date": "Oct 3, 1999", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Oakland Raiders", - "sF": "22", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 1999", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "18", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 10, 1999", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "22", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Oct 10, 1999", - "at": "@", - "fav": "Buffalo Bills", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Oct 10, 1999", - "at": "@", - "fav": "Detroit Lions", - "und": "San Diego Chargers", - "sF": "10", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 1999", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New England Patriots", - "sF": "16", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 10, 1999", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "18", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 1999", - "at": "@", - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "42", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 1999", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 1999", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Oct 10, 1999", - "at": "@", - "fav": "Arizona Cardinals", - "und": "New York Giants", - "sF": "14", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 1999", - "at": null, - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "34", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Oct 10, 1999", - "at": "@", - "fav": "Tennessee Titans", - "und": "Baltimore Ravens", - "sF": "14", - "sU": "11", - "spread": "7", - "ou": null - }, - { - "date": "Oct 10, 1999", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "13", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 10, 1999", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "26", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 11, 1999", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "New York Jets", - "sF": "16", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 1999", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Oct 17, 1999", - "at": "@", - "fav": "Buffalo Bills", - "und": "Oakland Raiders", - "sF": "14", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 1999", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "23", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 1999", - "at": null, - "fav": "St Louis Rams", - "und": "Atlanta Falcons", - "sF": "41", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 17, 1999", - "at": "@", - "fav": "Chicago Bears", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 17, 1999", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "30", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Oct 17, 1999", - "at": null, - "fav": "Tennessee Titans", - "und": "New Orleans Saints", - "sF": "24", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 1999", - "at": null, - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "16", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Oct 17, 1999", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Cleveland Browns", - "sF": "24", - "sU": "7", - "spread": "17", - "ou": null - }, - { - "date": "Oct 17, 1999", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "10", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 17, 1999", - "at": null, - "fav": "Green Bay Packers", - "und": "Denver Broncos", - "sF": "10", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 1999", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Carolina Panthers", - "sF": "29", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Oct 17, 1999", - "at": null, - "fav": "Washington Redskins", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 1999", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 1999", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Baltimore Ravens", - "sF": "35", - "sU": "8", - "spread": "1", - "ou": null - }, - { - "date": "Oct 24, 1999", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Oct 24, 1999", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "40", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 24, 1999", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "6", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Oct 24, 1999", - "at": "@", - "fav": "Miami Dolphins", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Oct 24, 1999", - "at": "@", - "fav": "Carolina Panthers", - "und": "Detroit Lions", - "sF": "9", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Oct 24, 1999", - "at": "@", - "fav": "New England Patriots", - "und": "Denver Broncos", - "sF": "24", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 1999", - "at": "@", - "fav": "St Louis Rams", - "und": "Cleveland Browns", - "sF": "34", - "sU": "3", - "spread": "18", - "ou": null - }, - { - "date": "Oct 24, 1999", - "at": "@", - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "31", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 1999", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "38", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 24, 1999", - "at": null, - "fav": "Green Bay Packers", - "und": "San Diego Chargers", - "sF": "31", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 1999", - "at": "@", - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "24", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 24, 1999", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Buffalo Bills", - "sF": "26", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Oct 25, 1999", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Oct 31, 1999", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Cincinnati Bengals", - "sF": "41", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Oct 31, 1999", - "at": null, - "fav": "Buffalo Bills", - "und": "Baltimore Ravens", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 1999", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "34", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Oct 31, 1999", - "at": "@", - "fav": "Washington Redskins", - "und": "Chicago Bears", - "sF": "48", - "sU": "22", - "spread": "8", - "ou": null - }, - { - "date": "Oct 31, 1999", - "at": "@", - "fav": "New Orleans Saints", - "und": "Cleveland Browns", - "sF": "16", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Oct 31, 1999", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 31, 1999", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "27", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 31, 1999", - "at": null, - "fav": "St Louis Rams", - "und": "Tennessee Titans", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 1999", - "at": "@", - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "9", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 1999", - "at": null, - "fav": "New England Patriots", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 1999", - "at": null, - "fav": "Minnesota Vikings", - "und": "Denver Broncos", - "sF": "23", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 31, 1999", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Dallas Cowboys", - "sF": "34", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 1999", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "3", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 1, 1999", - "at": "@", - "fav": "Green Bay Packers", - "und": "Seattle Seahawks", - "sF": "7", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Nov 7, 1999", - "at": null, - "fav": "St Louis Rams", - "und": "Detroit Lions", - "sF": "27", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 7, 1999", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 7, 1999", - "at": "@", - "fav": "Carolina Panthers", - "und": "Philadelphia Eagles", - "sF": "33", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 7, 1999", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "13", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Nov 7, 1999", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "41", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 1999", - "at": "@", - "fav": "New York Jets", - "und": "Arizona Cardinals", - "sF": "12", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 7, 1999", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Kansas City Chiefs", - "sF": "25", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 7, 1999", - "at": "@", - "fav": "Washington Redskins", - "und": "Buffalo Bills", - "sF": "17", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Nov 7, 1999", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "31", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 1999", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Pittsburgh Steelers", - "sF": "6", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 7, 1999", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Cincinnati Bengals", - "sF": "37", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Nov 7, 1999", - "at": "@", - "fav": "Miami Dolphins", - "und": "Tennessee Titans", - "sF": "17", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 1999", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 14, 1999", - "at": "@", - "fav": "St Louis Rams", - "und": "Carolina Panthers", - "sF": "35", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Nov 14, 1999", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "27", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 14, 1999", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "23", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 14, 1999", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "15", - "sU": "16", - "spread": "14", - "ou": null - }, - { - "date": "Nov 14, 1999", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 14, 1999", - "at": null, - "fav": "Tennessee Titans", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Nov 14, 1999", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "6", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Nov 14, 1999", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "35", - "spread": "6", - "ou": null - }, - { - "date": "Nov 14, 1999", - "at": null, - "fav": "Indianapolis Colts", - "und": "New York Giants", - "sF": "27", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Nov 14, 1999", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "28", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Nov 14, 1999", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Baltimore Ravens", - "sF": "6", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Nov 14, 1999", - "at": null, - "fav": "Detroit Lions", - "und": "Arizona Cardinals", - "sF": "19", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Nov 14, 1999", - "at": null, - "fav": "Green Bay Packers", - "und": "Dallas Cowboys", - "sF": "13", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 14, 1999", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Denver Broncos", - "sF": "20", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 15, 1999", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "17", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 21, 1999", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "19", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 1999", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "27", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 1999", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "7", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 21, 1999", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "19", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 1999", - "at": null, - "fav": "Carolina Panthers", - "und": "Cleveland Browns", - "sF": "31", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 21, 1999", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "26", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 21, 1999", - "at": null, - "fav": "Indianapolis Colts", - "und": "Philadelphia Eagles", - "sF": "44", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 1999", - "at": "@", - "fav": "Tennessee Titans", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 21, 1999", - "at": null, - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 1999", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "23", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Nov 21, 1999", - "at": null, - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "9", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Nov 21, 1999", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Nov 21, 1999", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "New Orleans Saints", - "sF": "41", - "sU": "23", - "spread": "12", - "ou": null - }, - { - "date": "Nov 22, 1999", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "27", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 25, 1999", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "21", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 25, 1999", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Miami Dolphins", - "sF": "20", - "sU": "0", - "spread": "1", - "ou": null - }, - { - "date": "Nov 28, 1999", - "at": "@", - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Nov 28, 1999", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 28, 1999", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Baltimore Ravens", - "sF": "30", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 1999", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "27", - "spread": "11", - "ou": null - }, - { - "date": "Nov 28, 1999", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "17", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 28, 1999", - "at": null, - "fav": "Tennessee Titans", - "und": "Cleveland Browns", - "sF": "33", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Nov 28, 1999", - "at": "@", - "fav": "St Louis Rams", - "und": "New Orleans Saints", - "sF": "43", - "sU": "12", - "spread": "14", - "ou": null - }, - { - "date": "Nov 28, 1999", - "at": "@", - "fav": "New York Giants", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Nov 28, 1999", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Diego Chargers", - "sF": "35", - "sU": "27", - "spread": "13", - "ou": null - }, - { - "date": "Nov 28, 1999", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Tampa Bay Buccaneers", - "sF": "3", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Nov 28, 1999", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "34", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 1999", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "13", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Nov 29, 1999", - "at": null, - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 1999", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Dec 5, 1999", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "San Francisco 49ers", - "sF": "44", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 1999", - "at": "@", - "fav": "Detroit Lions", - "und": "Washington Redskins", - "sF": "33", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 1999", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "34", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Dec 5, 1999", - "at": null, - "fav": "Tennessee Titans", - "und": "Baltimore Ravens", - "sF": "14", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 1999", - "at": null, - "fav": "St Louis Rams", - "und": "Carolina Panthers", - "sF": "34", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 1999", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "35", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 1999", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "35", - "sU": "12", - "spread": "4", - "ou": null - }, - { - "date": "Dec 5, 1999", - "at": null, - "fav": "New York Jets", - "und": "New York Giants", - "sF": "28", - "sU": "41", - "spread": "2", - "ou": null - }, - { - "date": "Dec 5, 1999", - "at": "@", - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "30", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Dec 5, 1999", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cleveland Browns", - "sF": "23", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 1999", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 1999", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "10", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 1999", - "at": "@", - "fav": "New England Patriots", - "und": "Dallas Cowboys", - "sF": "13", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Dec 6, 1999", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 9, 1999", - "at": "@", - "fav": "Tennessee Titans", - "und": "Oakland Raiders", - "sF": "21", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 1999", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "44", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Dec 12, 1999", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Dec 12, 1999", - "at": null, - "fav": "St Louis Rams", - "und": "New Orleans Saints", - "sF": "30", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 12, 1999", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "24", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Dec 12, 1999", - "at": "@", - "fav": "Washington Redskins", - "und": "Arizona Cardinals", - "sF": "28", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Dec 12, 1999", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Giants", - "sF": "17", - "sU": "19", - "spread": "8", - "ou": null - }, - { - "date": "Dec 12, 1999", - "at": "@", - "fav": "Green Bay Packers", - "und": "Carolina Panthers", - "sF": "31", - "sU": "33", - "spread": "8", - "ou": null - }, - { - "date": "Dec 12, 1999", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "20", - "sU": "15", - "spread": "7", - "ou": null - }, - { - "date": "Dec 12, 1999", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "20", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 1999", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "16", - "sU": "19", - "spread": "9", - "ou": null - }, - { - "date": "Dec 12, 1999", - "at": null, - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "7", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 1999", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "23", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Dec 12, 1999", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Dec 13, 1999", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Denver Broncos", - "sF": "27", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Dec 18, 1999", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Pittsburgh Steelers", - "sF": "35", - "sU": "19", - "spread": "8", - "ou": null - }, - { - "date": "Dec 18, 1999", - "at": "@", - "fav": "Carolina Panthers", - "und": "San Francisco 49ers", - "sF": "41", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 19, 1999", - "at": "@", - "fav": "Tennessee Titans", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Dec 19, 1999", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Washington Redskins", - "sF": "24", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Dec 19, 1999", - "at": "@", - "fav": "St Louis Rams", - "und": "New York Giants", - "sF": "31", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 19, 1999", - "at": "@", - "fav": "Miami Dolphins", - "und": "San Diego Chargers", - "sF": "12", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Dec 19, 1999", - "at": "@", - "fav": "Baltimore Ravens", - "und": "New Orleans Saints", - "sF": "31", - "sU": "8", - "spread": "8", - "ou": null - }, - { - "date": "Dec 19, 1999", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "10", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 1999", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Cleveland Browns", - "sF": "24", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Dec 19, 1999", - "at": null, - "fav": "New England Patriots", - "und": "Philadelphia Eagles", - "sF": "9", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 1999", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Oakland Raiders", - "sF": "0", - "sU": "45", - "spread": "1", - "ou": null - }, - { - "date": "Dec 19, 1999", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "36", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Dec 19, 1999", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Jets", - "sF": "21", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Dec 19, 1999", - "at": null, - "fav": "Buffalo Bills", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 1999", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "24", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Dec 24, 1999", - "at": null, - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "24", - "sU": "31", - "spread": "8", - "ou": null - }, - { - "date": "Dec 25, 1999", - "at": "@", - "fav": "Detroit Lions", - "und": "Denver Broncos", - "sF": "7", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 26, 1999", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "14", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1999", - "at": null, - "fav": "Carolina Panthers", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1999", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "22", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Dec 26, 1999", - "at": null, - "fav": "Indianapolis Colts", - "und": "Cleveland Browns", - "sF": "29", - "sU": "28", - "spread": "13", - "ou": null - }, - { - "date": "Dec 26, 1999", - "at": null, - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "34", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 26, 1999", - "at": "@", - "fav": "St Louis Rams", - "und": "Chicago Bears", - "sF": "34", - "sU": "12", - "spread": "10", - "ou": null - }, - { - "date": "Dec 26, 1999", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Arizona Cardinals", - "sF": "37", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 26, 1999", - "at": null, - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1999", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1999", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "23", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1999", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Green Bay Packers", - "sF": "29", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 1999", - "at": null, - "fav": "Washington Redskins", - "und": "San Francisco 49ers", - "sF": "26", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 27, 1999", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "31", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Jan 2, 2000", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Jan 2, 2000", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "38", - "sU": "41", - "spread": "5", - "ou": null - }, - { - "date": "Jan 2, 2000", - "at": null, - "fav": "Indianapolis Colts", - "und": "Buffalo Bills", - "sF": "6", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Jan 2, 2000", - "at": "@", - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "45", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Jan 2, 2000", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "20", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Jan 2, 2000", - "at": "@", - "fav": "Green Bay Packers", - "und": "Arizona Cardinals", - "sF": "49", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Jan 2, 2000", - "at": null, - "fav": "Baltimore Ravens", - "und": "New England Patriots", - "sF": "3", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Jan 2, 2000", - "at": "@", - "fav": "New York Jets", - "und": "Seattle Seahawks", - "sF": "19", - "sU": "9", - "spread": "1", - "ou": null - }, - { - "date": "Jan 2, 2000", - "at": null, - "fav": "St Louis Rams", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "38", - "spread": "8", - "ou": null - }, - { - "date": "Jan 2, 2000", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "24", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Jan 2, 2000", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "26", - "sU": "18", - "spread": "6", - "ou": null - }, - { - "date": "Jan 2, 2000", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "6", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Jan 2, 2000", - "at": null, - "fav": "Tennessee Titans", - "und": "Pittsburgh Steelers", - "sF": "47", - "sU": "36", - "spread": "4", - "ou": null - }, - { - "date": "Jan 2, 2000", - "at": "@", - "fav": "Washington Redskins", - "und": "Miami Dolphins", - "sF": "21", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 2000", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "29", - "spread": "6", - "ou": null - }, - { - "date": "Jan 8, 2000", - "at": "@", - "fav": "Tennessee Titans (4)", - "und": "Buffalo Bills (5)", - "sF": "22", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Jan 8, 2000", - "at": "@", - "fav": "Washington Redskins (3)", - "und": "Detroit Lions (6)", - "sF": "27", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Jan 9, 2000", - "at": "@", - "fav": "Minnesota Vikings (4)", - "und": "Dallas Cowboys (5)", - "sF": "27", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Jan 9, 2000", - "at": "@", - "fav": "Seattle Seahawks (3)", - "und": "Miami Dolphins (6)", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Jan 15, 2000", - "at": "@", - "fav": "Jacksonville Jaguars (1)", - "und": "Miami Dolphins (6)", - "sF": "62", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Jan 15, 2000", - "at": "@", - "fav": "Tampa Bay Buccaneers (2)", - "und": "Washington Redskins (3)", - "sF": "14", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Jan 16, 2000", - "at": "@", - "fav": "St Louis Rams (1)", - "und": "Minnesota Vikings (4)", - "sF": "49", - "sU": "37", - "spread": "7", - "ou": null - }, - { - "date": "Jan 16, 2000", - "at": "@", - "fav": "Indianapolis Colts (2)", - "und": "Tennessee Titans (4)", - "sF": "16", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Jan 23, 2000", - "at": "@", - "fav": "Jacksonville Jaguars (1)", - "und": "Tennessee Titans (4)", - "sF": "14", - "sU": "33", - "spread": "7", - "ou": null - }, - { - "date": "Jan 23, 2000", - "at": "@", - "fav": "St Louis Rams (1)", - "und": "Tampa Bay Buccaneers (2)", - "sF": "11", - "sU": "6", - "spread": "14", - "ou": null - }, - { - "date": "Jan 30, 2000", - "at": "N", - "fav": "St Louis Rams (1)", - "und": "Tennessee Titans (4)", - "sF": "23", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Sep 3, 2000", - "at": null, - "fav": "Indianapolis Colts", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 3, 2000", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "30", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Sep 3, 2000", - "at": "@", - "fav": "Washington Redskins", - "und": "Carolina Panthers", - "sF": "20", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Sep 3, 2000", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "36", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Sep 3, 2000", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Cleveland Browns", - "sF": "27", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Sep 3, 2000", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "New England Patriots", - "sF": "21", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 3, 2000", - "at": null, - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Sep 3, 2000", - "at": "@", - "fav": "New York Giants", - "und": "Arizona Cardinals", - "sF": "21", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Sep 3, 2000", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "41", - "spread": "6", - "ou": null - }, - { - "date": "Sep 3, 2000", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "9", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Sep 3, 2000", - "at": "@", - "fav": "Miami Dolphins", - "und": "Seattle Seahawks", - "sF": "23", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Sep 3, 2000", - "at": "@", - "fav": "Green Bay Packers", - "und": "New York Jets", - "sF": "16", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 3, 2000", - "at": "@", - "fav": "Buffalo Bills", - "und": "Tennessee Titans", - "sF": "16", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Sep 4, 2000", - "at": "@", - "fav": "St Louis Rams", - "und": "Denver Broncos", - "sF": "41", - "sU": "36", - "spread": "6", - "ou": null - }, - { - "date": "Sep 10, 2000", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Miami Dolphins", - "sF": "13", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 2000", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "7", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Sep 10, 2000", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Oakland Raiders", - "sF": "31", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Sep 10, 2000", - "at": "@", - "fav": "Buffalo Bills", - "und": "Green Bay Packers", - "sF": "27", - "sU": "18", - "spread": "6", - "ou": null - }, - { - "date": "Sep 10, 2000", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "41", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Sep 10, 2000", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Jacksonville Jaguars", - "sF": "39", - "sU": "36", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 2000", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "18", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 2000", - "at": "@", - "fav": "Tennessee Titans", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Sep 10, 2000", - "at": "@", - "fav": "San Diego Chargers", - "und": "New Orleans Saints", - "sF": "27", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Sep 10, 2000", - "at": null, - "fav": "Carolina Panthers", - "und": "San Francisco 49ers", - "sF": "38", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 2000", - "at": null, - "fav": "St Louis Rams", - "und": "Seattle Seahawks", - "sF": "37", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Sep 10, 2000", - "at": "@", - "fav": "Denver Broncos", - "und": "Atlanta Falcons", - "sF": "42", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 10, 2000", - "at": null, - "fav": "Washington Redskins", - "und": "Detroit Lions", - "sF": "10", - "sU": "15", - "spread": "5", - "ou": null - }, - { - "date": "Sep 10, 2000", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Dallas Cowboys", - "sF": "32", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 2000", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "20", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Sep 17, 2000", - "at": "@", - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "15", - "spread": "6", - "ou": null - }, - { - "date": "Sep 17, 2000", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "20", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 2000", - "at": "@", - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "6", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 2000", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Cincinnati Bengals", - "sF": "13", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Sep 17, 2000", - "at": "@", - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "41", - "sU": "24", - "spread": "17", - "ou": null - }, - { - "date": "Sep 17, 2000", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "27", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Sep 17, 2000", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "31", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 2000", - "at": "@", - "fav": "Chicago Bears", - "und": "New York Giants", - "sF": "7", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 2000", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "42", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 2000", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "24", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 2000", - "at": "@", - "fav": "New England Patriots", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Sep 17, 2000", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New Orleans Saints", - "sF": "20", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 17, 2000", - "at": null, - "fav": "Baltimore Ravens", - "und": "Miami Dolphins", - "sF": "6", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Sep 18, 2000", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "21", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Sep 24, 2000", - "at": null, - "fav": "Tennessee Titans", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 2000", - "at": null, - "fav": "St Louis Rams", - "und": "Atlanta Falcons", - "sF": "41", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 24, 2000", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "37", - "sU": "0", - "spread": "11", - "ou": null - }, - { - "date": "Sep 24, 2000", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "14", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Sep 24, 2000", - "at": "@", - "fav": "New Orleans Saints", - "und": "Philadelphia Eagles", - "sF": "7", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Sep 24, 2000", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "10", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Sep 24, 2000", - "at": "@", - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "41", - "spread": "6", - "ou": null - }, - { - "date": "Sep 24, 2000", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Green Bay Packers", - "sF": "3", - "sU": "29", - "spread": "1", - "ou": null - }, - { - "date": "Sep 24, 2000", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "20", - "sU": "12", - "spread": "2", - "ou": null - }, - { - "date": "Sep 24, 2000", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New York Jets", - "sF": "17", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 2000", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "22", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 2000", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cleveland Browns", - "sF": "36", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Sep 24, 2000", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "6", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Sep 25, 2000", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "43", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 2000", - "at": "@", - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "16", - "sU": "18", - "spread": "1", - "ou": null - }, - { - "date": "Oct 1, 2000", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Oct 1, 2000", - "at": "@", - "fav": "Carolina Panthers", - "und": "Dallas Cowboys", - "sF": "13", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Oct 1, 2000", - "at": "@", - "fav": "St Louis Rams", - "und": "San Diego Chargers", - "sF": "57", - "sU": "31", - "spread": "17", - "ou": null - }, - { - "date": "Oct 1, 2000", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "12", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Oct 1, 2000", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "24", - "spread": "11", - "ou": null - }, - { - "date": "Oct 1, 2000", - "at": "@", - "fav": "Tennessee Titans", - "und": "New York Giants", - "sF": "28", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Oct 1, 2000", - "at": null, - "fav": "Miami Dolphins", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 1, 2000", - "at": "@", - "fav": "Denver Broncos", - "und": "New England Patriots", - "sF": "19", - "sU": "28", - "spread": "8", - "ou": null - }, - { - "date": "Oct 1, 2000", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "24", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Oct 1, 2000", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 2000", - "at": "@", - "fav": "Washington Redskins", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 1, 2000", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2000", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 8, 2000", - "at": null, - "fav": "Tennessee Titans", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Oct 8, 2000", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "31", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 2000", - "at": "@", - "fav": "New York Jets", - "und": "Pittsburgh Steelers", - "sF": "3", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Oct 8, 2000", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "22", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Oct 8, 2000", - "at": null, - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "16", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 2000", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 2000", - "at": "@", - "fav": "Chicago Bears", - "und": "New Orleans Saints", - "sF": "10", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Oct 8, 2000", - "at": null, - "fav": "Oakland Raiders", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Oct 8, 2000", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New York Giants", - "sF": "6", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 8, 2000", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Cleveland Browns", - "sF": "29", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Oct 8, 2000", - "at": "@", - "fav": "Carolina Panthers", - "und": "Seattle Seahawks", - "sF": "26", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 2000", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "21", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 8, 2000", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Baltimore Ravens", - "sF": "10", - "sU": "15", - "spread": "2", - "ou": null - }, - { - "date": "Oct 9, 2000", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "30", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 15, 2000", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 2000", - "at": "@", - "fav": "Buffalo Bills", - "und": "San Diego Chargers", - "sF": "27", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Oct 15, 2000", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "15", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Oct 15, 2000", - "at": "@", - "fav": "Washington Redskins", - "und": "Baltimore Ravens", - "sF": "10", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 2000", - "at": "@", - "fav": "St Louis Rams", - "und": "Atlanta Falcons", - "sF": "45", - "sU": "29", - "spread": "18", - "ou": null - }, - { - "date": "Oct 15, 2000", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "19", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 15, 2000", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "17", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 2000", - "at": null, - "fav": "Indianapolis Colts", - "und": "Seattle Seahawks", - "sF": "37", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Oct 15, 2000", - "at": "@", - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "44", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Oct 15, 2000", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "33", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 15, 2000", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Oct 15, 2000", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "28", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Oct 16, 2000", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 19, 2000", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "14", - "sU": "28", - "spread": "8", - "ou": null - }, - { - "date": "Oct 22, 2000", - "at": null, - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "31", - "spread": "10", - "ou": null - }, - { - "date": "Oct 22, 2000", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "48", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 22, 2000", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "30", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Oct 22, 2000", - "at": null, - "fav": "St Louis Rams", - "und": "Kansas City Chiefs", - "sF": "34", - "sU": "54", - "spread": "7", - "ou": null - }, - { - "date": "Oct 22, 2000", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Tennessee Titans", - "sF": "6", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 22, 2000", - "at": "@", - "fav": "Carolina Panthers", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 2000", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Buffalo Bills", - "sF": "31", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 2000", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "13", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 2000", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Oct 22, 2000", - "at": "@", - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Oct 22, 2000", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "22", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Oct 22, 2000", - "at": null, - "fav": "Washington Redskins", - "und": "Jacksonville Jaguars", - "sF": "35", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Oct 23, 2000", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "40", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 2000", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 2000", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Minnesota Vikings", - "sF": "41", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 2000", - "at": null, - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "12", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 2000", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "6", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Oct 29, 2000", - "at": "@", - "fav": "Miami Dolphins", - "und": "Green Bay Packers", - "sF": "28", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 29, 2000", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "12", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 2000", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Detroit Lions", - "sF": "30", - "sU": "18", - "spread": "7", - "ou": null - }, - { - "date": "Oct 29, 2000", - "at": null, - "fav": "New Orleans Saints", - "und": "Arizona Cardinals", - "sF": "21", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 2000", - "at": null, - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 29, 2000", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 2000", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 29, 2000", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Oct 29, 2000", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "15", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 30, 2000", - "at": "@", - "fav": "Washington Redskins", - "und": "Tennessee Titans", - "sF": "21", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 5, 2000", - "at": "@", - "fav": "Detroit Lions", - "und": "Miami Dolphins", - "sF": "8", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 5, 2000", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 5, 2000", - "at": null, - "fav": "Indianapolis Colts", - "und": "Chicago Bears", - "sF": "24", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Nov 5, 2000", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "13", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Nov 5, 2000", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "15", - "spread": "5", - "ou": null - }, - { - "date": "Nov 5, 2000", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 5, 2000", - "at": null, - "fav": "New York Giants", - "und": "Cleveland Browns", - "sF": "24", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Nov 5, 2000", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 2000", - "at": "@", - "fav": "Tennessee Titans", - "und": "Pittsburgh Steelers", - "sF": "9", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Nov 5, 2000", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "49", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 2000", - "at": null, - "fav": "Washington Redskins", - "und": "Arizona Cardinals", - "sF": "15", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Nov 5, 2000", - "at": "@", - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "23", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 2000", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "17", - "sU": "15", - "spread": "4", - "ou": null - }, - { - "date": "Nov 5, 2000", - "at": "@", - "fav": "St Louis Rams", - "und": "Carolina Panthers", - "sF": "24", - "sU": "27", - "spread": "13", - "ou": null - }, - { - "date": "Nov 6, 2000", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "20", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 2000", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "6", - "spread": "8", - "ou": null - }, - { - "date": "Nov 12, 2000", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Nov 12, 2000", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Nov 12, 2000", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 2000", - "at": "@", - "fav": "Buffalo Bills", - "und": "Chicago Bears", - "sF": "20", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 12, 2000", - "at": null, - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "20", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 12, 2000", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Nov 12, 2000", - "at": null, - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "11", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Nov 12, 2000", - "at": "@", - "fav": "Tennessee Titans", - "und": "Baltimore Ravens", - "sF": "23", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 12, 2000", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Francisco 49ers", - "sF": "7", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 2000", - "at": null, - "fav": "Miami Dolphins", - "und": "San Diego Chargers", - "sF": "17", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 12, 2000", - "at": null, - "fav": "St Louis Rams", - "und": "New York Giants", - "sF": "38", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 12, 2000", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Green Bay Packers", - "sF": "20", - "sU": "15", - "spread": "9", - "ou": null - }, - { - "date": "Nov 12, 2000", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "23", - "sU": "15", - "spread": "6", - "ou": null - }, - { - "date": "Nov 13, 2000", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 2000", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "17", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 2000", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Carolina Panthers", - "sF": "31", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Nov 19, 2000", - "at": null, - "fav": "Indianapolis Colts", - "und": "Green Bay Packers", - "sF": "24", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Nov 19, 2000", - "at": "@", - "fav": "New England Patriots", - "und": "Cincinnati Bengals", - "sF": "16", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 19, 2000", - "at": null, - "fav": "Oakland Raiders", - "und": "New Orleans Saints", - "sF": "31", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 2000", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "34", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Nov 19, 2000", - "at": "@", - "fav": "New York Giants", - "und": "Detroit Lions", - "sF": "21", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Nov 19, 2000", - "at": "@", - "fav": "Tennessee Titans", - "und": "Cleveland Browns", - "sF": "24", - "sU": "10", - "spread": "16", - "ou": null - }, - { - "date": "Nov 19, 2000", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "10", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Nov 19, 2000", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "38", - "sU": "37", - "spread": "9", - "ou": null - }, - { - "date": "Nov 19, 2000", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "3", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 2000", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Nov 19, 2000", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "16", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Nov 19, 2000", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 2000", - "at": "@", - "fav": "St Louis Rams", - "und": "Washington Redskins", - "sF": "20", - "sU": "33", - "spread": "5", - "ou": null - }, - { - "date": "Nov 23, 2000", - "at": "@", - "fav": "Detroit Lions", - "und": "New England Patriots", - "sF": "34", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Nov 23, 2000", - "at": null, - "fav": "Minnesota Vikings", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "15", - "spread": "7", - "ou": null - }, - { - "date": "Nov 26, 2000", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Buffalo Bills", - "sF": "31", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 26, 2000", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "44", - "sU": "7", - "spread": "15", - "ou": null - }, - { - "date": "Nov 26, 2000", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 26, 2000", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "48", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Nov 26, 2000", - "at": "@", - "fav": "New York Jets", - "und": "Chicago Bears", - "sF": "17", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 26, 2000", - "at": "@", - "fav": "St Louis Rams", - "und": "New Orleans Saints", - "sF": "24", - "sU": "31", - "spread": "13", - "ou": null - }, - { - "date": "Nov 26, 2000", - "at": "@", - "fav": "Oakland Raiders", - "und": "Atlanta Falcons", - "sF": "41", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Nov 26, 2000", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Miami Dolphins", - "sF": "14", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 26, 2000", - "at": null, - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "13", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 2000", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "16", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 2000", - "at": null, - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "38", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 2000", - "at": null, - "fav": "New York Giants", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 30, 2000", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "24", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 3, 2000", - "at": null, - "fav": "Oakland Raiders", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 2000", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Dec 3, 2000", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "7", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Dec 3, 2000", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "6", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 2000", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Dec 3, 2000", - "at": null, - "fav": "Tennessee Titans", - "und": "Philadelphia Eagles", - "sF": "15", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 2000", - "at": null, - "fav": "St Louis Rams", - "und": "Carolina Panthers", - "sF": "3", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Dec 3, 2000", - "at": null, - "fav": "San Francisco 49ers", - "und": "San Diego Chargers", - "sF": "45", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 3, 2000", - "at": "@", - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "27", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 3, 2000", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Cleveland Browns", - "sF": "48", - "sU": "0", - "spread": "14", - "ou": null - }, - { - "date": "Dec 3, 2000", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "28", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Dec 4, 2000", - "at": "@", - "fav": "New England Patriots", - "und": "Kansas City Chiefs", - "sF": "30", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Dec 10, 2000", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Carolina Panthers", - "sF": "15", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 2000", - "at": "@", - "fav": "Baltimore Ravens", - "und": "San Diego Chargers", - "sF": "24", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Dec 10, 2000", - "at": "@", - "fav": "Chicago Bears", - "und": "New England Patriots", - "sF": "24", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 2000", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "26", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2000", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Arizona Cardinals", - "sF": "44", - "sU": "10", - "spread": "15", - "ou": null - }, - { - "date": "Dec 10, 2000", - "at": "@", - "fav": "Miami Dolphins", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 2000", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Cleveland Browns", - "sF": "35", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Dec 10, 2000", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "30", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2000", - "at": "@", - "fav": "Tennessee Titans", - "und": "Cincinnati Bengals", - "sF": "35", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Dec 10, 2000", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Dec 10, 2000", - "at": null, - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "13", - "sU": "32", - "spread": "6", - "ou": null - }, - { - "date": "Dec 10, 2000", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "27", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2000", - "at": "@", - "fav": "St Louis Rams", - "und": "Minnesota Vikings", - "sF": "40", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2000", - "at": "@", - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "31", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2000", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Buffalo Bills", - "sF": "44", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 16, 2000", - "at": null, - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "3", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Dec 16, 2000", - "at": null, - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 2000", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "7", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 2000", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "28", - "sU": "33", - "spread": "7", - "ou": null - }, - { - "date": "Dec 17, 2000", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "10", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Dec 17, 2000", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Cincinnati Bengals", - "sF": "14", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Dec 17, 2000", - "at": "@", - "fav": "New York Jets", - "und": "Detroit Lions", - "sF": "7", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 2000", - "at": null, - "fav": "Tennessee Titans", - "und": "Cleveland Browns", - "sF": "24", - "sU": "0", - "spread": "16", - "ou": null - }, - { - "date": "Dec 17, 2000", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Dec 17, 2000", - "at": "@", - "fav": "Carolina Panthers", - "und": "San Diego Chargers", - "sF": "30", - "sU": "22", - "spread": "8", - "ou": null - }, - { - "date": "Dec 17, 2000", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "17", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 2000", - "at": null, - "fav": "Baltimore Ravens", - "und": "Arizona Cardinals", - "sF": "13", - "sU": "7", - "spread": "15", - "ou": null - }, - { - "date": "Dec 17, 2000", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "13", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 2000", - "at": null, - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 18, 2000", - "at": null, - "fav": "St Louis Rams", - "und": "Tampa Bay Buccaneers", - "sF": "35", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Dec 23, 2000", - "at": "@", - "fav": "New York Giants", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "25", - "spread": "4", - "ou": null - }, - { - "date": "Dec 23, 2000", - "at": "@", - "fav": "Denver Broncos", - "und": "San Francisco 49ers", - "sF": "38", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Dec 23, 2000", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Buffalo Bills", - "sF": "23", - "sU": "42", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2000", - "at": "@", - "fav": "Washington Redskins", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Dec 24, 2000", - "at": "@", - "fav": "Baltimore Ravens", - "und": "New York Jets", - "sF": "34", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 24, 2000", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "20", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Dec 24, 2000", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 24, 2000", - "at": null, - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "27", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 24, 2000", - "at": null, - "fav": "St Louis Rams", - "und": "New Orleans Saints", - "sF": "26", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2000", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Cincinnati Bengals", - "sF": "16", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Dec 24, 2000", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "29", - "spread": "4", - "ou": null - }, - { - "date": "Dec 24, 2000", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "34", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2000", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2000", - "at": "@", - "fav": "Oakland Raiders", - "und": "Carolina Panthers", - "sF": "52", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Dec 25, 2000", - "at": "@", - "fav": "Tennessee Titans", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Dec 30, 2000", - "at": null, - "fav": "Indianapolis Colts (6)", - "und": "Miami Dolphins (3)", - "sF": "17", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Dec 30, 2000", - "at": null, - "fav": "St Louis Rams (6)", - "und": "New Orleans Saints (3)", - "sF": "28", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Dec 31, 2000", - "at": "@", - "fav": "Baltimore Ravens (4)", - "und": "Denver Broncos (5)", - "sF": "21", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 31, 2000", - "at": null, - "fav": "Tampa Bay Buccaneers (5)", - "und": "Philadelphia Eagles (4)", - "sF": "3", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Jan 6, 2001", - "at": "@", - "fav": "Minnesota Vikings (2)", - "und": "New Orleans Saints (3)", - "sF": "34", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Jan 6, 2001", - "at": "@", - "fav": "Oakland Raiders (2)", - "und": "Miami Dolphins (3)", - "sF": "27", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Jan 7, 2001", - "at": "@", - "fav": "Tennessee Titans (1)", - "und": "Baltimore Ravens (4)", - "sF": "10", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Jan 7, 2001", - "at": "@", - "fav": "New York Giants (1)", - "und": "Philadelphia Eagles (4)", - "sF": "20", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Jan 14, 2001", - "at": null, - "fav": "Minnesota Vikings (2)", - "und": "New York Giants (1)", - "sF": "0", - "sU": "41", - "spread": "2", - "ou": null - }, - { - "date": "Jan 14, 2001", - "at": "@", - "fav": "Oakland Raiders (2)", - "und": "Baltimore Ravens (4)", - "sF": "3", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Jan 28, 2001", - "at": "N", - "fav": "Baltimore Ravens (4)", - "und": "New York Giants (1)", - "sF": "34", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2001", - "at": null, - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2001", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "28", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Sep 9, 2001", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Dallas Cowboys", - "sF": "10", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Sep 9, 2001", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Carolina Panthers", - "sF": "13", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Sep 9, 2001", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Chicago Bears", - "sF": "17", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Sep 9, 2001", - "at": null, - "fav": "Seattle Seahawks", - "und": "Cleveland Browns", - "sF": "9", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Sep 9, 2001", - "at": null, - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "45", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Sep 9, 2001", - "at": null, - "fav": "New Orleans Saints", - "und": "Buffalo Bills", - "sF": "24", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Sep 9, 2001", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2001", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2001", - "at": "@", - "fav": "San Diego Chargers", - "und": "Washington Redskins", - "sF": "30", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Sep 9, 2001", - "at": null, - "fav": "St Louis Rams", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2001", - "at": "@", - "fav": "Tennessee Titans", - "und": "Miami Dolphins", - "sF": "23", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Sep 10, 2001", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Giants", - "sF": "31", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Sep 23, 2001", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Giants", - "sF": "3", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Sep 23, 2001", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "10", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2001", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Buffalo Bills", - "sF": "42", - "sU": "26", - "spread": "10", - "ou": null - }, - { - "date": "Sep 23, 2001", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "13", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Sep 23, 2001", - "at": "@", - "fav": "Miami Dolphins", - "und": "Oakland Raiders", - "sF": "18", - "sU": "15", - "spread": "1", - "ou": null - }, - { - "date": "Sep 23, 2001", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Sep 23, 2001", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "24", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2001", - "at": null, - "fav": "San Diego Chargers", - "und": "Dallas Cowboys", - "sF": "32", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2001", - "at": null, - "fav": "Detroit Lions", - "und": "Cleveland Browns", - "sF": "14", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Sep 23, 2001", - "at": null, - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "10", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Sep 23, 2001", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Sep 23, 2001", - "at": null, - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "30", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Sep 23, 2001", - "at": null, - "fav": "Denver Broncos", - "und": "Arizona Cardinals", - "sF": "38", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Sep 24, 2001", - "at": "@", - "fav": "Green Bay Packers", - "und": "Washington Redskins", - "sF": "37", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Sep 30, 2001", - "at": "@", - "fav": "St Louis Rams", - "und": "Miami Dolphins", - "sF": "42", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 30, 2001", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Minnesota Vikings", - "sF": "16", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 2001", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Washington Redskins", - "sF": "45", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 2001", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Buffalo Bills", - "sF": "20", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 2001", - "at": null, - "fav": "Green Bay Packers", - "und": "Carolina Panthers", - "sF": "28", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 2001", - "at": null, - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "13", - "sU": "44", - "spread": "11", - "ou": null - }, - { - "date": "Sep 30, 2001", - "at": "@", - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "21", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 2001", - "at": null, - "fav": "Atlanta Falcons", - "und": "Arizona Cardinals", - "sF": "34", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 2001", - "at": "@", - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "38", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Sep 30, 2001", - "at": "@", - "fav": "Denver Broncos", - "und": "Baltimore Ravens", - "sF": "13", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 30, 2001", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Cleveland Browns", - "sF": "14", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Sep 30, 2001", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 30, 2001", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "40", - "sU": "18", - "spread": "13", - "ou": null - }, - { - "date": "Oct 1, 2001", - "at": "@", - "fav": "New York Jets", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 2001", - "at": "@", - "fav": "New Orleans Saints", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 2001", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Tennessee Titans", - "sF": "26", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 2001", - "at": null, - "fav": "San Diego Chargers", - "und": "Cleveland Browns", - "sF": "16", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 2001", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "16", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Oct 7, 2001", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "30", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 7, 2001", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "23", - "sU": "9", - "spread": "14", - "ou": null - }, - { - "date": "Oct 7, 2001", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Chicago Bears", - "sF": "3", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 2001", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Oct 7, 2001", - "at": "@", - "fav": "Oakland Raiders", - "und": "Dallas Cowboys", - "sF": "28", - "sU": "21", - "spread": "18", - "ou": null - }, - { - "date": "Oct 7, 2001", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Oct 7, 2001", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "42", - "sU": "36", - "spread": "4", - "ou": null - }, - { - "date": "Oct 7, 2001", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Seattle Seahawks", - "sF": "15", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 2001", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Green Bay Packers", - "sF": "14", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 2001", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Carolina Panthers", - "sF": "24", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 8, 2001", - "at": null, - "fav": "St Louis Rams", - "und": "Detroit Lions", - "sF": "35", - "sU": "0", - "spread": "12", - "ou": null - }, - { - "date": "Oct 14, 2001", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 14, 2001", - "at": "@", - "fav": "St Louis Rams", - "und": "New York Giants", - "sF": "15", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Oct 14, 2001", - "at": "@", - "fav": "Chicago Bears", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 14, 2001", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "31", - "sU": "26", - "spread": "10", - "ou": null - }, - { - "date": "Oct 14, 2001", - "at": null, - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "27", - "sU": "25", - "spread": "5", - "ou": null - }, - { - "date": "Oct 14, 2001", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "24", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 14, 2001", - "at": null, - "fav": "San Diego Chargers", - "und": "New England Patriots", - "sF": "26", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 2001", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "37", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 2001", - "at": "@", - "fav": "Tennessee Titans", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 2001", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "17", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 2001", - "at": null, - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Oct 14, 2001", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Oakland Raiders", - "sF": "18", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 2001", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "9", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2001", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Buffalo Bills", - "sF": "10", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Oct 21, 2001", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Oct 21, 2001", - "at": null, - "fav": "Tennessee Titans", - "und": "Detroit Lions", - "sF": "27", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Oct 21, 2001", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "17", - "sU": "38", - "spread": "10", - "ou": null - }, - { - "date": "Oct 21, 2001", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 21, 2001", - "at": null, - "fav": "Carolina Panthers", - "und": "Washington Redskins", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 2001", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Chicago Bears", - "sF": "0", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Oct 21, 2001", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "14", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 21, 2001", - "at": null, - "fav": "St Louis Rams", - "und": "New York Jets", - "sF": "34", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 21, 2001", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "10", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 21, 2001", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 2001", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Arizona Cardinals", - "sF": "16", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 22, 2001", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "9", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 2001", - "at": null, - "fav": "Indianapolis Colts", - "und": "Kansas City Chiefs", - "sF": "35", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 2001", - "at": "@", - "fav": "Detroit Lions", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 2001", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Jacksonville Jaguars", - "sF": "18", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 28, 2001", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Minnesota Vikings", - "sF": "41", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 2001", - "at": null, - "fav": "New York Jets", - "und": "Carolina Panthers", - "sF": "13", - "sU": "12", - "spread": "2", - "ou": null - }, - { - "date": "Oct 28, 2001", - "at": "@", - "fav": "St Louis Rams", - "und": "New Orleans Saints", - "sF": "31", - "sU": "34", - "spread": "12", - "ou": null - }, - { - "date": "Oct 28, 2001", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "37", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Oct 28, 2001", - "at": "@", - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "27", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 28, 2001", - "at": "@", - "fav": "Denver Broncos", - "und": "New England Patriots", - "sF": "31", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 28, 2001", - "at": null, - "fav": "Arizona Cardinals", - "und": "Dallas Cowboys", - "sF": "3", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 2001", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "21", - "sU": "35", - "spread": "7", - "ou": null - }, - { - "date": "Oct 28, 2001", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Oakland Raiders", - "sF": "10", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Oct 28, 2001", - "at": null, - "fav": "Miami Dolphins", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 29, 2001", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Tennessee Titans", - "sF": "34", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 2001", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New England Patriots", - "sF": "10", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 2001", - "at": null, - "fav": "Indianapolis Colts", - "und": "Buffalo Bills", - "sF": "30", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 2001", - "at": "@", - "fav": "Miami Dolphins", - "und": "Carolina Panthers", - "sF": "23", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Nov 4, 2001", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "10", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 4, 2001", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Nov 4, 2001", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 2001", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Nov 4, 2001", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "21", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 4, 2001", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "21", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Nov 4, 2001", - "at": "@", - "fav": "Chicago Bears", - "und": "Cleveland Browns", - "sF": "27", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 4, 2001", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "25", - "spread": "5", - "ou": null - }, - { - "date": "Nov 4, 2001", - "at": null, - "fav": "Seattle Seahawks", - "und": "Washington Redskins", - "sF": "14", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 4, 2001", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Jets", - "sF": "9", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Nov 5, 2001", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "38", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Nov 11, 2001", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Miami Dolphins", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 2001", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "20", - "sU": "12", - "spread": "2", - "ou": null - }, - { - "date": "Nov 11, 2001", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "21", - "sU": "11", - "spread": "6", - "ou": null - }, - { - "date": "Nov 11, 2001", - "at": "@", - "fav": "New York Jets", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 11, 2001", - "at": "@", - "fav": "St Louis Rams", - "und": "Carolina Panthers", - "sF": "48", - "sU": "14", - "spread": "18", - "ou": null - }, - { - "date": "Nov 11, 2001", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "15", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 2001", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "20", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 11, 2001", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Cincinnati Bengals", - "sF": "30", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Nov 11, 2001", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 11, 2001", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "26", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Nov 11, 2001", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Minnesota Vikings", - "sF": "48", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 11, 2001", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "28", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 2001", - "at": null, - "fav": "New York Giants", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 11, 2001", - "at": null, - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Nov 12, 2001", - "at": null, - "fav": "Baltimore Ravens", - "und": "Tennessee Titans", - "sF": "16", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Nov 18, 2001", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "17", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Nov 18, 2001", - "at": null, - "fav": "Seattle Seahawks", - "und": "Buffalo Bills", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 2001", - "at": null, - "fav": "San Francisco 49ers", - "und": "Carolina Panthers", - "sF": "25", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Nov 18, 2001", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Tennessee Titans", - "sF": "7", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 18, 2001", - "at": "@", - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Nov 18, 2001", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "0", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Nov 18, 2001", - "at": "@", - "fav": "New Orleans Saints", - "und": "Indianapolis Colts", - "sF": "34", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Nov 18, 2001", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "36", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 18, 2001", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "34", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Nov 18, 2001", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 18, 2001", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Detroit Lions", - "sF": "45", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Nov 18, 2001", - "at": "@", - "fav": "Denver Broncos", - "und": "Washington Redskins", - "sF": "10", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 18, 2001", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "24", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Nov 18, 2001", - "at": null, - "fav": "St Louis Rams", - "und": "New England Patriots", - "sF": "24", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 19, 2001", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "28", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Nov 22, 2001", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "29", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 2001", - "at": null, - "fav": "Denver Broncos", - "und": "Dallas Cowboys", - "sF": "26", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 25, 2001", - "at": "@", - "fav": "Indianapolis Colts", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "40", - "spread": "2", - "ou": null - }, - { - "date": "Nov 25, 2001", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "19", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Nov 25, 2001", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "34", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Nov 25, 2001", - "at": null, - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "10", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 2001", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "18", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 25, 2001", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "3", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Nov 25, 2001", - "at": "@", - "fav": "Tennessee Titans", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Nov 25, 2001", - "at": "@", - "fav": "San Diego Chargers", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 25, 2001", - "at": null, - "fav": "Baltimore Ravens", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 2001", - "at": null, - "fav": "Oakland Raiders", - "und": "New York Giants", - "sF": "28", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 25, 2001", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "6", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 2001", - "at": "@", - "fav": "St Louis Rams", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Nov 29, 2001", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Kansas City Chiefs", - "sF": "23", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 2001", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Dec 2, 2001", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Indianapolis Colts", - "sF": "39", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 2, 2001", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Cincinnati Bengals", - "sF": "16", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Dec 2, 2001", - "at": "@", - "fav": "Cleveland Browns", - "und": "Tennessee Titans", - "sF": "15", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Dec 2, 2001", - "at": "@", - "fav": "Miami Dolphins", - "und": "Denver Broncos", - "sF": "21", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 2001", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "16", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 2001", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "13", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 2, 2001", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "27", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Dec 2, 2001", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 2001", - "at": null, - "fav": "St Louis Rams", - "und": "Atlanta Falcons", - "sF": "35", - "sU": "6", - "spread": "8", - "ou": null - }, - { - "date": "Dec 2, 2001", - "at": "@", - "fav": "Oakland Raiders", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "34", - "spread": "13", - "ou": null - }, - { - "date": "Dec 2, 2001", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "14", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Dec 2, 2001", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Buffalo Bills", - "sF": "35", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Dec 3, 2001", - "at": null, - "fav": "Green Bay Packers", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 2001", - "at": null, - "fav": "Tennessee Titans", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "42", - "spread": "2", - "ou": null - }, - { - "date": "Dec 9, 2001", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "15", - "sU": "12", - "spread": "8", - "ou": null - }, - { - "date": "Dec 9, 2001", - "at": "@", - "fav": "Buffalo Bills", - "und": "Carolina Panthers", - "sF": "25", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 2001", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Jacksonville Jaguars", - "sF": "10", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Dec 9, 2001", - "at": null, - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "13", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 2001", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "17", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Dec 9, 2001", - "at": "@", - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "27", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Dec 9, 2001", - "at": "@", - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 9, 2001", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "San Diego Chargers", - "sF": "24", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 9, 2001", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 2001", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Washington Redskins", - "sF": "10", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Dec 9, 2001", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "26", - "spread": "9", - "ou": null - }, - { - "date": "Dec 9, 2001", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "18", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 2001", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 10, 2001", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "41", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Dec 15, 2001", - "at": "@", - "fav": "New York Giants", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Dec 15, 2001", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "13", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Dec 16, 2001", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Atlanta Falcons", - "sF": "41", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Dec 16, 2001", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "23", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Dec 16, 2001", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "12", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Dec 16, 2001", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Dec 16, 2001", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2001", - "at": "@", - "fav": "New York Jets", - "und": "Cincinnati Bengals", - "sF": "15", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Dec 16, 2001", - "at": "@", - "fav": "Cleveland Browns", - "und": "Jacksonville Jaguars", - "sF": "10", - "sU": "15", - "spread": "2", - "ou": null - }, - { - "date": "Dec 16, 2001", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Miami Dolphins", - "sF": "21", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2001", - "at": null, - "fav": "Green Bay Packers", - "und": "Tennessee Titans", - "sF": "20", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Dec 16, 2001", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "20", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Dec 16, 2001", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Dallas Cowboys", - "sF": "29", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Dec 16, 2001", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 2001", - "at": null, - "fav": "St Louis Rams", - "und": "New Orleans Saints", - "sF": "34", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Dec 22, 2001", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "20", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 2001", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 2001", - "at": "@", - "fav": "Oakland Raiders", - "und": "Tennessee Titans", - "sF": "10", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 23, 2001", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 2001", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Jacksonville Jaguars", - "sF": "3", - "sU": "33", - "spread": "2", - "ou": null - }, - { - "date": "Dec 23, 2001", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Detroit Lions", - "sF": "47", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 23, 2001", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "48", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Dec 23, 2001", - "at": "@", - "fav": "Washington Redskins", - "und": "Chicago Bears", - "sF": "15", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 23, 2001", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "16", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Dec 23, 2001", - "at": null, - "fav": "St Louis Rams", - "und": "Carolina Panthers", - "sF": "38", - "sU": "32", - "spread": "12", - "ou": null - }, - { - "date": "Dec 23, 2001", - "at": "@", - "fav": "New York Giants", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 2001", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Buffalo Bills", - "sF": "33", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Dec 23, 2001", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 2001", - "at": "@", - "fav": "Green Bay Packers", - "und": "Cleveland Browns", - "sF": "30", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 23, 2001", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "28", - "sU": "29", - "spread": "1", - "ou": null - }, - { - "date": "Dec 29, 2001", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Baltimore Ravens", - "sF": "22", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Dec 30, 2001", - "at": "@", - "fav": "Carolina Panthers", - "und": "Arizona Cardinals", - "sF": "7", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Dec 30, 2001", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "26", - "spread": "8", - "ou": null - }, - { - "date": "Dec 30, 2001", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "13", - "spread": "12", - "ou": null - }, - { - "date": "Dec 30, 2001", - "at": "@", - "fav": "Miami Dolphins", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 30, 2001", - "at": "@", - "fav": "St Louis Rams", - "und": "Indianapolis Colts", - "sF": "42", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Dec 30, 2001", - "at": null, - "fav": "San Francisco 49ers", - "und": "Dallas Cowboys", - "sF": "21", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 30, 2001", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "24", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Dec 30, 2001", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "9", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 30, 2001", - "at": "@", - "fav": "Tennessee Titans", - "und": "Cleveland Browns", - "sF": "38", - "sU": "41", - "spread": "5", - "ou": null - }, - { - "date": "Dec 30, 2001", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Kansas City Chiefs", - "sF": "26", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Dec 30, 2001", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "24", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Dec 30, 2001", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "23", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 30, 2001", - "at": "@", - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "22", - "sU": "25", - "spread": "1", - "ou": null - }, - { - "date": "Dec 30, 2001", - "at": "@", - "fav": "New Orleans Saints", - "und": "Washington Redskins", - "sF": "10", - "sU": "40", - "spread": "5", - "ou": null - }, - { - "date": "Jan 6, 2002", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "38", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Jan 6, 2002", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Denver Broncos", - "sF": "29", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Jan 6, 2002", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "28", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Jan 6, 2002", - "at": "@", - "fav": "Washington Redskins", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Jan 6, 2002", - "at": null, - "fav": "New England Patriots", - "und": "Carolina Panthers", - "sF": "38", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Jan 6, 2002", - "at": "@", - "fav": "Chicago Bears", - "und": "Jacksonville Jaguars", - "sF": "33", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Jan 6, 2002", - "at": null, - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "10", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Jan 6, 2002", - "at": "@", - "fav": "Tennessee Titans", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Jan 6, 2002", - "at": null, - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "34", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Jan 6, 2002", - "at": "@", - "fav": "St Louis Rams", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Jan 6, 2002", - "at": "@", - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "22", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Jan 6, 2002", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Kansas City Chiefs", - "sF": "21", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Jan 6, 2002", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "34", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Jan 6, 2002", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Jan 7, 2002", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Minnesota Vikings", - "sF": "19", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Jan 12, 2002", - "at": "@", - "fav": "Philadelphia Eagles (3)", - "und": "Tampa Bay Buccaneers (6)", - "sF": "31", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Jan 12, 2002", - "at": "@", - "fav": "Oakland Raiders (3)", - "und": "New York Jets (6)", - "sF": "38", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Jan 13, 2002", - "at": "@", - "fav": "Green Bay Packers (4)", - "und": "San Francisco 49ers (5)", - "sF": "25", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Jan 13, 2002", - "at": "@", - "fav": "Miami Dolphins (4)", - "und": "Baltimore Ravens (5)", - "sF": "3", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Jan 19, 2002", - "at": "@", - "fav": "Chicago Bears (2)", - "und": "Philadelphia Eagles (3)", - "sF": "19", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Jan 19, 2002", - "at": "@", - "fav": "New England Patriots (2)", - "und": "Oakland Raiders (3)", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Jan 20, 2002", - "at": "@", - "fav": "Pittsburgh Steelers (1)", - "und": "Baltimore Ravens (5)", - "sF": "27", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Jan 20, 2002", - "at": "@", - "fav": "St Louis Rams (1)", - "und": "Green Bay Packers (4)", - "sF": "45", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Jan 27, 2002", - "at": "@", - "fav": "Pittsburgh Steelers (1)", - "und": "New England Patriots (2)", - "sF": "17", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Jan 27, 2002", - "at": "@", - "fav": "St Louis Rams (1)", - "und": "Philadelphia Eagles (3)", - "sF": "29", - "sU": "24", - "spread": "11", - "ou": null - }, - { - "date": "Feb 3, 2002", - "at": "N", - "fav": "St Louis Rams (1)", - "und": "New England Patriots (2)", - "sF": "17", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Sep 5, 2002", - "at": null, - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "16", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Sep 8, 2002", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "37", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 2002", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Sep 8, 2002", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "San Diego Chargers", - "sF": "6", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 2002", - "at": "@", - "fav": "Cleveland Browns", - "und": "Kansas City Chiefs", - "sF": "39", - "sU": "40", - "spread": "2", - "ou": null - }, - { - "date": "Sep 8, 2002", - "at": "@", - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "37", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Sep 8, 2002", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 2002", - "at": "@", - "fav": "Miami Dolphins", - "und": "Detroit Lions", - "sF": "49", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Sep 8, 2002", - "at": "@", - "fav": "Washington Redskins", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Sep 8, 2002", - "at": "@", - "fav": "Tennessee Titans", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 8, 2002", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "20", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Sep 8, 2002", - "at": null, - "fav": "St Louis Rams", - "und": "Denver Broncos", - "sF": "16", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 2002", - "at": "@", - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 8, 2002", - "at": null, - "fav": "Dallas Cowboys", - "und": "Houston Texans", - "sF": "10", - "sU": "19", - "spread": "8", - "ou": null - }, - { - "date": "Sep 9, 2002", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New England Patriots", - "sF": "14", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Sep 15, 2002", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Jacksonville Jaguars", - "sF": "16", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 2002", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Baltimore Ravens", - "sF": "25", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Sep 15, 2002", - "at": null, - "fav": "Tennessee Titans", - "und": "Dallas Cowboys", - "sF": "13", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 2002", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 2002", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "7", - "sU": "44", - "spread": "1", - "ou": null - }, - { - "date": "Sep 15, 2002", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Chicago Bears", - "sF": "13", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Sep 15, 2002", - "at": "@", - "fav": "Carolina Panthers", - "und": "Detroit Lions", - "sF": "31", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 2002", - "at": null, - "fav": "Green Bay Packers", - "und": "New Orleans Saints", - "sF": "20", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Sep 15, 2002", - "at": "@", - "fav": "St Louis Rams", - "und": "New York Giants", - "sF": "21", - "sU": "26", - "spread": "12", - "ou": null - }, - { - "date": "Sep 15, 2002", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Denver Broncos", - "sF": "14", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 2002", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "13", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Sep 15, 2002", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Buffalo Bills", - "sF": "39", - "sU": "45", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 2002", - "at": "@", - "fav": "San Diego Chargers", - "und": "Houston Texans", - "sF": "24", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Sep 15, 2002", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Oakland Raiders", - "sF": "17", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Sep 16, 2002", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "37", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 2002", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Carolina Panthers", - "sF": "14", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Sep 22, 2002", - "at": null, - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "23", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Sep 22, 2002", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "30", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 22, 2002", - "at": "@", - "fav": "New England Patriots", - "und": "Kansas City Chiefs", - "sF": "41", - "sU": "38", - "spread": "8", - "ou": null - }, - { - "date": "Sep 22, 2002", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "44", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Sep 22, 2002", - "at": "@", - "fav": "Tennessee Titans", - "und": "Cleveland Browns", - "sF": "28", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Sep 22, 2002", - "at": null, - "fav": "New Orleans Saints", - "und": "Chicago Bears", - "sF": "29", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Sep 22, 2002", - "at": null, - "fav": "San Diego Chargers", - "und": "Arizona Cardinals", - "sF": "23", - "sU": "15", - "spread": "2", - "ou": null - }, - { - "date": "Sep 22, 2002", - "at": "@", - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "28", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Sep 22, 2002", - "at": "@", - "fav": "New York Giants", - "und": "Seattle Seahawks", - "sF": "9", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Sep 22, 2002", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "20", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Sep 22, 2002", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "37", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Sep 22, 2002", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Cincinnati Bengals", - "sF": "30", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Sep 23, 2002", - "at": null, - "fav": "St Louis Rams", - "und": "Tampa Bay Buccaneers", - "sF": "14", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Sep 29, 2002", - "at": null, - "fav": "Miami Dolphins", - "und": "Kansas City Chiefs", - "sF": "30", - "sU": "48", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 2002", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "16", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Sep 29, 2002", - "at": "@", - "fav": "Green Bay Packers", - "und": "Carolina Panthers", - "sF": "17", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 29, 2002", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "New York Jets", - "sF": "28", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 2002", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Houston Texans", - "sF": "35", - "sU": "17", - "spread": "19", - "ou": null - }, - { - "date": "Sep 29, 2002", - "at": "@", - "fav": "St Louis Rams", - "und": "Dallas Cowboys", - "sF": "10", - "sU": "13", - "spread": "12", - "ou": null - }, - { - "date": "Sep 29, 2002", - "at": null, - "fav": "New Orleans Saints", - "und": "Detroit Lions", - "sF": "21", - "sU": "26", - "spread": "9", - "ou": null - }, - { - "date": "Sep 29, 2002", - "at": "@", - "fav": "Buffalo Bills", - "und": "Chicago Bears", - "sF": "33", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 2002", - "at": null, - "fav": "New York Giants", - "und": "Arizona Cardinals", - "sF": "7", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 2002", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Cincinnati Bengals", - "sF": "35", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 29, 2002", - "at": "@", - "fav": "Oakland Raiders", - "und": "Tennessee Titans", - "sF": "52", - "sU": "25", - "spread": "6", - "ou": null - }, - { - "date": "Sep 29, 2002", - "at": null, - "fav": "New England Patriots", - "und": "San Diego Chargers", - "sF": "14", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 2002", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Minnesota Vikings", - "sF": "48", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 2002", - "at": null, - "fav": "Denver Broncos", - "und": "Baltimore Ravens", - "sF": "23", - "sU": "34", - "spread": "9", - "ou": null - }, - { - "date": "Oct 6, 2002", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Oct 6, 2002", - "at": null, - "fav": "Oakland Raiders", - "und": "Buffalo Bills", - "sF": "49", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2002", - "at": "@", - "fav": "Carolina Panthers", - "und": "Arizona Cardinals", - "sF": "13", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Oct 6, 2002", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "26", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2002", - "at": "@", - "fav": "New Orleans Saints", - "und": "Pittsburgh Steelers", - "sF": "32", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2002", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "6", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 6, 2002", - "at": null, - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "21", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 6, 2002", - "at": "@", - "fav": "Tennessee Titans", - "und": "Washington Redskins", - "sF": "14", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2002", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "26", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Oct 6, 2002", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "29", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2002", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Jacksonville Jaguars", - "sF": "25", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2002", - "at": "@", - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "37", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 6, 2002", - "at": "@", - "fav": "Cleveland Browns", - "und": "Baltimore Ravens", - "sF": "21", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 2002", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "21", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Oct 13, 2002", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Baltimore Ravens", - "sF": "22", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 2002", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "31", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Oct 13, 2002", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Cleveland Browns", - "sF": "17", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Oct 13, 2002", - "at": null, - "fav": "New Orleans Saints", - "und": "Washington Redskins", - "sF": "43", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 13, 2002", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 2002", - "at": null, - "fav": "Buffalo Bills", - "und": "Houston Texans", - "sF": "31", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 13, 2002", - "at": "@", - "fav": "New England Patriots", - "und": "Green Bay Packers", - "sF": "10", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Oct 13, 2002", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Carolina Panthers", - "sF": "14", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Oct 13, 2002", - "at": "@", - "fav": "New York Giants", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 2002", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "14", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 13, 2002", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "35", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 2002", - "at": null, - "fav": "Oakland Raiders", - "und": "St Louis Rams", - "sF": "13", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Oct 13, 2002", - "at": "@", - "fav": "Denver Broncos", - "und": "Miami Dolphins", - "sF": "22", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 2002", - "at": null, - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "28", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 2002", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "37", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 2002", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Baltimore Ravens", - "sF": "10", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 20, 2002", - "at": "@", - "fav": "New York Jets", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 2002", - "at": "@", - "fav": "St Louis Rams", - "und": "Seattle Seahawks", - "sF": "37", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 20, 2002", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 2002", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "10", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 20, 2002", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "35", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 20, 2002", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "30", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Oct 20, 2002", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Texans", - "sF": "34", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Oct 20, 2002", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "21", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Oct 20, 2002", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Dallas Cowboys", - "sF": "9", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 2002", - "at": "@", - "fav": "Green Bay Packers", - "und": "Washington Redskins", - "sF": "30", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Oct 20, 2002", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 2002", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Indianapolis Colts", - "sF": "28", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 27, 2002", - "at": null, - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "10", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 2002", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "25", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 2002", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "31", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 2002", - "at": "@", - "fav": "Buffalo Bills", - "und": "Detroit Lions", - "sF": "24", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 27, 2002", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "12", - "sU": "9", - "spread": "8", - "ou": null - }, - { - "date": "Oct 27, 2002", - "at": null, - "fav": "Tennessee Titans", - "und": "Cincinnati Bengals", - "sF": "30", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Oct 27, 2002", - "at": "@", - "fav": "New York Jets", - "und": "Cleveland Browns", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 2002", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "35", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 2002", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Seattle Seahawks", - "sF": "14", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 2002", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "38", - "sU": "28", - "spread": "8", - "ou": null - }, - { - "date": "Oct 27, 2002", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "19", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Oct 27, 2002", - "at": "@", - "fav": "New England Patriots", - "und": "Denver Broncos", - "sF": "16", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 2002", - "at": "@", - "fav": "Washington Redskins", - "und": "Indianapolis Colts", - "sF": "26", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Oct 28, 2002", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "17", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 3, 2002", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "15", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 2002", - "at": "@", - "fav": "Houston Texans", - "und": "Cincinnati Bengals", - "sF": "3", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Nov 3, 2002", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Minnesota Vikings", - "sF": "38", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 3, 2002", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "7", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 2002", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 2002", - "at": "@", - "fav": "Detroit Lions", - "und": "Dallas Cowboys", - "sF": "9", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 2002", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Baltimore Ravens", - "sF": "20", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 3, 2002", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "19", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 3, 2002", - "at": "@", - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "13", - "sU": "44", - "spread": "8", - "ou": null - }, - { - "date": "Nov 3, 2002", - "at": null, - "fav": "St Louis Rams", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Nov 3, 2002", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 2002", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Washington Redskins", - "sF": "3", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 3, 2002", - "at": "@", - "fav": "New York Giants", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 2002", - "at": "@", - "fav": "Green Bay Packers", - "und": "Miami Dolphins", - "sF": "24", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 10, 2002", - "at": null, - "fav": "New York Giants", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 10, 2002", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "34", - "spread": "5", - "ou": null - }, - { - "date": "Nov 10, 2002", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "38", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 10, 2002", - "at": null, - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "34", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 10, 2002", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "40", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Nov 10, 2002", - "at": "@", - "fav": "St Louis Rams", - "und": "San Diego Chargers", - "sF": "28", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 10, 2002", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Indianapolis Colts", - "sF": "13", - "sU": "35", - "spread": "9", - "ou": null - }, - { - "date": "Nov 10, 2002", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "17", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 10, 2002", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Washington Redskins", - "sF": "26", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Nov 10, 2002", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Seattle Seahawks", - "sF": "6", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 2002", - "at": null, - "fav": "New England Patriots", - "und": "Chicago Bears", - "sF": "33", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Nov 10, 2002", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Nov 10, 2002", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "13", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 11, 2002", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "10", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 2002", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 2002", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 2002", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "17", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 2002", - "at": null, - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 2002", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "24", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 2002", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "38", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Nov 17, 2002", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Tennessee Titans", - "sF": "23", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 2002", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "19", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 2002", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "24", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 17, 2002", - "at": null, - "fav": "San Francisco 49ers", - "und": "San Diego Chargers", - "sF": "17", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 17, 2002", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "23", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Nov 17, 2002", - "at": null, - "fav": "New York Jets", - "und": "Detroit Lions", - "sF": "31", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 2002", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Ravens", - "sF": "26", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 17, 2002", - "at": null, - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Nov 17, 2002", - "at": "@", - "fav": "Oakland Raiders", - "und": "New England Patriots", - "sF": "27", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 18, 2002", - "at": "@", - "fav": "St Louis Rams", - "und": "Chicago Bears", - "sF": "21", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Nov 24, 2002", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "29", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Nov 24, 2002", - "at": null, - "fav": "St Louis Rams", - "und": "Washington Redskins", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 2002", - "at": null, - "fav": "Tennessee Titans", - "und": "Baltimore Ravens", - "sF": "12", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 24, 2002", - "at": null, - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "41", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 2002", - "at": "@", - "fav": "Miami Dolphins", - "und": "San Diego Chargers", - "sF": "30", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 2002", - "at": "@", - "fav": "New England Patriots", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 24, 2002", - "at": "@", - "fav": "New Orleans Saints", - "und": "Cleveland Browns", - "sF": "15", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Nov 24, 2002", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "31", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 2002", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "20", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 24, 2002", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Dallas Cowboys", - "sF": "19", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 24, 2002", - "at": null, - "fav": "Oakland Raiders", - "und": "Arizona Cardinals", - "sF": "41", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Nov 24, 2002", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "32", - "sU": "39", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 2002", - "at": null, - "fav": "New York Giants", - "und": "Houston Texans", - "sF": "14", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Nov 24, 2002", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Green Bay Packers", - "sF": "21", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 2002", - "at": "@", - "fav": "Denver Broncos", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Nov 25, 2002", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "38", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 2002", - "at": null, - "fav": "New England Patriots", - "und": "Detroit Lions", - "sF": "20", - "sU": "12", - "spread": "6", - "ou": null - }, - { - "date": "Nov 28, 2002", - "at": null, - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Dec 1, 2002", - "at": null, - "fav": "Atlanta Falcons", - "und": "Minnesota Vikings", - "sF": "30", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 2002", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Arizona Cardinals", - "sF": "49", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Dec 1, 2002", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "21", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Dec 1, 2002", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 1, 2002", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "30", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Dec 1, 2002", - "at": "@", - "fav": "New York Giants", - "und": "Tennessee Titans", - "sF": "29", - "sU": "32", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 2002", - "at": "@", - "fav": "Cleveland Browns", - "und": "Carolina Panthers", - "sF": "6", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 1, 2002", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "25", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 2002", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "19", - "sU": "3", - "spread": "11", - "ou": null - }, - { - "date": "Dec 1, 2002", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "27", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 2002", - "at": null, - "fav": "St Louis Rams", - "und": "Philadelphia Eagles", - "sF": "3", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Dec 1, 2002", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Dec 1, 2002", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "20", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Dec 2, 2002", - "at": "@", - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "26", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 2002", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "St Louis Rams", - "sF": "49", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 8, 2002", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Texans", - "sF": "6", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Dec 8, 2002", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2002", - "at": "@", - "fav": "Carolina Panthers", - "und": "Cincinnati Bengals", - "sF": "52", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2002", - "at": null, - "fav": "San Francisco 49ers", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Dec 8, 2002", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "27", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2002", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "21", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2002", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Cleveland Browns", - "sF": "20", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Dec 8, 2002", - "at": null, - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "17", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Dec 8, 2002", - "at": null, - "fav": "New Orleans Saints", - "und": "Baltimore Ravens", - "sF": "37", - "sU": "25", - "spread": "2", - "ou": null - }, - { - "date": "Dec 8, 2002", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2002", - "at": null, - "fav": "Detroit Lions", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Dec 8, 2002", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "27", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2002", - "at": null, - "fav": "Denver Broncos", - "und": "New York Jets", - "sF": "13", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Dec 8, 2002", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "26", - "sU": "22", - "spread": "9", - "ou": null - }, - { - "date": "Dec 9, 2002", - "at": "@", - "fav": "Miami Dolphins", - "und": "Chicago Bears", - "sF": "27", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Dec 15, 2002", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Carolina Panthers", - "sF": "30", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Dec 15, 2002", - "at": "@", - "fav": "Buffalo Bills", - "und": "San Diego Chargers", - "sF": "20", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 2002", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Cincinnati Bengals", - "sF": "29", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 2002", - "at": null, - "fav": "Indianapolis Colts", - "und": "Cleveland Browns", - "sF": "28", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 15, 2002", - "at": null, - "fav": "Baltimore Ravens", - "und": "Houston Texans", - "sF": "23", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 2002", - "at": "@", - "fav": "Miami Dolphins", - "und": "Oakland Raiders", - "sF": "23", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 15, 2002", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "34", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 2002", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "30", - "spread": "9", - "ou": null - }, - { - "date": "Dec 15, 2002", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "23", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Dec 15, 2002", - "at": "@", - "fav": "New Orleans Saints", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "32", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 2002", - "at": null, - "fav": "New York Jets", - "und": "Chicago Bears", - "sF": "13", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 15, 2002", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "31", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 2002", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "14", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 2002", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "37", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Dec 15, 2002", - "at": "@", - "fav": "St Louis Rams", - "und": "Arizona Cardinals", - "sF": "30", - "sU": "28", - "spread": "11", - "ou": null - }, - { - "date": "Dec 16, 2002", - "at": "@", - "fav": "Tennessee Titans", - "und": "New England Patriots", - "sF": "24", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 21, 2002", - "at": null, - "fav": "Miami Dolphins", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 2002", - "at": null, - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 2002", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Dec 22, 2002", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New York Giants", - "sF": "27", - "sU": "44", - "spread": "4", - "ou": null - }, - { - "date": "Dec 22, 2002", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "24", - "sU": "22", - "spread": "1", - "ou": null - }, - { - "date": "Dec 22, 2002", - "at": "@", - "fav": "Carolina Panthers", - "und": "Chicago Bears", - "sF": "24", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 22, 2002", - "at": null, - "fav": "New Orleans Saints", - "und": "Cincinnati Bengals", - "sF": "13", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 22, 2002", - "at": "@", - "fav": "Green Bay Packers", - "und": "Buffalo Bills", - "sF": "10", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Dec 22, 2002", - "at": "@", - "fav": "Washington Redskins", - "und": "Houston Texans", - "sF": "26", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 22, 2002", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Detroit Lions", - "sF": "36", - "sU": "15", - "spread": "10", - "ou": null - }, - { - "date": "Dec 22, 2002", - "at": null, - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 2002", - "at": "@", - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "30", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Dec 22, 2002", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "13", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 22, 2002", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "28", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 2002", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "17", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 2002", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Pittsburgh Steelers", - "sF": "7", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 28, 2002", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Dec 28, 2002", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Dec 29, 2002", - "at": "@", - "fav": "Buffalo Bills", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Dec 29, 2002", - "at": null, - "fav": "Atlanta Falcons", - "und": "Cleveland Browns", - "sF": "16", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 29, 2002", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "38", - "sU": "36", - "spread": "3", - "ou": null - }, - { - "date": "Dec 29, 2002", - "at": null, - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "24", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 29, 2002", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "6", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 29, 2002", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "34", - "sU": "31", - "spread": "8", - "ou": null - }, - { - "date": "Dec 29, 2002", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 29, 2002", - "at": null, - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "13", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Dec 29, 2002", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Dec 29, 2002", - "at": "@", - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "28", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 29, 2002", - "at": "@", - "fav": "Denver Broncos", - "und": "Arizona Cardinals", - "sF": "37", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Dec 29, 2002", - "at": null, - "fav": "Green Bay Packers", - "und": "New York Jets", - "sF": "17", - "sU": "42", - "spread": "1", - "ou": null - }, - { - "date": "Dec 29, 2002", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "15", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Dec 30, 2002", - "at": "@", - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Jan 4, 2003", - "at": "@", - "fav": "New York Jets (4)", - "und": "Indianapolis Colts (5)", - "sF": "41", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Jan 4, 2003", - "at": "@", - "fav": "Green Bay Packers (3)", - "und": "Atlanta Falcons (6)", - "sF": "7", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Jan 5, 2003", - "at": "@", - "fav": "Pittsburgh Steelers (3)", - "und": "Cleveland Browns (6)", - "sF": "36", - "sU": "33", - "spread": "8", - "ou": null - }, - { - "date": "Jan 5, 2003", - "at": "@", - "fav": "San Francisco 49ers (4)", - "und": "New York Giants (5)", - "sF": "39", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Jan 11, 2003", - "at": "@", - "fav": "Tennessee Titans (2)", - "und": "Pittsburgh Steelers (3)", - "sF": "34", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Jan 11, 2003", - "at": "@", - "fav": "Philadelphia Eagles (1)", - "und": "Atlanta Falcons (6)", - "sF": "20", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Jan 12, 2003", - "at": "@", - "fav": "Tampa Bay Buccaneers (2)", - "und": "San Francisco 49ers (4)", - "sF": "31", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Jan 12, 2003", - "at": "@", - "fav": "Oakland Raiders (1)", - "und": "New York Jets (4)", - "sF": "30", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Jan 19, 2003", - "at": "@", - "fav": "Philadelphia Eagles (1)", - "und": "Tampa Bay Buccaneers (2)", - "sF": "10", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Jan 19, 2003", - "at": "@", - "fav": "Oakland Raiders (1)", - "und": "Tennessee Titans (2)", - "sF": "41", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Jan 26, 2003", - "at": "N", - "fav": "Oakland Raiders (1)", - "und": "Tampa Bay Buccaneers (2)", - "sF": "21", - "sU": "48", - "spread": "3", - "ou": null - }, - { - "date": "Sep 4, 2003", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Jets", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 2003", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "27", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 7, 2003", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "31", - "sU": "0", - "spread": "1", - "ou": null - }, - { - "date": "Sep 7, 2003", - "at": "@", - "fav": "Carolina Panthers", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Sep 7, 2003", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "25", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Sep 7, 2003", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "34", - "sU": "15", - "spread": "4", - "ou": null - }, - { - "date": "Sep 7, 2003", - "at": null, - "fav": "St Louis Rams", - "und": "New York Giants", - "sF": "13", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Sep 7, 2003", - "at": null, - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "30", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 7, 2003", - "at": null, - "fav": "Indianapolis Colts", - "und": "Cleveland Browns", - "sF": "9", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Sep 7, 2003", - "at": "@", - "fav": "Detroit Lions", - "und": "Arizona Cardinals", - "sF": "42", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 2003", - "at": "@", - "fav": "Miami Dolphins", - "und": "Houston Texans", - "sF": "20", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Sep 7, 2003", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New Orleans Saints", - "sF": "27", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 2003", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Sep 7, 2003", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "49", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 7, 2003", - "at": "@", - "fav": "Tennessee Titans", - "und": "Oakland Raiders", - "sF": "25", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 2003", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Tampa Bay Buccaneers", - "sF": "0", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 14, 2003", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "33", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 2003", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Pittsburgh Steelers", - "sF": "41", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 14, 2003", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "33", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 2003", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "31", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Sep 14, 2003", - "at": "@", - "fav": "New Orleans Saints", - "und": "Houston Texans", - "sF": "31", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Sep 14, 2003", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "21", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 14, 2003", - "at": "@", - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 14, 2003", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Washington Redskins", - "sF": "31", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Sep 14, 2003", - "at": null, - "fav": "Buffalo Bills", - "und": "Jacksonville Jaguars", - "sF": "38", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 14, 2003", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "9", - "sU": "12", - "spread": "9", - "ou": null - }, - { - "date": "Sep 14, 2003", - "at": null, - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "38", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Sep 14, 2003", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "20", - "spread": "12", - "ou": null - }, - { - "date": "Sep 14, 2003", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New England Patriots", - "sF": "10", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Sep 14, 2003", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "37", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 14, 2003", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "24", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Sep 15, 2003", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "32", - "sU": "35", - "spread": "7", - "ou": null - }, - { - "date": "Sep 21, 2003", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "23", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Sep 21, 2003", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 21, 2003", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Houston Texans", - "sF": "42", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Sep 21, 2003", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "23", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Sep 21, 2003", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 21, 2003", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "23", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Sep 21, 2003", - "at": "@", - "fav": "Tennessee Titans", - "und": "New Orleans Saints", - "sF": "27", - "sU": "12", - "spread": "4", - "ou": null - }, - { - "date": "Sep 21, 2003", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "21", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Sep 21, 2003", - "at": null, - "fav": "Green Bay Packers", - "und": "Arizona Cardinals", - "sF": "13", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Sep 21, 2003", - "at": "@", - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "24", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 2003", - "at": "@", - "fav": "San Diego Chargers", - "und": "Baltimore Ravens", - "sF": "10", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Sep 21, 2003", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Cleveland Browns", - "sF": "12", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Sep 21, 2003", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "17", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 2003", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "31", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Sep 28, 2003", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Tennessee Titans", - "sF": "13", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 2003", - "at": "@", - "fav": "Buffalo Bills", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 2003", - "at": "@", - "fav": "St Louis Rams", - "und": "Arizona Cardinals", - "sF": "37", - "sU": "13", - "spread": "11", - "ou": null - }, - { - "date": "Sep 28, 2003", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "14", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 28, 2003", - "at": "@", - "fav": "Washington Redskins", - "und": "New England Patriots", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 2003", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "20", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 28, 2003", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Baltimore Ravens", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 2003", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "34", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Sep 28, 2003", - "at": "@", - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 28, 2003", - "at": "@", - "fav": "Denver Broncos", - "und": "Detroit Lions", - "sF": "20", - "sU": "16", - "spread": "12", - "ou": null - }, - { - "date": "Sep 28, 2003", - "at": "@", - "fav": "New York Jets", - "und": "Dallas Cowboys", - "sF": "6", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 2003", - "at": null, - "fav": "Indianapolis Colts", - "und": "New Orleans Saints", - "sF": "55", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Sep 29, 2003", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "38", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 5, 2003", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "24", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 5, 2003", - "at": "@", - "fav": "Buffalo Bills", - "und": "Cincinnati Bengals", - "sF": "22", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 2003", - "at": "@", - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "19", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 2003", - "at": null, - "fav": "Oakland Raiders", - "und": "Chicago Bears", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 5, 2003", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 2003", - "at": "@", - "fav": "Green Bay Packers", - "und": "Seattle Seahawks", - "sF": "35", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 5, 2003", - "at": "@", - "fav": "New England Patriots", - "und": "Tennessee Titans", - "sF": "38", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Oct 5, 2003", - "at": "@", - "fav": "New York Giants", - "und": "Miami Dolphins", - "sF": "10", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 5, 2003", - "at": null, - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "39", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Oct 5, 2003", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "San Diego Chargers", - "sF": "27", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 5, 2003", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "27", - "sU": "25", - "spread": "4", - "ou": null - }, - { - "date": "Oct 5, 2003", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "24", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 2003", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "13", - "sU": "33", - "spread": "7", - "ou": null - }, - { - "date": "Oct 6, 2003", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Indianapolis Colts", - "sF": "35", - "sU": "38", - "spread": "4", - "ou": null - }, - { - "date": "Oct 12, 2003", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Carolina Panthers", - "sF": "20", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 12, 2003", - "at": null, - "fav": "Miami Dolphins", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 2003", - "at": "@", - "fav": "Green Bay Packers", - "und": "Kansas City Chiefs", - "sF": "34", - "sU": "40", - "spread": "2", - "ou": null - }, - { - "date": "Oct 12, 2003", - "at": "@", - "fav": "New England Patriots", - "und": "New York Giants", - "sF": "17", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Oct 12, 2003", - "at": "@", - "fav": "Cleveland Browns", - "und": "Oakland Raiders", - "sF": "13", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 2003", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Oct 12, 2003", - "at": "@", - "fav": "New Orleans Saints", - "und": "Chicago Bears", - "sF": "20", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 12, 2003", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "38", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Oct 12, 2003", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Washington Redskins", - "sF": "35", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 2003", - "at": "@", - "fav": "Denver Broncos", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 12, 2003", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "3", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Oct 12, 2003", - "at": null, - "fav": "Baltimore Ravens", - "und": "Arizona Cardinals", - "sF": "26", - "sU": "18", - "spread": "6", - "ou": null - }, - { - "date": "Oct 12, 2003", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 2003", - "at": "@", - "fav": "St Louis Rams", - "und": "Atlanta Falcons", - "sF": "36", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Oct 19, 2003", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Denver Broncos", - "sF": "28", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 19, 2003", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Oct 19, 2003", - "at": "@", - "fav": "Cleveland Browns", - "und": "San Diego Chargers", - "sF": "20", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 2003", - "at": "@", - "fav": "St Louis Rams", - "und": "Green Bay Packers", - "sF": "34", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Oct 19, 2003", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "45", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 2003", - "at": null, - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "38", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 2003", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "13", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Oct 19, 2003", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 2003", - "at": null, - "fav": "New York Jets", - "und": "Houston Texans", - "sF": "19", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 2003", - "at": "@", - "fav": "Buffalo Bills", - "und": "Washington Redskins", - "sF": "24", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 2003", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "San Francisco 49ers", - "sF": "7", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Oct 19, 2003", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Chicago Bears", - "sF": "24", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Oct 20, 2003", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "17", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 26, 2003", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "17", - "sU": "29", - "spread": "5", - "ou": null - }, - { - "date": "Oct 26, 2003", - "at": null, - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "30", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 26, 2003", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Dallas Cowboys", - "sF": "16", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Oct 26, 2003", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Denver Broncos", - "sF": "26", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Oct 26, 2003", - "at": null, - "fav": "Seattle Seahawks", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 2003", - "at": "@", - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "9", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Oct 26, 2003", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "St Louis Rams", - "sF": "21", - "sU": "33", - "spread": "1", - "ou": null - }, - { - "date": "Oct 26, 2003", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "24", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 2003", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 2003", - "at": null, - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "13", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 26, 2003", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Jets", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 2003", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "30", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Oct 26, 2003", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "38", - "sU": "5", - "spread": "5", - "ou": null - }, - { - "date": "Oct 27, 2003", - "at": null, - "fav": "Miami Dolphins", - "und": "San Diego Chargers", - "sF": "26", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 2, 2003", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 2, 2003", - "at": null, - "fav": "Carolina Panthers", - "und": "Houston Texans", - "sF": "10", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 2, 2003", - "at": null, - "fav": "Oakland Raiders", - "und": "Detroit Lions", - "sF": "13", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 2003", - "at": null, - "fav": "New York Giants", - "und": "New York Jets", - "sF": "31", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 2003", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 2003", - "at": "@", - "fav": "Chicago Bears", - "und": "San Diego Chargers", - "sF": "20", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Nov 2, 2003", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "14", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 2, 2003", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Arizona Cardinals", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 2003", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Nov 2, 2003", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Nov 2, 2003", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "21", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 2, 2003", - "at": null, - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "10", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Nov 2, 2003", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "27", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Nov 3, 2003", - "at": "@", - "fav": "Denver Broncos", - "und": "New England Patriots", - "sF": "26", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Nov 9, 2003", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cleveland Browns", - "sF": "41", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Nov 9, 2003", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 2003", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "23", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Nov 9, 2003", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Arizona Cardinals", - "sF": "28", - "sU": "15", - "spread": "7", - "ou": null - }, - { - "date": "Nov 9, 2003", - "at": "@", - "fav": "Tennessee Titans", - "und": "Miami Dolphins", - "sF": "31", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 9, 2003", - "at": null, - "fav": "Seattle Seahawks", - "und": "Washington Redskins", - "sF": "20", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 2003", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Texans", - "sF": "34", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 9, 2003", - "at": "@", - "fav": "New York Giants", - "und": "Atlanta Falcons", - "sF": "7", - "sU": "27", - "spread": "11", - "ou": null - }, - { - "date": "Nov 9, 2003", - "at": null, - "fav": "Minnesota Vikings", - "und": "San Diego Chargers", - "sF": "28", - "sU": "42", - "spread": "5", - "ou": null - }, - { - "date": "Nov 9, 2003", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Buffalo Bills", - "sF": "10", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Nov 9, 2003", - "at": null, - "fav": "New York Jets", - "und": "Oakland Raiders", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 2003", - "at": "@", - "fav": "St Louis Rams", - "und": "Baltimore Ravens", - "sF": "33", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Nov 10, 2003", - "at": "@", - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 16, 2003", - "at": "@", - "fav": "Buffalo Bills", - "und": "Houston Texans", - "sF": "10", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Nov 16, 2003", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "28", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 2003", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "10", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Nov 16, 2003", - "at": "@", - "fav": "Carolina Panthers", - "und": "Washington Redskins", - "sF": "20", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 16, 2003", - "at": null, - "fav": "St Louis Rams", - "und": "Chicago Bears", - "sF": "23", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 16, 2003", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Cincinnati Bengals", - "sF": "19", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 16, 2003", - "at": "@", - "fav": "Cleveland Browns", - "und": "Arizona Cardinals", - "sF": "44", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Nov 16, 2003", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Ravens", - "sF": "9", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Nov 16, 2003", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Nov 16, 2003", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "37", - "sU": "8", - "spread": "8", - "ou": null - }, - { - "date": "Nov 16, 2003", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "38", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 16, 2003", - "at": null, - "fav": "Minnesota Vikings", - "und": "Oakland Raiders", - "sF": "18", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Nov 16, 2003", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Green Bay Packers", - "sF": "13", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 2003", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Detroit Lions", - "sF": "35", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Nov 16, 2003", - "at": "@", - "fav": "New England Patriots", - "und": "Dallas Cowboys", - "sF": "12", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Nov 17, 2003", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Pittsburgh Steelers", - "sF": "30", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Nov 23, 2003", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "24", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Nov 23, 2003", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Seattle Seahawks", - "sF": "44", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 2003", - "at": null, - "fav": "Indianapolis Colts", - "und": "Buffalo Bills", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 2003", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "6", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 2003", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Carolina Panthers", - "sF": "24", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 2003", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 2003", - "at": null, - "fav": "New England Patriots", - "und": "Houston Texans", - "sF": "23", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Nov 23, 2003", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New Orleans Saints", - "sF": "33", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Nov 23, 2003", - "at": "@", - "fav": "New York Jets", - "und": "Jacksonville Jaguars", - "sF": "13", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 23, 2003", - "at": "@", - "fav": "Denver Broncos", - "und": "Chicago Bears", - "sF": "10", - "sU": "19", - "spread": "10", - "ou": null - }, - { - "date": "Nov 23, 2003", - "at": null, - "fav": "St Louis Rams", - "und": "Arizona Cardinals", - "sF": "30", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 2003", - "at": null, - "fav": "Tennessee Titans", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 23, 2003", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "27", - "sU": "24", - "spread": "11", - "ou": null - }, - { - "date": "Nov 23, 2003", - "at": null, - "fav": "Cincinnati Bengals", - "und": "San Diego Chargers", - "sF": "34", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 2003", - "at": "@", - "fav": "Miami Dolphins", - "und": "Washington Redskins", - "sF": "24", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 24, 2003", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New York Giants", - "sF": "19", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 27, 2003", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "14", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Nov 27, 2003", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Miami Dolphins", - "sF": "21", - "sU": "40", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 2003", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "34", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 2003", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 2003", - "at": "@", - "fav": "Baltimore Ravens", - "und": "San Francisco 49ers", - "sF": "44", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 2003", - "at": "@", - "fav": "Carolina Panthers", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "25", - "spread": "1", - "ou": null - }, - { - "date": "Nov 30, 2003", - "at": "@", - "fav": "New York Giants", - "und": "Buffalo Bills", - "sF": "7", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 2003", - "at": "@", - "fav": "St Louis Rams", - "und": "Minnesota Vikings", - "sF": "48", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 30, 2003", - "at": "@", - "fav": "Chicago Bears", - "und": "Arizona Cardinals", - "sF": "28", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Nov 30, 2003", - "at": "@", - "fav": "Houston Texans", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 2003", - "at": null, - "fav": "New Orleans Saints", - "und": "Washington Redskins", - "sF": "24", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 30, 2003", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "22", - "sU": "8", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 2003", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "28", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 30, 2003", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Cleveland Browns", - "sF": "34", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 30, 2003", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Jacksonville Jaguars", - "sF": "10", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 2003", - "at": null, - "fav": "Tennessee Titans", - "und": "New York Jets", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 2003", - "at": null, - "fav": "Seattle Seahawks", - "und": "Minnesota Vikings", - "sF": "7", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Dec 7, 2003", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Oakland Raiders", - "sF": "27", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Dec 7, 2003", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Dec 7, 2003", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "34", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 7, 2003", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "27", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Dec 7, 2003", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "7", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 2003", - "at": "@", - "fav": "Detroit Lions", - "und": "San Diego Chargers", - "sF": "7", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 2003", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "7", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 2003", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "36", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 7, 2003", - "at": "@", - "fav": "Tennessee Titans", - "und": "Indianapolis Colts", - "sF": "27", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 2003", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "50", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 7, 2003", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "17", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 2003", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "45", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 2003", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "12", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 2003", - "at": null, - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 8, 2003", - "at": null, - "fav": "St Louis Rams", - "und": "Cleveland Browns", - "sF": "26", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Dec 14, 2003", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 2003", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Detroit Lions", - "sF": "45", - "sU": "17", - "spread": "14", - "ou": null - }, - { - "date": "Dec 14, 2003", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Houston Texans", - "sF": "16", - "sU": "3", - "spread": "11", - "ou": null - }, - { - "date": "Dec 14, 2003", - "at": "@", - "fav": "New England Patriots", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 14, 2003", - "at": "@", - "fav": "St Louis Rams", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 2003", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 2003", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "San Francisco 49ers", - "sF": "41", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 2003", - "at": "@", - "fav": "New York Jets", - "und": "Pittsburgh Steelers", - "sF": "6", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 2003", - "at": "@", - "fav": "Tennessee Titans", - "und": "Buffalo Bills", - "sF": "28", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Dec 14, 2003", - "at": "@", - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "23", - "sU": "20", - "spread": "11", - "ou": null - }, - { - "date": "Dec 14, 2003", - "at": null, - "fav": "Baltimore Ravens", - "und": "Oakland Raiders", - "sF": "12", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 2003", - "at": null, - "fav": "Green Bay Packers", - "und": "San Diego Chargers", - "sF": "38", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Dec 14, 2003", - "at": null, - "fav": "Carolina Panthers", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 2003", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "27", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 2003", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Giants", - "sF": "45", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 2003", - "at": "@", - "fav": "Miami Dolphins", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 2003", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Dec 20, 2003", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "45", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 2003", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "21", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 2003", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "3", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 2003", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "19", - "sU": "3", - "spread": "12", - "ou": null - }, - { - "date": "Dec 21, 2003", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "New Orleans Saints", - "sF": "20", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 2003", - "at": "@", - "fav": "St Louis Rams", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 2003", - "at": "@", - "fav": "Carolina Panthers", - "und": "Detroit Lions", - "sF": "20", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 2003", - "at": "@", - "fav": "Chicago Bears", - "und": "Washington Redskins", - "sF": "27", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 21, 2003", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "35", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 2003", - "at": null, - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "27", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Dec 21, 2003", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "40", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Dec 21, 2003", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "San Francisco 49ers", - "sF": "28", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 2003", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "28", - "sU": "10", - "spread": "15", - "ou": null - }, - { - "date": "Dec 21, 2003", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Denver Broncos", - "sF": "17", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Dec 22, 2003", - "at": null, - "fav": "Green Bay Packers", - "und": "Oakland Raiders", - "sF": "41", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Dec 27, 2003", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "31", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Dec 27, 2003", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 27, 2003", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "31", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Dec 28, 2003", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Chicago Bears", - "sF": "31", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Dec 28, 2003", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "14", - "sU": "22", - "spread": "8", - "ou": null - }, - { - "date": "Dec 28, 2003", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Jacksonville Jaguars", - "sF": "21", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 28, 2003", - "at": null, - "fav": "St Louis Rams", - "und": "Detroit Lions", - "sF": "20", - "sU": "30", - "spread": "12", - "ou": null - }, - { - "date": "Dec 28, 2003", - "at": null, - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "20", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 28, 2003", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "23", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 28, 2003", - "at": null, - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "7", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 28, 2003", - "at": "@", - "fav": "Tennessee Titans", - "und": "Tampa Bay Buccaneers", - "sF": "33", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Dec 28, 2003", - "at": null, - "fav": "Minnesota Vikings", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "18", - "spread": "7", - "ou": null - }, - { - "date": "Dec 28, 2003", - "at": null, - "fav": "Carolina Panthers", - "und": "New York Giants", - "sF": "37", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 28, 2003", - "at": "@", - "fav": "Green Bay Packers", - "und": "Denver Broncos", - "sF": "31", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Dec 28, 2003", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "21", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 28, 2003", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Jan 3, 2004", - "at": null, - "fav": "Tennessee Titans (5)", - "und": "Baltimore Ravens (4)", - "sF": "20", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Jan 3, 2004", - "at": "@", - "fav": "Carolina Panthers (3)", - "und": "Dallas Cowboys (6)", - "sF": "29", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Jan 4, 2004", - "at": "@", - "fav": "Green Bay Packers (4)", - "und": "Seattle Seahawks (5)", - "sF": "33", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Jan 4, 2004", - "at": "@", - "fav": "Indianapolis Colts (3)", - "und": "Denver Broncos (6)", - "sF": "41", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Jan 10, 2004", - "at": "@", - "fav": "St Louis Rams (2)", - "und": "Carolina Panthers (3)", - "sF": "23", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Jan 10, 2004", - "at": "@", - "fav": "New England Patriots (1)", - "und": "Tennessee Titans (5)", - "sF": "17", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Jan 11, 2004", - "at": "@", - "fav": "Kansas City Chiefs (2)", - "und": "Indianapolis Colts (3)", - "sF": "31", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Jan 11, 2004", - "at": "@", - "fav": "Philadelphia Eagles (1)", - "und": "Green Bay Packers (4)", - "sF": "20", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Jan 18, 2004", - "at": "@", - "fav": "New England Patriots (1)", - "und": "Indianapolis Colts (3)", - "sF": "24", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Jan 18, 2004", - "at": "@", - "fav": "Philadelphia Eagles (1)", - "und": "Carolina Panthers (3)", - "sF": "3", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Feb 1, 2004", - "at": "N", - "fav": "New England Patriots (1)", - "und": "Carolina Panthers (3)", - "sF": "32", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Sep 9, 2004", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 2004", - "at": null, - "fav": "Tennessee Titans", - "und": "Miami Dolphins", - "sF": "17", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2004", - "at": "@", - "fav": "Buffalo Bills", - "und": "Jacksonville Jaguars", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2004", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Oakland Raiders", - "sF": "24", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2004", - "at": "@", - "fav": "St Louis Rams", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Sep 12, 2004", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "16", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Sep 12, 2004", - "at": "@", - "fav": "Houston Texans", - "und": "San Diego Chargers", - "sF": "20", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Sep 12, 2004", - "at": null, - "fav": "Seattle Seahawks", - "und": "New Orleans Saints", - "sF": "21", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Sep 12, 2004", - "at": "@", - "fav": "Washington Redskins", - "und": "Tampa Bay Buccaneers", - "sF": "16", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 12, 2004", - "at": "@", - "fav": "New York Jets", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Sep 12, 2004", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "3", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2004", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Dallas Cowboys", - "sF": "35", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 12, 2004", - "at": null, - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2004", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "31", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Sep 12, 2004", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "34", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 2004", - "at": "@", - "fav": "Carolina Panthers", - "und": "Green Bay Packers", - "sF": "14", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2004", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Carolina Panthers", - "sF": "17", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Sep 19, 2004", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "30", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Sep 19, 2004", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "10", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Sep 19, 2004", - "at": null, - "fav": "Denver Broncos", - "und": "Jacksonville Jaguars", - "sF": "6", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2004", - "at": null, - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "31", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 19, 2004", - "at": "@", - "fav": "Atlanta Falcons", - "und": "St Louis Rams", - "sF": "34", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 19, 2004", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "30", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Sep 19, 2004", - "at": "@", - "fav": "Detroit Lions", - "und": "Houston Texans", - "sF": "28", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2004", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "14", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2004", - "at": null, - "fav": "Seattle Seahawks", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2004", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "19", - "sU": "12", - "spread": "4", - "ou": null - }, - { - "date": "Sep 19, 2004", - "at": "@", - "fav": "Oakland Raiders", - "und": "Buffalo Bills", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2004", - "at": null, - "fav": "New York Jets", - "und": "San Diego Chargers", - "sF": "34", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2004", - "at": null, - "fav": "New England Patriots", - "und": "Arizona Cardinals", - "sF": "23", - "sU": "12", - "spread": "8", - "ou": null - }, - { - "date": "Sep 19, 2004", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Miami Dolphins", - "sF": "16", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Sep 20, 2004", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 2004", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Texans", - "sF": "21", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 26, 2004", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "27", - "sU": "22", - "spread": "12", - "ou": null - }, - { - "date": "Sep 26, 2004", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "9", - "spread": "1", - "ou": null - }, - { - "date": "Sep 26, 2004", - "at": "@", - "fav": "New York Giants", - "und": "Cleveland Browns", - "sF": "27", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 2004", - "at": "@", - "fav": "St Louis Rams", - "und": "New Orleans Saints", - "sF": "25", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Sep 26, 2004", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "12", - "sU": "15", - "spread": "6", - "ou": null - }, - { - "date": "Sep 26, 2004", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Detroit Lions", - "sF": "30", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Sep 26, 2004", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Arizona Cardinals", - "sF": "6", - "sU": "3", - "spread": "11", - "ou": null - }, - { - "date": "Sep 26, 2004", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "23", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Sep 26, 2004", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Green Bay Packers", - "sF": "45", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Sep 26, 2004", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Sep 26, 2004", - "at": "@", - "fav": "Oakland Raiders", - "und": "Tampa Bay Buccaneers", - "sF": "30", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 2004", - "at": "@", - "fav": "Miami Dolphins", - "und": "Pittsburgh Steelers", - "sF": "3", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 27, 2004", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "18", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Oct 3, 2004", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 3, 2004", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "31", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 3, 2004", - "at": null, - "fav": "Washington Redskins", - "und": "Cleveland Browns", - "sF": "13", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 3, 2004", - "at": "@", - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "7", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 2004", - "at": null, - "fav": "Oakland Raiders", - "und": "Houston Texans", - "sF": "17", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Oct 3, 2004", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 3, 2004", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "19", - "sU": "9", - "spread": "8", - "ou": null - }, - { - "date": "Oct 3, 2004", - "at": null, - "fav": "New Orleans Saints", - "und": "Arizona Cardinals", - "sF": "10", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 3, 2004", - "at": "@", - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 3, 2004", - "at": null, - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "17", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Oct 3, 2004", - "at": null, - "fav": "Tennessee Titans", - "und": "San Diego Chargers", - "sF": "17", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Oct 3, 2004", - "at": null, - "fav": "Denver Broncos", - "und": "Tampa Bay Buccaneers", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 3, 2004", - "at": null, - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 4, 2004", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Oct 10, 2004", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Oakland Raiders", - "sF": "35", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Oct 10, 2004", - "at": null, - "fav": "Minnesota Vikings", - "und": "Houston Texans", - "sF": "34", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 2004", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "24", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Oct 10, 2004", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "34", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 10, 2004", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "10", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 2004", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 2004", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Detroit Lions", - "sF": "10", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 10, 2004", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "San Diego Chargers", - "sF": "21", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Oct 10, 2004", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "16", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 10, 2004", - "at": "@", - "fav": "Denver Broncos", - "und": "Carolina Panthers", - "sF": "20", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 10, 2004", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Oct 10, 2004", - "at": "@", - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "27", - "sU": "33", - "spread": "8", - "ou": null - }, - { - "date": "Oct 11, 2004", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tennessee Titans", - "sF": "27", - "sU": "48", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 2004", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "20", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Oct 17, 2004", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Diego Chargers", - "sF": "21", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Oct 17, 2004", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Jacksonville Jaguars", - "sF": "16", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Oct 17, 2004", - "at": "@", - "fav": "New England Patriots", - "und": "Seattle Seahawks", - "sF": "30", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 2004", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "10", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Oct 17, 2004", - "at": "@", - "fav": "Chicago Bears", - "und": "Washington Redskins", - "sF": "10", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 17, 2004", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 2004", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "10", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 2004", - "at": "@", - "fav": "New York Jets", - "und": "San Francisco 49ers", - "sF": "22", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Oct 17, 2004", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Carolina Panthers", - "sF": "30", - "sU": "8", - "spread": "10", - "ou": null - }, - { - "date": "Oct 17, 2004", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 2004", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "31", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Oct 17, 2004", - "at": null, - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "38", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2004", - "at": "@", - "fav": "St Louis Rams", - "und": "Tampa Bay Buccaneers", - "sF": "28", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Oct 24, 2004", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Oct 24, 2004", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Atlanta Falcons", - "sF": "56", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 2004", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tennessee Titans", - "sF": "20", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Oct 24, 2004", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Buffalo Bills", - "sF": "20", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Oct 24, 2004", - "at": "@", - "fav": "Carolina Panthers", - "und": "San Diego Chargers", - "sF": "6", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 2004", - "at": null, - "fav": "St Louis Rams", - "und": "Miami Dolphins", - "sF": "14", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Oct 24, 2004", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "19", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 24, 2004", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Cleveland Browns", - "sF": "34", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Oct 24, 2004", - "at": "@", - "fav": "New York Giants", - "und": "Detroit Lions", - "sF": "13", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Oct 24, 2004", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "13", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 24, 2004", - "at": "@", - "fav": "Green Bay Packers", - "und": "Dallas Cowboys", - "sF": "41", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 24, 2004", - "at": "@", - "fav": "Oakland Raiders", - "und": "New Orleans Saints", - "sF": "26", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 2004", - "at": null, - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "25", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 2004", - "at": null, - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Oct 31, 2004", - "at": null, - "fav": "Indianapolis Colts", - "und": "Kansas City Chiefs", - "sF": "35", - "sU": "45", - "spread": "1", - "ou": null - }, - { - "date": "Oct 31, 2004", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "13", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Oct 31, 2004", - "at": "@", - "fav": "Buffalo Bills", - "und": "Arizona Cardinals", - "sF": "38", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 31, 2004", - "at": "@", - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Oct 31, 2004", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "31", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 2004", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Baltimore Ravens", - "sF": "15", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 31, 2004", - "at": "@", - "fav": "Tennessee Titans", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 2004", - "at": null, - "fav": "Green Bay Packers", - "und": "Washington Redskins", - "sF": "28", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 31, 2004", - "at": "@", - "fav": "Denver Broncos", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "41", - "spread": "7", - "ou": null - }, - { - "date": "Oct 31, 2004", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Carolina Panthers", - "sF": "23", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Oct 31, 2004", - "at": null, - "fav": "New England Patriots", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 2004", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "42", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 31, 2004", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 1, 2004", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "41", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 7, 2004", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 2004", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "17", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 2004", - "at": "@", - "fav": "Carolina Panthers", - "und": "Oakland Raiders", - "sF": "24", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Nov 7, 2004", - "at": "@", - "fav": "Miami Dolphins", - "und": "Arizona Cardinals", - "sF": "23", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 2004", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "3", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 7, 2004", - "at": "@", - "fav": "Detroit Lions", - "und": "Washington Redskins", - "sF": "10", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 2004", - "at": "@", - "fav": "San Diego Chargers", - "und": "New Orleans Saints", - "sF": "43", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 7, 2004", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "42", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Nov 7, 2004", - "at": "@", - "fav": "New York Giants", - "und": "Chicago Bears", - "sF": "21", - "sU": "28", - "spread": "9", - "ou": null - }, - { - "date": "Nov 7, 2004", - "at": "@", - "fav": "Denver Broncos", - "und": "Houston Texans", - "sF": "31", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 7, 2004", - "at": "@", - "fav": "St Louis Rams", - "und": "New England Patriots", - "sF": "22", - "sU": "40", - "spread": "2", - "ou": null - }, - { - "date": "Nov 7, 2004", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "27", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 2004", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Nov 14, 2004", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "49", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Nov 14, 2004", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New Orleans Saints", - "sF": "20", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 14, 2004", - "at": null, - "fav": "Baltimore Ravens", - "und": "New York Jets", - "sF": "20", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 14, 2004", - "at": null, - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "12", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 14, 2004", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "24", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 14, 2004", - "at": "@", - "fav": "Tennessee Titans", - "und": "Chicago Bears", - "sF": "17", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Nov 14, 2004", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Detroit Lions", - "sF": "23", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 14, 2004", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 14, 2004", - "at": "@", - "fav": "Washington Redskins", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 14, 2004", - "at": "@", - "fav": "Arizona Cardinals", - "und": "New York Giants", - "sF": "17", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Nov 14, 2004", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "34", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 14, 2004", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Carolina Panthers", - "sF": "27", - "sU": "37", - "spread": "1", - "ou": null - }, - { - "date": "Nov 14, 2004", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "29", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Nov 15, 2004", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "49", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 2004", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "22", - "sU": "19", - "spread": "8", - "ou": null - }, - { - "date": "Nov 21, 2004", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "San Francisco 49ers", - "sF": "35", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Nov 21, 2004", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Dallas Cowboys", - "sF": "30", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 2004", - "at": "@", - "fav": "Buffalo Bills", - "und": "St Louis Rams", - "sF": "37", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 21, 2004", - "at": null, - "fav": "Indianapolis Colts", - "und": "Chicago Bears", - "sF": "41", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Nov 21, 2004", - "at": null, - "fav": "New York Jets", - "und": "Cleveland Browns", - "sF": "10", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Nov 21, 2004", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "15", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 2004", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "19", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Nov 21, 2004", - "at": null, - "fav": "Denver Broncos", - "und": "New Orleans Saints", - "sF": "34", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 21, 2004", - "at": "@", - "fav": "Carolina Panthers", - "und": "Arizona Cardinals", - "sF": "35", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 2004", - "at": null, - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "23", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 21, 2004", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Miami Dolphins", - "sF": "24", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Nov 21, 2004", - "at": null, - "fav": "Atlanta Falcons", - "und": "New York Giants", - "sF": "14", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 2004", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "28", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Nov 21, 2004", - "at": null, - "fav": "Green Bay Packers", - "und": "Houston Texans", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 2004", - "at": null, - "fav": "New England Patriots", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 2004", - "at": null, - "fav": "Indianapolis Colts", - "und": "Detroit Lions", - "sF": "41", - "sU": "9", - "spread": "8", - "ou": null - }, - { - "date": "Nov 25, 2004", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "21", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 2004", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "31", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 2004", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Nov 28, 2004", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "58", - "sU": "48", - "spread": "6", - "ou": null - }, - { - "date": "Nov 28, 2004", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "16", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 28, 2004", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "27", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 2004", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "14", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 2004", - "at": "@", - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "31", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 28, 2004", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "24", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Nov 28, 2004", - "at": null, - "fav": "New York Jets", - "und": "Arizona Cardinals", - "sF": "13", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 2004", - "at": "@", - "fav": "New England Patriots", - "und": "Baltimore Ravens", - "sF": "24", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 2004", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Buffalo Bills", - "sF": "9", - "sU": "38", - "spread": "4", - "ou": null - }, - { - "date": "Nov 28, 2004", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "24", - "sU": "25", - "spread": "11", - "ou": null - }, - { - "date": "Nov 29, 2004", - "at": "@", - "fav": "Green Bay Packers", - "und": "St Louis Rams", - "sF": "45", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 2004", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 5, 2004", - "at": null, - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "42", - "sU": "15", - "spread": "11", - "ou": null - }, - { - "date": "Dec 5, 2004", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "51", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Dec 5, 2004", - "at": "@", - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "16", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Dec 5, 2004", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Dec 5, 2004", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "14", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 2004", - "at": "@", - "fav": "Detroit Lions", - "und": "Arizona Cardinals", - "sF": "26", - "sU": "12", - "spread": "6", - "ou": null - }, - { - "date": "Dec 5, 2004", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "42", - "sU": "32", - "spread": "5", - "ou": null - }, - { - "date": "Dec 5, 2004", - "at": null, - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "32", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Dec 5, 2004", - "at": "@", - "fav": "New York Jets", - "und": "Houston Texans", - "sF": "29", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 2004", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "34", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Dec 5, 2004", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 2004", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Green Bay Packers", - "sF": "47", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Dec 5, 2004", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "31", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 2004", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 2004", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Dallas Cowboys", - "sF": "39", - "sU": "43", - "spread": "7", - "ou": null - }, - { - "date": "Dec 12, 2004", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Seattle Seahawks", - "sF": "23", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 12, 2004", - "at": "@", - "fav": "Baltimore Ravens", - "und": "New York Giants", - "sF": "37", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 12, 2004", - "at": "@", - "fav": "Buffalo Bills", - "und": "Cleveland Browns", - "sF": "37", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Dec 12, 2004", - "at": null, - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "23", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 12, 2004", - "at": "@", - "fav": "New England Patriots", - "und": "Cincinnati Bengals", - "sF": "35", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Dec 12, 2004", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Oakland Raiders", - "sF": "35", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 12, 2004", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Chicago Bears", - "sF": "22", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Dec 12, 2004", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "13", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 12, 2004", - "at": "@", - "fav": "Denver Broncos", - "und": "Miami Dolphins", - "sF": "20", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Dec 12, 2004", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "17", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Dec 12, 2004", - "at": "@", - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "28", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Dec 12, 2004", - "at": "@", - "fav": "Carolina Panthers", - "und": "St Louis Rams", - "sF": "20", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 12, 2004", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "16", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Dec 12, 2004", - "at": "@", - "fav": "San Diego Chargers", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 12, 2004", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "17", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Dec 13, 2004", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Tennessee Titans", - "sF": "49", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Dec 18, 2004", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New York Giants", - "sF": "33", - "sU": "30", - "spread": "10", - "ou": null - }, - { - "date": "Dec 18, 2004", - "at": null, - "fav": "Washington Redskins", - "und": "San Francisco 49ers", - "sF": "26", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Dec 18, 2004", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "34", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 2004", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "45", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 2004", - "at": "@", - "fav": "Chicago Bears", - "und": "Houston Texans", - "sF": "5", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Dec 19, 2004", - "at": "@", - "fav": "New York Jets", - "und": "Seattle Seahawks", - "sF": "37", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 19, 2004", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "12", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Dec 19, 2004", - "at": null, - "fav": "Buffalo Bills", - "und": "Cincinnati Bengals", - "sF": "33", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 2004", - "at": null, - "fav": "San Diego Chargers", - "und": "Cleveland Browns", - "sF": "21", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Dec 19, 2004", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "28", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 2004", - "at": null, - "fav": "St Louis Rams", - "und": "Arizona Cardinals", - "sF": "7", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 2004", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "17", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 19, 2004", - "at": "@", - "fav": "Green Bay Packers", - "und": "Jacksonville Jaguars", - "sF": "25", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 2004", - "at": "@", - "fav": "Oakland Raiders", - "und": "Tennessee Titans", - "sF": "40", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 2004", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Baltimore Ravens", - "sF": "20", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 20, 2004", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "28", - "sU": "29", - "spread": "10", - "ou": null - }, - { - "date": "Dec 24, 2004", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "31", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 25, 2004", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "31", - "sU": "30", - "spread": "9", - "ou": null - }, - { - "date": "Dec 25, 2004", - "at": null, - "fav": "Denver Broncos", - "und": "Tennessee Titans", - "sF": "37", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Dec 26, 2004", - "at": "@", - "fav": "Indianapolis Colts", - "und": "San Diego Chargers", - "sF": "34", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Dec 26, 2004", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "20", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Dec 26, 2004", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New York Giants", - "sF": "23", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Dec 26, 2004", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "19", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 26, 2004", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "0", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Dec 26, 2004", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "26", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 26, 2004", - "at": null, - "fav": "Buffalo Bills", - "und": "San Francisco 49ers", - "sF": "41", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Dec 26, 2004", - "at": null, - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "10", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 26, 2004", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "20", - "sU": "37", - "spread": "1", - "ou": null - }, - { - "date": "Dec 26, 2004", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 26, 2004", - "at": "@", - "fav": "Miami Dolphins", - "und": "Cleveland Browns", - "sF": "10", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Dec 27, 2004", - "at": "@", - "fav": "St Louis Rams", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Jan 2, 2005", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Miami Dolphins", - "sF": "30", - "sU": "23", - "spread": "11", - "ou": null - }, - { - "date": "Jan 2, 2005", - "at": "@", - "fav": "Buffalo Bills", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "29", - "spread": "9", - "ou": null - }, - { - "date": "Jan 2, 2005", - "at": "@", - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "18", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Jan 2, 2005", - "at": "@", - "fav": "Houston Texans", - "und": "Cleveland Browns", - "sF": "14", - "sU": "22", - "spread": "10", - "ou": null - }, - { - "date": "Jan 2, 2005", - "at": "@", - "fav": "New England Patriots", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Jan 2, 2005", - "at": null, - "fav": "New York Jets", - "und": "St Louis Rams", - "sF": "29", - "sU": "32", - "spread": "3", - "ou": null - }, - { - "date": "Jan 2, 2005", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "14", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Jan 2, 2005", - "at": null, - "fav": "Detroit Lions", - "und": "Tennessee Titans", - "sF": "19", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Jan 2, 2005", - "at": null, - "fav": "Minnesota Vikings", - "und": "Washington Redskins", - "sF": "18", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Jan 2, 2005", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Jan 2, 2005", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Tampa Bay Buccaneers", - "sF": "12", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Jan 2, 2005", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Jan 2, 2005", - "at": "@", - "fav": "Denver Broncos", - "und": "Indianapolis Colts", - "sF": "33", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Jan 2, 2005", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Oakland Raiders", - "sF": "13", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Jan 2, 2005", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "17", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Jan 2, 2005", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "28", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Jan 8, 2005", - "at": "@", - "fav": "Seattle Seahawks (4)", - "und": "St Louis Rams (5)", - "sF": "20", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Jan 8, 2005", - "at": "@", - "fav": "San Diego Chargers (3)", - "und": "New York Jets (6)", - "sF": "17", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Jan 9, 2005", - "at": "@", - "fav": "Indianapolis Colts (4)", - "und": "Denver Broncos (5)", - "sF": "49", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Jan 9, 2005", - "at": "@", - "fav": "Green Bay Packers (3)", - "und": "Minnesota Vikings (6)", - "sF": "17", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Jan 15, 2005", - "at": "@", - "fav": "Pittsburgh Steelers (1)", - "und": "New York Jets (6)", - "sF": "20", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Jan 15, 2005", - "at": "@", - "fav": "Atlanta Falcons (2)", - "und": "St Louis Rams (5)", - "sF": "47", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Jan 16, 2005", - "at": "@", - "fav": "Philadelphia Eagles (1)", - "und": "Minnesota Vikings (6)", - "sF": "27", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Jan 16, 2005", - "at": "@", - "fav": "New England Patriots (2)", - "und": "Indianapolis Colts (4)", - "sF": "20", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Jan 23, 2005", - "at": "@", - "fav": "Philadelphia Eagles (1)", - "und": "Atlanta Falcons (2)", - "sF": "27", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Jan 23, 2005", - "at": null, - "fav": "New England Patriots (2)", - "und": "Pittsburgh Steelers (1)", - "sF": "41", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Feb 6, 2005", - "at": "N", - "fav": "New England Patriots (2)", - "und": "Philadelphia Eagles (1)", - "sF": "24", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Sep 8, 2005", - "at": "@", - "fav": "New England Patriots", - "und": "Oakland Raiders", - "sF": "30", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Sep 11, 2005", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "27", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 2005", - "at": "@", - "fav": "Buffalo Bills", - "und": "Houston Texans", - "sF": "22", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 11, 2005", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Sep 11, 2005", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Tennessee Titans", - "sF": "34", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 11, 2005", - "at": "@", - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "20", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Sep 11, 2005", - "at": "@", - "fav": "Washington Redskins", - "und": "Chicago Bears", - "sF": "9", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 11, 2005", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "27", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 2005", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Seattle Seahawks", - "sF": "26", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 2005", - "at": null, - "fav": "Denver Broncos", - "und": "Miami Dolphins", - "sF": "10", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Sep 11, 2005", - "at": "@", - "fav": "San Diego Chargers", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Sep 11, 2005", - "at": null, - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "25", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Sep 11, 2005", - "at": "@", - "fav": "New York Giants", - "und": "Arizona Cardinals", - "sF": "42", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Sep 11, 2005", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "17", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 2005", - "at": null, - "fav": "Indianapolis Colts", - "und": "Baltimore Ravens", - "sF": "24", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2005", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Sep 18, 2005", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "10", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Sep 18, 2005", - "at": null, - "fav": "New England Patriots", - "und": "Carolina Panthers", - "sF": "17", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 2005", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "6", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Sep 18, 2005", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Texans", - "sF": "27", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 18, 2005", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Buffalo Bills", - "sF": "19", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Sep 18, 2005", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Minnesota Vikings", - "sF": "37", - "sU": "8", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 2005", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "San Francisco 49ers", - "sF": "42", - "sU": "3", - "spread": "11", - "ou": null - }, - { - "date": "Sep 18, 2005", - "at": null, - "fav": "Baltimore Ravens", - "und": "Tennessee Titans", - "sF": "10", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 2005", - "at": null, - "fav": "St Louis Rams", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Sep 18, 2005", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "18", - "spread": "1", - "ou": null - }, - { - "date": "Sep 18, 2005", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 2005", - "at": "@", - "fav": "Green Bay Packers", - "und": "Cleveland Browns", - "sF": "24", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Sep 18, 2005", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "17", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 18, 2005", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "23", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 19, 2005", - "at": null, - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "27", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2005", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "13", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 2005", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Cleveland Browns", - "sF": "13", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Sep 25, 2005", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "33", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2005", - "at": "@", - "fav": "Buffalo Bills", - "und": "Atlanta Falcons", - "sF": "16", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2005", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Chicago Bears", - "sF": "24", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2005", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Green Bay Packers", - "sF": "17", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2005", - "at": null, - "fav": "Carolina Panthers", - "und": "Miami Dolphins", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2005", - "at": "@", - "fav": "St Louis Rams", - "und": "Tennessee Titans", - "sF": "31", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 2005", - "at": "@", - "fav": "New York Jets", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Sep 25, 2005", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Oakland Raiders", - "sF": "23", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Sep 25, 2005", - "at": null, - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 2005", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "37", - "sU": "12", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 2005", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New England Patriots", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2005", - "at": "@", - "fav": "San Diego Chargers", - "und": "New York Giants", - "sF": "45", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Sep 26, 2005", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "30", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 2005", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Texans", - "sF": "16", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 2, 2005", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Denver Broncos", - "sF": "7", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 2, 2005", - "at": "@", - "fav": "New England Patriots", - "und": "San Diego Chargers", - "sF": "17", - "sU": "41", - "spread": "5", - "ou": null - }, - { - "date": "Oct 2, 2005", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "17", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 2, 2005", - "at": null, - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "31", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 2, 2005", - "at": null, - "fav": "Buffalo Bills", - "und": "New Orleans Saints", - "sF": "7", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Oct 2, 2005", - "at": "@", - "fav": "New York Giants", - "und": "St Louis Rams", - "sF": "44", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2005", - "at": "@", - "fav": "Washington Redskins", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 2005", - "at": "@", - "fav": "Baltimore Ravens", - "und": "New York Jets", - "sF": "13", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Oct 2, 2005", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 2005", - "at": "@", - "fav": "Oakland Raiders", - "und": "Dallas Cowboys", - "sF": "19", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2005", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Minnesota Vikings", - "sF": "30", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 2, 2005", - "at": "N", - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 3, 2005", - "at": "@", - "fav": "Carolina Panthers", - "und": "Green Bay Packers", - "sF": "32", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2005", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "20", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 9, 2005", - "at": "@", - "fav": "Detroit Lions", - "und": "Baltimore Ravens", - "sF": "35", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 9, 2005", - "at": "@", - "fav": "Green Bay Packers", - "und": "New Orleans Saints", - "sF": "52", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2005", - "at": "@", - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "20", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Oct 9, 2005", - "at": "@", - "fav": "St Louis Rams", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2005", - "at": "@", - "fav": "Cleveland Browns", - "und": "Chicago Bears", - "sF": "20", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2005", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "New York Jets", - "sF": "12", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2005", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New England Patriots", - "sF": "28", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Oct 9, 2005", - "at": null, - "fav": "Indianapolis Colts", - "und": "San Francisco 49ers", - "sF": "28", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Oct 9, 2005", - "at": null, - "fav": "Carolina Panthers", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2005", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "10", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2005", - "at": "@", - "fav": "Denver Broncos", - "und": "Washington Redskins", - "sF": "21", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Oct 9, 2005", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 2005", - "at": "@", - "fav": "San Diego Chargers", - "und": "Pittsburgh Steelers", - "sF": "22", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 2005", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Washington Redskins", - "sF": "28", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Oct 16, 2005", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "16", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Oct 16, 2005", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 2005", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Oct 16, 2005", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Miami Dolphins", - "sF": "27", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Oct 16, 2005", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Oct 16, 2005", - "at": null, - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "34", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Oct 16, 2005", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Tennessee Titans", - "sF": "31", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 2005", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "27", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 2005", - "at": "@", - "fav": "Denver Broncos", - "und": "New England Patriots", - "sF": "28", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 2005", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Houston Texans", - "sF": "42", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Oct 17, 2005", - "at": "@", - "fav": "Indianapolis Colts", - "und": "St Louis Rams", - "sF": "45", - "sU": "28", - "spread": "13", - "ou": null - }, - { - "date": "Oct 21, 2005", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Miami Dolphins", - "sF": "30", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Oct 23, 2005", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "23", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 2005", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 2005", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "San Diego Chargers", - "sF": "20", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 23, 2005", - "at": "@", - "fav": "St Louis Rams", - "und": "New Orleans Saints", - "sF": "28", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 23, 2005", - "at": null, - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "38", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Oct 23, 2005", - "at": "@", - "fav": "Washington Redskins", - "und": "San Francisco 49ers", - "sF": "52", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Oct 23, 2005", - "at": "@", - "fav": "Cleveland Browns", - "und": "Detroit Lions", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 2005", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Dallas Cowboys", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 2005", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Tennessee Titans", - "sF": "20", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 2005", - "at": "@", - "fav": "Chicago Bears", - "und": "Baltimore Ravens", - "sF": "10", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Oct 23, 2005", - "at": "@", - "fav": "New York Giants", - "und": "Denver Broncos", - "sF": "24", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 2005", - "at": "@", - "fav": "Oakland Raiders", - "und": "Buffalo Bills", - "sF": "38", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 2005", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New York Jets", - "sF": "27", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 30, 2005", - "at": "@", - "fav": "Carolina Panthers", - "und": "Minnesota Vikings", - "sF": "38", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Oct 30, 2005", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Green Bay Packers", - "sF": "21", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 30, 2005", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "34", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 30, 2005", - "at": "@", - "fav": "Houston Texans", - "und": "Cleveland Browns", - "sF": "19", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Oct 30, 2005", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "St Louis Rams", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2005", - "at": null, - "fav": "Oakland Raiders", - "und": "Tennessee Titans", - "sF": "34", - "sU": "25", - "spread": "2", - "ou": null - }, - { - "date": "Oct 30, 2005", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "13", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2005", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "36", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2005", - "at": "@", - "fav": "New Orleans Saints", - "und": "Miami Dolphins", - "sF": "6", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Oct 30, 2005", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Oct 30, 2005", - "at": "@", - "fav": "Denver Broncos", - "und": "Philadelphia Eagles", - "sF": "49", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2005", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "San Francisco 49ers", - "sF": "10", - "sU": "15", - "spread": "11", - "ou": null - }, - { - "date": "Oct 30, 2005", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "21", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 31, 2005", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "20", - "sU": "19", - "spread": "8", - "ou": null - }, - { - "date": "Nov 6, 2005", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "27", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Nov 6, 2005", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "21", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Nov 6, 2005", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Baltimore Ravens", - "sF": "21", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 2005", - "at": null, - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "31", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Nov 6, 2005", - "at": "@", - "fav": "Cleveland Browns", - "und": "Tennessee Titans", - "sF": "20", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 2005", - "at": null, - "fav": "Atlanta Falcons", - "und": "Miami Dolphins", - "sF": "17", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 6, 2005", - "at": null, - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 6, 2005", - "at": null, - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "33", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Nov 6, 2005", - "at": null, - "fav": "Chicago Bears", - "und": "New Orleans Saints", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 6, 2005", - "at": null, - "fav": "New York Giants", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Nov 6, 2005", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Green Bay Packers", - "sF": "20", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 7, 2005", - "at": null, - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "40", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 2005", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Baltimore Ravens", - "sF": "30", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Nov 13, 2005", - "at": "@", - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 2005", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "9", - "spread": "12", - "ou": null - }, - { - "date": "Nov 13, 2005", - "at": "@", - "fav": "Detroit Lions", - "und": "Arizona Cardinals", - "sF": "29", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 13, 2005", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "31", - "sU": "17", - "spread": "17", - "ou": null - }, - { - "date": "Nov 13, 2005", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "23", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 2005", - "at": "@", - "fav": "New York Giants", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Nov 13, 2005", - "at": "@", - "fav": "Carolina Panthers", - "und": "New York Jets", - "sF": "30", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Nov 13, 2005", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "31", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 2005", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Green Bay Packers", - "sF": "25", - "sU": "33", - "spread": "9", - "ou": null - }, - { - "date": "Nov 13, 2005", - "at": null, - "fav": "Washington Redskins", - "und": "Tampa Bay Buccaneers", - "sF": "35", - "sU": "36", - "spread": "1", - "ou": null - }, - { - "date": "Nov 13, 2005", - "at": "@", - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "31", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 2005", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "34", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 14, 2005", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 2005", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "13", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Nov 20, 2005", - "at": null, - "fav": "Carolina Panthers", - "und": "Chicago Bears", - "sF": "3", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 2005", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "20", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Nov 20, 2005", - "at": "@", - "fav": "New England Patriots", - "und": "New Orleans Saints", - "sF": "24", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 20, 2005", - "at": "@", - "fav": "St Louis Rams", - "und": "Arizona Cardinals", - "sF": "28", - "sU": "38", - "spread": "9", - "ou": null - }, - { - "date": "Nov 20, 2005", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "31", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Nov 20, 2005", - "at": "@", - "fav": "Washington Redskins", - "und": "Oakland Raiders", - "sF": "13", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Nov 20, 2005", - "at": "@", - "fav": "Cleveland Browns", - "und": "Miami Dolphins", - "sF": "22", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Nov 20, 2005", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 2005", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Nov 20, 2005", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "25", - "spread": "12", - "ou": null - }, - { - "date": "Nov 20, 2005", - "at": null, - "fav": "Indianapolis Colts", - "und": "Cincinnati Bengals", - "sF": "45", - "sU": "37", - "spread": "4", - "ou": null - }, - { - "date": "Nov 20, 2005", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Jets", - "sF": "27", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Nov 20, 2005", - "at": "@", - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "48", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 20, 2005", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Houston Texans", - "sF": "45", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 21, 2005", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 2005", - "at": null, - "fav": "Atlanta Falcons", - "und": "Detroit Lions", - "sF": "27", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 2005", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Denver Broncos", - "sF": "21", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Nov 27, 2005", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New England Patriots", - "sF": "26", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2005", - "at": null, - "fav": "Carolina Panthers", - "und": "Buffalo Bills", - "sF": "13", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Nov 27, 2005", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Cleveland Browns", - "sF": "24", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2005", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2005", - "at": null, - "fav": "San Diego Chargers", - "und": "Washington Redskins", - "sF": "23", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2005", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Baltimore Ravens", - "sF": "42", - "sU": "29", - "spread": "9", - "ou": null - }, - { - "date": "Nov 27, 2005", - "at": null, - "fav": "St Louis Rams", - "und": "Houston Texans", - "sF": "33", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2005", - "at": "@", - "fav": "Tennessee Titans", - "und": "San Francisco 49ers", - "sF": "33", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Nov 27, 2005", - "at": "@", - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "21", - "sU": "33", - "spread": "7", - "ou": null - }, - { - "date": "Nov 27, 2005", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2005", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Green Bay Packers", - "sF": "19", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2005", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New York Giants", - "sF": "24", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Nov 27, 2005", - "at": null, - "fav": "New Orleans Saints", - "und": "New York Jets", - "sF": "21", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Nov 28, 2005", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Pittsburgh Steelers", - "sF": "26", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Dec 4, 2005", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Houston Texans", - "sF": "16", - "sU": "15", - "spread": "7", - "ou": null - }, - { - "date": "Dec 4, 2005", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "21", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2005", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "35", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Dec 4, 2005", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "38", - "spread": "4", - "ou": null - }, - { - "date": "Dec 4, 2005", - "at": "@", - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2005", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Cleveland Browns", - "sF": "20", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2005", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "24", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2005", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2005", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "19", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 4, 2005", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "10", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2005", - "at": null, - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2005", - "at": null, - "fav": "Washington Redskins", - "und": "St Louis Rams", - "sF": "24", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2005", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "16", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Dec 4, 2005", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "34", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 5, 2005", - "at": null, - "fav": "Seattle Seahawks", - "und": "Philadelphia Eagles", - "sF": "42", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2005", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "26", - "sU": "18", - "spread": "7", - "ou": null - }, - { - "date": "Dec 11, 2005", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "35", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2005", - "at": null, - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "10", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2005", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Chicago Bears", - "sF": "21", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Dec 11, 2005", - "at": "@", - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Dec 11, 2005", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "23", - "sU": "20", - "spread": "12", - "ou": null - }, - { - "date": "Dec 11, 2005", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "13", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 11, 2005", - "at": "@", - "fav": "Minnesota Vikings", - "und": "St Louis Rams", - "sF": "27", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 11, 2005", - "at": null, - "fav": "Washington Redskins", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2005", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "26", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2005", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "41", - "sU": "3", - "spread": "15", - "ou": null - }, - { - "date": "Dec 11, 2005", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Kansas City Chiefs", - "sF": "31", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2005", - "at": "@", - "fav": "Denver Broncos", - "und": "Baltimore Ravens", - "sF": "12", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Dec 11, 2005", - "at": "@", - "fav": "San Diego Chargers", - "und": "Miami Dolphins", - "sF": "21", - "sU": "23", - "spread": "13", - "ou": null - }, - { - "date": "Dec 11, 2005", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "16", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Dec 12, 2005", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "36", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Dec 17, 2005", - "at": "@", - "fav": "New England Patriots", - "und": "Tampa Bay Buccaneers", - "sF": "28", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Dec 17, 2005", - "at": "@", - "fav": "New York Giants", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 2005", - "at": null, - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "28", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 18, 2005", - "at": null, - "fav": "Arizona Cardinals", - "und": "Houston Texans", - "sF": "19", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Dec 18, 2005", - "at": "@", - "fav": "Indianapolis Colts", - "und": "San Diego Chargers", - "sF": "17", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 2005", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "San Francisco 49ers", - "sF": "10", - "sU": "9", - "spread": "14", - "ou": null - }, - { - "date": "Dec 18, 2005", - "at": "@", - "fav": "St Louis Rams", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 2005", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "24", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 2005", - "at": null, - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "27", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 2005", - "at": null, - "fav": "Seattle Seahawks", - "und": "Tennessee Titans", - "sF": "28", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 2005", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Minnesota Vikings", - "sF": "18", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 2005", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Detroit Lions", - "sF": "41", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 2005", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cleveland Browns", - "sF": "7", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 2005", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "35", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 2005", - "at": "@", - "fav": "Chicago Bears", - "und": "Atlanta Falcons", - "sF": "16", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 2005", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Green Bay Packers", - "sF": "48", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2005", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "20", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Dec 24, 2005", - "at": "@", - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Dec 24, 2005", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2005", - "at": "@", - "fav": "Carolina Panthers", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Dec 24, 2005", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Buffalo Bills", - "sF": "27", - "sU": "37", - "spread": "13", - "ou": null - }, - { - "date": "Dec 24, 2005", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "41", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Dec 24, 2005", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "38", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 24, 2005", - "at": "@", - "fav": "Miami Dolphins", - "und": "Tennessee Titans", - "sF": "24", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 24, 2005", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "35", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2005", - "at": "@", - "fav": "New Orleans Saints", - "und": "Detroit Lions", - "sF": "12", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2005", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Dec 24, 2005", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "22", - "sU": "3", - "spread": "12", - "ou": null - }, - { - "date": "Dec 24, 2005", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Indianapolis Colts", - "sF": "28", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 25, 2005", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "24", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 25, 2005", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Minnesota Vikings", - "sF": "30", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 26, 2005", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "31", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Dec 31, 2005", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "7", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Dec 31, 2005", - "at": null, - "fav": "New York Giants", - "und": "Oakland Raiders", - "sF": "30", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Jan 1, 2006", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cincinnati Bengals", - "sF": "37", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Jan 1, 2006", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "30", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Jan 1, 2006", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "16", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 2006", - "at": "@", - "fav": "Green Bay Packers", - "und": "Seattle Seahawks", - "sF": "23", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 2006", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Jan 1, 2006", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "26", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 2006", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Detroit Lions", - "sF": "35", - "sU": "21", - "spread": "15", - "ou": null - }, - { - "date": "Jan 1, 2006", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "27", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Jan 1, 2006", - "at": null, - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "44", - "sU": "11", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 2006", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "40", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Jan 1, 2006", - "at": null, - "fav": "Houston Texans", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Jan 1, 2006", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "34", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 2006", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Jan 1, 2006", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Rams", - "sF": "10", - "sU": "20", - "spread": "12", - "ou": null - }, - { - "date": "Jan 7, 2006", - "at": "@", - "fav": "Tampa Bay Buccaneers (3)", - "und": "Washington Redskins (6)", - "sF": "10", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Jan 7, 2006", - "at": "@", - "fav": "New England Patriots (4)", - "und": "Jacksonville Jaguars (5)", - "sF": "28", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Jan 8, 2006", - "at": "@", - "fav": "New York Giants (4)", - "und": "Carolina Panthers (5)", - "sF": "0", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Jan 8, 2006", - "at": null, - "fav": "Pittsburgh Steelers (6)", - "und": "Cincinnati Bengals (3)", - "sF": "31", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Jan 14, 2006", - "at": "@", - "fav": "Seattle Seahawks (1)", - "und": "Washington Redskins (6)", - "sF": "20", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Jan 14, 2006", - "at": "@", - "fav": "Denver Broncos (2)", - "und": "New England Patriots (4)", - "sF": "27", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Jan 15, 2006", - "at": "@", - "fav": "Indianapolis Colts (1)", - "und": "Pittsburgh Steelers (6)", - "sF": "18", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Jan 15, 2006", - "at": "@", - "fav": "Chicago Bears (2)", - "und": "Carolina Panthers (5)", - "sF": "21", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Jan 22, 2006", - "at": "@", - "fav": "Denver Broncos (2)", - "und": "Pittsburgh Steelers (6)", - "sF": "17", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Jan 22, 2006", - "at": "@", - "fav": "Seattle Seahawks (1)", - "und": "Carolina Panthers (5)", - "sF": "34", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Feb 5, 2006", - "at": "N", - "fav": "Pittsburgh Steelers (6)", - "und": "Seattle Seahawks (1)", - "sF": "21", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 7, 2006", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Miami Dolphins", - "sF": "28", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 10, 2006", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Kansas City Chiefs", - "sF": "23", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Sep 10, 2006", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Baltimore Ravens", - "sF": "0", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 2006", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Houston Texans", - "sF": "24", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 10, 2006", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "19", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Sep 10, 2006", - "at": null, - "fav": "Denver Broncos", - "und": "St Louis Rams", - "sF": "10", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 2006", - "at": "@", - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "6", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 10, 2006", - "at": "@", - "fav": "Tennessee Titans", - "und": "New York Jets", - "sF": "16", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Sep 10, 2006", - "at": "@", - "fav": "Cleveland Browns", - "und": "New Orleans Saints", - "sF": "14", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 2006", - "at": null, - "fav": "Seattle Seahawks", - "und": "Detroit Lions", - "sF": "9", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Sep 10, 2006", - "at": "@", - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Sep 10, 2006", - "at": null, - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "26", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 2006", - "at": null, - "fav": "Dallas Cowboys", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 10, 2006", - "at": null, - "fav": "Indianapolis Colts", - "und": "New York Giants", - "sF": "26", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 2006", - "at": "@", - "fav": "Washington Redskins", - "und": "Minnesota Vikings", - "sF": "16", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Sep 11, 2006", - "at": null, - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "27", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 2006", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Oakland Raiders", - "sF": "28", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Sep 17, 2006", - "at": null, - "fav": "New Orleans Saints", - "und": "Green Bay Packers", - "sF": "34", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Sep 17, 2006", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "24", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 2006", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "34", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 17, 2006", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "34", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Sep 17, 2006", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "43", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Sep 17, 2006", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "6", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Sep 17, 2006", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Carolina Panthers", - "sF": "16", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 2006", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "14", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 2006", - "at": null, - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "13", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 2006", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "21", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 17, 2006", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "24", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 17, 2006", - "at": "@", - "fav": "San Diego Chargers", - "und": "Tennessee Titans", - "sF": "40", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Sep 17, 2006", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "9", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Sep 17, 2006", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "27", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 18, 2006", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "0", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Sep 24, 2006", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "20", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Sep 24, 2006", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "24", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Sep 24, 2006", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "21", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 24, 2006", - "at": "@", - "fav": "Miami Dolphins", - "und": "Tennessee Titans", - "sF": "13", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Sep 24, 2006", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Sep 24, 2006", - "at": null, - "fav": "Washington Redskins", - "und": "Houston Texans", - "sF": "31", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 2006", - "at": null, - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "26", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 2006", - "at": null, - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "19", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 2006", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "15", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 24, 2006", - "at": "@", - "fav": "Arizona Cardinals", - "und": "St Louis Rams", - "sF": "14", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Sep 24, 2006", - "at": null, - "fav": "Philadelphia Eagles", - "und": "San Francisco 49ers", - "sF": "38", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Sep 24, 2006", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New York Giants", - "sF": "42", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Sep 24, 2006", - "at": "@", - "fav": "New England Patriots", - "und": "Denver Broncos", - "sF": "7", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 2006", - "at": null, - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "3", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 1, 2006", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Francisco 49ers", - "sF": "41", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Oct 1, 2006", - "at": null, - "fav": "San Diego Chargers", - "und": "Baltimore Ravens", - "sF": "13", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Oct 1, 2006", - "at": "@", - "fav": "Buffalo Bills", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Oct 1, 2006", - "at": "@", - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "21", - "sU": "18", - "spread": "7", - "ou": null - }, - { - "date": "Oct 1, 2006", - "at": null, - "fav": "Miami Dolphins", - "und": "Houston Texans", - "sF": "15", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 1, 2006", - "at": null, - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "31", - "sU": "28", - "spread": "8", - "ou": null - }, - { - "date": "Oct 1, 2006", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Arizona Cardinals", - "sF": "32", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 1, 2006", - "at": null, - "fav": "Dallas Cowboys", - "und": "Tennessee Titans", - "sF": "45", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Oct 1, 2006", - "at": "@", - "fav": "St Louis Rams", - "und": "Detroit Lions", - "sF": "41", - "sU": "34", - "spread": "5", - "ou": null - }, - { - "date": "Oct 1, 2006", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New England Patriots", - "sF": "13", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Oct 1, 2006", - "at": null, - "fav": "Cleveland Browns", - "und": "Oakland Raiders", - "sF": "24", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Oct 1, 2006", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Washington Redskins", - "sF": "30", - "sU": "36", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 2006", - "at": "@", - "fav": "Chicago Bears", - "und": "Seattle Seahawks", - "sF": "37", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2006", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Green Bay Packers", - "sF": "31", - "sU": "9", - "spread": "11", - "ou": null - }, - { - "date": "Oct 8, 2006", - "at": "@", - "fav": "Carolina Panthers", - "und": "Cleveland Browns", - "sF": "20", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Oct 8, 2006", - "at": null, - "fav": "St Louis Rams", - "und": "Green Bay Packers", - "sF": "23", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 8, 2006", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "14", - "sU": "13", - "spread": "18", - "ou": null - }, - { - "date": "Oct 8, 2006", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "20", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 8, 2006", - "at": "@", - "fav": "Chicago Bears", - "und": "Buffalo Bills", - "sF": "40", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Oct 8, 2006", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 8, 2006", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "19", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Oct 8, 2006", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "26", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 8, 2006", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Arizona Cardinals", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 2006", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "New York Jets", - "sF": "41", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Oct 8, 2006", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Oakland Raiders", - "sF": "34", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 2006", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "38", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 8, 2006", - "at": "@", - "fav": "San Diego Chargers", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2006", - "at": "@", - "fav": "Denver Broncos", - "und": "Baltimore Ravens", - "sF": "13", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Oct 15, 2006", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Carolina Panthers", - "sF": "21", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 2006", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Houston Texans", - "sF": "34", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Oct 15, 2006", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New Orleans Saints", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 2006", - "at": null, - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "30", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 2006", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Oct 15, 2006", - "at": "@", - "fav": "Washington Redskins", - "und": "Tennessee Titans", - "sF": "22", - "sU": "25", - "spread": "12", - "ou": null - }, - { - "date": "Oct 15, 2006", - "at": null, - "fav": "Buffalo Bills", - "und": "Detroit Lions", - "sF": "17", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Oct 15, 2006", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New York Giants", - "sF": "14", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 2006", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 15, 2006", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "45", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 15, 2006", - "at": null, - "fav": "San Diego Chargers", - "und": "San Francisco 49ers", - "sF": "48", - "sU": "19", - "spread": "10", - "ou": null - }, - { - "date": "Oct 15, 2006", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "13", - "sU": "3", - "spread": "16", - "ou": null - }, - { - "date": "Oct 16, 2006", - "at": null, - "fav": "Chicago Bears", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "23", - "spread": "13", - "ou": null - }, - { - "date": "Oct 22, 2006", - "at": null, - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Oct 22, 2006", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "28", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Oct 22, 2006", - "at": "@", - "fav": "Miami Dolphins", - "und": "Green Bay Packers", - "sF": "24", - "sU": "34", - "spread": "5", - "ou": null - }, - { - "date": "Oct 22, 2006", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 2006", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Carolina Panthers", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 2006", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "7", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Oct 22, 2006", - "at": "@", - "fav": "New York Jets", - "und": "Detroit Lions", - "sF": "31", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 2006", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 2006", - "at": null, - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "17", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Oct 22, 2006", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Washington Redskins", - "sF": "36", - "sU": "22", - "spread": "8", - "ou": null - }, - { - "date": "Oct 22, 2006", - "at": null, - "fav": "Arizona Cardinals", - "und": "Oakland Raiders", - "sF": "9", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 2006", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 2006", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "22", - "sU": "36", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 2006", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "35", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Oct 29, 2006", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "29", - "spread": "4", - "ou": null - }, - { - "date": "Oct 29, 2006", - "at": "@", - "fav": "Green Bay Packers", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 29, 2006", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "28", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 2006", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "41", - "sU": "10", - "spread": "16", - "ou": null - }, - { - "date": "Oct 29, 2006", - "at": "@", - "fav": "New Orleans Saints", - "und": "Baltimore Ravens", - "sF": "22", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Oct 29, 2006", - "at": "@", - "fav": "New York Giants", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Oct 29, 2006", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Jacksonville Jaguars", - "sF": "6", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Oct 29, 2006", - "at": "@", - "fav": "San Diego Chargers", - "und": "St Louis Rams", - "sF": "38", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Oct 29, 2006", - "at": "@", - "fav": "Denver Broncos", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 2006", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Oakland Raiders", - "sF": "13", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Oct 29, 2006", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Jets", - "sF": "20", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 29, 2006", - "at": "@", - "fav": "Carolina Panthers", - "und": "Dallas Cowboys", - "sF": "14", - "sU": "35", - "spread": "5", - "ou": null - }, - { - "date": "Oct 30, 2006", - "at": null, - "fav": "New England Patriots", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 5, 2006", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 2006", - "at": "@", - "fav": "Buffalo Bills", - "und": "Green Bay Packers", - "sF": "24", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 2006", - "at": "@", - "fav": "Chicago Bears", - "und": "Miami Dolphins", - "sF": "13", - "sU": "31", - "spread": "13", - "ou": null - }, - { - "date": "Nov 5, 2006", - "at": "@", - "fav": "New York Giants", - "und": "Houston Texans", - "sF": "14", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Nov 5, 2006", - "at": "@", - "fav": "St Louis Rams", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 2006", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "14", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Nov 5, 2006", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "19", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 2006", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Nov 5, 2006", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "37", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Nov 5, 2006", - "at": null, - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "3", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Nov 5, 2006", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Denver Broncos", - "sF": "20", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Nov 5, 2006", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cleveland Browns", - "sF": "32", - "sU": "25", - "spread": "13", - "ou": null - }, - { - "date": "Nov 5, 2006", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 6, 2006", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Oakland Raiders", - "sF": "16", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Nov 12, 2006", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Buffalo Bills", - "sF": "17", - "sU": "16", - "spread": "12", - "ou": null - }, - { - "date": "Nov 12, 2006", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "14", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 12, 2006", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "27", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Nov 12, 2006", - "at": null, - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "49", - "sU": "41", - "spread": "1", - "ou": null - }, - { - "date": "Nov 12, 2006", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "13", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Nov 12, 2006", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "10", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Nov 12, 2006", - "at": "@", - "fav": "Miami Dolphins", - "und": "Kansas City Chiefs", - "sF": "13", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 12, 2006", - "at": null, - "fav": "Baltimore Ravens", - "und": "Tennessee Titans", - "sF": "27", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Nov 12, 2006", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Cleveland Browns", - "sF": "13", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 12, 2006", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "17", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Nov 12, 2006", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "17", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Nov 12, 2006", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New Orleans Saints", - "sF": "38", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 12, 2006", - "at": null, - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 12, 2006", - "at": "@", - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "24", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 2006", - "at": "@", - "fav": "New York Giants", - "und": "Chicago Bears", - "sF": "20", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Nov 13, 2006", - "at": "@", - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Nov 19, 2006", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "17", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Nov 19, 2006", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Tennessee Titans", - "sF": "13", - "sU": "31", - "spread": "13", - "ou": null - }, - { - "date": "Nov 19, 2006", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 2006", - "at": "@", - "fav": "Carolina Panthers", - "und": "St Louis Rams", - "sF": "15", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 19, 2006", - "at": null, - "fav": "New England Patriots", - "und": "Green Bay Packers", - "sF": "35", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 19, 2006", - "at": "@", - "fav": "New Orleans Saints", - "und": "Cincinnati Bengals", - "sF": "16", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 2006", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "24", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 19, 2006", - "at": "@", - "fav": "Houston Texans", - "und": "Buffalo Bills", - "sF": "21", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 19, 2006", - "at": "@", - "fav": "Miami Dolphins", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 2006", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Washington Redskins", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 2006", - "at": null, - "fav": "Chicago Bears", - "und": "New York Jets", - "sF": "10", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Nov 19, 2006", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Detroit Lions", - "sF": "17", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 19, 2006", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 2006", - "at": null, - "fav": "Indianapolis Colts", - "und": "Dallas Cowboys", - "sF": "14", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 19, 2006", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "27", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Nov 20, 2006", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "New York Giants", - "sF": "26", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 2006", - "at": null, - "fav": "Miami Dolphins", - "und": "Detroit Lions", - "sF": "27", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 23, 2006", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Tampa Bay Buccaneers", - "sF": "38", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Nov 23, 2006", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "19", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Nov 26, 2006", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 2006", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Buffalo Bills", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 2006", - "at": "@", - "fav": "New York Jets", - "und": "Houston Texans", - "sF": "26", - "sU": "11", - "spread": "5", - "ou": null - }, - { - "date": "Nov 26, 2006", - "at": "@", - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 26, 2006", - "at": null, - "fav": "Carolina Panthers", - "und": "Washington Redskins", - "sF": "13", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 26, 2006", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "30", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 2006", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "13", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 2006", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Nov 26, 2006", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "21", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Nov 26, 2006", - "at": "@", - "fav": "New England Patriots", - "und": "Chicago Bears", - "sF": "17", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 2006", - "at": null, - "fav": "New York Giants", - "und": "Tennessee Titans", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 2006", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Philadelphia Eagles", - "sF": "45", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Nov 27, 2006", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Green Bay Packers", - "sF": "34", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Nov 30, 2006", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Baltimore Ravens", - "sF": "13", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 3, 2006", - "at": null, - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "24", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Dec 3, 2006", - "at": "@", - "fav": "New England Patriots", - "und": "Detroit Lions", - "sF": "28", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Dec 3, 2006", - "at": "@", - "fav": "St Louis Rams", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Dec 3, 2006", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Dec 3, 2006", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Cleveland Browns", - "sF": "28", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Dec 3, 2006", - "at": null, - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "17", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 3, 2006", - "at": "@", - "fav": "Washington Redskins", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Dec 3, 2006", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 3, 2006", - "at": "@", - "fav": "Oakland Raiders", - "und": "Houston Texans", - "sF": "14", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 2006", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 2006", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Dec 3, 2006", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Dec 4, 2006", - "at": null, - "fav": "Carolina Panthers", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 2006", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "27", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 10, 2006", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Baltimore Ravens", - "sF": "10", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2006", - "at": null, - "fav": "New York Giants", - "und": "Carolina Panthers", - "sF": "27", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 2006", - "at": "@", - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "20", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Dec 10, 2006", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "0", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2006", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2006", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Oakland Raiders", - "sF": "27", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 10, 2006", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Dec 10, 2006", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "44", - "spread": "1", - "ou": null - }, - { - "date": "Dec 10, 2006", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "21", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 2006", - "at": null, - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "21", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2006", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "19", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Dec 10, 2006", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "13", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2006", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "48", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 10, 2006", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "17", - "sU": "42", - "spread": "6", - "ou": null - }, - { - "date": "Dec 11, 2006", - "at": null, - "fav": "Chicago Bears", - "und": "St Louis Rams", - "sF": "42", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 14, 2006", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Dec 16, 2006", - "at": null, - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 2006", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "27", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Dec 17, 2006", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "21", - "sU": "0", - "spread": "1", - "ou": null - }, - { - "date": "Dec 17, 2006", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Carolina Panthers", - "sF": "37", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Dec 17, 2006", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "17", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 2006", - "at": "@", - "fav": "New England Patriots", - "und": "Houston Texans", - "sF": "40", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Dec 17, 2006", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 2006", - "at": "@", - "fav": "New Orleans Saints", - "und": "Washington Redskins", - "sF": "10", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Dec 17, 2006", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "34", - "sU": "31", - "spread": "13", - "ou": null - }, - { - "date": "Dec 17, 2006", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New York Jets", - "sF": "13", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 2006", - "at": null, - "fav": "Denver Broncos", - "und": "Arizona Cardinals", - "sF": "37", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Dec 17, 2006", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "22", - "sU": "36", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 2006", - "at": "@", - "fav": "Oakland Raiders", - "und": "St Louis Rams", - "sF": "0", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Dec 17, 2006", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Dec 18, 2006", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 2006", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "9", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Dec 23, 2006", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "20", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Dec 24, 2006", - "at": "@", - "fav": "Buffalo Bills", - "und": "Tennessee Titans", - "sF": "29", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Dec 24, 2006", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "7", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Dec 24, 2006", - "at": "@", - "fav": "St Louis Rams", - "und": "Washington Redskins", - "sF": "37", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Dec 24, 2006", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "3", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 24, 2006", - "at": "@", - "fav": "Cleveland Browns", - "und": "Tampa Bay Buccaneers", - "sF": "7", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2006", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "26", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Dec 24, 2006", - "at": null, - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "24", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Dec 24, 2006", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "New England Patriots", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2006", - "at": "@", - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "7", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2006", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Dec 24, 2006", - "at": "@", - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2006", - "at": null, - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 25, 2006", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "7", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Dec 25, 2006", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 30, 2006", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "34", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Dec 31, 2006", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Jacksonville Jaguars", - "sF": "35", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Dec 31, 2006", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "31", - "sU": "39", - "spread": "14", - "ou": null - }, - { - "date": "Dec 31, 2006", - "at": "@", - "fav": "Houston Texans", - "und": "Cleveland Browns", - "sF": "14", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Dec 31, 2006", - "at": "@", - "fav": "New York Jets", - "und": "Oakland Raiders", - "sF": "23", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Dec 31, 2006", - "at": "@", - "fav": "Tennessee Titans", - "und": "New England Patriots", - "sF": "23", - "sU": "40", - "spread": "3", - "ou": null - }, - { - "date": "Dec 31, 2006", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Dec 31, 2006", - "at": null, - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "31", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Dec 31, 2006", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Seattle Seahawks", - "sF": "7", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 31, 2006", - "at": null, - "fav": "St Louis Rams", - "und": "Minnesota Vikings", - "sF": "41", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Dec 31, 2006", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 31, 2006", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Miami Dolphins", - "sF": "27", - "sU": "22", - "spread": "9", - "ou": null - }, - { - "date": "Dec 31, 2006", - "at": "@", - "fav": "San Diego Chargers", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Dec 31, 2006", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Buffalo Bills", - "sF": "19", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Dec 31, 2006", - "at": "@", - "fav": "Denver Broncos", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "26", - "spread": "10", - "ou": null - }, - { - "date": "Dec 31, 2006", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "7", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Jan 6, 2007", - "at": "@", - "fav": "Indianapolis Colts (3)", - "und": "Kansas City Chiefs (6)", - "sF": "23", - "sU": "8", - "spread": "6", - "ou": null - }, - { - "date": "Jan 6, 2007", - "at": "@", - "fav": "Seattle Seahawks (4)", - "und": "Dallas Cowboys (5)", - "sF": "21", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Jan 7, 2007", - "at": "@", - "fav": "New England Patriots (4)", - "und": "New York Jets (5)", - "sF": "37", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Jan 7, 2007", - "at": "@", - "fav": "Philadelphia Eagles (3)", - "und": "New York Giants (6)", - "sF": "23", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Jan 13, 2007", - "at": "@", - "fav": "Baltimore Ravens (2)", - "und": "Indianapolis Colts (3)", - "sF": "6", - "sU": "15", - "spread": "4", - "ou": null - }, - { - "date": "Jan 13, 2007", - "at": "@", - "fav": "New Orleans Saints (2)", - "und": "Philadelphia Eagles (3)", - "sF": "27", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Jan 14, 2007", - "at": "@", - "fav": "Chicago Bears (1)", - "und": "Seattle Seahawks (4)", - "sF": "27", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Jan 14, 2007", - "at": "@", - "fav": "San Diego Chargers (1)", - "und": "New England Patriots (4)", - "sF": "21", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Jan 21, 2007", - "at": "@", - "fav": "Chicago Bears (1)", - "und": "New Orleans Saints (2)", - "sF": "39", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Jan 21, 2007", - "at": "@", - "fav": "Indianapolis Colts (3)", - "und": "New England Patriots (4)", - "sF": "38", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Feb 4, 2007", - "at": "N", - "fav": "Indianapolis Colts (3)", - "und": "Chicago Bears (1)", - "sF": "29", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 6, 2007", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New Orleans Saints", - "sF": "41", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Sep 9, 2007", - "at": "@", - "fav": "St Louis Rams", - "und": "Carolina Panthers", - "sF": "13", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Sep 9, 2007", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2007", - "at": null, - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "15", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2007", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Green Bay Packers", - "sF": "13", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2007", - "at": "@", - "fav": "Washington Redskins", - "und": "Miami Dolphins", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2007", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "34", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 9, 2007", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "38", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 9, 2007", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "10", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Sep 9, 2007", - "at": "@", - "fav": "Houston Texans", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2007", - "at": "@", - "fav": "Oakland Raiders", - "und": "Detroit Lions", - "sF": "21", - "sU": "36", - "spread": "2", - "ou": null - }, - { - "date": "Sep 9, 2007", - "at": "@", - "fav": "San Diego Chargers", - "und": "Chicago Bears", - "sF": "14", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 9, 2007", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Sep 9, 2007", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "45", - "sU": "35", - "spread": "6", - "ou": null - }, - { - "date": "Sep 10, 2007", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Baltimore Ravens", - "sF": "27", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 10, 2007", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 2007", - "at": "@", - "fav": "Carolina Panthers", - "und": "Houston Texans", - "sF": "21", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Sep 16, 2007", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Buffalo Bills", - "sF": "26", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Sep 16, 2007", - "at": "@", - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "16", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 2007", - "at": null, - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "22", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Sep 16, 2007", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "45", - "sU": "51", - "spread": "7", - "ou": null - }, - { - "date": "Sep 16, 2007", - "at": null, - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "14", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Sep 16, 2007", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Sep 16, 2007", - "at": "@", - "fav": "New York Giants", - "und": "Green Bay Packers", - "sF": "13", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Sep 16, 2007", - "at": null, - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Sep 16, 2007", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 2007", - "at": null, - "fav": "Dallas Cowboys", - "und": "Miami Dolphins", - "sF": "37", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 2007", - "at": "@", - "fav": "Baltimore Ravens", - "und": "New York Jets", - "sF": "20", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Sep 16, 2007", - "at": "@", - "fav": "Chicago Bears", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Sep 16, 2007", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "23", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Sep 16, 2007", - "at": "@", - "fav": "New England Patriots", - "und": "San Diego Chargers", - "sF": "38", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 2007", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "12", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Sep 23, 2007", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Arizona Cardinals", - "sF": "26", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Sep 23, 2007", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2007", - "at": null, - "fav": "San Diego Chargers", - "und": "Green Bay Packers", - "sF": "24", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Sep 23, 2007", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "38", - "sU": "7", - "spread": "16", - "ou": null - }, - { - "date": "Sep 23, 2007", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "31", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2007", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Detroit Lions", - "sF": "56", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Sep 23, 2007", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Francisco 49ers", - "sF": "37", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Sep 23, 2007", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "St Louis Rams", - "sF": "24", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2007", - "at": null, - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "30", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Sep 23, 2007", - "at": "@", - "fav": "Denver Broncos", - "und": "Jacksonville Jaguars", - "sF": "14", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2007", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cleveland Browns", - "sF": "26", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2007", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2007", - "at": null, - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 23, 2007", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2007", - "at": "@", - "fav": "Chicago Bears", - "und": "Dallas Cowboys", - "sF": "10", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 2007", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tennessee Titans", - "sF": "14", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Sep 30, 2007", - "at": null, - "fav": "Houston Texans", - "und": "Atlanta Falcons", - "sF": "16", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 2007", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 2007", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "13", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Sep 30, 2007", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Rams", - "sF": "35", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Sep 30, 2007", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "27", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 2007", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Sep 30, 2007", - "at": "@", - "fav": "Miami Dolphins", - "und": "Oakland Raiders", - "sF": "17", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 2007", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Sep 30, 2007", - "at": "@", - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "7", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 2007", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Arizona Cardinals", - "sF": "14", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Sep 30, 2007", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Denver Broncos", - "sF": "38", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Sep 30, 2007", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "16", - "sU": "30", - "spread": "12", - "ou": null - }, - { - "date": "Sep 30, 2007", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "3", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Oct 1, 2007", - "at": null, - "fav": "New England Patriots", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 7, 2007", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Oct 7, 2007", - "at": "@", - "fav": "Houston Texans", - "und": "Miami Dolphins", - "sF": "22", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Oct 7, 2007", - "at": "@", - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "34", - "sU": "17", - "spread": "15", - "ou": null - }, - { - "date": "Oct 7, 2007", - "at": "@", - "fav": "New York Giants", - "und": "New York Jets", - "sF": "35", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Oct 7, 2007", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Oct 7, 2007", - "at": null, - "fav": "Arizona Cardinals", - "und": "St Louis Rams", - "sF": "34", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 2007", - "at": "@", - "fav": "Washington Redskins", - "und": "Detroit Lions", - "sF": "34", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Oct 7, 2007", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "13", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Oct 7, 2007", - "at": "@", - "fav": "Tennessee Titans", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 7, 2007", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tampa Bay Buccaneers", - "sF": "33", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Oct 7, 2007", - "at": null, - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "41", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Oct 7, 2007", - "at": null, - "fav": "Baltimore Ravens", - "und": "San Francisco 49ers", - "sF": "9", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 2007", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "20", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 2007", - "at": null, - "fav": "Dallas Cowboys", - "und": "Buffalo Bills", - "sF": "25", - "sU": "24", - "spread": "11", - "ou": null - }, - { - "date": "Oct 14, 2007", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 14, 2007", - "at": "@", - "fav": "Baltimore Ravens", - "und": "St Louis Rams", - "sF": "22", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Oct 14, 2007", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Oct 14, 2007", - "at": "@", - "fav": "Green Bay Packers", - "und": "Washington Redskins", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 2007", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Jets", - "sF": "16", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Oct 14, 2007", - "at": "@", - "fav": "Cleveland Browns", - "und": "Miami Dolphins", - "sF": "41", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Oct 14, 2007", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "37", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 14, 2007", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Tennessee Titans", - "sF": "13", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 14, 2007", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Carolina Panthers", - "sF": "10", - "sU": "25", - "spread": "6", - "ou": null - }, - { - "date": "Oct 14, 2007", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "28", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Oct 14, 2007", - "at": null, - "fav": "New England Patriots", - "und": "Dallas Cowboys", - "sF": "48", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Oct 14, 2007", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New Orleans Saints", - "sF": "17", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Oct 15, 2007", - "at": null, - "fav": "New York Giants", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Oct 21, 2007", - "at": null, - "fav": "Baltimore Ravens", - "und": "Buffalo Bills", - "sF": "14", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 2007", - "at": "@", - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "36", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Oct 21, 2007", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "49", - "sU": "28", - "spread": "15", - "ou": null - }, - { - "date": "Oct 21, 2007", - "at": "@", - "fav": "Washington Redskins", - "und": "Arizona Cardinals", - "sF": "21", - "sU": "19", - "spread": "8", - "ou": null - }, - { - "date": "Oct 21, 2007", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Oct 21, 2007", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "22", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 21, 2007", - "at": "@", - "fav": "New York Giants", - "und": "San Francisco 49ers", - "sF": "33", - "sU": "15", - "spread": "9", - "ou": null - }, - { - "date": "Oct 21, 2007", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New York Jets", - "sF": "38", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Oct 21, 2007", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "10", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Oct 21, 2007", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "16", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Oct 21, 2007", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Oct 21, 2007", - "at": "@", - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "33", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Oct 21, 2007", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Denver Broncos", - "sF": "28", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Oct 22, 2007", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "29", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 2007", - "at": null, - "fav": "Cleveland Browns", - "und": "St Louis Rams", - "sF": "27", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 2007", - "at": null, - "fav": "Indianapolis Colts", - "und": "Carolina Panthers", - "sF": "31", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 28, 2007", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Oct 28, 2007", - "at": "@", - "fav": "Tennessee Titans", - "und": "Oakland Raiders", - "sF": "13", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Oct 28, 2007", - "at": "N", - "fav": "New York Giants", - "und": "Miami Dolphins", - "sF": "13", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Oct 28, 2007", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "7", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Oct 28, 2007", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Oct 28, 2007", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "3", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 2007", - "at": "@", - "fav": "San Diego Chargers", - "und": "Houston Texans", - "sF": "35", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Oct 28, 2007", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Jacksonville Jaguars", - "sF": "23", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 2007", - "at": "@", - "fav": "New England Patriots", - "und": "Washington Redskins", - "sF": "52", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Oct 28, 2007", - "at": null, - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 29, 2007", - "at": "@", - "fav": "Denver Broncos", - "und": "Green Bay Packers", - "sF": "13", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 2007", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Green Bay Packers", - "sF": "22", - "sU": "33", - "spread": "2", - "ou": null - }, - { - "date": "Nov 4, 2007", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 2007", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 2007", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Buffalo Bills", - "sF": "21", - "sU": "33", - "spread": "1", - "ou": null - }, - { - "date": "Nov 4, 2007", - "at": "@", - "fav": "Detroit Lions", - "und": "Denver Broncos", - "sF": "44", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 2007", - "at": "@", - "fav": "New Orleans Saints", - "und": "Jacksonville Jaguars", - "sF": "41", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 2007", - "at": null, - "fav": "Washington Redskins", - "und": "New York Jets", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 2007", - "at": "@", - "fav": "Tennessee Titans", - "und": "Carolina Panthers", - "sF": "20", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 4, 2007", - "at": null, - "fav": "San Diego Chargers", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "35", - "spread": "7", - "ou": null - }, - { - "date": "Nov 4, 2007", - "at": "@", - "fav": "Cleveland Browns", - "und": "Seattle Seahawks", - "sF": "33", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Nov 4, 2007", - "at": "@", - "fav": "Oakland Raiders", - "und": "Houston Texans", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 2007", - "at": null, - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Nov 4, 2007", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 2007", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "38", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Nov 11, 2007", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "11", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 11, 2007", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "34", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 11, 2007", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "13", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 11, 2007", - "at": "@", - "fav": "New Orleans Saints", - "und": "St Louis Rams", - "sF": "29", - "sU": "37", - "spread": "10", - "ou": null - }, - { - "date": "Nov 11, 2007", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "31", - "sU": "28", - "spread": "9", - "ou": null - }, - { - "date": "Nov 11, 2007", - "at": "@", - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 11, 2007", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "13", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 2007", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "25", - "sU": "33", - "spread": "2", - "ou": null - }, - { - "date": "Nov 11, 2007", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "7", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 2007", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Detroit Lions", - "sF": "31", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 11, 2007", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "31", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 11, 2007", - "at": null, - "fav": "Chicago Bears", - "und": "Oakland Raiders", - "sF": "17", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 2007", - "at": null, - "fav": "Indianapolis Colts", - "und": "San Diego Chargers", - "sF": "21", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 2007", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Nov 18, 2007", - "at": null, - "fav": "Cleveland Browns", - "und": "Baltimore Ravens", - "sF": "33", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Nov 18, 2007", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 2007", - "at": "@", - "fav": "Green Bay Packers", - "und": "Carolina Panthers", - "sF": "31", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 18, 2007", - "at": "@", - "fav": "Houston Texans", - "und": "New Orleans Saints", - "sF": "23", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Nov 18, 2007", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Kansas City Chiefs", - "sF": "13", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Nov 18, 2007", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Miami Dolphins", - "sF": "17", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Nov 18, 2007", - "at": null, - "fav": "New York Giants", - "und": "Detroit Lions", - "sF": "16", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 18, 2007", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "San Diego Chargers", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 2007", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 2007", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Oakland Raiders", - "sF": "29", - "sU": "22", - "spread": "4", - "ou": null - }, - { - "date": "Nov 18, 2007", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "16", - "sU": "19", - "spread": "9", - "ou": null - }, - { - "date": "Nov 18, 2007", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "28", - "sU": "23", - "spread": "11", - "ou": null - }, - { - "date": "Nov 18, 2007", - "at": null, - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "13", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 2007", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Chicago Bears", - "sF": "30", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Nov 18, 2007", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "56", - "sU": "10", - "spread": "16", - "ou": null - }, - { - "date": "Nov 22, 2007", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "37", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 2007", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Jets", - "sF": "34", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Nov 22, 2007", - "at": null, - "fav": "Indianapolis Colts", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Nov 25, 2007", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "17", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 25, 2007", - "at": null, - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "24", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 2007", - "at": null, - "fav": "Tennessee Titans", - "und": "Cincinnati Bengals", - "sF": "6", - "sU": "35", - "spread": "1", - "ou": null - }, - { - "date": "Nov 25, 2007", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Washington Redskins", - "sF": "19", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 2007", - "at": null, - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "31", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 2007", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Texans", - "sF": "27", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 2007", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Buffalo Bills", - "sF": "36", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Nov 25, 2007", - "at": "@", - "fav": "New York Giants", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "41", - "spread": "7", - "ou": null - }, - { - "date": "Nov 25, 2007", - "at": "@", - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "37", - "spread": "10", - "ou": null - }, - { - "date": "Nov 25, 2007", - "at": "@", - "fav": "San Diego Chargers", - "und": "Baltimore Ravens", - "sF": "32", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Nov 25, 2007", - "at": "@", - "fav": "Chicago Bears", - "und": "Denver Broncos", - "sF": "37", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Nov 25, 2007", - "at": "@", - "fav": "New England Patriots", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "28", - "spread": "24", - "ou": null - }, - { - "date": "Nov 26, 2007", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Miami Dolphins", - "sF": "3", - "sU": "0", - "spread": "16", - "ou": null - }, - { - "date": "Nov 29, 2007", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "37", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 2007", - "at": null, - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 2007", - "at": "@", - "fav": "St Louis Rams", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 2007", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "25", - "spread": "7", - "ou": null - }, - { - "date": "Dec 2, 2007", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 2007", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "28", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 2007", - "at": "@", - "fav": "Washington Redskins", - "und": "Buffalo Bills", - "sF": "16", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 2007", - "at": "@", - "fav": "Carolina Panthers", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 2007", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "13", - "sU": "40", - "spread": "1", - "ou": null - }, - { - "date": "Dec 2, 2007", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "42", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 2, 2007", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "20", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 2007", - "at": null, - "fav": "New York Giants", - "und": "Chicago Bears", - "sF": "21", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Dec 2, 2007", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 2007", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 3, 2007", - "at": null, - "fav": "New England Patriots", - "und": "Baltimore Ravens", - "sF": "27", - "sU": "24", - "spread": "18", - "ou": null - }, - { - "date": "Dec 6, 2007", - "at": "@", - "fav": "Washington Redskins", - "und": "Chicago Bears", - "sF": "24", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 2007", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Houston Texans", - "sF": "14", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Dec 9, 2007", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "38", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 9, 2007", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "St Louis Rams", - "sF": "19", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 9, 2007", - "at": "@", - "fav": "Green Bay Packers", - "und": "Oakland Raiders", - "sF": "38", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Dec 9, 2007", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "13", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 2007", - "at": null, - "fav": "San Diego Chargers", - "und": "Tennessee Titans", - "sF": "23", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 9, 2007", - "at": null, - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "28", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Dec 9, 2007", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Carolina Panthers", - "sF": "37", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Dec 9, 2007", - "at": null, - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Dec 9, 2007", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "42", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 9, 2007", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "41", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 9, 2007", - "at": "@", - "fav": "New England Patriots", - "und": "Pittsburgh Steelers", - "sF": "34", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Dec 9, 2007", - "at": null, - "fav": "Cleveland Browns", - "und": "New York Jets", - "sF": "24", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 2007", - "at": null, - "fav": "Indianapolis Colts", - "und": "Baltimore Ravens", - "sF": "44", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Dec 10, 2007", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 13, 2007", - "at": null, - "fav": "Denver Broncos", - "und": "Houston Texans", - "sF": "13", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Dec 15, 2007", - "at": null, - "fav": "Cincinnati Bengals", - "und": "San Francisco 49ers", - "sF": "13", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Dec 16, 2007", - "at": null, - "fav": "Tennessee Titans", - "und": "Kansas City Chiefs", - "sF": "26", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2007", - "at": null, - "fav": "Green Bay Packers", - "und": "St Louis Rams", - "sF": "33", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 16, 2007", - "at": null, - "fav": "Seattle Seahawks", - "und": "Carolina Panthers", - "sF": "10", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Dec 16, 2007", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "20", - "sU": "10", - "spread": "20", - "ou": null - }, - { - "date": "Dec 16, 2007", - "at": "@", - "fav": "Cleveland Browns", - "und": "Buffalo Bills", - "sF": "8", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Dec 16, 2007", - "at": null, - "fav": "Baltimore Ravens", - "und": "Miami Dolphins", - "sF": "16", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2007", - "at": "@", - "fav": "New Orleans Saints", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2007", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "22", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2007", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "37", - "sU": "3", - "spread": "12", - "ou": null - }, - { - "date": "Dec 16, 2007", - "at": null, - "fav": "Indianapolis Colts", - "und": "Oakland Raiders", - "sF": "21", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 16, 2007", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "6", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 16, 2007", - "at": "@", - "fav": "San Diego Chargers", - "und": "Detroit Lions", - "sF": "51", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Dec 16, 2007", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "10", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 2007", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "20", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Dec 20, 2007", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "St Louis Rams", - "sF": "41", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Dec 22, 2007", - "at": null, - "fav": "Dallas Cowboys", - "und": "Carolina Panthers", - "sF": "20", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Dec 23, 2007", - "at": null, - "fav": "New York Giants", - "und": "Buffalo Bills", - "sF": "38", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 2007", - "at": null, - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "14", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 2007", - "at": "@", - "fav": "Detroit Lions", - "und": "Kansas City Chiefs", - "sF": "25", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Dec 23, 2007", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "38", - "sU": "15", - "spread": "6", - "ou": null - }, - { - "date": "Dec 23, 2007", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Oakland Raiders", - "sF": "49", - "sU": "11", - "spread": "13", - "ou": null - }, - { - "date": "Dec 23, 2007", - "at": "@", - "fav": "New Orleans Saints", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 2007", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "7", - "sU": "35", - "spread": "7", - "ou": null - }, - { - "date": "Dec 23, 2007", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Dec 23, 2007", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "San Francisco 49ers", - "sF": "19", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 23, 2007", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "28", - "sU": "7", - "spread": "22", - "ou": null - }, - { - "date": "Dec 23, 2007", - "at": "@", - "fav": "Tennessee Titans", - "und": "New York Jets", - "sF": "10", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Dec 23, 2007", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Baltimore Ravens", - "sF": "27", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Dec 23, 2007", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Washington Redskins", - "sF": "21", - "sU": "32", - "spread": "6", - "ou": null - }, - { - "date": "Dec 24, 2007", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "23", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Dec 29, 2007", - "at": null, - "fav": "New England Patriots", - "und": "New York Giants", - "sF": "38", - "sU": "35", - "spread": "13", - "ou": null - }, - { - "date": "Dec 30, 2007", - "at": "@", - "fav": "Chicago Bears", - "und": "New Orleans Saints", - "sF": "33", - "sU": "25", - "spread": "1", - "ou": null - }, - { - "date": "Dec 30, 2007", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Buffalo Bills", - "sF": "17", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Dec 30, 2007", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "34", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 30, 2007", - "at": "@", - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "42", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Dec 30, 2007", - "at": null, - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 30, 2007", - "at": "@", - "fav": "Cleveland Browns", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Dec 30, 2007", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Miami Dolphins", - "sF": "38", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Dec 30, 2007", - "at": null, - "fav": "Seattle Seahawks", - "und": "Atlanta Falcons", - "sF": "41", - "sU": "44", - "spread": "2", - "ou": null - }, - { - "date": "Dec 30, 2007", - "at": "@", - "fav": "Arizona Cardinals", - "und": "St Louis Rams", - "sF": "48", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Dec 30, 2007", - "at": "@", - "fav": "New York Jets", - "und": "Kansas City Chiefs", - "sF": "13", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 30, 2007", - "at": null, - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "30", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 30, 2007", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Dec 30, 2007", - "at": null, - "fav": "Minnesota Vikings", - "und": "Denver Broncos", - "sF": "19", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Dec 30, 2007", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "21", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 30, 2007", - "at": null, - "fav": "Tennessee Titans", - "und": "Indianapolis Colts", - "sF": "16", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Jan 5, 2008", - "at": "@", - "fav": "Seattle Seahawks (3)", - "und": "Washington Redskins (6)", - "sF": "35", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Jan 5, 2008", - "at": null, - "fav": "Jacksonville Jaguars (5)", - "und": "Pittsburgh Steelers (4)", - "sF": "31", - "sU": "29", - "spread": "2", - "ou": null - }, - { - "date": "Jan 6, 2008", - "at": "@", - "fav": "Tampa Bay Buccaneers (4)", - "und": "New York Giants (5)", - "sF": "14", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Jan 6, 2008", - "at": "@", - "fav": "San Diego Chargers (3)", - "und": "Tennessee Titans (6)", - "sF": "17", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Jan 12, 2008", - "at": "@", - "fav": "Green Bay Packers (2)", - "und": "Seattle Seahawks (3)", - "sF": "42", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Jan 12, 2008", - "at": "@", - "fav": "New England Patriots (1)", - "und": "Jacksonville Jaguars (5)", - "sF": "31", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Jan 13, 2008", - "at": "@", - "fav": "Indianapolis Colts (2)", - "und": "San Diego Chargers (3)", - "sF": "24", - "sU": "28", - "spread": "11", - "ou": null - }, - { - "date": "Jan 13, 2008", - "at": "@", - "fav": "Dallas Cowboys (1)", - "und": "New York Giants (5)", - "sF": "17", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Jan 20, 2008", - "at": "@", - "fav": "New England Patriots (1)", - "und": "San Diego Chargers (3)", - "sF": "21", - "sU": "12", - "spread": "14", - "ou": null - }, - { - "date": "Jan 20, 2008", - "at": "@", - "fav": "Green Bay Packers (2)", - "und": "New York Giants (5)", - "sF": "20", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Feb 3, 2008", - "at": "N", - "fav": "New England Patriots (1)", - "und": "New York Giants (5)", - "sF": "14", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Sep 4, 2008", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "16", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 7, 2008", - "at": "@", - "fav": "Buffalo Bills", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Sep 7, 2008", - "at": null, - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "20", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 2008", - "at": "@", - "fav": "New England Patriots", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "10", - "spread": "16", - "ou": null - }, - { - "date": "Sep 7, 2008", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 2008", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "St Louis Rams", - "sF": "38", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Sep 7, 2008", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Texans", - "sF": "38", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 7, 2008", - "at": null, - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 2008", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "10", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 2008", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Baltimore Ravens", - "sF": "10", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 7, 2008", - "at": "@", - "fav": "San Diego Chargers", - "und": "Carolina Panthers", - "sF": "24", - "sU": "26", - "spread": "9", - "ou": null - }, - { - "date": "Sep 7, 2008", - "at": null, - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "28", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 7, 2008", - "at": null, - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 7, 2008", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Chicago Bears", - "sF": "13", - "sU": "29", - "spread": "10", - "ou": null - }, - { - "date": "Sep 8, 2008", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Sep 8, 2008", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "41", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 14, 2008", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "8", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 14, 2008", - "at": null, - "fav": "New York Giants", - "und": "St Louis Rams", - "sF": "41", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Sep 14, 2008", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Tennessee Titans", - "sF": "7", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Sep 14, 2008", - "at": "@", - "fav": "Carolina Panthers", - "und": "Chicago Bears", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 14, 2008", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "48", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Sep 14, 2008", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Buffalo Bills", - "sF": "16", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 14, 2008", - "at": "@", - "fav": "Washington Redskins", - "und": "New Orleans Saints", - "sF": "29", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Sep 14, 2008", - "at": null, - "fav": "Indianapolis Colts", - "und": "Minnesota Vikings", - "sF": "18", - "sU": "15", - "spread": "1", - "ou": null - }, - { - "date": "Sep 14, 2008", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Sep 14, 2008", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "30", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Sep 14, 2008", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Miami Dolphins", - "sF": "31", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 14, 2008", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "39", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Sep 14, 2008", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "10", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Sep 14, 2008", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "10", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Sep 15, 2008", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "41", - "sU": "37", - "spread": "6", - "ou": null - }, - { - "date": "Sep 21, 2008", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Kansas City Chiefs", - "sF": "38", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 21, 2008", - "at": "@", - "fav": "Buffalo Bills", - "und": "Oakland Raiders", - "sF": "24", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Sep 21, 2008", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 2008", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "13", - "sU": "38", - "spread": "12", - "ou": null - }, - { - "date": "Sep 21, 2008", - "at": "@", - "fav": "New York Giants", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "23", - "spread": "13", - "ou": null - }, - { - "date": "Sep 21, 2008", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "31", - "sU": "12", - "spread": "5", - "ou": null - }, - { - "date": "Sep 21, 2008", - "at": "@", - "fav": "Washington Redskins", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 2008", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Carolina Panthers", - "sF": "20", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 2008", - "at": "@", - "fav": "Denver Broncos", - "und": "New Orleans Saints", - "sF": "34", - "sU": "32", - "spread": "5", - "ou": null - }, - { - "date": "Sep 21, 2008", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "31", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Sep 21, 2008", - "at": "@", - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "37", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Sep 21, 2008", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "15", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 2008", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "21", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Sep 21, 2008", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "28", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 21, 2008", - "at": null, - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "27", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 2008", - "at": "@", - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "48", - "sU": "29", - "spread": "8", - "ou": null - }, - { - "date": "Sep 28, 2008", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "19", - "sU": "33", - "spread": "9", - "ou": null - }, - { - "date": "Sep 28, 2008", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "12", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Sep 28, 2008", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "30", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Sep 28, 2008", - "at": "@", - "fav": "New York Jets", - "und": "Arizona Cardinals", - "sF": "56", - "sU": "35", - "spread": "1", - "ou": null - }, - { - "date": "Sep 28, 2008", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Green Bay Packers", - "sF": "30", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Sep 28, 2008", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 28, 2008", - "at": "@", - "fav": "Tennessee Titans", - "und": "Minnesota Vikings", - "sF": "30", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 2008", - "at": "@", - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Sep 28, 2008", - "at": null, - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "28", - "sU": "18", - "spread": "8", - "ou": null - }, - { - "date": "Sep 28, 2008", - "at": null, - "fav": "Buffalo Bills", - "und": "St Louis Rams", - "sF": "31", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Sep 28, 2008", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "24", - "sU": "26", - "spread": "10", - "ou": null - }, - { - "date": "Sep 28, 2008", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "20", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 2008", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "23", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 5, 2008", - "at": null, - "fav": "Tennessee Titans", - "und": "Baltimore Ravens", - "sF": "13", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 5, 2008", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "34", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 5, 2008", - "at": "@", - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Oct 5, 2008", - "at": null, - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "31", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Oct 5, 2008", - "at": null, - "fav": "San Diego Chargers", - "und": "Miami Dolphins", - "sF": "10", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 5, 2008", - "at": "@", - "fav": "New York Giants", - "und": "Seattle Seahawks", - "sF": "44", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Oct 5, 2008", - "at": "@", - "fav": "Carolina Panthers", - "und": "Kansas City Chiefs", - "sF": "34", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Oct 5, 2008", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "17", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 5, 2008", - "at": "@", - "fav": "Denver Broncos", - "und": "Tampa Bay Buccaneers", - "sF": "16", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Oct 5, 2008", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "22", - "spread": "16", - "ou": null - }, - { - "date": "Oct 5, 2008", - "at": null, - "fav": "New England Patriots", - "und": "San Francisco 49ers", - "sF": "30", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 5, 2008", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Buffalo Bills", - "sF": "41", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 5, 2008", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Oct 6, 2008", - "at": "@", - "fav": "New Orleans Saints", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 2008", - "at": null, - "fav": "Chicago Bears", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 2008", - "at": "@", - "fav": "Houston Texans", - "und": "Miami Dolphins", - "sF": "29", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 2008", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Baltimore Ravens", - "sF": "31", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Oct 12, 2008", - "at": "@", - "fav": "New Orleans Saints", - "und": "Oakland Raiders", - "sF": "34", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Oct 12, 2008", - "at": "@", - "fav": "New York Jets", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Oct 12, 2008", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "27", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Oct 12, 2008", - "at": "@", - "fav": "Washington Redskins", - "und": "St Louis Rams", - "sF": "17", - "sU": "19", - "spread": "13", - "ou": null - }, - { - "date": "Oct 12, 2008", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "12", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Oct 12, 2008", - "at": "@", - "fav": "Denver Broncos", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 2008", - "at": null, - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Oct 12, 2008", - "at": null, - "fav": "Philadelphia Eagles", - "und": "San Francisco 49ers", - "sF": "40", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Oct 12, 2008", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Green Bay Packers", - "sF": "17", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 12, 2008", - "at": "@", - "fav": "San Diego Chargers", - "und": "New England Patriots", - "sF": "30", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 2008", - "at": null, - "fav": "New York Giants", - "und": "Cleveland Browns", - "sF": "14", - "sU": "35", - "spread": "8", - "ou": null - }, - { - "date": "Oct 19, 2008", - "at": null, - "fav": "Tennessee Titans", - "und": "Kansas City Chiefs", - "sF": "34", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 19, 2008", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Rams", - "sF": "14", - "sU": "34", - "spread": "8", - "ou": null - }, - { - "date": "Oct 19, 2008", - "at": "@", - "fav": "Buffalo Bills", - "und": "San Diego Chargers", - "sF": "23", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 19, 2008", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "48", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 2008", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Ravens", - "sF": "13", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 2008", - "at": "@", - "fav": "New York Giants", - "und": "San Francisco 49ers", - "sF": "29", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 19, 2008", - "at": "@", - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "30", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 2008", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "38", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Oct 19, 2008", - "at": "@", - "fav": "Houston Texans", - "und": "Detroit Lions", - "sF": "28", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Oct 19, 2008", - "at": null, - "fav": "Indianapolis Colts", - "und": "Green Bay Packers", - "sF": "14", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Oct 19, 2008", - "at": null, - "fav": "New York Jets", - "und": "Oakland Raiders", - "sF": "13", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 2008", - "at": "@", - "fav": "Washington Redskins", - "und": "Cleveland Browns", - "sF": "14", - "sU": "11", - "spread": "7", - "ou": null - }, - { - "date": "Oct 19, 2008", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Oct 20, 2008", - "at": "@", - "fav": "New England Patriots", - "und": "Denver Broncos", - "sF": "41", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 2008", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Oakland Raiders", - "sF": "29", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Oct 26, 2008", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "9", - "spread": "1", - "ou": null - }, - { - "date": "Oct 26, 2008", - "at": "@", - "fav": "New England Patriots", - "und": "St Louis Rams", - "sF": "23", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Oct 26, 2008", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Oct 26, 2008", - "at": null, - "fav": "Washington Redskins", - "und": "Detroit Lions", - "sF": "25", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 26, 2008", - "at": "@", - "fav": "Carolina Panthers", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Oct 26, 2008", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "25", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Oct 26, 2008", - "at": "@", - "fav": "New York Jets", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Oct 26, 2008", - "at": "N", - "fav": "San Diego Chargers", - "und": "New Orleans Saints", - "sF": "32", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 2008", - "at": "@", - "fav": "Houston Texans", - "und": "Cincinnati Bengals", - "sF": "35", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Oct 26, 2008", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Cleveland Browns", - "sF": "17", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Oct 26, 2008", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Giants", - "sF": "14", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 2008", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "13", - "sU": "34", - "spread": "5", - "ou": null - }, - { - "date": "Oct 27, 2008", - "at": "@", - "fav": "Tennessee Titans", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 2, 2008", - "at": null, - "fav": "Arizona Cardinals", - "und": "St Louis Rams", - "sF": "34", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 2008", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "17", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Nov 2, 2008", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "27", - "sU": "23", - "spread": "12", - "ou": null - }, - { - "date": "Nov 2, 2008", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Cincinnati Bengals", - "sF": "19", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 2, 2008", - "at": "@", - "fav": "Cleveland Browns", - "und": "Baltimore Ravens", - "sF": "27", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Nov 2, 2008", - "at": "@", - "fav": "Tennessee Titans", - "und": "Green Bay Packers", - "sF": "19", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 2008", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Kansas City Chiefs", - "sF": "30", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Nov 2, 2008", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Houston Texans", - "sF": "28", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Nov 2, 2008", - "at": "@", - "fav": "Denver Broncos", - "und": "Miami Dolphins", - "sF": "17", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Nov 2, 2008", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "35", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Nov 2, 2008", - "at": null, - "fav": "Atlanta Falcons", - "und": "Oakland Raiders", - "sF": "24", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 2008", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Seattle Seahawks", - "sF": "26", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 2, 2008", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "18", - "sU": "15", - "spread": "6", - "ou": null - }, - { - "date": "Nov 3, 2008", - "at": "@", - "fav": "Washington Redskins", - "und": "Pittsburgh Steelers", - "sF": "6", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 6, 2008", - "at": "@", - "fav": "Cleveland Browns", - "und": "Denver Broncos", - "sF": "30", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 2008", - "at": null, - "fav": "Tennessee Titans", - "und": "Chicago Bears", - "sF": "21", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 2008", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Detroit Lions", - "sF": "38", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Nov 9, 2008", - "at": "@", - "fav": "Houston Texans", - "und": "Baltimore Ravens", - "sF": "13", - "sU": "41", - "spread": "2", - "ou": null - }, - { - "date": "Nov 9, 2008", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "20", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 2008", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "34", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 9, 2008", - "at": "@", - "fav": "Miami Dolphins", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Nov 9, 2008", - "at": "@", - "fav": "New York Jets", - "und": "St Louis Rams", - "sF": "47", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Nov 9, 2008", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "28", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 9, 2008", - "at": null, - "fav": "Carolina Panthers", - "und": "Oakland Raiders", - "sF": "17", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Nov 9, 2008", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 2008", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "19", - "spread": "14", - "ou": null - }, - { - "date": "Nov 9, 2008", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "31", - "sU": "36", - "spread": "1", - "ou": null - }, - { - "date": "Nov 10, 2008", - "at": "@", - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "29", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Nov 13, 2008", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "31", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 2008", - "at": null, - "fav": "New Orleans Saints", - "und": "Kansas City Chiefs", - "sF": "30", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 16, 2008", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Denver Broncos", - "sF": "20", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 16, 2008", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "37", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 2008", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "33", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Nov 16, 2008", - "at": "@", - "fav": "Miami Dolphins", - "und": "Oakland Raiders", - "sF": "17", - "sU": "15", - "spread": "10", - "ou": null - }, - { - "date": "Nov 16, 2008", - "at": "@", - "fav": "New York Giants", - "und": "Baltimore Ravens", - "sF": "30", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 16, 2008", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Minnesota Vikings", - "sF": "19", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Nov 16, 2008", - "at": "@", - "fav": "Carolina Panthers", - "und": "Detroit Lions", - "sF": "31", - "sU": "22", - "spread": "14", - "ou": null - }, - { - "date": "Nov 16, 2008", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Cincinnati Bengals", - "sF": "13", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Nov 16, 2008", - "at": "@", - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "35", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 16, 2008", - "at": null, - "fav": "Arizona Cardinals", - "und": "Seattle Seahawks", - "sF": "26", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 2008", - "at": null, - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 2008", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "11", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 16, 2008", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "14", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 17, 2008", - "at": "@", - "fav": "Buffalo Bills", - "und": "Cleveland Browns", - "sF": "27", - "sU": "29", - "spread": "5", - "ou": null - }, - { - "date": "Nov 20, 2008", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Nov 23, 2008", - "at": null, - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "54", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 2008", - "at": null, - "fav": "Chicago Bears", - "und": "St Louis Rams", - "sF": "27", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 2008", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Philadelphia Eagles", - "sF": "36", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 23, 2008", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "48", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Nov 23, 2008", - "at": "@", - "fav": "Tennessee Titans", - "und": "New York Jets", - "sF": "13", - "sU": "34", - "spread": "5", - "ou": null - }, - { - "date": "Nov 23, 2008", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Texans", - "sF": "6", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 2008", - "at": "@", - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "35", - "sU": "22", - "spread": "9", - "ou": null - }, - { - "date": "Nov 23, 2008", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "38", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Nov 23, 2008", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Minnesota Vikings", - "sF": "12", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Nov 23, 2008", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "10", - "sU": "31", - "spread": "9", - "ou": null - }, - { - "date": "Nov 23, 2008", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "45", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Nov 23, 2008", - "at": null, - "fav": "New York Giants", - "und": "Arizona Cardinals", - "sF": "37", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 2008", - "at": null, - "fav": "Washington Redskins", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 2008", - "at": "@", - "fav": "San Diego Chargers", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 2008", - "at": "@", - "fav": "New Orleans Saints", - "und": "Green Bay Packers", - "sF": "51", - "sU": "29", - "spread": "1", - "ou": null - }, - { - "date": "Nov 27, 2008", - "at": null, - "fav": "Tennessee Titans", - "und": "Detroit Lions", - "sF": "47", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Nov 27, 2008", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "9", - "spread": "12", - "ou": null - }, - { - "date": "Nov 27, 2008", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "48", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 2008", - "at": null, - "fav": "Miami Dolphins", - "und": "St Louis Rams", - "sF": "16", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Nov 30, 2008", - "at": "@", - "fav": "Buffalo Bills", - "und": "San Francisco 49ers", - "sF": "3", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 30, 2008", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 30, 2008", - "at": null, - "fav": "Indianapolis Colts", - "und": "Cleveland Browns", - "sF": "10", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Nov 30, 2008", - "at": "@", - "fav": "Green Bay Packers", - "und": "Carolina Panthers", - "sF": "31", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 2008", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 2008", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "23", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 30, 2008", - "at": "@", - "fav": "San Diego Chargers", - "und": "Atlanta Falcons", - "sF": "16", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Nov 30, 2008", - "at": "@", - "fav": "New England Patriots", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "33", - "spread": "2", - "ou": null - }, - { - "date": "Nov 30, 2008", - "at": "@", - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "17", - "sU": "34", - "spread": "8", - "ou": null - }, - { - "date": "Nov 30, 2008", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "13", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 2008", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "34", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Dec 1, 2008", - "at": "@", - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "30", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2008", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "34", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Dec 7, 2008", - "at": "@", - "fav": "Chicago Bears", - "und": "Jacksonville Jaguars", - "sF": "23", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 7, 2008", - "at": "@", - "fav": "Green Bay Packers", - "und": "Houston Texans", - "sF": "21", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 7, 2008", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Cincinnati Bengals", - "sF": "35", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Dec 7, 2008", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "29", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 2008", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "20", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Dec 7, 2008", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 7, 2008", - "at": "@", - "fav": "Tennessee Titans", - "und": "Cleveland Browns", - "sF": "28", - "sU": "9", - "spread": "13", - "ou": null - }, - { - "date": "Dec 7, 2008", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "3", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Dec 7, 2008", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 7, 2008", - "at": null, - "fav": "New York Jets", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Dec 7, 2008", - "at": null, - "fav": "New England Patriots", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 7, 2008", - "at": "@", - "fav": "Arizona Cardinals", - "und": "St Louis Rams", - "sF": "34", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Dec 7, 2008", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Dec 7, 2008", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Washington Redskins", - "sF": "24", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 2008", - "at": "@", - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "38", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2008", - "at": "@", - "fav": "Chicago Bears", - "und": "New Orleans Saints", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 2008", - "at": null, - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "22", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Dec 14, 2008", - "at": null, - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "23", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Dec 14, 2008", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Detroit Lions", - "sF": "31", - "sU": "21", - "spread": "17", - "ou": null - }, - { - "date": "Dec 14, 2008", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "31", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Dec 14, 2008", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 14, 2008", - "at": null, - "fav": "Washington Redskins", - "und": "Cincinnati Bengals", - "sF": "13", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 14, 2008", - "at": "@", - "fav": "Miami Dolphins", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Dec 14, 2008", - "at": null, - "fav": "Green Bay Packers", - "und": "Jacksonville Jaguars", - "sF": "16", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Dec 14, 2008", - "at": null, - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "12", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 2008", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 2008", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "9", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 2008", - "at": "@", - "fav": "Carolina Panthers", - "und": "Denver Broncos", - "sF": "30", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 2008", - "at": null, - "fav": "New England Patriots", - "und": "Oakland Raiders", - "sF": "49", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 2008", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "20", - "sU": "8", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 2008", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Cleveland Browns", - "sF": "30", - "sU": "10", - "spread": "16", - "ou": null - }, - { - "date": "Dec 18, 2008", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "31", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Dec 20, 2008", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Baltimore Ravens", - "sF": "24", - "sU": "33", - "spread": "5", - "ou": null - }, - { - "date": "Dec 21, 2008", - "at": null, - "fav": "Miami Dolphins", - "und": "Kansas City Chiefs", - "sF": "38", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 2008", - "at": null, - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "17", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 2008", - "at": "@", - "fav": "New England Patriots", - "und": "Arizona Cardinals", - "sF": "47", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Dec 21, 2008", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "San Diego Chargers", - "sF": "24", - "sU": "41", - "spread": "4", - "ou": null - }, - { - "date": "Dec 21, 2008", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Tennessee Titans", - "sF": "14", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 2008", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "0", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 21, 2008", - "at": null, - "fav": "New Orleans Saints", - "und": "Detroit Lions", - "sF": "42", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 2008", - "at": null, - "fav": "Houston Texans", - "und": "Oakland Raiders", - "sF": "16", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 2008", - "at": "@", - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "23", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Dec 21, 2008", - "at": null, - "fav": "New York Jets", - "und": "Seattle Seahawks", - "sF": "3", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 2008", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 2008", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "3", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 21, 2008", - "at": "@", - "fav": "New York Giants", - "und": "Carolina Panthers", - "sF": "34", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Dec 22, 2008", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "20", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 28, 2008", - "at": "@", - "fav": "Atlanta Falcons", - "und": "St Louis Rams", - "sF": "31", - "sU": "27", - "spread": "14", - "ou": null - }, - { - "date": "Dec 28, 2008", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "13", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Dec 28, 2008", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Kansas City Chiefs", - "sF": "16", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Dec 28, 2008", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "31", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Dec 28, 2008", - "at": null, - "fav": "Tennessee Titans", - "und": "Indianapolis Colts", - "sF": "0", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 28, 2008", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "31", - "sU": "0", - "spread": "11", - "ou": null - }, - { - "date": "Dec 28, 2008", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Oakland Raiders", - "sF": "24", - "sU": "31", - "spread": "10", - "ou": null - }, - { - "date": "Dec 28, 2008", - "at": "@", - "fav": "Houston Texans", - "und": "Chicago Bears", - "sF": "31", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 28, 2008", - "at": null, - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "33", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Dec 28, 2008", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "20", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Dec 28, 2008", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 28, 2008", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "44", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Dec 28, 2008", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 28, 2008", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Dec 28, 2008", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "17", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 28, 2008", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "52", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Jan 3, 2009", - "at": "@", - "fav": "Arizona Cardinals (4)", - "und": "Atlanta Falcons (5)", - "sF": "30", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Jan 3, 2009", - "at": null, - "fav": "Indianapolis Colts (5)", - "und": "San Diego Chargers (4)", - "sF": "17", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Jan 4, 2009", - "at": null, - "fav": "Baltimore Ravens (6)", - "und": "Miami Dolphins (3)", - "sF": "27", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Jan 4, 2009", - "at": null, - "fav": "Philadelphia Eagles (6)", - "und": "Minnesota Vikings (3)", - "sF": "26", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Jan 10, 2009", - "at": "@", - "fav": "Tennessee Titans (1)", - "und": "Baltimore Ravens (6)", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Jan 10, 2009", - "at": "@", - "fav": "Carolina Panthers (2)", - "und": "Arizona Cardinals (4)", - "sF": "13", - "sU": "33", - "spread": "10", - "ou": null - }, - { - "date": "Jan 11, 2009", - "at": "@", - "fav": "New York Giants (1)", - "und": "Philadelphia Eagles (6)", - "sF": "11", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Jan 11, 2009", - "at": "@", - "fav": "Pittsburgh Steelers (2)", - "und": "San Diego Chargers (4)", - "sF": "35", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Jan 18, 2009", - "at": null, - "fav": "Philadelphia Eagles (6)", - "und": "Arizona Cardinals (4)", - "sF": "25", - "sU": "32", - "spread": "3", - "ou": null - }, - { - "date": "Jan 18, 2009", - "at": "@", - "fav": "Pittsburgh Steelers (2)", - "und": "Baltimore Ravens (6)", - "sF": "23", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Feb 1, 2009", - "at": "N", - "fav": "Pittsburgh Steelers (2)", - "und": "Arizona Cardinals (4)", - "sF": "27", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Sep 10, 2009", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Tennessee Titans", - "sF": "13", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 13, 2009", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Kansas City Chiefs", - "sF": "38", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Sep 13, 2009", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Denver Broncos", - "sF": "7", - "sU": "12", - "spread": "5", - "ou": null - }, - { - "date": "Sep 13, 2009", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "14", - "sU": "12", - "spread": "6", - "ou": null - }, - { - "date": "Sep 13, 2009", - "at": null, - "fav": "Minnesota Vikings", - "und": "Cleveland Browns", - "sF": "34", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 13, 2009", - "at": "@", - "fav": "Houston Texans", - "und": "New York Jets", - "sF": "7", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Sep 13, 2009", - "at": "@", - "fav": "New Orleans Saints", - "und": "Detroit Lions", - "sF": "45", - "sU": "27", - "spread": "14", - "ou": null - }, - { - "date": "Sep 13, 2009", - "at": null, - "fav": "Dallas Cowboys", - "und": "Tampa Bay Buccaneers", - "sF": "34", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Sep 13, 2009", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Carolina Panthers", - "sF": "38", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 13, 2009", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Miami Dolphins", - "sF": "19", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 13, 2009", - "at": "@", - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "16", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 13, 2009", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "23", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 13, 2009", - "at": "@", - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "28", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Sep 13, 2009", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "21", - "sU": "15", - "spread": "5", - "ou": null - }, - { - "date": "Sep 14, 2009", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "25", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Sep 14, 2009", - "at": null, - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "24", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Sep 20, 2009", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "10", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Sep 20, 2009", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "28", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 20, 2009", - "at": "@", - "fav": "Green Bay Packers", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 2009", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "9", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 2009", - "at": "@", - "fav": "Washington Redskins", - "und": "St Louis Rams", - "sF": "9", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Sep 20, 2009", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "27", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Sep 20, 2009", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 2009", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "31", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 2009", - "at": null, - "fav": "New Orleans Saints", - "und": "Philadelphia Eagles", - "sF": "48", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Sep 20, 2009", - "at": "@", - "fav": "Buffalo Bills", - "und": "Tampa Bay Buccaneers", - "sF": "33", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 20, 2009", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "23", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Sep 20, 2009", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Chicago Bears", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 2009", - "at": "@", - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "27", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 2009", - "at": "@", - "fav": "San Diego Chargers", - "und": "Baltimore Ravens", - "sF": "26", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Sep 20, 2009", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "31", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 2009", - "at": null, - "fav": "Indianapolis Colts", - "und": "Miami Dolphins", - "sF": "27", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 2009", - "at": null, - "fav": "Green Bay Packers", - "und": "St Louis Rams", - "sF": "36", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 2009", - "at": null, - "fav": "New York Giants", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 2009", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "34", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Sep 27, 2009", - "at": null, - "fav": "Washington Redskins", - "und": "Detroit Lions", - "sF": "14", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 2009", - "at": "@", - "fav": "New England Patriots", - "und": "Atlanta Falcons", - "sF": "26", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 27, 2009", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Kansas City Chiefs", - "sF": "34", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Sep 27, 2009", - "at": "@", - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Sep 27, 2009", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 27, 2009", - "at": "@", - "fav": "New York Jets", - "und": "Tennessee Titans", - "sF": "24", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 27, 2009", - "at": null, - "fav": "New Orleans Saints", - "und": "Buffalo Bills", - "sF": "27", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Sep 27, 2009", - "at": null, - "fav": "Chicago Bears", - "und": "Seattle Seahawks", - "sF": "25", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Sep 27, 2009", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 2009", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "23", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Sep 27, 2009", - "at": "@", - "fav": "San Diego Chargers", - "und": "Miami Dolphins", - "sF": "23", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Sep 27, 2009", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Indianapolis Colts", - "sF": "10", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 2009", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Carolina Panthers", - "sF": "21", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Oct 4, 2009", - "at": null, - "fav": "New York Giants", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Oct 4, 2009", - "at": "@", - "fav": "Washington Redskins", - "und": "Tampa Bay Buccaneers", - "sF": "16", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Oct 4, 2009", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "48", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Oct 4, 2009", - "at": "@", - "fav": "Houston Texans", - "und": "Oakland Raiders", - "sF": "29", - "sU": "6", - "spread": "8", - "ou": null - }, - { - "date": "Oct 4, 2009", - "at": "@", - "fav": "New England Patriots", - "und": "Baltimore Ravens", - "sF": "27", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Oct 4, 2009", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "23", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 4, 2009", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 4, 2009", - "at": null, - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 2009", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "38", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 4, 2009", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Jets", - "sF": "24", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 4, 2009", - "at": null, - "fav": "Dallas Cowboys", - "und": "Denver Broncos", - "sF": "10", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 2009", - "at": "@", - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "35", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Oct 4, 2009", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "38", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Oct 5, 2009", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "30", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Oct 11, 2009", - "at": null, - "fav": "Dallas Cowboys", - "und": "Kansas City Chiefs", - "sF": "26", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 2009", - "at": null, - "fav": "Minnesota Vikings", - "und": "St Louis Rams", - "sF": "38", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Oct 11, 2009", - "at": "@", - "fav": "Buffalo Bills", - "und": "Cleveland Browns", - "sF": "3", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Oct 11, 2009", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "14", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Oct 11, 2009", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Detroit Lions", - "sF": "28", - "sU": "20", - "spread": "11", - "ou": null - }, - { - "date": "Oct 11, 2009", - "at": "@", - "fav": "New York Giants", - "und": "Oakland Raiders", - "sF": "44", - "sU": "7", - "spread": "15", - "ou": null - }, - { - "date": "Oct 11, 2009", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Tampa Bay Buccaneers", - "sF": "33", - "sU": "14", - "spread": "15", - "ou": null - }, - { - "date": "Oct 11, 2009", - "at": "@", - "fav": "Carolina Panthers", - "und": "Washington Redskins", - "sF": "20", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 11, 2009", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "10", - "sU": "45", - "spread": "1", - "ou": null - }, - { - "date": "Oct 11, 2009", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Houston Texans", - "sF": "28", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Oct 11, 2009", - "at": null, - "fav": "New England Patriots", - "und": "Denver Broncos", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 11, 2009", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Jacksonville Jaguars", - "sF": "41", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Oct 11, 2009", - "at": null, - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "31", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 2009", - "at": null, - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "27", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2009", - "at": null, - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "28", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2009", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "27", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Oct 18, 2009", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Texans", - "sF": "17", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2009", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "26", - "sU": "0", - "spread": "14", - "ou": null - }, - { - "date": "Oct 18, 2009", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "St Louis Rams", - "sF": "23", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Oct 18, 2009", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Giants", - "sF": "48", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2009", - "at": "@", - "fav": "Washington Redskins", - "und": "Kansas City Chiefs", - "sF": "6", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 18, 2009", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Baltimore Ravens", - "sF": "33", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2009", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Oakland Raiders", - "sF": "9", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Oct 18, 2009", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "3", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2009", - "at": "@", - "fav": "New England Patriots", - "und": "Tennessee Titans", - "sF": "59", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Oct 18, 2009", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "13", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Oct 18, 2009", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Chicago Bears", - "sF": "21", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 2009", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "23", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 2009", - "at": null, - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "37", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Oct 25, 2009", - "at": null, - "fav": "Indianapolis Colts", - "und": "St Louis Rams", - "sF": "42", - "sU": "6", - "spread": "14", - "ou": null - }, - { - "date": "Oct 25, 2009", - "at": null, - "fav": "Green Bay Packers", - "und": "Cleveland Browns", - "sF": "31", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Oct 25, 2009", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 2009", - "at": "@", - "fav": "Houston Texans", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 2009", - "at": "N", - "fav": "New England Patriots", - "und": "Tampa Bay Buccaneers", - "sF": "35", - "sU": "7", - "spread": "15", - "ou": null - }, - { - "date": "Oct 25, 2009", - "at": "@", - "fav": "Carolina Panthers", - "und": "Buffalo Bills", - "sF": "9", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 25, 2009", - "at": null, - "fav": "New York Jets", - "und": "Oakland Raiders", - "sF": "38", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 2009", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "37", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Oct 25, 2009", - "at": null, - "fav": "New Orleans Saints", - "und": "Miami Dolphins", - "sF": "46", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 2009", - "at": null, - "fav": "Chicago Bears", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "45", - "spread": "2", - "ou": null - }, - { - "date": "Oct 25, 2009", - "at": "@", - "fav": "New York Giants", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Oct 26, 2009", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "27", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Nov 1, 2009", - "at": "@", - "fav": "Chicago Bears", - "und": "Cleveland Browns", - "sF": "30", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Nov 1, 2009", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Denver Broncos", - "sF": "30", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 2009", - "at": null, - "fav": "Houston Texans", - "und": "Buffalo Bills", - "sF": "31", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 2009", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "25", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 2009", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Seattle Seahawks", - "sF": "38", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Nov 1, 2009", - "at": "@", - "fav": "Detroit Lions", - "und": "St Louis Rams", - "sF": "10", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 1, 2009", - "at": "@", - "fav": "Indianapolis Colts", - "und": "San Francisco 49ers", - "sF": "18", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Nov 1, 2009", - "at": null, - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "40", - "spread": "1", - "ou": null - }, - { - "date": "Nov 1, 2009", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "24", - "sU": "16", - "spread": "16", - "ou": null - }, - { - "date": "Nov 1, 2009", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "30", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 2009", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Carolina Panthers", - "sF": "21", - "sU": "34", - "spread": "10", - "ou": null - }, - { - "date": "Nov 1, 2009", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "26", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 2009", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "35", - "sU": "27", - "spread": "12", - "ou": null - }, - { - "date": "Nov 8, 2009", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "7", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 2009", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "20", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 8, 2009", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "27", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 8, 2009", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Washington Redskins", - "sF": "31", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Nov 8, 2009", - "at": "@", - "fav": "Chicago Bears", - "und": "Arizona Cardinals", - "sF": "21", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 2009", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 8, 2009", - "at": null, - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "28", - "sU": "38", - "spread": "9", - "ou": null - }, - { - "date": "Nov 8, 2009", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "30", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Nov 8, 2009", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Detroit Lions", - "sF": "32", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Nov 8, 2009", - "at": "@", - "fav": "New York Giants", - "und": "San Diego Chargers", - "sF": "20", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 8, 2009", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Tennessee Titans", - "sF": "27", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Nov 8, 2009", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "16", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 2009", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Denver Broncos", - "sF": "28", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 2009", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "10", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 2009", - "at": null, - "fav": "New Orleans Saints", - "und": "St Louis Rams", - "sF": "28", - "sU": "23", - "spread": "14", - "ou": null - }, - { - "date": "Nov 15, 2009", - "at": "@", - "fav": "New York Jets", - "und": "Jacksonville Jaguars", - "sF": "22", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 15, 2009", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "12", - "sU": "18", - "spread": "6", - "ou": null - }, - { - "date": "Nov 15, 2009", - "at": "@", - "fav": "Tennessee Titans", - "und": "Buffalo Bills", - "sF": "41", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 15, 2009", - "at": null, - "fav": "Denver Broncos", - "und": "Washington Redskins", - "sF": "17", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 2009", - "at": null, - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "19", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Nov 15, 2009", - "at": "@", - "fav": "Miami Dolphins", - "und": "Tampa Bay Buccaneers", - "sF": "25", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Nov 15, 2009", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "27", - "sU": "10", - "spread": "17", - "ou": null - }, - { - "date": "Nov 15, 2009", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "10", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Nov 15, 2009", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Nov 15, 2009", - "at": null, - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "7", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 2009", - "at": "@", - "fav": "San Diego Chargers", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Nov 15, 2009", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "35", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Nov 16, 2009", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "16", - "sU": "0", - "spread": "11", - "ou": null - }, - { - "date": "Nov 19, 2009", - "at": "@", - "fav": "Carolina Panthers", - "und": "Miami Dolphins", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 2009", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "27", - "spread": "11", - "ou": null - }, - { - "date": "Nov 22, 2009", - "at": null, - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "38", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 22, 2009", - "at": null, - "fav": "Indianapolis Colts", - "und": "Baltimore Ravens", - "sF": "17", - "sU": "15", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 2009", - "at": "@", - "fav": "Detroit Lions", - "und": "Cleveland Browns", - "sF": "38", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 2009", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "30", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 22, 2009", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "7", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Nov 22, 2009", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Buffalo Bills", - "sF": "18", - "sU": "15", - "spread": "8", - "ou": null - }, - { - "date": "Nov 22, 2009", - "at": "@", - "fav": "New York Giants", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 2009", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Seattle Seahawks", - "sF": "35", - "sU": "9", - "spread": "11", - "ou": null - }, - { - "date": "Nov 22, 2009", - "at": null, - "fav": "Arizona Cardinals", - "und": "St Louis Rams", - "sF": "21", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Nov 22, 2009", - "at": null, - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "32", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Nov 22, 2009", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "31", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Nov 22, 2009", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Oakland Raiders", - "sF": "17", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Nov 22, 2009", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "24", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 23, 2009", - "at": "@", - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 2009", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "34", - "sU": "12", - "spread": "11", - "ou": null - }, - { - "date": "Nov 26, 2009", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Oakland Raiders", - "sF": "24", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Nov 26, 2009", - "at": null, - "fav": "New York Giants", - "und": "Denver Broncos", - "sF": "6", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Nov 29, 2009", - "at": null, - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "27", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 2009", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "14", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 2009", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "16", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Nov 29, 2009", - "at": null, - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "35", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 2009", - "at": "@", - "fav": "New York Jets", - "und": "Carolina Panthers", - "sF": "17", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 2009", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Nov 29, 2009", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "27", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Nov 29, 2009", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "43", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Nov 29, 2009", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 2009", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "36", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Nov 29, 2009", - "at": "@", - "fav": "Tennessee Titans", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 29, 2009", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 30, 2009", - "at": "@", - "fav": "New Orleans Saints", - "und": "New England Patriots", - "sF": "38", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 3, 2009", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "19", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 2009", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "44", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 6, 2009", - "at": "@", - "fav": "Chicago Bears", - "und": "St Louis Rams", - "sF": "17", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Dec 6, 2009", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Detroit Lions", - "sF": "23", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Dec 6, 2009", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "21", - "sU": "22", - "spread": "5", - "ou": null - }, - { - "date": "Dec 6, 2009", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Oakland Raiders", - "sF": "24", - "sU": "27", - "spread": "15", - "ou": null - }, - { - "date": "Dec 6, 2009", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Dec 6, 2009", - "at": "@", - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "16", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 2009", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "27", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 6, 2009", - "at": null, - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "18", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Dec 6, 2009", - "at": null, - "fav": "New Orleans Saints", - "und": "Washington Redskins", - "sF": "33", - "sU": "30", - "spread": "8", - "ou": null - }, - { - "date": "Dec 6, 2009", - "at": null, - "fav": "San Diego Chargers", - "und": "Cleveland Browns", - "sF": "30", - "sU": "23", - "spread": "13", - "ou": null - }, - { - "date": "Dec 6, 2009", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "24", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Dec 6, 2009", - "at": null, - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 6, 2009", - "at": null, - "fav": "Minnesota Vikings", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 2009", - "at": "@", - "fav": "Green Bay Packers", - "und": "Baltimore Ravens", - "sF": "27", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 10, 2009", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "6", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Dec 13, 2009", - "at": null, - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "16", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Dec 13, 2009", - "at": null, - "fav": "New York Jets", - "und": "Tampa Bay Buccaneers", - "sF": "26", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 2009", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "26", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Dec 13, 2009", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Detroit Lions", - "sF": "48", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Dec 13, 2009", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "21", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 13, 2009", - "at": "@", - "fav": "Houston Texans", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 2009", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Denver Broncos", - "sF": "28", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Dec 13, 2009", - "at": "@", - "fav": "New England Patriots", - "und": "Carolina Panthers", - "sF": "20", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Dec 13, 2009", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Miami Dolphins", - "sF": "10", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 13, 2009", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Cincinnati Bengals", - "sF": "30", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 13, 2009", - "at": null, - "fav": "Washington Redskins", - "und": "Oakland Raiders", - "sF": "34", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 13, 2009", - "at": "@", - "fav": "Tennessee Titans", - "und": "St Louis Rams", - "sF": "47", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Dec 13, 2009", - "at": "@", - "fav": "Dallas Cowboys", - "und": "San Diego Chargers", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 2009", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "45", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Dec 14, 2009", - "at": null, - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "9", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 17, 2009", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "35", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 2009", - "at": "@", - "fav": "New Orleans Saints", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 20, 2009", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cleveland Browns", - "sF": "34", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 2009", - "at": null, - "fav": "Houston Texans", - "und": "St Louis Rams", - "sF": "16", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Dec 20, 2009", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "17", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 20, 2009", - "at": null, - "fav": "Arizona Cardinals", - "und": "Detroit Lions", - "sF": "31", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Dec 20, 2009", - "at": "@", - "fav": "Tennessee Titans", - "und": "Miami Dolphins", - "sF": "27", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 20, 2009", - "at": "@", - "fav": "New York Jets", - "und": "Atlanta Falcons", - "sF": "7", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 20, 2009", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "19", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Dec 20, 2009", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 20, 2009", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Chicago Bears", - "sF": "31", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Dec 20, 2009", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Green Bay Packers", - "sF": "37", - "sU": "36", - "spread": "2", - "ou": null - }, - { - "date": "Dec 20, 2009", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 20, 2009", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Tampa Bay Buccaneers", - "sF": "7", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Dec 20, 2009", - "at": null, - "fav": "Minnesota Vikings", - "und": "Carolina Panthers", - "sF": "7", - "sU": "26", - "spread": "9", - "ou": null - }, - { - "date": "Dec 21, 2009", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "45", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Dec 25, 2009", - "at": "@", - "fav": "Tennessee Titans", - "und": "San Diego Chargers", - "sF": "17", - "sU": "42", - "spread": "2", - "ou": null - }, - { - "date": "Dec 27, 2009", - "at": "@", - "fav": "Cleveland Browns", - "und": "Oakland Raiders", - "sF": "23", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Dec 27, 2009", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Buffalo Bills", - "sF": "31", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Dec 27, 2009", - "at": "@", - "fav": "Green Bay Packers", - "und": "Seattle Seahawks", - "sF": "48", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Dec 27, 2009", - "at": "@", - "fav": "Miami Dolphins", - "und": "Houston Texans", - "sF": "20", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 27, 2009", - "at": "@", - "fav": "New England Patriots", - "und": "Jacksonville Jaguars", - "sF": "35", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Dec 27, 2009", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 27, 2009", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Dec 27, 2009", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Dec 27, 2009", - "at": "@", - "fav": "New York Giants", - "und": "Carolina Panthers", - "sF": "9", - "sU": "41", - "spread": "8", - "ou": null - }, - { - "date": "Dec 27, 2009", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "20", - "sU": "6", - "spread": "14", - "ou": null - }, - { - "date": "Dec 27, 2009", - "at": "@", - "fav": "Arizona Cardinals", - "und": "St Louis Rams", - "sF": "31", - "sU": "10", - "spread": "16", - "ou": null - }, - { - "date": "Dec 27, 2009", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "15", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Dec 27, 2009", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Denver Broncos", - "sF": "30", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 27, 2009", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "17", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Dec 28, 2009", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "30", - "sU": "36", - "spread": "8", - "ou": null - }, - { - "date": "Jan 3, 2010", - "at": null, - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "28", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Jan 3, 2010", - "at": "@", - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "30", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Jan 3, 2010", - "at": "@", - "fav": "Cleveland Browns", - "und": "Jacksonville Jaguars", - "sF": "23", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Jan 3, 2010", - "at": "@", - "fav": "Houston Texans", - "und": "New England Patriots", - "sF": "34", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Jan 3, 2010", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Miami Dolphins", - "sF": "30", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 2010", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "37", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Jan 3, 2010", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 2010", - "at": "@", - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "23", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Jan 3, 2010", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "44", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Jan 3, 2010", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Green Bay Packers", - "sF": "7", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 2010", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 2010", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "44", - "spread": "10", - "ou": null - }, - { - "date": "Jan 3, 2010", - "at": null, - "fav": "Baltimore Ravens", - "und": "Oakland Raiders", - "sF": "21", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Jan 3, 2010", - "at": "@", - "fav": "San Diego Chargers", - "und": "Washington Redskins", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 2010", - "at": null, - "fav": "Tennessee Titans", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Jan 3, 2010", - "at": "@", - "fav": "New York Jets", - "und": "Cincinnati Bengals", - "sF": "37", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Jan 9, 2010", - "at": "@", - "fav": "Cincinnati Bengals (4)", - "und": "New York Jets (5)", - "sF": "14", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Jan 9, 2010", - "at": "@", - "fav": "Dallas Cowboys (3)", - "und": "Philadelphia Eagles (6)", - "sF": "34", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Jan 10, 2010", - "at": "@", - "fav": "New England Patriots (3)", - "und": "Baltimore Ravens (6)", - "sF": "14", - "sU": "33", - "spread": "4", - "ou": null - }, - { - "date": "Jan 10, 2010", - "at": null, - "fav": "Green Bay Packers (5)", - "und": "Arizona Cardinals (4)", - "sF": "45", - "sU": "51", - "spread": "2", - "ou": null - }, - { - "date": "Jan 16, 2010", - "at": "@", - "fav": "New Orleans Saints (1)", - "und": "Arizona Cardinals (4)", - "sF": "45", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Jan 16, 2010", - "at": "@", - "fav": "Indianapolis Colts (1)", - "und": "Baltimore Ravens (6)", - "sF": "20", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Jan 17, 2010", - "at": "@", - "fav": "Minnesota Vikings (2)", - "und": "Dallas Cowboys (3)", - "sF": "34", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Jan 17, 2010", - "at": "@", - "fav": "San Diego Chargers (2)", - "und": "New York Jets (5)", - "sF": "14", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Jan 24, 2010", - "at": "@", - "fav": "Indianapolis Colts (1)", - "und": "New York Jets (5)", - "sF": "30", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Jan 24, 2010", - "at": "@", - "fav": "New Orleans Saints (1)", - "und": "Minnesota Vikings (2)", - "sF": "31", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Feb 7, 2010", - "at": "N", - "fav": "Indianapolis Colts (1)", - "und": "New Orleans Saints (1)", - "sF": "17", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Sep 9, 2010", - "at": "@", - "fav": "New Orleans Saints", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Sep 12, 2010", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "15", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2010", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "19", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 12, 2010", - "at": null, - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "24", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Sep 12, 2010", - "at": "@", - "fav": "New England Patriots", - "und": "Cincinnati Bengals", - "sF": "38", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Sep 12, 2010", - "at": null, - "fav": "Atlanta Falcons", - "und": "Pittsburgh Steelers", - "sF": "9", - "sU": "15", - "spread": "1", - "ou": null - }, - { - "date": "Sep 12, 2010", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Cleveland Browns", - "sF": "17", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Sep 12, 2010", - "at": "@", - "fav": "Tennessee Titans", - "und": "Oakland Raiders", - "sF": "38", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Sep 12, 2010", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Denver Broncos", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2010", - "at": "@", - "fav": "New York Giants", - "und": "Carolina Panthers", - "sF": "31", - "sU": "18", - "spread": "6", - "ou": null - }, - { - "date": "Sep 12, 2010", - "at": null, - "fav": "Arizona Cardinals", - "und": "St Louis Rams", - "sF": "17", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2010", - "at": null, - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2010", - "at": null, - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "6", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2010", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "7", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 2010", - "at": "@", - "fav": "New York Jets", - "und": "Baltimore Ravens", - "sF": "9", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Sep 13, 2010", - "at": null, - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 19, 2010", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2010", - "at": "@", - "fav": "Cleveland Browns", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2010", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Detroit Lions", - "sF": "35", - "sU": "32", - "spread": "6", - "ou": null - }, - { - "date": "Sep 19, 2010", - "at": "@", - "fav": "Green Bay Packers", - "und": "Buffalo Bills", - "sF": "34", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Sep 19, 2010", - "at": "@", - "fav": "Tennessee Titans", - "und": "Pittsburgh Steelers", - "sF": "11", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Sep 19, 2010", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Arizona Cardinals", - "sF": "41", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 19, 2010", - "at": "@", - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "7", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 19, 2010", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "20", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Sep 19, 2010", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Miami Dolphins", - "sF": "10", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 19, 2010", - "at": "@", - "fav": "Oakland Raiders", - "und": "St Louis Rams", - "sF": "16", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2010", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2010", - "at": "@", - "fav": "San Diego Chargers", - "und": "Jacksonville Jaguars", - "sF": "38", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Sep 19, 2010", - "at": null, - "fav": "Houston Texans", - "und": "Washington Redskins", - "sF": "30", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2010", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "14", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2010", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New York Giants", - "sF": "38", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 20, 2010", - "at": null, - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "25", - "sU": "22", - "spread": "5", - "ou": null - }, - { - "date": "Sep 26, 2010", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "24", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Sep 26, 2010", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Carolina Panthers", - "sF": "20", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 2010", - "at": "@", - "fav": "Houston Texans", - "und": "Dallas Cowboys", - "sF": "13", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Sep 26, 2010", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "38", - "sU": "30", - "spread": "14", - "ou": null - }, - { - "date": "Sep 26, 2010", - "at": "@", - "fav": "New York Giants", - "und": "Tennessee Titans", - "sF": "10", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 2010", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 2010", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Tampa Bay Buccaneers", - "sF": "38", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 2010", - "at": null, - "fav": "San Francisco 49ers", - "und": "Kansas City Chiefs", - "sF": "10", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 2010", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "24", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Sep 26, 2010", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 2010", - "at": null, - "fav": "Washington Redskins", - "und": "St Louis Rams", - "sF": "16", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Sep 26, 2010", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Oakland Raiders", - "sF": "24", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Sep 26, 2010", - "at": null, - "fav": "Indianapolis Colts", - "und": "Denver Broncos", - "sF": "27", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Sep 26, 2010", - "at": null, - "fav": "San Diego Chargers", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Sep 26, 2010", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "23", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Sep 27, 2010", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 3, 2010", - "at": null, - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "3", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 3, 2010", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "38", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 3, 2010", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "20", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 3, 2010", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "28", - "sU": "26", - "spread": "14", - "ou": null - }, - { - "date": "Oct 3, 2010", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "14", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 3, 2010", - "at": "@", - "fav": "Tennessee Titans", - "und": "Denver Broncos", - "sF": "20", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Oct 3, 2010", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "16", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 2010", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "16", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Oct 3, 2010", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 2010", - "at": null, - "fav": "Houston Texans", - "und": "Oakland Raiders", - "sF": "31", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 3, 2010", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "12", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 3, 2010", - "at": "@", - "fav": "San Diego Chargers", - "und": "Arizona Cardinals", - "sF": "41", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 3, 2010", - "at": "@", - "fav": "New York Giants", - "und": "Chicago Bears", - "sF": "17", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 2010", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "41", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 10, 2010", - "at": "@", - "fav": "Detroit Lions", - "und": "St Louis Rams", - "sF": "44", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 2010", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Denver Broncos", - "sF": "31", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Oct 10, 2010", - "at": "@", - "fav": "Buffalo Bills", - "und": "Jacksonville Jaguars", - "sF": "26", - "sU": "36", - "spread": "2", - "ou": null - }, - { - "date": "Oct 10, 2010", - "at": null, - "fav": "Green Bay Packers", - "und": "Washington Redskins", - "sF": "13", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 2010", - "at": "@", - "fav": "Carolina Panthers", - "und": "Chicago Bears", - "sF": "6", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 2010", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 10, 2010", - "at": null, - "fav": "Atlanta Falcons", - "und": "Cleveland Browns", - "sF": "20", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 2010", - "at": "@", - "fav": "Houston Texans", - "und": "New York Giants", - "sF": "10", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 2010", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Kansas City Chiefs", - "sF": "19", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Oct 10, 2010", - "at": null, - "fav": "New Orleans Saints", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Oct 10, 2010", - "at": null, - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "27", - "sU": "35", - "spread": "7", - "ou": null - }, - { - "date": "Oct 10, 2010", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Tennessee Titans", - "sF": "27", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Oct 10, 2010", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 11, 2010", - "at": "@", - "fav": "New York Jets", - "und": "Minnesota Vikings", - "sF": "29", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 17, 2010", - "at": null, - "fav": "San Diego Chargers", - "und": "St Louis Rams", - "sF": "17", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Oct 17, 2010", - "at": "@", - "fav": "Chicago Bears", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 17, 2010", - "at": "@", - "fav": "Green Bay Packers", - "und": "Miami Dolphins", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 2010", - "at": "@", - "fav": "New England Patriots", - "und": "Baltimore Ravens", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 2010", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 17, 2010", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "28", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Oct 17, 2010", - "at": null, - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Oct 17, 2010", - "at": "@", - "fav": "Houston Texans", - "und": "Kansas City Chiefs", - "sF": "35", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Oct 17, 2010", - "at": "@", - "fav": "New York Giants", - "und": "Detroit Lions", - "sF": "28", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Oct 17, 2010", - "at": null, - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "24", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 2010", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Oakland Raiders", - "sF": "17", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Oct 17, 2010", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Oct 17, 2010", - "at": null, - "fav": "Indianapolis Colts", - "und": "Washington Redskins", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2010", - "at": null, - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "30", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 2010", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Buffalo Bills", - "sF": "37", - "sU": "34", - "spread": "12", - "ou": null - }, - { - "date": "Oct 24, 2010", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Miami Dolphins", - "sF": "23", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 2010", - "at": "@", - "fav": "New Orleans Saints", - "und": "Cleveland Browns", - "sF": "17", - "sU": "30", - "spread": "12", - "ou": null - }, - { - "date": "Oct 24, 2010", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "St Louis Rams", - "sF": "18", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 2010", - "at": "@", - "fav": "Tennessee Titans", - "und": "Philadelphia Eagles", - "sF": "37", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 2010", - "at": null, - "fav": "San Francisco 49ers", - "und": "Carolina Panthers", - "sF": "20", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 24, 2010", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Jacksonville Jaguars", - "sF": "42", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Oct 24, 2010", - "at": "@", - "fav": "Chicago Bears", - "und": "Washington Redskins", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 2010", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Cincinnati Bengals", - "sF": "39", - "sU": "32", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 2010", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "22", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 24, 2010", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "14", - "sU": "59", - "spread": "7", - "ou": null - }, - { - "date": "Oct 24, 2010", - "at": "@", - "fav": "San Diego Chargers", - "und": "New England Patriots", - "sF": "20", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 24, 2010", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 25, 2010", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "35", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 2010", - "at": "@", - "fav": "St Louis Rams", - "und": "Carolina Panthers", - "sF": "20", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 31, 2010", - "at": "@", - "fav": "Detroit Lions", - "und": "Washington Redskins", - "sF": "37", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 2010", - "at": "@", - "fav": "New York Jets", - "und": "Green Bay Packers", - "sF": "0", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Oct 31, 2010", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "35", - "spread": "6", - "ou": null - }, - { - "date": "Oct 31, 2010", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Miami Dolphins", - "sF": "14", - "sU": "22", - "spread": "1", - "ou": null - }, - { - "date": "Oct 31, 2010", - "at": "N", - "fav": "San Francisco 49ers", - "und": "Denver Broncos", - "sF": "24", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Oct 31, 2010", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "13", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 31, 2010", - "at": "@", - "fav": "San Diego Chargers", - "und": "Tennessee Titans", - "sF": "33", - "sU": "25", - "spread": "6", - "ou": null - }, - { - "date": "Oct 31, 2010", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Tampa Bay Buccaneers", - "sF": "35", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 2010", - "at": "@", - "fav": "New England Patriots", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "18", - "spread": "5", - "ou": null - }, - { - "date": "Oct 31, 2010", - "at": "@", - "fav": "Oakland Raiders", - "und": "Seattle Seahawks", - "sF": "33", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Oct 31, 2010", - "at": "@", - "fav": "New Orleans Saints", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Nov 1, 2010", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "30", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 7, 2010", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Nov 7, 2010", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Miami Dolphins", - "sF": "26", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 7, 2010", - "at": null, - "fav": "Chicago Bears", - "und": "Buffalo Bills", - "sF": "22", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 2010", - "at": null, - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "14", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Nov 7, 2010", - "at": null, - "fav": "San Diego Chargers", - "und": "Houston Texans", - "sF": "29", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 2010", - "at": null, - "fav": "New York Jets", - "und": "Detroit Lions", - "sF": "23", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Nov 7, 2010", - "at": null, - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "34", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Nov 7, 2010", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 7, 2010", - "at": null, - "fav": "New York Giants", - "und": "Seattle Seahawks", - "sF": "41", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 7, 2010", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Indianapolis Colts", - "sF": "26", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 2010", - "at": "@", - "fav": "Green Bay Packers", - "und": "Dallas Cowboys", - "sF": "45", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 8, 2010", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Nov 11, 2010", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Baltimore Ravens", - "sF": "26", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 14, 2010", - "at": "@", - "fav": "Buffalo Bills", - "und": "Detroit Lions", - "sF": "14", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Nov 14, 2010", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "13", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 14, 2010", - "at": null, - "fav": "New York Jets", - "und": "Cleveland Browns", - "sF": "26", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 14, 2010", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 14, 2010", - "at": "@", - "fav": "Miami Dolphins", - "und": "Tennessee Titans", - "sF": "29", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 14, 2010", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "31", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 14, 2010", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "29", - "sU": "49", - "spread": "1", - "ou": null - }, - { - "date": "Nov 14, 2010", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Seattle Seahawks", - "sF": "18", - "sU": "36", - "spread": "4", - "ou": null - }, - { - "date": "Nov 14, 2010", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "33", - "spread": "12", - "ou": null - }, - { - "date": "Nov 14, 2010", - "at": "@", - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "23", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 14, 2010", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New England Patriots", - "sF": "26", - "sU": "39", - "spread": "4", - "ou": null - }, - { - "date": "Nov 15, 2010", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "59", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 2010", - "at": "@", - "fav": "Miami Dolphins", - "und": "Chicago Bears", - "sF": "0", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Nov 21, 2010", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Buffalo Bills", - "sF": "31", - "sU": "49", - "spread": "4", - "ou": null - }, - { - "date": "Nov 21, 2010", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "35", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 2010", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Oakland Raiders", - "sF": "35", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 2010", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Cleveland Browns", - "sF": "24", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 21, 2010", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 2010", - "at": "@", - "fav": "New York Jets", - "und": "Houston Texans", - "sF": "30", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Nov 21, 2010", - "at": "@", - "fav": "Tennessee Titans", - "und": "Washington Redskins", - "sF": "16", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 2010", - "at": null, - "fav": "Baltimore Ravens", - "und": "Carolina Panthers", - "sF": "37", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Nov 21, 2010", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 2010", - "at": "@", - "fav": "New Orleans Saints", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "19", - "spread": "11", - "ou": null - }, - { - "date": "Nov 21, 2010", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "0", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 2010", - "at": null, - "fav": "Atlanta Falcons", - "und": "St Louis Rams", - "sF": "34", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 2010", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Nov 21, 2010", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "27", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 2010", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "35", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Nov 25, 2010", - "at": null, - "fav": "New England Patriots", - "und": "Detroit Lions", - "sF": "45", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 25, 2010", - "at": null, - "fav": "New Orleans Saints", - "und": "Dallas Cowboys", - "sF": "30", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 25, 2010", - "at": "@", - "fav": "New York Jets", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 28, 2010", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Green Bay Packers", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 28, 2010", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Buffalo Bills", - "sF": "19", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 2010", - "at": "@", - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "20", - "sU": "0", - "spread": "5", - "ou": null - }, - { - "date": "Nov 28, 2010", - "at": "@", - "fav": "New York Giants", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 2010", - "at": null, - "fav": "Minnesota Vikings", - "und": "Washington Redskins", - "sF": "17", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 28, 2010", - "at": "@", - "fav": "Cleveland Browns", - "und": "Carolina Panthers", - "sF": "24", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 2010", - "at": "@", - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "17", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 2010", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "42", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 28, 2010", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 2010", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "26", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 2010", - "at": "@", - "fav": "Denver Broncos", - "und": "St Louis Rams", - "sF": "33", - "sU": "36", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 2010", - "at": "@", - "fav": "Indianapolis Colts", - "und": "San Diego Chargers", - "sF": "14", - "sU": "36", - "spread": "2", - "ou": null - }, - { - "date": "Nov 29, 2010", - "at": null, - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Dec 2, 2010", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Houston Texans", - "sF": "34", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Dec 5, 2010", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Dec 5, 2010", - "at": "@", - "fav": "Miami Dolphins", - "und": "Cleveland Browns", - "sF": "10", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 5, 2010", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "31", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 2010", - "at": null, - "fav": "New Orleans Saints", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 2010", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "24", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Dec 5, 2010", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "10", - "sU": "6", - "spread": "8", - "ou": null - }, - { - "date": "Dec 5, 2010", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "6", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 2010", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Buffalo Bills", - "sF": "38", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Dec 5, 2010", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "13", - "sU": "28", - "spread": "13", - "ou": null - }, - { - "date": "Dec 5, 2010", - "at": null, - "fav": "St Louis Rams", - "und": "Arizona Cardinals", - "sF": "19", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 2010", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Dallas Cowboys", - "sF": "35", - "sU": "38", - "spread": "5", - "ou": null - }, - { - "date": "Dec 5, 2010", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Carolina Panthers", - "sF": "31", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Dec 5, 2010", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "28", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 2010", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 2010", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "45", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Dec 9, 2010", - "at": null, - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "30", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Dec 12, 2010", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Oakland Raiders", - "sF": "38", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 2010", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Dec 12, 2010", - "at": null, - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "31", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 12, 2010", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "3", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 12, 2010", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Washington Redskins", - "sF": "17", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Dec 12, 2010", - "at": "@", - "fav": "New Orleans Saints", - "und": "St Louis Rams", - "sF": "31", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Dec 12, 2010", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "40", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Dec 12, 2010", - "at": null, - "fav": "Denver Broncos", - "und": "Arizona Cardinals", - "sF": "13", - "sU": "43", - "spread": "4", - "ou": null - }, - { - "date": "Dec 12, 2010", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "6", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 12, 2010", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "31", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Dec 12, 2010", - "at": null, - "fav": "New England Patriots", - "und": "Chicago Bears", - "sF": "36", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 2010", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "30", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Dec 13, 2010", - "at": "N", - "fav": "New York Giants", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Dec 13, 2010", - "at": null, - "fav": "Baltimore Ravens", - "und": "Houston Texans", - "sF": "34", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2010", - "at": "@", - "fav": "San Diego Chargers", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Dec 19, 2010", - "at": "@", - "fav": "St Louis Rams", - "und": "Kansas City Chiefs", - "sF": "13", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 2010", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "34", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 19, 2010", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "14", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Dec 19, 2010", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "31", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 19, 2010", - "at": "@", - "fav": "Baltimore Ravens", - "und": "New Orleans Saints", - "sF": "30", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 19, 2010", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "33", - "sU": "30", - "spread": "9", - "ou": null - }, - { - "date": "Dec 19, 2010", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 2010", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "20", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Dec 19, 2010", - "at": "@", - "fav": "Carolina Panthers", - "und": "Arizona Cardinals", - "sF": "19", - "sU": "12", - "spread": "2", - "ou": null - }, - { - "date": "Dec 19, 2010", - "at": null, - "fav": "Atlanta Falcons", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "18", - "spread": "6", - "ou": null - }, - { - "date": "Dec 19, 2010", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "39", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Dec 19, 2010", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "17", - "sU": "22", - "spread": "4", - "ou": null - }, - { - "date": "Dec 19, 2010", - "at": "@", - "fav": "New England Patriots", - "und": "Green Bay Packers", - "sF": "31", - "sU": "27", - "spread": "14", - "ou": null - }, - { - "date": "Dec 20, 2010", - "at": null, - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "40", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 23, 2010", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Carolina Panthers", - "sF": "27", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Dec 25, 2010", - "at": null, - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "26", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 26, 2010", - "at": "@", - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "25", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 26, 2010", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "34", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Dec 26, 2010", - "at": "@", - "fav": "Chicago Bears", - "und": "New York Jets", - "sF": "38", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 2010", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "20", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 26, 2010", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Washington Redskins", - "sF": "17", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 26, 2010", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Tennessee Titans", - "sF": "34", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 26, 2010", - "at": "@", - "fav": "Miami Dolphins", - "und": "Detroit Lions", - "sF": "27", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 2010", - "at": null, - "fav": "San Diego Chargers", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "34", - "spread": "8", - "ou": null - }, - { - "date": "Dec 26, 2010", - "at": null, - "fav": "Indianapolis Colts", - "und": "Oakland Raiders", - "sF": "31", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Dec 26, 2010", - "at": null, - "fav": "Houston Texans", - "und": "Denver Broncos", - "sF": "23", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 26, 2010", - "at": "@", - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "45", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 2010", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Seattle Seahawks", - "sF": "38", - "sU": "15", - "spread": "6", - "ou": null - }, - { - "date": "Dec 27, 2010", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "14", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 28, 2010", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Jan 2, 2011", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "13", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Jan 2, 2011", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "13", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Jan 2, 2011", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "41", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Jan 2, 2011", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "10", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Jan 2, 2011", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "38", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Jan 2, 2011", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "31", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Jan 2, 2011", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Jan 2, 2011", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "38", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Jan 2, 2011", - "at": null, - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "33", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Jan 2, 2011", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "10", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Jan 2, 2011", - "at": "@", - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "34", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Jan 2, 2011", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "38", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Jan 2, 2011", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "23", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Jan 2, 2011", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "17", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Jan 2, 2011", - "at": null, - "fav": "St Louis Rams", - "und": "Seattle Seahawks", - "sF": "6", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Jan 8, 2011", - "at": null, - "fav": "New Orleans Saints (5)", - "und": "Seattle Seahawks (4)", - "sF": "36", - "sU": "41", - "spread": "10", - "ou": null - }, - { - "date": "Jan 8, 2011", - "at": "@", - "fav": "Indianapolis Colts (3)", - "und": "New York Jets (6)", - "sF": "16", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Jan 9, 2011", - "at": null, - "fav": "Baltimore Ravens (5)", - "und": "Kansas City Chiefs (4)", - "sF": "30", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Jan 9, 2011", - "at": "@", - "fav": "Philadelphia Eagles (3)", - "und": "Green Bay Packers (6)", - "sF": "16", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Jan 15, 2011", - "at": "@", - "fav": "Pittsburgh Steelers (2)", - "und": "Baltimore Ravens (5)", - "sF": "31", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Jan 15, 2011", - "at": "@", - "fav": "Atlanta Falcons (1)", - "und": "Green Bay Packers (6)", - "sF": "21", - "sU": "48", - "spread": "1", - "ou": null - }, - { - "date": "Jan 16, 2011", - "at": "@", - "fav": "Chicago Bears (2)", - "und": "Seattle Seahawks (4)", - "sF": "35", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Jan 16, 2011", - "at": "@", - "fav": "New England Patriots (1)", - "und": "New York Jets (6)", - "sF": "21", - "sU": "28", - "spread": "9", - "ou": null - }, - { - "date": "Jan 23, 2011", - "at": null, - "fav": "Green Bay Packers (6)", - "und": "Chicago Bears (2)", - "sF": "21", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Jan 23, 2011", - "at": "@", - "fav": "Pittsburgh Steelers (2)", - "und": "New York Jets (6)", - "sF": "24", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Feb 6, 2011", - "at": "N", - "fav": "Green Bay Packers (6)", - "und": "Pittsburgh Steelers (2)", - "sF": "31", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 2011", - "at": "@", - "fav": "Green Bay Packers", - "und": "New Orleans Saints", - "sF": "42", - "sU": "34", - "spread": "5", - "ou": null - }, - { - "date": "Sep 11, 2011", - "at": null, - "fav": "Philadelphia Eagles", - "und": "St Louis Rams", - "sF": "31", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Sep 11, 2011", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "35", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Sep 11, 2011", - "at": "@", - "fav": "Houston Texans", - "und": "Indianapolis Colts", - "sF": "34", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Sep 11, 2011", - "at": null, - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "14", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Sep 11, 2011", - "at": null, - "fav": "Atlanta Falcons", - "und": "Chicago Bears", - "sF": "12", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Sep 11, 2011", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Sep 11, 2011", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "7", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 2011", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "20", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Sep 11, 2011", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Carolina Panthers", - "sF": "28", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Sep 11, 2011", - "at": "@", - "fav": "San Diego Chargers", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Sep 11, 2011", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "33", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 11, 2011", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "14", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Sep 11, 2011", - "at": "@", - "fav": "New York Jets", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Sep 12, 2011", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "38", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 12, 2011", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 2011", - "at": null, - "fav": "Green Bay Packers", - "und": "Carolina Panthers", - "sF": "30", - "sU": "23", - "spread": "11", - "ou": null - }, - { - "date": "Sep 18, 2011", - "at": "@", - "fav": "Detroit Lions", - "und": "Kansas City Chiefs", - "sF": "48", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Sep 18, 2011", - "at": null, - "fav": "Cleveland Browns", - "und": "Indianapolis Colts", - "sF": "27", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Sep 18, 2011", - "at": "@", - "fav": "New Orleans Saints", - "und": "Chicago Bears", - "sF": "30", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Sep 18, 2011", - "at": "@", - "fav": "New York Jets", - "und": "Jacksonville Jaguars", - "sF": "32", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Sep 18, 2011", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "0", - "spread": "14", - "ou": null - }, - { - "date": "Sep 18, 2011", - "at": null, - "fav": "Baltimore Ravens", - "und": "Tennessee Titans", - "sF": "13", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Sep 18, 2011", - "at": "@", - "fav": "Buffalo Bills", - "und": "Oakland Raiders", - "sF": "38", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Sep 18, 2011", - "at": "@", - "fav": "Washington Redskins", - "und": "Arizona Cardinals", - "sF": "22", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 18, 2011", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Sep 18, 2011", - "at": null, - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 2011", - "at": "@", - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 2011", - "at": null, - "fav": "Houston Texans", - "und": "Miami Dolphins", - "sF": "23", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 2011", - "at": "@", - "fav": "New England Patriots", - "und": "San Diego Chargers", - "sF": "35", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Sep 18, 2011", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Sep 19, 2011", - "at": "@", - "fav": "New York Giants", - "und": "St Louis Rams", - "sF": "28", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Sep 25, 2011", - "at": "@", - "fav": "Carolina Panthers", - "und": "Jacksonville Jaguars", - "sF": "16", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2011", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "San Francisco 49ers", - "sF": "8", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Sep 25, 2011", - "at": null, - "fav": "Miami Dolphins", - "und": "Cleveland Browns", - "sF": "16", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 25, 2011", - "at": "@", - "fav": "New Orleans Saints", - "und": "Houston Texans", - "sF": "40", - "sU": "33", - "spread": "4", - "ou": null - }, - { - "date": "Sep 25, 2011", - "at": "@", - "fav": "Tennessee Titans", - "und": "Denver Broncos", - "sF": "17", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Sep 25, 2011", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "31", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Sep 25, 2011", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "16", - "sU": "29", - "spread": "8", - "ou": null - }, - { - "date": "Sep 25, 2011", - "at": null, - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "26", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2011", - "at": null, - "fav": "New York Jets", - "und": "Oakland Raiders", - "sF": "24", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2011", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "17", - "spread": "14", - "ou": null - }, - { - "date": "Sep 25, 2011", - "at": null, - "fav": "Baltimore Ravens", - "und": "St Louis Rams", - "sF": "37", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 2011", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "27", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Sep 25, 2011", - "at": null, - "fav": "Arizona Cardinals", - "und": "Seattle Seahawks", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2011", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "16", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Sep 25, 2011", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Indianapolis Colts", - "sF": "23", - "sU": "20", - "spread": "11", - "ou": null - }, - { - "date": "Sep 26, 2011", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "18", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2011", - "at": null, - "fav": "Washington Redskins", - "und": "St Louis Rams", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2011", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "30", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 2011", - "at": null, - "fav": "Minnesota Vikings", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2011", - "at": null, - "fav": "Buffalo Bills", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2011", - "at": "@", - "fav": "Cleveland Browns", - "und": "Tennessee Titans", - "sF": "13", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Oct 2, 2011", - "at": "@", - "fav": "Houston Texans", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 2, 2011", - "at": null, - "fav": "New Orleans Saints", - "und": "Jacksonville Jaguars", - "sF": "23", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 2, 2011", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Oct 2, 2011", - "at": "@", - "fav": "Chicago Bears", - "und": "Carolina Panthers", - "sF": "34", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Oct 2, 2011", - "at": null, - "fav": "New York Giants", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 2, 2011", - "at": null, - "fav": "Atlanta Falcons", - "und": "Seattle Seahawks", - "sF": "30", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Oct 2, 2011", - "at": "@", - "fav": "Green Bay Packers", - "und": "Denver Broncos", - "sF": "49", - "sU": "23", - "spread": "12", - "ou": null - }, - { - "date": "Oct 2, 2011", - "at": null, - "fav": "New England Patriots", - "und": "Oakland Raiders", - "sF": "31", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Oct 2, 2011", - "at": "@", - "fav": "San Diego Chargers", - "und": "Miami Dolphins", - "sF": "26", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 2, 2011", - "at": "@", - "fav": "Baltimore Ravens", - "und": "New York Jets", - "sF": "34", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 3, 2011", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 9, 2011", - "at": "@", - "fav": "Houston Texans", - "und": "Oakland Raiders", - "sF": "20", - "sU": "25", - "spread": "4", - "ou": null - }, - { - "date": "Oct 9, 2011", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Oct 9, 2011", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Jacksonville Jaguars", - "sF": "30", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 9, 2011", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Tennessee Titans", - "sF": "38", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2011", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Buffalo Bills", - "sF": "24", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2011", - "at": null, - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "30", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Oct 9, 2011", - "at": "@", - "fav": "New York Giants", - "und": "Seattle Seahawks", - "sF": "25", - "sU": "36", - "spread": "10", - "ou": null - }, - { - "date": "Oct 9, 2011", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Arizona Cardinals", - "sF": "34", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2011", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "48", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2011", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "30", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 9, 2011", - "at": null, - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "29", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2011", - "at": null, - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "25", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 10, 2011", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "24", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 16, 2011", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "31", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 2011", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Indianapolis Colts", - "sF": "27", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 16, 2011", - "at": "@", - "fav": "Green Bay Packers", - "und": "St Louis Rams", - "sF": "24", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Oct 16, 2011", - "at": "@", - "fav": "New York Giants", - "und": "Buffalo Bills", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 2011", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "13", - "spread": "12", - "ou": null - }, - { - "date": "Oct 16, 2011", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "19", - "sU": "25", - "spread": "5", - "ou": null - }, - { - "date": "Oct 16, 2011", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "20", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 2011", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cleveland Browns", - "sF": "24", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 16, 2011", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Houston Texans", - "sF": "29", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 16, 2011", - "at": "@", - "fav": "New England Patriots", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 16, 2011", - "at": null, - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Oct 16, 2011", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "39", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 17, 2011", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "24", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 2011", - "at": null, - "fav": "Denver Broncos", - "und": "Miami Dolphins", - "sF": "18", - "sU": "15", - "spread": "1", - "ou": null - }, - { - "date": "Oct 23, 2011", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "7", - "sU": "41", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 2011", - "at": null, - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "21", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 23, 2011", - "at": "@", - "fav": "Carolina Panthers", - "und": "Washington Redskins", - "sF": "33", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 2011", - "at": "N", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "18", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 2011", - "at": "@", - "fav": "Cleveland Browns", - "und": "Seattle Seahawks", - "sF": "6", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 2011", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "16", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 23, 2011", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Arizona Cardinals", - "sF": "32", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 23, 2011", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Rams", - "sF": "34", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Oct 23, 2011", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "33", - "sU": "27", - "spread": "11", - "ou": null - }, - { - "date": "Oct 23, 2011", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "0", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 2011", - "at": "@", - "fav": "New Orleans Saints", - "und": "Indianapolis Colts", - "sF": "62", - "sU": "7", - "spread": "14", - "ou": null - }, - { - "date": "Oct 24, 2011", - "at": null, - "fav": "Baltimore Ravens", - "und": "Jacksonville Jaguars", - "sF": "7", - "sU": "12", - "spread": "10", - "ou": null - }, - { - "date": "Oct 30, 2011", - "at": null, - "fav": "New Orleans Saints", - "und": "St Louis Rams", - "sF": "21", - "sU": "31", - "spread": "14", - "ou": null - }, - { - "date": "Oct 30, 2011", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Arizona Cardinals", - "sF": "30", - "sU": "27", - "spread": "11", - "ou": null - }, - { - "date": "Oct 30, 2011", - "at": "@", - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Oct 30, 2011", - "at": "@", - "fav": "New York Giants", - "und": "Miami Dolphins", - "sF": "20", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 30, 2011", - "at": "@", - "fav": "Tennessee Titans", - "und": "Indianapolis Colts", - "sF": "27", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 30, 2011", - "at": "@", - "fav": "Carolina Panthers", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2011", - "at": "@", - "fav": "Buffalo Bills", - "und": "Washington Redskins", - "sF": "23", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Oct 30, 2011", - "at": null, - "fav": "Detroit Lions", - "und": "Denver Broncos", - "sF": "45", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2011", - "at": null, - "fav": "New England Patriots", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2011", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Cleveland Browns", - "sF": "20", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 30, 2011", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Oct 30, 2011", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "34", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 2011", - "at": null, - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 2011", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Seattle Seahawks", - "sF": "23", - "sU": "13", - "spread": "11", - "ou": null - }, - { - "date": "Nov 6, 2011", - "at": null, - "fav": "Atlanta Falcons", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 6, 2011", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "11", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 6, 2011", - "at": "@", - "fav": "Houston Texans", - "und": "Cleveland Browns", - "sF": "30", - "sU": "12", - "spread": "10", - "ou": null - }, - { - "date": "Nov 6, 2011", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Miami Dolphins", - "sF": "3", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 6, 2011", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Nov 6, 2011", - "at": null, - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "19", - "sU": "11", - "spread": "4", - "ou": null - }, - { - "date": "Nov 6, 2011", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "24", - "sU": "38", - "spread": "7", - "ou": null - }, - { - "date": "Nov 6, 2011", - "at": "@", - "fav": "Tennessee Titans", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 2011", - "at": "@", - "fav": "Arizona Cardinals", - "und": "St Louis Rams", - "sF": "19", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 2011", - "at": "@", - "fav": "New England Patriots", - "und": "New York Giants", - "sF": "20", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Nov 6, 2011", - "at": null, - "fav": "Green Bay Packers", - "und": "San Diego Chargers", - "sF": "45", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Nov 6, 2011", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 2011", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "24", - "sU": "30", - "spread": "8", - "ou": null - }, - { - "date": "Nov 10, 2011", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "17", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 2011", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 13, 2011", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Buffalo Bills", - "sF": "44", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 13, 2011", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 2011", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Nov 13, 2011", - "at": null, - "fav": "Houston Texans", - "und": "Tampa Bay Buccaneers", - "sF": "37", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Nov 13, 2011", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "23", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Nov 13, 2011", - "at": "@", - "fav": "Cleveland Browns", - "und": "St Louis Rams", - "sF": "12", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 2011", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "10", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 2011", - "at": "@", - "fav": "Miami Dolphins", - "und": "Washington Redskins", - "sF": "20", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Nov 13, 2011", - "at": "@", - "fav": "Carolina Panthers", - "und": "Tennessee Titans", - "sF": "3", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 2011", - "at": null, - "fav": "Baltimore Ravens", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 2011", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "27", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 13, 2011", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "37", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 2011", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "16", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Nov 14, 2011", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "45", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Nov 17, 2011", - "at": null, - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "13", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 20, 2011", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 20, 2011", - "at": "@", - "fav": "Cleveland Browns", - "und": "Jacksonville Jaguars", - "sF": "14", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Nov 20, 2011", - "at": "@", - "fav": "Detroit Lions", - "und": "Carolina Panthers", - "sF": "49", - "sU": "35", - "spread": "7", - "ou": null - }, - { - "date": "Nov 20, 2011", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "35", - "sU": "26", - "spread": "13", - "ou": null - }, - { - "date": "Nov 20, 2011", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "35", - "sU": "8", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 2011", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "27", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 20, 2011", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Oakland Raiders", - "sF": "21", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 20, 2011", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "23", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 20, 2011", - "at": "@", - "fav": "St Louis Rams", - "und": "Seattle Seahawks", - "sF": "7", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 2011", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tennessee Titans", - "sF": "23", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 20, 2011", - "at": "@", - "fav": "Chicago Bears", - "und": "San Diego Chargers", - "sF": "31", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 20, 2011", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 21, 2011", - "at": "@", - "fav": "New England Patriots", - "und": "Kansas City Chiefs", - "sF": "34", - "sU": "3", - "spread": "17", - "ou": null - }, - { - "date": "Nov 24, 2011", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "27", - "sU": "15", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 2011", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Miami Dolphins", - "sF": "20", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Nov 24, 2011", - "at": "@", - "fav": "Baltimore Ravens", - "und": "San Francisco 49ers", - "sF": "16", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2011", - "at": "@", - "fav": "St Louis Rams", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 27, 2011", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Nov 27, 2011", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "23", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 27, 2011", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "28", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Nov 27, 2011", - "at": "@", - "fav": "Tennessee Titans", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2011", - "at": null, - "fav": "Carolina Panthers", - "und": "Indianapolis Colts", - "sF": "27", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2011", - "at": null, - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 27, 2011", - "at": "@", - "fav": "Oakland Raiders", - "und": "Chicago Bears", - "sF": "25", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2011", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Washington Redskins", - "sF": "17", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2011", - "at": null, - "fav": "New England Patriots", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2011", - "at": "@", - "fav": "San Diego Chargers", - "und": "Denver Broncos", - "sF": "13", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Nov 27, 2011", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "13", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Nov 28, 2011", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Giants", - "sF": "49", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 1, 2011", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Seattle Seahawks", - "sF": "14", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2011", - "at": "@", - "fav": "Buffalo Bills", - "und": "Tennessee Titans", - "sF": "17", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Dec 4, 2011", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "24", - "spread": "20", - "ou": null - }, - { - "date": "Dec 4, 2011", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "35", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 4, 2011", - "at": null, - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "38", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Dec 4, 2011", - "at": "@", - "fav": "Chicago Bears", - "und": "Kansas City Chiefs", - "sF": "3", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Dec 4, 2011", - "at": null, - "fav": "Atlanta Falcons", - "und": "Houston Texans", - "sF": "10", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 4, 2011", - "at": "@", - "fav": "Miami Dolphins", - "und": "Oakland Raiders", - "sF": "34", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2011", - "at": null, - "fav": "New York Jets", - "und": "Washington Redskins", - "sF": "34", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2011", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Denver Broncos", - "sF": "32", - "sU": "35", - "spread": "1", - "ou": null - }, - { - "date": "Dec 4, 2011", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "24", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 4, 2011", - "at": null, - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "13", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Dec 4, 2011", - "at": null, - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "38", - "sU": "35", - "spread": "7", - "ou": null - }, - { - "date": "Dec 4, 2011", - "at": "@", - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "26", - "sU": "0", - "spread": "14", - "ou": null - }, - { - "date": "Dec 4, 2011", - "at": "@", - "fav": "New Orleans Saints", - "und": "Detroit Lions", - "sF": "31", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 5, 2011", - "at": null, - "fav": "San Diego Chargers", - "und": "Jacksonville Jaguars", - "sF": "38", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2011", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "14", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Dec 11, 2011", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "10", - "spread": "16", - "ou": null - }, - { - "date": "Dec 11, 2011", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Texans", - "sF": "19", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2011", - "at": "@", - "fav": "New York Jets", - "und": "Kansas City Chiefs", - "sF": "37", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 11, 2011", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "34", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Dec 11, 2011", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Jacksonville Jaguars", - "sF": "14", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2011", - "at": "@", - "fav": "Miami Dolphins", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2011", - "at": null, - "fav": "New Orleans Saints", - "und": "Tennessee Titans", - "sF": "22", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2011", - "at": null, - "fav": "New England Patriots", - "und": "Washington Redskins", - "sF": "34", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 11, 2011", - "at": null, - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "31", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2011", - "at": null, - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "19", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2011", - "at": "@", - "fav": "Denver Broncos", - "und": "Chicago Bears", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2011", - "at": "@", - "fav": "Green Bay Packers", - "und": "Oakland Raiders", - "sF": "46", - "sU": "16", - "spread": "11", - "ou": null - }, - { - "date": "Dec 11, 2011", - "at": "@", - "fav": "San Diego Chargers", - "und": "Buffalo Bills", - "sF": "37", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 11, 2011", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "34", - "sU": "37", - "spread": "4", - "ou": null - }, - { - "date": "Dec 12, 2011", - "at": "@", - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "30", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Dec 15, 2011", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Jacksonville Jaguars", - "sF": "41", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Dec 17, 2011", - "at": null, - "fav": "Dallas Cowboys", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "15", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 2011", - "at": null, - "fav": "Cincinnati Bengals", - "und": "St Louis Rams", - "sF": "20", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 2011", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "23", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Dec 18, 2011", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "10", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Dec 18, 2011", - "at": "@", - "fav": "Chicago Bears", - "und": "Seattle Seahawks", - "sF": "14", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 2011", - "at": "@", - "fav": "Houston Texans", - "und": "Carolina Panthers", - "sF": "13", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Dec 18, 2011", - "at": null, - "fav": "Tennessee Titans", - "und": "Indianapolis Colts", - "sF": "13", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 18, 2011", - "at": null, - "fav": "Green Bay Packers", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "19", - "spread": "11", - "ou": null - }, - { - "date": "Dec 18, 2011", - "at": null, - "fav": "New Orleans Saints", - "und": "Minnesota Vikings", - "sF": "42", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 2011", - "at": null, - "fav": "Detroit Lions", - "und": "Oakland Raiders", - "sF": "28", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Dec 18, 2011", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Cleveland Browns", - "sF": "20", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 18, 2011", - "at": null, - "fav": "New England Patriots", - "und": "Denver Broncos", - "sF": "41", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 2011", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Jets", - "sF": "45", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 2011", - "at": null, - "fav": "Baltimore Ravens", - "und": "San Diego Chargers", - "sF": "14", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Dec 19, 2011", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 2011", - "at": null, - "fav": "Houston Texans", - "und": "Indianapolis Colts", - "sF": "16", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Dec 24, 2011", - "at": null, - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "14", - "sU": "40", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2011", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Arizona Cardinals", - "sF": "23", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Dec 24, 2011", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "27", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 24, 2011", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "St Louis Rams", - "sF": "27", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Dec 24, 2011", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "23", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 24, 2011", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "20", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Dec 24, 2011", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "13", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2011", - "at": "@", - "fav": "New York Jets", - "und": "New York Giants", - "sF": "14", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2011", - "at": "@", - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "48", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Dec 24, 2011", - "at": "@", - "fav": "Washington Redskins", - "und": "Minnesota Vikings", - "sF": "26", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Dec 24, 2011", - "at": null, - "fav": "San Diego Chargers", - "und": "Detroit Lions", - "sF": "10", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Dec 24, 2011", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 24, 2011", - "at": null, - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "19", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 25, 2011", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "35", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Dec 26, 2011", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "45", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Jan 1, 2012", - "at": null, - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "34", - "sU": "27", - "spread": "12", - "ou": null - }, - { - "date": "Jan 1, 2012", - "at": null, - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "41", - "sU": "45", - "spread": "6", - "ou": null - }, - { - "date": "Jan 1, 2012", - "at": null, - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "23", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Jan 1, 2012", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "19", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Jan 1, 2012", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "49", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Jan 1, 2012", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "34", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Jan 1, 2012", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Indianapolis Colts", - "sF": "19", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 2012", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "45", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Jan 1, 2012", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "13", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Jan 1, 2012", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Seattle Seahawks", - "sF": "23", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Jan 1, 2012", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "26", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 2012", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Jan 1, 2012", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "13", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Jan 1, 2012", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "3", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Jan 1, 2012", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "45", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Jan 1, 2012", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Jan 7, 2012", - "at": "@", - "fav": "Houston Texans (3)", - "und": "Cincinnati Bengals (6)", - "sF": "31", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Jan 7, 2012", - "at": "@", - "fav": "New Orleans Saints (3)", - "und": "Detroit Lions (6)", - "sF": "45", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Jan 8, 2012", - "at": "@", - "fav": "New York Giants (4)", - "und": "Atlanta Falcons (5)", - "sF": "24", - "sU": "2", - "spread": "3", - "ou": null - }, - { - "date": "Jan 8, 2012", - "at": null, - "fav": "Pittsburgh Steelers (5)", - "und": "Denver Broncos (4)", - "sF": "23", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Jan 14, 2012", - "at": null, - "fav": "New Orleans Saints (3)", - "und": "San Francisco 49ers (2)", - "sF": "32", - "sU": "36", - "spread": "3", - "ou": null - }, - { - "date": "Jan 14, 2012", - "at": "@", - "fav": "New England Patriots (1)", - "und": "Denver Broncos (4)", - "sF": "45", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Jan 15, 2012", - "at": "@", - "fav": "Baltimore Ravens (2)", - "und": "Houston Texans (3)", - "sF": "20", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Jan 15, 2012", - "at": "@", - "fav": "Green Bay Packers (1)", - "und": "New York Giants (4)", - "sF": "20", - "sU": "37", - "spread": "8", - "ou": null - }, - { - "date": "Jan 22, 2012", - "at": "@", - "fav": "New England Patriots (1)", - "und": "Baltimore Ravens (2)", - "sF": "23", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Jan 22, 2012", - "at": "@", - "fav": "San Francisco 49ers (2)", - "und": "New York Giants (4)", - "sF": "17", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Feb 5, 2012", - "at": "N", - "fav": "New England Patriots (1)", - "und": "New York Giants (4)", - "sF": "17", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 5, 2012", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Sep 9, 2012", - "at": "@", - "fav": "Chicago Bears", - "und": "Indianapolis Colts", - "sF": "41", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Sep 9, 2012", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Cleveland Browns", - "sF": "17", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Sep 9, 2012", - "at": "@", - "fav": "Detroit Lions", - "und": "St Louis Rams", - "sF": "27", - "sU": "23", - "spread": "9", - "ou": null - }, - { - "date": "Sep 9, 2012", - "at": "@", - "fav": "Houston Texans", - "und": "Miami Dolphins", - "sF": "30", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Sep 9, 2012", - "at": null, - "fav": "Atlanta Falcons", - "und": "Kansas City Chiefs", - "sF": "40", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 9, 2012", - "at": "@", - "fav": "New Orleans Saints", - "und": "Washington Redskins", - "sF": "32", - "sU": "40", - "spread": "9", - "ou": null - }, - { - "date": "Sep 9, 2012", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "48", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2012", - "at": null, - "fav": "New England Patriots", - "und": "Tennessee Titans", - "sF": "34", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Sep 9, 2012", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Jacksonville Jaguars", - "sF": "26", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2012", - "at": null, - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "16", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2012", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "22", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Sep 9, 2012", - "at": null, - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2012", - "at": "@", - "fav": "Denver Broncos", - "und": "Pittsburgh Steelers", - "sF": "31", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Sep 10, 2012", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "44", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Sep 10, 2012", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "14", - "sU": "22", - "spread": "1", - "ou": null - }, - { - "date": "Sep 13, 2012", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "23", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Sep 16, 2012", - "at": "@", - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "35", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 2012", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "34", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Sep 16, 2012", - "at": null, - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "13", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Sep 16, 2012", - "at": "@", - "fav": "New England Patriots", - "und": "Arizona Cardinals", - "sF": "18", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Sep 16, 2012", - "at": null, - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "27", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 2012", - "at": null, - "fav": "Minnesota Vikings", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 2012", - "at": null, - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 16, 2012", - "at": "@", - "fav": "New York Giants", - "und": "Tampa Bay Buccaneers", - "sF": "41", - "sU": "34", - "spread": "8", - "ou": null - }, - { - "date": "Sep 16, 2012", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Baltimore Ravens", - "sF": "24", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 2012", - "at": null, - "fav": "Washington Redskins", - "und": "St Louis Rams", - "sF": "28", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 2012", - "at": null, - "fav": "Dallas Cowboys", - "und": "Seattle Seahawks", - "sF": "7", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 2012", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "27", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 16, 2012", - "at": "@", - "fav": "San Diego Chargers", - "und": "Tennessee Titans", - "sF": "38", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 16, 2012", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "27", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Sep 17, 2012", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Denver Broncos", - "sF": "27", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 2012", - "at": "@", - "fav": "Carolina Panthers", - "und": "New York Giants", - "sF": "7", - "sU": "36", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2012", - "at": null, - "fav": "Buffalo Bills", - "und": "Cleveland Browns", - "sF": "24", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2012", - "at": "@", - "fav": "New Orleans Saints", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Sep 23, 2012", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2012", - "at": null, - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2012", - "at": null, - "fav": "Detroit Lions", - "und": "Tennessee Titans", - "sF": "41", - "sU": "44", - "spread": "4", - "ou": null - }, - { - "date": "Sep 23, 2012", - "at": "@", - "fav": "Washington Redskins", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2012", - "at": "@", - "fav": "Chicago Bears", - "und": "St Louis Rams", - "sF": "23", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Sep 23, 2012", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Tampa Bay Buccaneers", - "sF": "16", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 23, 2012", - "at": null, - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 23, 2012", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "6", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2012", - "at": "@", - "fav": "San Diego Chargers", - "und": "Atlanta Falcons", - "sF": "3", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2012", - "at": null, - "fav": "Houston Texans", - "und": "Denver Broncos", - "sF": "31", - "sU": "25", - "spread": "1", - "ou": null - }, - { - "date": "Sep 23, 2012", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Oakland Raiders", - "sF": "31", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Sep 23, 2012", - "at": "@", - "fav": "Baltimore Ravens", - "und": "New England Patriots", - "sF": "31", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 2012", - "at": null, - "fav": "Green Bay Packers", - "und": "Seattle Seahawks", - "sF": "12", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 2012", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "23", - "sU": "16", - "spread": "11", - "ou": null - }, - { - "date": "Sep 30, 2012", - "at": null, - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "13", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 2012", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "52", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Sep 30, 2012", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "30", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Sep 30, 2012", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 30, 2012", - "at": "@", - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "38", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Sep 30, 2012", - "at": null, - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "37", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 2012", - "at": null, - "fav": "San Francisco 49ers", - "und": "New York Jets", - "sF": "34", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Sep 30, 2012", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Miami Dolphins", - "sF": "24", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 30, 2012", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "37", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Sep 30, 2012", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Sep 30, 2012", - "at": "@", - "fav": "Green Bay Packers", - "und": "New Orleans Saints", - "sF": "28", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Sep 30, 2012", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Washington Redskins", - "sF": "22", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 2012", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "19", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 1, 2012", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "18", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 2012", - "at": null, - "fav": "Arizona Cardinals", - "und": "St Louis Rams", - "sF": "3", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 7, 2012", - "at": null, - "fav": "Baltimore Ravens", - "und": "Kansas City Chiefs", - "sF": "9", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 2012", - "at": "@", - "fav": "New York Giants", - "und": "Cleveland Browns", - "sF": "41", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Oct 7, 2012", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Philadelphia Eagles", - "sF": "16", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 7, 2012", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Miami Dolphins", - "sF": "13", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 2012", - "at": null, - "fav": "Green Bay Packers", - "und": "Indianapolis Colts", - "sF": "27", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 2012", - "at": null, - "fav": "Atlanta Falcons", - "und": "Washington Redskins", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 2012", - "at": "@", - "fav": "Carolina Panthers", - "und": "Seattle Seahawks", - "sF": "12", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Oct 7, 2012", - "at": null, - "fav": "Chicago Bears", - "und": "Jacksonville Jaguars", - "sF": "41", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 2012", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tennessee Titans", - "sF": "30", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 2012", - "at": "@", - "fav": "New England Patriots", - "und": "Denver Broncos", - "sF": "31", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 2012", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Buffalo Bills", - "sF": "45", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Oct 7, 2012", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Diego Chargers", - "sF": "31", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 2012", - "at": null, - "fav": "Houston Texans", - "und": "New York Jets", - "sF": "23", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 11, 2012", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Tennessee Titans", - "sF": "23", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Oct 14, 2012", - "at": "@", - "fav": "Miami Dolphins", - "und": "St Louis Rams", - "sF": "17", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Oct 14, 2012", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Kansas City Chiefs", - "sF": "38", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Oct 14, 2012", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Oakland Raiders", - "sF": "23", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Oct 14, 2012", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 2012", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "24", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Oct 14, 2012", - "at": "@", - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "35", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 2012", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Detroit Lions", - "sF": "23", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 2012", - "at": null, - "fav": "New England Patriots", - "und": "Seattle Seahawks", - "sF": "23", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Oct 14, 2012", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Buffalo Bills", - "sF": "16", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Oct 14, 2012", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "3", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Oct 14, 2012", - "at": null, - "fav": "Minnesota Vikings", - "und": "Washington Redskins", - "sF": "26", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Oct 14, 2012", - "at": "@", - "fav": "Houston Texans", - "und": "Green Bay Packers", - "sF": "24", - "sU": "42", - "spread": "4", - "ou": null - }, - { - "date": "Oct 18, 2012", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "13", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Oct 21, 2012", - "at": null, - "fav": "Green Bay Packers", - "und": "St Louis Rams", - "sF": "30", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Oct 21, 2012", - "at": "@", - "fav": "Buffalo Bills", - "und": "Tennessee Titans", - "sF": "34", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Oct 21, 2012", - "at": "@", - "fav": "Houston Texans", - "und": "Baltimore Ravens", - "sF": "43", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 21, 2012", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Cleveland Browns", - "sF": "17", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 21, 2012", - "at": null, - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "35", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Oct 21, 2012", - "at": null, - "fav": "Dallas Cowboys", - "und": "Carolina Panthers", - "sF": "19", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 21, 2012", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "27", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 21, 2012", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Arizona Cardinals", - "sF": "21", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 21, 2012", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "29", - "sU": "26", - "spread": "10", - "ou": null - }, - { - "date": "Oct 21, 2012", - "at": "@", - "fav": "Oakland Raiders", - "und": "Jacksonville Jaguars", - "sF": "26", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 21, 2012", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Oct 22, 2012", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "13", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 2012", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "36", - "spread": "5", - "ou": null - }, - { - "date": "Oct 28, 2012", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "27", - "sU": "12", - "spread": "4", - "ou": null - }, - { - "date": "Oct 28, 2012", - "at": "@", - "fav": "Chicago Bears", - "und": "Carolina Panthers", - "sF": "23", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Oct 28, 2012", - "at": "@", - "fav": "Detroit Lions", - "und": "Seattle Seahawks", - "sF": "28", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 2012", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 2012", - "at": "@", - "fav": "Green Bay Packers", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "15", - "spread": "16", - "ou": null - }, - { - "date": "Oct 28, 2012", - "at": null, - "fav": "San Diego Chargers", - "und": "Cleveland Browns", - "sF": "6", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 2012", - "at": "N", - "fav": "New England Patriots", - "und": "St Louis Rams", - "sF": "45", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 28, 2012", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "9", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Oct 28, 2012", - "at": "@", - "fav": "Tennessee Titans", - "und": "Indianapolis Colts", - "sF": "13", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 2012", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "16", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Oct 28, 2012", - "at": null, - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "29", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 28, 2012", - "at": "@", - "fav": "Denver Broncos", - "und": "New Orleans Saints", - "sF": "34", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 2012", - "at": null, - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 1, 2012", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "31", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 4, 2012", - "at": null, - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Nov 4, 2012", - "at": "@", - "fav": "Green Bay Packers", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 4, 2012", - "at": "@", - "fav": "Houston Texans", - "und": "Buffalo Bills", - "sF": "21", - "sU": "9", - "spread": "11", - "ou": null - }, - { - "date": "Nov 4, 2012", - "at": null, - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 4, 2012", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "25", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 2012", - "at": null, - "fav": "Detroit Lions", - "und": "Jacksonville Jaguars", - "sF": "31", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 4, 2012", - "at": null, - "fav": "Chicago Bears", - "und": "Tennessee Titans", - "sF": "51", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Nov 4, 2012", - "at": "@", - "fav": "Washington Redskins", - "und": "Carolina Panthers", - "sF": "13", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 2012", - "at": "@", - "fav": "Oakland Raiders", - "und": "Tampa Bay Buccaneers", - "sF": "32", - "sU": "42", - "spread": "1", - "ou": null - }, - { - "date": "Nov 4, 2012", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Minnesota Vikings", - "sF": "30", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 4, 2012", - "at": "@", - "fav": "New York Giants", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 2012", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Dallas Cowboys", - "sF": "19", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Nov 5, 2012", - "at": "@", - "fav": "New Orleans Saints", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 2012", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 2012", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Oakland Raiders", - "sF": "55", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 11, 2012", - "at": null, - "fav": "Denver Broncos", - "und": "Carolina Panthers", - "sF": "36", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Nov 11, 2012", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "37", - "sU": "31", - "spread": "13", - "ou": null - }, - { - "date": "Nov 11, 2012", - "at": null, - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "27", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Nov 11, 2012", - "at": null, - "fav": "New York Giants", - "und": "Cincinnati Bengals", - "sF": "13", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 11, 2012", - "at": "@", - "fav": "Miami Dolphins", - "und": "Tennessee Titans", - "sF": "3", - "sU": "37", - "spread": "7", - "ou": null - }, - { - "date": "Nov 11, 2012", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "San Diego Chargers", - "sF": "34", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 2012", - "at": null, - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 2012", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New York Jets", - "sF": "28", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 11, 2012", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 11, 2012", - "at": "@", - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "24", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Nov 11, 2012", - "at": "@", - "fav": "Chicago Bears", - "und": "Houston Texans", - "sF": "6", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Nov 12, 2012", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "16", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Nov 15, 2012", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "19", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 18, 2012", - "at": "@", - "fav": "St Louis Rams", - "und": "New York Jets", - "sF": "13", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 2012", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "24", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 2012", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Arizona Cardinals", - "sF": "23", - "sU": "19", - "spread": "9", - "ou": null - }, - { - "date": "Nov 18, 2012", - "at": "@", - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "43", - "sU": "37", - "spread": "15", - "ou": null - }, - { - "date": "Nov 18, 2012", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 2012", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "31", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 2012", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "27", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 18, 2012", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "23", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 18, 2012", - "at": null, - "fav": "New Orleans Saints", - "und": "Oakland Raiders", - "sF": "38", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 18, 2012", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "30", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 18, 2012", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "59", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Nov 18, 2012", - "at": null, - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 2012", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "32", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 22, 2012", - "at": null, - "fav": "Houston Texans", - "und": "Detroit Lions", - "sF": "34", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 22, 2012", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "31", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 2012", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "49", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Nov 25, 2012", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 25, 2012", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Oakland Raiders", - "sF": "34", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Nov 25, 2012", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "14", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 25, 2012", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Nov 25, 2012", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Buffalo Bills", - "sF": "20", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 2012", - "at": null, - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "19", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 2012", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Nov 25, 2012", - "at": null, - "fav": "Seattle Seahawks", - "und": "Miami Dolphins", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 2012", - "at": null, - "fav": "Baltimore Ravens", - "und": "San Diego Chargers", - "sF": "16", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Nov 25, 2012", - "at": "@", - "fav": "Arizona Cardinals", - "und": "St Louis Rams", - "sF": "17", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Nov 25, 2012", - "at": null, - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "31", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 25, 2012", - "at": "@", - "fav": "New York Giants", - "und": "Green Bay Packers", - "sF": "38", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 26, 2012", - "at": null, - "fav": "Carolina Panthers", - "und": "Philadelphia Eagles", - "sF": "30", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 2012", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "23", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 2012", - "at": null, - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "13", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Dec 2, 2012", - "at": "@", - "fav": "Buffalo Bills", - "und": "Jacksonville Jaguars", - "sF": "34", - "sU": "18", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 2012", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 2, 2012", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "23", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Dec 2, 2012", - "at": null, - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "24", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 2, 2012", - "at": "@", - "fav": "Chicago Bears", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 2012", - "at": "@", - "fav": "Detroit Lions", - "und": "Indianapolis Colts", - "sF": "33", - "sU": "35", - "spread": "7", - "ou": null - }, - { - "date": "Dec 2, 2012", - "at": null, - "fav": "Carolina Panthers", - "und": "Kansas City Chiefs", - "sF": "21", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 2012", - "at": "@", - "fav": "New York Jets", - "und": "Arizona Cardinals", - "sF": "7", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 2012", - "at": "@", - "fav": "Denver Broncos", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Dec 2, 2012", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Dec 2, 2012", - "at": null, - "fav": "Cleveland Browns", - "und": "Oakland Raiders", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 2, 2012", - "at": null, - "fav": "Cincinnati Bengals", - "und": "San Diego Chargers", - "sF": "20", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 2, 2012", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "33", - "spread": "10", - "ou": null - }, - { - "date": "Dec 3, 2012", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "16", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 2012", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "26", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Dec 9, 2012", - "at": "@", - "fav": "Buffalo Bills", - "und": "St Louis Rams", - "sF": "12", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 2012", - "at": "@", - "fav": "Cleveland Browns", - "und": "Kansas City Chiefs", - "sF": "30", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 9, 2012", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "27", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Dec 9, 2012", - "at": null, - "fav": "New York Jets", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 2012", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Diego Chargers", - "sF": "24", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Dec 9, 2012", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Dallas Cowboys", - "sF": "19", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 2012", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Dec 9, 2012", - "at": "@", - "fav": "Washington Redskins", - "und": "Baltimore Ravens", - "sF": "31", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Dec 9, 2012", - "at": null, - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "20", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 2012", - "at": null, - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Dec 9, 2012", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Miami Dolphins", - "sF": "27", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Dec 9, 2012", - "at": "@", - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "52", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Dec 9, 2012", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "58", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Dec 9, 2012", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "27", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 10, 2012", - "at": "@", - "fav": "New England Patriots", - "und": "Houston Texans", - "sF": "42", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Dec 13, 2012", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Philadelphia Eagles", - "sF": "34", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Dec 16, 2012", - "at": "@", - "fav": "St Louis Rams", - "und": "Minnesota Vikings", - "sF": "22", - "sU": "36", - "spread": "2", - "ou": null - }, - { - "date": "Dec 16, 2012", - "at": null, - "fav": "Denver Broncos", - "und": "Baltimore Ravens", - "sF": "34", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2012", - "at": "@", - "fav": "Houston Texans", - "und": "Indianapolis Colts", - "sF": "29", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Dec 16, 2012", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "21", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2012", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Redskins", - "sF": "21", - "sU": "38", - "spread": "4", - "ou": null - }, - { - "date": "Dec 16, 2012", - "at": "@", - "fav": "Miami Dolphins", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Dec 16, 2012", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "41", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2012", - "at": null, - "fav": "Detroit Lions", - "und": "Arizona Cardinals", - "sF": "10", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Dec 16, 2012", - "at": null, - "fav": "Seattle Seahawks", - "und": "Buffalo Bills", - "sF": "50", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Dec 16, 2012", - "at": "@", - "fav": "San Diego Chargers", - "und": "Carolina Panthers", - "sF": "7", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2012", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 16, 2012", - "at": "@", - "fav": "Oakland Raiders", - "und": "Kansas City Chiefs", - "sF": "15", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Dec 16, 2012", - "at": "@", - "fav": "New England Patriots", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "41", - "spread": "5", - "ou": null - }, - { - "date": "Dec 17, 2012", - "at": "@", - "fav": "Tennessee Titans", - "und": "New York Jets", - "sF": "14", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Dec 22, 2012", - "at": null, - "fav": "Atlanta Falcons", - "und": "Detroit Lions", - "sF": "31", - "sU": "18", - "spread": "4", - "ou": null - }, - { - "date": "Dec 23, 2012", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "31", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 2012", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tennessee Titans", - "sF": "55", - "sU": "7", - "spread": "11", - "ou": null - }, - { - "date": "Dec 23, 2012", - "at": null, - "fav": "New England Patriots", - "und": "Jacksonville Jaguars", - "sF": "23", - "sU": "16", - "spread": "14", - "ou": null - }, - { - "date": "Dec 23, 2012", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "24", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 23, 2012", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 2012", - "at": "@", - "fav": "Houston Texans", - "und": "Minnesota Vikings", - "sF": "6", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Dec 23, 2012", - "at": null, - "fav": "Indianapolis Colts", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 23, 2012", - "at": "@", - "fav": "New York Jets", - "und": "San Diego Chargers", - "sF": "17", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 2012", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 23, 2012", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "St Louis Rams", - "sF": "13", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 2012", - "at": "@", - "fav": "Carolina Panthers", - "und": "Oakland Raiders", - "sF": "17", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Dec 23, 2012", - "at": "@", - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "34", - "sU": "12", - "spread": "11", - "ou": null - }, - { - "date": "Dec 23, 2012", - "at": null, - "fav": "Chicago Bears", - "und": "Arizona Cardinals", - "sF": "28", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 23, 2012", - "at": null, - "fav": "New York Giants", - "und": "Baltimore Ravens", - "sF": "14", - "sU": "33", - "spread": "2", - "ou": null - }, - { - "date": "Dec 23, 2012", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "42", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 30, 2012", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Dec 30, 2012", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "28", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Dec 30, 2012", - "at": null, - "fav": "Houston Texans", - "und": "Indianapolis Colts", - "sF": "16", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Dec 30, 2012", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "24", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Dec 30, 2012", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "38", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Dec 30, 2012", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Baltimore Ravens", - "sF": "23", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 30, 2012", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "26", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 30, 2012", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "38", - "sU": "44", - "spread": "4", - "ou": null - }, - { - "date": "Dec 30, 2012", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "42", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 30, 2012", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "24", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Dec 30, 2012", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "38", - "sU": "3", - "spread": "17", - "ou": null - }, - { - "date": "Dec 30, 2012", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "34", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Dec 30, 2012", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "28", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Dec 30, 2012", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "13", - "spread": "16", - "ou": null - }, - { - "date": "Dec 30, 2012", - "at": "@", - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "20", - "sU": "13", - "spread": "12", - "ou": null - }, - { - "date": "Dec 30, 2012", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "28", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Jan 5, 2013", - "at": "@", - "fav": "Houston Texans (3)", - "und": "Cincinnati Bengals (6)", - "sF": "19", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Jan 5, 2013", - "at": "@", - "fav": "Green Bay Packers (3)", - "und": "Minnesota Vikings (6)", - "sF": "24", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Jan 6, 2013", - "at": "@", - "fav": "Baltimore Ravens (4)", - "und": "Indianapolis Colts (5)", - "sF": "24", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Jan 6, 2013", - "at": null, - "fav": "Seattle Seahawks (5)", - "und": "Washington Redskins (4)", - "sF": "24", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Jan 12, 2013", - "at": "@", - "fav": "Denver Broncos (1)", - "und": "Baltimore Ravens (4)", - "sF": "35", - "sU": "38", - "spread": "9", - "ou": null - }, - { - "date": "Jan 12, 2013", - "at": "@", - "fav": "San Francisco 49ers (2)", - "und": "Green Bay Packers (3)", - "sF": "45", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Jan 13, 2013", - "at": "@", - "fav": "Atlanta Falcons (1)", - "und": "Seattle Seahawks (5)", - "sF": "30", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Jan 13, 2013", - "at": "@", - "fav": "New England Patriots (2)", - "und": "Houston Texans (3)", - "sF": "41", - "sU": "28", - "spread": "9", - "ou": null - }, - { - "date": "Jan 20, 2013", - "at": null, - "fav": "San Francisco 49ers (2)", - "und": "Atlanta Falcons (1)", - "sF": "28", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Jan 20, 2013", - "at": "@", - "fav": "New England Patriots (2)", - "und": "Baltimore Ravens (4)", - "sF": "13", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Feb 3, 2013", - "at": "N", - "fav": "San Francisco 49ers (2)", - "und": "Baltimore Ravens (4)", - "sF": "31", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Sep 5, 2013", - "at": "@", - "fav": "Denver Broncos", - "und": "Baltimore Ravens", - "sF": "49", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Sep 8, 2013", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "23", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Sep 8, 2013", - "at": "@", - "fav": "Chicago Bears", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 2013", - "at": "@", - "fav": "Cleveland Browns", - "und": "Miami Dolphins", - "sF": "10", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Sep 8, 2013", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "34", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Sep 8, 2013", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Oakland Raiders", - "sF": "21", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Sep 8, 2013", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Tennessee Titans", - "sF": "9", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Sep 8, 2013", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "2", - "spread": "4", - "ou": null - }, - { - "date": "Sep 8, 2013", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 2013", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "New York Jets", - "sF": "17", - "sU": "18", - "spread": "6", - "ou": null - }, - { - "date": "Sep 8, 2013", - "at": null, - "fav": "Seattle Seahawks", - "und": "Carolina Panthers", - "sF": "12", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 2013", - "at": "@", - "fav": "St Louis Rams", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 2013", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "34", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Sep 8, 2013", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "36", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2013", - "at": "@", - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "33", - "spread": "4", - "ou": null - }, - { - "date": "Sep 9, 2013", - "at": null, - "fav": "Houston Texans", - "und": "San Diego Chargers", - "sF": "31", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Sep 12, 2013", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "13", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Sep 15, 2013", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "14", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Sep 15, 2013", - "at": null, - "fav": "Carolina Panthers", - "und": "Buffalo Bills", - "sF": "23", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 2013", - "at": "@", - "fav": "Green Bay Packers", - "und": "Washington Redskins", - "sF": "38", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Sep 15, 2013", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Miami Dolphins", - "sF": "20", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 2013", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 2013", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "San Diego Chargers", - "sF": "30", - "sU": "33", - "spread": "7", - "ou": null - }, - { - "date": "Sep 15, 2013", - "at": "@", - "fav": "Atlanta Falcons", - "und": "St Louis Rams", - "sF": "31", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Sep 15, 2013", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Sep 15, 2013", - "at": "@", - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "30", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Sep 15, 2013", - "at": null, - "fav": "Detroit Lions", - "und": "Arizona Cardinals", - "sF": "21", - "sU": "25", - "spread": "2", - "ou": null - }, - { - "date": "Sep 15, 2013", - "at": null, - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "16", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 15, 2013", - "at": null, - "fav": "Denver Broncos", - "und": "New York Giants", - "sF": "41", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Sep 15, 2013", - "at": "@", - "fav": "Oakland Raiders", - "und": "Jacksonville Jaguars", - "sF": "19", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Sep 15, 2013", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "29", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Sep 16, 2013", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 19, 2013", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Kansas City Chiefs", - "sF": "16", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 2013", - "at": "@", - "fav": "Dallas Cowboys", - "und": "St Louis Rams", - "sF": "31", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 2013", - "at": "@", - "fav": "New England Patriots", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Sep 22, 2013", - "at": null, - "fav": "Houston Texans", - "und": "Baltimore Ravens", - "sF": "9", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Sep 22, 2013", - "at": null, - "fav": "New York Giants", - "und": "Carolina Panthers", - "sF": "0", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 2013", - "at": null, - "fav": "Green Bay Packers", - "und": "Cincinnati Bengals", - "sF": "30", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 2013", - "at": "@", - "fav": "New Orleans Saints", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 22, 2013", - "at": "@", - "fav": "Tennessee Titans", - "und": "San Diego Chargers", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 2013", - "at": null, - "fav": "Detroit Lions", - "und": "Washington Redskins", - "sF": "27", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Sep 22, 2013", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Cleveland Browns", - "sF": "27", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Sep 22, 2013", - "at": "@", - "fav": "Miami Dolphins", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Sep 22, 2013", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "27", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 22, 2013", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Indianapolis Colts", - "sF": "7", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Sep 22, 2013", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Jacksonville Jaguars", - "sF": "45", - "sU": "17", - "spread": "20", - "ou": null - }, - { - "date": "Sep 22, 2013", - "at": null, - "fav": "Chicago Bears", - "und": "Pittsburgh Steelers", - "sF": "40", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Sep 23, 2013", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "37", - "sU": "21", - "spread": "16", - "ou": null - }, - { - "date": "Sep 26, 2013", - "at": null, - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "35", - "sU": "11", - "spread": "4", - "ou": null - }, - { - "date": "Sep 29, 2013", - "at": null, - "fav": "Baltimore Ravens", - "und": "Buffalo Bills", - "sF": "20", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Sep 29, 2013", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Giants", - "sF": "31", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Sep 29, 2013", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "40", - "sU": "32", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 2013", - "at": null, - "fav": "Seattle Seahawks", - "und": "Houston Texans", - "sF": "23", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 2013", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Arizona Cardinals", - "sF": "10", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 2013", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "6", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 29, 2013", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "37", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Sep 29, 2013", - "at": "N", - "fav": "Pittsburgh Steelers", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 2013", - "at": "@", - "fav": "Tennessee Titans", - "und": "New York Jets", - "sF": "38", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 2013", - "at": "@", - "fav": "Denver Broncos", - "und": "Philadelphia Eagles", - "sF": "52", - "sU": "20", - "spread": "11", - "ou": null - }, - { - "date": "Sep 29, 2013", - "at": null, - "fav": "Washington Redskins", - "und": "Oakland Raiders", - "sF": "24", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 29, 2013", - "at": null, - "fav": "Dallas Cowboys", - "und": "San Diego Chargers", - "sF": "21", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Sep 29, 2013", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New England Patriots", - "sF": "23", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 2013", - "at": "@", - "fav": "New Orleans Saints", - "und": "Miami Dolphins", - "sF": "38", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 2013", - "at": "@", - "fav": "Cleveland Browns", - "und": "Buffalo Bills", - "sF": "37", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Oct 6, 2013", - "at": "@", - "fav": "St Louis Rams", - "und": "Jacksonville Jaguars", - "sF": "34", - "sU": "20", - "spread": "11", - "ou": null - }, - { - "date": "Oct 6, 2013", - "at": null, - "fav": "New Orleans Saints", - "und": "Chicago Bears", - "sF": "26", - "sU": "18", - "spread": "1", - "ou": null - }, - { - "date": "Oct 6, 2013", - "at": null, - "fav": "New England Patriots", - "und": "Cincinnati Bengals", - "sF": "6", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 6, 2013", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "22", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Oct 6, 2013", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Ravens", - "sF": "23", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Oct 6, 2013", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "36", - "spread": "1", - "ou": null - }, - { - "date": "Oct 6, 2013", - "at": null, - "fav": "Seattle Seahawks", - "und": "Indianapolis Colts", - "sF": "28", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2013", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Tennessee Titans", - "sF": "26", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2013", - "at": null, - "fav": "Carolina Panthers", - "und": "Arizona Cardinals", - "sF": "6", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2013", - "at": null, - "fav": "Denver Broncos", - "und": "Dallas Cowboys", - "sF": "51", - "sU": "48", - "spread": "9", - "ou": null - }, - { - "date": "Oct 6, 2013", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Houston Texans", - "sF": "34", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Oct 6, 2013", - "at": null, - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "17", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Oct 7, 2013", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New York Jets", - "sF": "28", - "sU": "30", - "spread": "10", - "ou": null - }, - { - "date": "Oct 10, 2013", - "at": "@", - "fav": "Chicago Bears", - "und": "New York Giants", - "sF": "27", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Oct 13, 2013", - "at": null, - "fav": "Green Bay Packers", - "und": "Baltimore Ravens", - "sF": "19", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 13, 2013", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Buffalo Bills", - "sF": "27", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 2013", - "at": null, - "fav": "Detroit Lions", - "und": "Cleveland Browns", - "sF": "31", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 13, 2013", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "24", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 13, 2013", - "at": "@", - "fav": "Houston Texans", - "und": "St Louis Rams", - "sF": "13", - "sU": "38", - "spread": "9", - "ou": null - }, - { - "date": "Oct 13, 2013", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "19", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Oct 13, 2013", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 2013", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Carolina Panthers", - "sF": "10", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Oct 13, 2013", - "at": "@", - "fav": "Denver Broncos", - "und": "Jacksonville Jaguars", - "sF": "35", - "sU": "19", - "spread": "26", - "ou": null - }, - { - "date": "Oct 13, 2013", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Tennessee Titans", - "sF": "20", - "sU": "13", - "spread": "11", - "ou": null - }, - { - "date": "Oct 13, 2013", - "at": "@", - "fav": "New England Patriots", - "und": "New Orleans Saints", - "sF": "30", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 13, 2013", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "32", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Oct 13, 2013", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "31", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Oct 17, 2013", - "at": null, - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "34", - "sU": "22", - "spread": "4", - "ou": null - }, - { - "date": "Oct 20, 2013", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 20, 2013", - "at": "@", - "fav": "Detroit Lions", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 20, 2013", - "at": null, - "fav": "San Diego Chargers", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Oct 20, 2013", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "21", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 20, 2013", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "3", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 20, 2013", - "at": "@", - "fav": "Carolina Panthers", - "und": "St Louis Rams", - "sF": "30", - "sU": "15", - "spread": "7", - "ou": null - }, - { - "date": "Oct 20, 2013", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "27", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 2013", - "at": null, - "fav": "Chicago Bears", - "und": "Washington Redskins", - "sF": "41", - "sU": "45", - "spread": "1", - "ou": null - }, - { - "date": "Oct 20, 2013", - "at": null, - "fav": "San Francisco 49ers", - "und": "Tennessee Titans", - "sF": "31", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 2013", - "at": "@", - "fav": "Green Bay Packers", - "und": "Cleveland Browns", - "sF": "31", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Oct 20, 2013", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "19", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Oct 20, 2013", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Texans", - "sF": "17", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Oct 20, 2013", - "at": null, - "fav": "Denver Broncos", - "und": "Indianapolis Colts", - "sF": "33", - "sU": "39", - "spread": "6", - "ou": null - }, - { - "date": "Oct 21, 2013", - "at": "@", - "fav": "New York Giants", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 2013", - "at": null, - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 27, 2013", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cleveland Browns", - "sF": "23", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 27, 2013", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "27", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 27, 2013", - "at": "@", - "fav": "New Orleans Saints", - "und": "Buffalo Bills", - "sF": "35", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 27, 2013", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "7", - "sU": "15", - "spread": "5", - "ou": null - }, - { - "date": "Oct 27, 2013", - "at": "@", - "fav": "Detroit Lions", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 2013", - "at": "N", - "fav": "San Francisco 49ers", - "und": "Jacksonville Jaguars", - "sF": "42", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Oct 27, 2013", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Oakland Raiders", - "sF": "18", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 2013", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New York Jets", - "sF": "49", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Oct 27, 2013", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 2013", - "at": "@", - "fav": "Denver Broncos", - "und": "Washington Redskins", - "sF": "45", - "sU": "21", - "spread": "11", - "ou": null - }, - { - "date": "Oct 27, 2013", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "44", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Oct 28, 2013", - "at": null, - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "14", - "sU": "9", - "spread": "13", - "ou": null - }, - { - "date": "Oct 31, 2013", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Miami Dolphins", - "sF": "20", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 2013", - "at": null, - "fav": "Tennessee Titans", - "und": "St Louis Rams", - "sF": "28", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 2013", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "23", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Nov 3, 2013", - "at": "@", - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Nov 3, 2013", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Nov 3, 2013", - "at": null, - "fav": "New Orleans Saints", - "und": "New York Jets", - "sF": "20", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Nov 3, 2013", - "at": "@", - "fav": "Oakland Raiders", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "49", - "spread": "1", - "ou": null - }, - { - "date": "Nov 3, 2013", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Nov 3, 2013", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "18", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Nov 3, 2013", - "at": "@", - "fav": "New England Patriots", - "und": "Pittsburgh Steelers", - "sF": "55", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Nov 3, 2013", - "at": null, - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "27", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Nov 4, 2013", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "20", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Nov 7, 2013", - "at": null, - "fav": "Washington Redskins", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Nov 10, 2013", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 10, 2013", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Green Bay Packers", - "sF": "27", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Nov 10, 2013", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Buffalo Bills", - "sF": "23", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 10, 2013", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "29", - "spread": "11", - "ou": null - }, - { - "date": "Nov 10, 2013", - "at": null, - "fav": "Seattle Seahawks", - "und": "Atlanta Falcons", - "sF": "33", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 2013", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "21", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Nov 10, 2013", - "at": "@", - "fav": "Indianapolis Colts", - "und": "St Louis Rams", - "sF": "8", - "sU": "38", - "spread": "7", - "ou": null - }, - { - "date": "Nov 10, 2013", - "at": "@", - "fav": "New York Giants", - "und": "Oakland Raiders", - "sF": "24", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 10, 2013", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Carolina Panthers", - "sF": "9", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 10, 2013", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Houston Texans", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 2013", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "28", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 10, 2013", - "at": "@", - "fav": "New Orleans Saints", - "und": "Dallas Cowboys", - "sF": "49", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 11, 2013", - "at": null, - "fav": "Miami Dolphins", - "und": "Tampa Bay Buccaneers", - "sF": "19", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Nov 14, 2013", - "at": null, - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "30", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 2013", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "14", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Nov 17, 2013", - "at": "@", - "fav": "Chicago Bears", - "und": "Baltimore Ravens", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 2013", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "41", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 17, 2013", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "24", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Nov 17, 2013", - "at": null, - "fav": "Detroit Lions", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 2013", - "at": "@", - "fav": "Houston Texans", - "und": "Oakland Raiders", - "sF": "23", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Nov 17, 2013", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "41", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Nov 17, 2013", - "at": null, - "fav": "Arizona Cardinals", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Nov 17, 2013", - "at": null, - "fav": "San Diego Chargers", - "und": "Miami Dolphins", - "sF": "16", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 2013", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 2013", - "at": "@", - "fav": "New York Giants", - "und": "Green Bay Packers", - "sF": "27", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 2013", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Minnesota Vikings", - "sF": "41", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Nov 17, 2013", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 18, 2013", - "at": "@", - "fav": "Carolina Panthers", - "und": "New England Patriots", - "sF": "24", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 2013", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 24, 2013", - "at": "@", - "fav": "St Louis Rams", - "und": "Chicago Bears", - "sF": "42", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 24, 2013", - "at": "@", - "fav": "Baltimore Ravens", - "und": "New York Jets", - "sF": "19", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 2013", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "26", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Nov 24, 2013", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "13", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Nov 24, 2013", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "11", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 24, 2013", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 24, 2013", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "38", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 2013", - "at": null, - "fav": "Carolina Panthers", - "und": "Miami Dolphins", - "sF": "20", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 2013", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Indianapolis Colts", - "sF": "40", - "sU": "11", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 2013", - "at": null, - "fav": "Tennessee Titans", - "und": "Oakland Raiders", - "sF": "23", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Nov 24, 2013", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "21", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 24, 2013", - "at": null, - "fav": "Denver Broncos", - "und": "New England Patriots", - "sF": "31", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Nov 25, 2013", - "at": null, - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "27", - "sU": "6", - "spread": "5", - "ou": null - }, - { - "date": "Nov 28, 2013", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "40", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 28, 2013", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Oakland Raiders", - "sF": "31", - "sU": "24", - "spread": "8", - "ou": null - }, - { - "date": "Nov 28, 2013", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "22", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 2013", - "at": "@", - "fav": "Cleveland Browns", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "32", - "spread": "7", - "ou": null - }, - { - "date": "Dec 1, 2013", - "at": null, - "fav": "New England Patriots", - "und": "Houston Texans", - "sF": "34", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Dec 1, 2013", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "22", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 2013", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "3", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 1, 2013", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 2013", - "at": "@", - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Dec 1, 2013", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "23", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 1, 2013", - "at": "@", - "fav": "Buffalo Bills", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Dec 1, 2013", - "at": "@", - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "23", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 1, 2013", - "at": null, - "fav": "Cincinnati Bengals", - "und": "San Diego Chargers", - "sF": "17", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Dec 1, 2013", - "at": null, - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "35", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Dec 1, 2013", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "17", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Dec 2, 2013", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New Orleans Saints", - "sF": "34", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Dec 5, 2013", - "at": null, - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2013", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Indianapolis Colts", - "sF": "42", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Dec 8, 2013", - "at": "@", - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "22", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2013", - "at": "@", - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "27", - "sU": "26", - "spread": "9", - "ou": null - }, - { - "date": "Dec 8, 2013", - "at": "@", - "fav": "New York Jets", - "und": "Oakland Raiders", - "sF": "37", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2013", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Detroit Lions", - "sF": "34", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Dec 8, 2013", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Miami Dolphins", - "sF": "28", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2013", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Buffalo Bills", - "sF": "27", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Dec 8, 2013", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Minnesota Vikings", - "sF": "29", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 2013", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Washington Redskins", - "sF": "45", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2013", - "at": "@", - "fav": "Denver Broncos", - "und": "Tennessee Titans", - "sF": "51", - "sU": "28", - "spread": "13", - "ou": null - }, - { - "date": "Dec 8, 2013", - "at": "@", - "fav": "Arizona Cardinals", - "und": "St Louis Rams", - "sF": "30", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 8, 2013", - "at": "@", - "fav": "San Diego Chargers", - "und": "New York Giants", - "sF": "37", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 8, 2013", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "19", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 8, 2013", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "31", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 2013", - "at": "@", - "fav": "Chicago Bears", - "und": "Dallas Cowboys", - "sF": "45", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Dec 12, 2013", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "20", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Dec 15, 2013", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "25", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Dec 15, 2013", - "at": null, - "fav": "Buffalo Bills", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Dec 15, 2013", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "24", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Dec 15, 2013", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Minnesota Vikings", - "sF": "30", - "sU": "48", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 2013", - "at": null, - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "33", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 15, 2013", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Washington Redskins", - "sF": "27", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Dec 15, 2013", - "at": "@", - "fav": "Cleveland Browns", - "und": "Chicago Bears", - "sF": "31", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Dec 15, 2013", - "at": null, - "fav": "Seattle Seahawks", - "und": "New York Giants", - "sF": "23", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Dec 15, 2013", - "at": "@", - "fav": "Carolina Panthers", - "und": "New York Jets", - "sF": "30", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Dec 15, 2013", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "56", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Dec 15, 2013", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "36", - "sU": "37", - "spread": "4", - "ou": null - }, - { - "date": "Dec 15, 2013", - "at": null, - "fav": "New Orleans Saints", - "und": "St Louis Rams", - "sF": "16", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 2013", - "at": null, - "fav": "Arizona Cardinals", - "und": "Tennessee Titans", - "sF": "37", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 2013", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Dec 16, 2013", - "at": "@", - "fav": "Detroit Lions", - "und": "Baltimore Ravens", - "sF": "16", - "sU": "18", - "spread": "5", - "ou": null - }, - { - "date": "Dec 22, 2013", - "at": "@", - "fav": "St Louis Rams", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 2013", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "0", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Dec 22, 2013", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Minnesota Vikings", - "sF": "42", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 22, 2013", - "at": null, - "fav": "Denver Broncos", - "und": "Houston Texans", - "sF": "37", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Dec 22, 2013", - "at": null, - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Dec 22, 2013", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Indianapolis Colts", - "sF": "7", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Dec 22, 2013", - "at": "@", - "fav": "New York Jets", - "und": "Cleveland Browns", - "sF": "24", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 22, 2013", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "24", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 22, 2013", - "at": "@", - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "17", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 2013", - "at": "@", - "fav": "Detroit Lions", - "und": "New York Giants", - "sF": "20", - "sU": "23", - "spread": "9", - "ou": null - }, - { - "date": "Dec 22, 2013", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "10", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 22, 2013", - "at": "@", - "fav": "Baltimore Ravens", - "und": "New England Patriots", - "sF": "7", - "sU": "41", - "spread": "1", - "ou": null - }, - { - "date": "Dec 22, 2013", - "at": "@", - "fav": "Green Bay Packers", - "und": "Pittsburgh Steelers", - "sF": "31", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Dec 22, 2013", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "26", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Dec 22, 2013", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "54", - "sU": "11", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 2013", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Dec 29, 2013", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Baltimore Ravens", - "sF": "34", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 29, 2013", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "30", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Dec 29, 2013", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "7", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 29, 2013", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "20", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Dec 29, 2013", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "16", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 29, 2013", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "20", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Dec 29, 2013", - "at": null, - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Dec 29, 2013", - "at": null, - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 29, 2013", - "at": "@", - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 29, 2013", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "33", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 29, 2013", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "34", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 29, 2013", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "42", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Dec 29, 2013", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "34", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 29, 2013", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Dec 29, 2013", - "at": "@", - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "27", - "sU": "9", - "spread": "12", - "ou": null - }, - { - "date": "Dec 29, 2013", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Jan 4, 2014", - "at": null, - "fav": "Kansas City Chiefs (5)", - "und": "Indianapolis Colts (4)", - "sF": "44", - "sU": "45", - "spread": "1", - "ou": null - }, - { - "date": "Jan 4, 2014", - "at": "@", - "fav": "Philadelphia Eagles (3)", - "und": "New Orleans Saints (6)", - "sF": "24", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Jan 5, 2014", - "at": "@", - "fav": "Cincinnati Bengals (3)", - "und": "San Diego Chargers (6)", - "sF": "10", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Jan 5, 2014", - "at": null, - "fav": "San Francisco 49ers (5)", - "und": "Green Bay Packers (4)", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Jan 11, 2014", - "at": "@", - "fav": "Seattle Seahawks (1)", - "und": "New Orleans Saints (6)", - "sF": "23", - "sU": "15", - "spread": "9", - "ou": null - }, - { - "date": "Jan 11, 2014", - "at": "@", - "fav": "New England Patriots (2)", - "und": "Indianapolis Colts (4)", - "sF": "43", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Jan 12, 2014", - "at": null, - "fav": "San Francisco 49ers (5)", - "und": "Carolina Panthers (2)", - "sF": "23", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Jan 12, 2014", - "at": "@", - "fav": "Denver Broncos (1)", - "und": "San Diego Chargers (6)", - "sF": "24", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Jan 19, 2014", - "at": "@", - "fav": "Denver Broncos (1)", - "und": "New England Patriots (2)", - "sF": "26", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Jan 19, 2014", - "at": "@", - "fav": "Seattle Seahawks (1)", - "und": "San Francisco 49ers (5)", - "sF": "23", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Feb 2, 2014", - "at": "N", - "fav": "Denver Broncos (1)", - "und": "Seattle Seahawks (1)", - "sF": "8", - "sU": "43", - "spread": "2", - "ou": null - }, - { - "date": "Sep 4, 2014", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Green Bay Packers", - "sF": "36", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Sep 7, 2014", - "at": "@", - "fav": "Chicago Bears", - "und": "Buffalo Bills", - "sF": "20", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Sep 7, 2014", - "at": "@", - "fav": "St Louis Rams", - "und": "Minnesota Vikings", - "sF": "6", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 2014", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "16", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Sep 7, 2014", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Tennessee Titans", - "sF": "10", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 2014", - "at": "@", - "fav": "New York Jets", - "und": "Oakland Raiders", - "sF": "19", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Sep 7, 2014", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Jacksonville Jaguars", - "sF": "34", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Sep 7, 2014", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "30", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Sep 7, 2014", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 2014", - "at": "@", - "fav": "Houston Texans", - "und": "Washington Redskins", - "sF": "17", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 2014", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "20", - "sU": "33", - "spread": "5", - "ou": null - }, - { - "date": "Sep 7, 2014", - "at": null, - "fav": "San Francisco 49ers", - "und": "Dallas Cowboys", - "sF": "28", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 7, 2014", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "14", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 7, 2014", - "at": "@", - "fav": "Denver Broncos", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 8, 2014", - "at": "@", - "fav": "Detroit Lions", - "und": "New York Giants", - "sF": "35", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Sep 8, 2014", - "at": "@", - "fav": "Arizona Cardinals", - "und": "San Diego Chargers", - "sF": "18", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 2014", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "26", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 2014", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "29", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Sep 14, 2014", - "at": null, - "fav": "New Orleans Saints", - "und": "Cleveland Browns", - "sF": "24", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Sep 14, 2014", - "at": "@", - "fav": "Tennessee Titans", - "und": "Dallas Cowboys", - "sF": "10", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Sep 14, 2014", - "at": "@", - "fav": "Carolina Panthers", - "und": "Detroit Lions", - "sF": "24", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 2014", - "at": null, - "fav": "Arizona Cardinals", - "und": "New York Giants", - "sF": "25", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 2014", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 14, 2014", - "at": null, - "fav": "New England Patriots", - "und": "Minnesota Vikings", - "sF": "30", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Sep 14, 2014", - "at": "@", - "fav": "Washington Redskins", - "und": "Jacksonville Jaguars", - "sF": "41", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 14, 2014", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Diego Chargers", - "sF": "21", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Sep 14, 2014", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "St Louis Rams", - "sF": "17", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Sep 14, 2014", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Sep 14, 2014", - "at": "@", - "fav": "Green Bay Packers", - "und": "New York Jets", - "sF": "31", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 14, 2014", - "at": null, - "fav": "Houston Texans", - "und": "Oakland Raiders", - "sF": "30", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 14, 2014", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "20", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Sep 15, 2014", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 2014", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "56", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Sep 21, 2014", - "at": null, - "fav": "Dallas Cowboys", - "und": "St Louis Rams", - "sF": "34", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Sep 21, 2014", - "at": "@", - "fav": "Buffalo Bills", - "und": "San Diego Chargers", - "sF": "10", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Sep 21, 2014", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Tennessee Titans", - "sF": "33", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 21, 2014", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "23", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Sep 21, 2014", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "19", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Sep 21, 2014", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "44", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 21, 2014", - "at": "@", - "fav": "New England Patriots", - "und": "Oakland Raiders", - "sF": "16", - "sU": "9", - "spread": "14", - "ou": null - }, - { - "date": "Sep 21, 2014", - "at": "@", - "fav": "New York Giants", - "und": "Houston Texans", - "sF": "30", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 21, 2014", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "37", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Sep 21, 2014", - "at": "@", - "fav": "New Orleans Saints", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Sep 21, 2014", - "at": null, - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "14", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 2014", - "at": "@", - "fav": "Miami Dolphins", - "und": "Kansas City Chiefs", - "sF": "15", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 2014", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Denver Broncos", - "sF": "26", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 21, 2014", - "at": "@", - "fav": "Carolina Panthers", - "und": "Pittsburgh Steelers", - "sF": "19", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 2014", - "at": "@", - "fav": "New York Jets", - "und": "Chicago Bears", - "sF": "19", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Sep 25, 2014", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "14", - "sU": "45", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 2014", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Carolina Panthers", - "sF": "38", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 2014", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "38", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 28, 2014", - "at": "@", - "fav": "Houston Texans", - "und": "Buffalo Bills", - "sF": "23", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 2014", - "at": null, - "fav": "Detroit Lions", - "und": "New York Jets", - "sF": "24", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 28, 2014", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "41", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 28, 2014", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Sep 28, 2014", - "at": "N", - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "14", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 2014", - "at": "@", - "fav": "San Diego Chargers", - "und": "Jacksonville Jaguars", - "sF": "33", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Sep 28, 2014", - "at": null, - "fav": "Atlanta Falcons", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 2014", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "26", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Sep 28, 2014", - "at": null, - "fav": "New Orleans Saints", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 2014", - "at": null, - "fav": "New England Patriots", - "und": "Kansas City Chiefs", - "sF": "14", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2014", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "42", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 2014", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Oct 5, 2014", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "St Louis Rams", - "sF": "34", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Oct 5, 2014", - "at": "@", - "fav": "Tennessee Titans", - "und": "Cleveland Browns", - "sF": "28", - "sU": "29", - "spread": "1", - "ou": null - }, - { - "date": "Oct 5, 2014", - "at": "@", - "fav": "Carolina Panthers", - "und": "Chicago Bears", - "sF": "31", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 5, 2014", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Houston Texans", - "sF": "20", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 5, 2014", - "at": "@", - "fav": "Detroit Lions", - "und": "Buffalo Bills", - "sF": "14", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 5, 2014", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Baltimore Ravens", - "sF": "20", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 5, 2014", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "37", - "sU": "31", - "spread": "10", - "ou": null - }, - { - "date": "Oct 5, 2014", - "at": "@", - "fav": "New York Giants", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 5, 2014", - "at": "@", - "fav": "Denver Broncos", - "und": "Arizona Cardinals", - "sF": "41", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 5, 2014", - "at": "@", - "fav": "San Diego Chargers", - "und": "New York Jets", - "sF": "31", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Oct 5, 2014", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Kansas City Chiefs", - "sF": "22", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 6, 2014", - "at": null, - "fav": "Seattle Seahawks", - "und": "Washington Redskins", - "sF": "27", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 9, 2014", - "at": null, - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "33", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 12, 2014", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "22", - "sU": "37", - "spread": "1", - "ou": null - }, - { - "date": "Oct 12, 2014", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "31", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 12, 2014", - "at": null, - "fav": "Green Bay Packers", - "und": "Miami Dolphins", - "sF": "27", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Oct 12, 2014", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "3", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 12, 2014", - "at": null, - "fav": "Denver Broncos", - "und": "New York Jets", - "sF": "31", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Oct 12, 2014", - "at": null, - "fav": "Baltimore Ravens", - "und": "Tampa Bay Buccaneers", - "sF": "48", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 2014", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "16", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 12, 2014", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Carolina Panthers", - "sF": "37", - "sU": "37", - "spread": "7", - "ou": null - }, - { - "date": "Oct 12, 2014", - "at": null, - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "31", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Oct 12, 2014", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Washington Redskins", - "sF": "30", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Oct 12, 2014", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Chicago Bears", - "sF": "13", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 2014", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Dallas Cowboys", - "sF": "23", - "sU": "30", - "spread": "9", - "ou": null - }, - { - "date": "Oct 12, 2014", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "27", - "sU": "0", - "spread": "1", - "ou": null - }, - { - "date": "Oct 13, 2014", - "at": null, - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "31", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 2014", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "27", - "sU": "25", - "spread": "9", - "ou": null - }, - { - "date": "Oct 19, 2014", - "at": "@", - "fav": "Chicago Bears", - "und": "Miami Dolphins", - "sF": "14", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 2014", - "at": null, - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "26", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Oct 19, 2014", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Atlanta Falcons", - "sF": "29", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 19, 2014", - "at": "@", - "fav": "Buffalo Bills", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Oct 19, 2014", - "at": "@", - "fav": "Detroit Lions", - "und": "New Orleans Saints", - "sF": "24", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 19, 2014", - "at": "@", - "fav": "Green Bay Packers", - "und": "Carolina Panthers", - "sF": "38", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 19, 2014", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 2014", - "at": null, - "fav": "Cleveland Browns", - "und": "Jacksonville Jaguars", - "sF": "6", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Oct 19, 2014", - "at": "@", - "fav": "Washington Redskins", - "und": "Tennessee Titans", - "sF": "19", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 19, 2014", - "at": "@", - "fav": "San Diego Chargers", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 2014", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "31", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Oct 19, 2014", - "at": null, - "fav": "Arizona Cardinals", - "und": "Oakland Raiders", - "sF": "24", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 19, 2014", - "at": "@", - "fav": "Denver Broncos", - "und": "San Francisco 49ers", - "sF": "42", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 20, 2014", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Texans", - "sF": "30", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 2014", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "35", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Oct 26, 2014", - "at": "N", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "22", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 2014", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 2014", - "at": null, - "fav": "Miami Dolphins", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 26, 2014", - "at": "@", - "fav": "New England Patriots", - "und": "Chicago Bears", - "sF": "51", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Oct 26, 2014", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "23", - "sU": "43", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 2014", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Oct 26, 2014", - "at": null, - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "30", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 2014", - "at": null, - "fav": "Seattle Seahawks", - "und": "Carolina Panthers", - "sF": "13", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Oct 26, 2014", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "St Louis Rams", - "sF": "34", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 26, 2014", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Oct 26, 2014", - "at": "@", - "fav": "Cleveland Browns", - "und": "Oakland Raiders", - "sF": "23", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 26, 2014", - "at": null, - "fav": "Indianapolis Colts", - "und": "Pittsburgh Steelers", - "sF": "34", - "sU": "51", - "spread": "4", - "ou": null - }, - { - "date": "Oct 26, 2014", - "at": "@", - "fav": "New Orleans Saints", - "und": "Green Bay Packers", - "sF": "44", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 2014", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "17", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Oct 30, 2014", - "at": null, - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "28", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 2014", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Jacksonville Jaguars", - "sF": "33", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Nov 2, 2014", - "at": "@", - "fav": "Cleveland Browns", - "und": "Tampa Bay Buccaneers", - "sF": "22", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 2, 2014", - "at": "@", - "fav": "Miami Dolphins", - "und": "San Diego Chargers", - "sF": "37", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 2014", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Houston Texans", - "sF": "31", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 2, 2014", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "24", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Nov 2, 2014", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Nov 2, 2014", - "at": "@", - "fav": "San Francisco 49ers", - "und": "St Louis Rams", - "sF": "10", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Nov 2, 2014", - "at": null, - "fav": "Denver Broncos", - "und": "New England Patriots", - "sF": "21", - "sU": "43", - "spread": "3", - "ou": null - }, - { - "date": "Nov 2, 2014", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Oakland Raiders", - "sF": "30", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Nov 2, 2014", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "43", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 3, 2014", - "at": null, - "fav": "Indianapolis Colts", - "und": "New York Giants", - "sF": "40", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 2014", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "3", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Nov 9, 2014", - "at": "@", - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "13", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 9, 2014", - "at": "@", - "fav": "Detroit Lions", - "und": "Miami Dolphins", - "sF": "20", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 2014", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "13", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 9, 2014", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Tennessee Titans", - "sF": "21", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Nov 9, 2014", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Nov 9, 2014", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 2014", - "at": "N", - "fav": "Dallas Cowboys", - "und": "Jacksonville Jaguars", - "sF": "31", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 9, 2014", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "41", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Nov 9, 2014", - "at": "@", - "fav": "Arizona Cardinals", - "und": "St Louis Rams", - "sF": "31", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 9, 2014", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New York Giants", - "sF": "38", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Nov 9, 2014", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "55", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Nov 10, 2014", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Carolina Panthers", - "sF": "45", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 2014", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "22", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Nov 16, 2014", - "at": null, - "fav": "Denver Broncos", - "und": "St Louis Rams", - "sF": "7", - "sU": "22", - "spread": "9", - "ou": null - }, - { - "date": "Nov 16, 2014", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 16, 2014", - "at": "@", - "fav": "New Orleans Saints", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Nov 16, 2014", - "at": null, - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "19", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 16, 2014", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Texans", - "sF": "7", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 2014", - "at": null, - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "16", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 16, 2014", - "at": "@", - "fav": "Washington Redskins", - "und": "Tampa Bay Buccaneers", - "sF": "7", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Nov 16, 2014", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "13", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Nov 16, 2014", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Detroit Lions", - "sF": "14", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Nov 16, 2014", - "at": "@", - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "53", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Nov 16, 2014", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "20", - "sU": "42", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 2014", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Tennessee Titans", - "sF": "27", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Nov 20, 2014", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "20", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 2014", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Cleveland Browns", - "sF": "24", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Nov 23, 2014", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Nov 23, 2014", - "at": "@", - "fav": "Houston Texans", - "und": "Cincinnati Bengals", - "sF": "13", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Nov 23, 2014", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "23", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Nov 23, 2014", - "at": "@", - "fav": "New England Patriots", - "und": "Detroit Lions", - "sF": "34", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 2014", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Tennessee Titans", - "sF": "43", - "sU": "24", - "spread": "11", - "ou": null - }, - { - "date": "Nov 23, 2014", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 2014", - "at": "@", - "fav": "San Diego Chargers", - "und": "St Louis Rams", - "sF": "27", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Nov 23, 2014", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "19", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 2014", - "at": "@", - "fav": "Denver Broncos", - "und": "Miami Dolphins", - "sF": "39", - "sU": "36", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 2014", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "17", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Nov 23, 2014", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "31", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Nov 24, 2014", - "at": "N", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "38", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Nov 24, 2014", - "at": "@", - "fav": "New Orleans Saints", - "und": "Baltimore Ravens", - "sF": "27", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2014", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "34", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 27, 2014", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2014", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "3", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Nov 30, 2014", - "at": "@", - "fav": "St Louis Rams", - "und": "Oakland Raiders", - "sF": "52", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Nov 30, 2014", - "at": "@", - "fav": "Baltimore Ravens", - "und": "San Diego Chargers", - "sF": "33", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Nov 30, 2014", - "at": "@", - "fav": "Buffalo Bills", - "und": "Cleveland Browns", - "sF": "26", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 2014", - "at": "@", - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "45", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 30, 2014", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Washington Redskins", - "sF": "49", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Nov 30, 2014", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Carolina Panthers", - "sF": "31", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 30, 2014", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New Orleans Saints", - "sF": "32", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 2014", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Tampa Bay Buccaneers", - "sF": "14", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 30, 2014", - "at": null, - "fav": "New York Giants", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 2014", - "at": null, - "fav": "Arizona Cardinals", - "und": "Atlanta Falcons", - "sF": "18", - "sU": "29", - "spread": "1", - "ou": null - }, - { - "date": "Nov 30, 2014", - "at": "@", - "fav": "Green Bay Packers", - "und": "New England Patriots", - "sF": "26", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 2014", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "16", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 4, 2014", - "at": null, - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "41", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Dec 7, 2014", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "42", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 2014", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "34", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Dec 7, 2014", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Ravens", - "sF": "13", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 2014", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New York Jets", - "sF": "30", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 7, 2014", - "at": null, - "fav": "Indianapolis Colts", - "und": "Cleveland Browns", - "sF": "25", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 2014", - "at": null, - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 7, 2014", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "10", - "sU": "41", - "spread": "9", - "ou": null - }, - { - "date": "Dec 7, 2014", - "at": null, - "fav": "New York Giants", - "und": "Tennessee Titans", - "sF": "36", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 2014", - "at": null, - "fav": "St Louis Rams", - "und": "Washington Redskins", - "sF": "24", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 7, 2014", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Arizona Cardinals", - "sF": "14", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 7, 2014", - "at": "@", - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "24", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 7, 2014", - "at": null, - "fav": "San Francisco 49ers", - "und": "Oakland Raiders", - "sF": "13", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Dec 7, 2014", - "at": null, - "fav": "Seattle Seahawks", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 7, 2014", - "at": null, - "fav": "New England Patriots", - "und": "San Diego Chargers", - "sF": "23", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 8, 2014", - "at": "@", - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "43", - "sU": "37", - "spread": "13", - "ou": null - }, - { - "date": "Dec 11, 2014", - "at": "@", - "fav": "St Louis Rams", - "und": "Arizona Cardinals", - "sF": "6", - "sU": "12", - "spread": "4", - "ou": null - }, - { - "date": "Dec 14, 2014", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 2014", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "12", - "spread": "13", - "ou": null - }, - { - "date": "Dec 14, 2014", - "at": null, - "fav": "Green Bay Packers", - "und": "Buffalo Bills", - "sF": "13", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Dec 14, 2014", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "0", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Dec 14, 2014", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "17", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 14, 2014", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "41", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 2014", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "24", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 14, 2014", - "at": "@", - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "19", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 2014", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "31", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Dec 14, 2014", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "22", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 14, 2014", - "at": null, - "fav": "New York Jets", - "und": "Tennessee Titans", - "sF": "16", - "sU": "11", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 2014", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "16", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 14, 2014", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Dec 14, 2014", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 2014", - "at": null, - "fav": "New Orleans Saints", - "und": "Chicago Bears", - "sF": "31", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 2014", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "21", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Dec 20, 2014", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "24", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 20, 2014", - "at": "@", - "fav": "San Francisco 49ers", - "und": "San Diego Chargers", - "sF": "35", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Dec 21, 2014", - "at": null, - "fav": "Baltimore Ravens", - "und": "Houston Texans", - "sF": "13", - "sU": "25", - "spread": "6", - "ou": null - }, - { - "date": "Dec 21, 2014", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "17", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Dec 21, 2014", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "12", - "spread": "2", - "ou": null - }, - { - "date": "Dec 21, 2014", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "20", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 21, 2014", - "at": "@", - "fav": "Miami Dolphins", - "und": "Minnesota Vikings", - "sF": "37", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Dec 21, 2014", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Dec 21, 2014", - "at": null, - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "3", - "spread": "12", - "ou": null - }, - { - "date": "Dec 21, 2014", - "at": "@", - "fav": "Carolina Panthers", - "und": "Cleveland Browns", - "sF": "17", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 21, 2014", - "at": "@", - "fav": "St Louis Rams", - "und": "New York Giants", - "sF": "27", - "sU": "37", - "spread": "6", - "ou": null - }, - { - "date": "Dec 21, 2014", - "at": null, - "fav": "Buffalo Bills", - "und": "Oakland Raiders", - "sF": "24", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Dec 21, 2014", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Indianapolis Colts", - "sF": "42", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 2014", - "at": null, - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "35", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Dec 22, 2014", - "at": null, - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "28", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Dec 28, 2014", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "20", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Dec 28, 2014", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "24", - "sU": "37", - "spread": "6", - "ou": null - }, - { - "date": "Dec 28, 2014", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "13", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Dec 28, 2014", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "9", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 28, 2014", - "at": null, - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "27", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 28, 2014", - "at": "@", - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "23", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 28, 2014", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "19", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 28, 2014", - "at": null, - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Dec 28, 2014", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "44", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 28, 2014", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "3", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 28, 2014", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "47", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Dec 28, 2014", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "30", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 28, 2014", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 28, 2014", - "at": "@", - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "20", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Dec 28, 2014", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 2015", - "at": "@", - "fav": "Carolina Panthers (4)", - "und": "Arizona Cardinals (5)", - "sF": "27", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Jan 3, 2015", - "at": "@", - "fav": "Pittsburgh Steelers (3)", - "und": "Baltimore Ravens (6)", - "sF": "17", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Jan 4, 2015", - "at": "@", - "fav": "Indianapolis Colts (4)", - "und": "Cincinnati Bengals (5)", - "sF": "26", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Jan 4, 2015", - "at": "@", - "fav": "Dallas Cowboys (3)", - "und": "Detroit Lions (6)", - "sF": "24", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Jan 10, 2015", - "at": "@", - "fav": "New England Patriots (1)", - "und": "Baltimore Ravens (6)", - "sF": "35", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Jan 10, 2015", - "at": "@", - "fav": "Seattle Seahawks (1)", - "und": "Carolina Panthers (4)", - "sF": "31", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Jan 11, 2015", - "at": "@", - "fav": "Green Bay Packers (2)", - "und": "Dallas Cowboys (3)", - "sF": "26", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Jan 11, 2015", - "at": "@", - "fav": "Denver Broncos (2)", - "und": "Indianapolis Colts (4)", - "sF": "13", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Jan 18, 2015", - "at": "@", - "fav": "Seattle Seahawks (1)", - "und": "Green Bay Packers (2)", - "sF": "28", - "sU": "22", - "spread": "8", - "ou": null - }, - { - "date": "Jan 18, 2015", - "at": "@", - "fav": "New England Patriots (1)", - "und": "Indianapolis Colts (4)", - "sF": "45", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Feb 1, 2015", - "at": "N", - "fav": "Seattle Seahawks (1)", - "und": "New England Patriots (1)", - "sF": "24", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Sep 10, 2015", - "at": "@", - "fav": "New England Patriots", - "und": "Pittsburgh Steelers", - "sF": "28", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Sep 13, 2015", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "31", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Sep 13, 2015", - "at": null, - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "31", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Sep 13, 2015", - "at": "@", - "fav": "Houston Texans", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Sep 13, 2015", - "at": null, - "fav": "Miami Dolphins", - "und": "Washington Redskins", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 2015", - "at": null, - "fav": "Indianapolis Colts", - "und": "Buffalo Bills", - "sF": "14", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Sep 13, 2015", - "at": null, - "fav": "Carolina Panthers", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 2015", - "at": "@", - "fav": "New York Jets", - "und": "Cleveland Browns", - "sF": "31", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 2015", - "at": "@", - "fav": "Arizona Cardinals", - "und": "New Orleans Saints", - "sF": "31", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Sep 13, 2015", - "at": "@", - "fav": "San Diego Chargers", - "und": "Detroit Lions", - "sF": "33", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Sep 13, 2015", - "at": "@", - "fav": "Denver Broncos", - "und": "Baltimore Ravens", - "sF": "19", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Sep 13, 2015", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Oakland Raiders", - "sF": "33", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 2015", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Tennessee Titans", - "sF": "14", - "sU": "42", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 2015", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "27", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Sep 14, 2015", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Sep 14, 2015", - "at": null, - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "3", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Sep 17, 2015", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "24", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 2015", - "at": null, - "fav": "Arizona Cardinals", - "und": "Chicago Bears", - "sF": "48", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Sep 20, 2015", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "40", - "sU": "32", - "spread": "1", - "ou": null - }, - { - "date": "Sep 20, 2015", - "at": "@", - "fav": "Carolina Panthers", - "und": "Houston Texans", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 2015", - "at": null, - "fav": "Tennessee Titans", - "und": "Cleveland Browns", - "sF": "14", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Sep 20, 2015", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "19", - "sU": "26", - "spread": "10", - "ou": null - }, - { - "date": "Sep 20, 2015", - "at": "@", - "fav": "New York Giants", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 20, 2015", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "San Francisco 49ers", - "sF": "43", - "sU": "18", - "spread": "6", - "ou": null - }, - { - "date": "Sep 20, 2015", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "San Diego Chargers", - "sF": "24", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 2015", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "26", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Sep 20, 2015", - "at": null, - "fav": "St Louis Rams", - "und": "Washington Redskins", - "sF": "10", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 2015", - "at": null, - "fav": "Miami Dolphins", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Sep 20, 2015", - "at": null, - "fav": "Baltimore Ravens", - "und": "Oakland Raiders", - "sF": "33", - "sU": "37", - "spread": "6", - "ou": null - }, - { - "date": "Sep 20, 2015", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "10", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 20, 2015", - "at": "@", - "fav": "Green Bay Packers", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 2015", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "7", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 2015", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "32", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 2015", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "St Louis Rams", - "sF": "12", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Sep 27, 2015", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Sep 27, 2015", - "at": "@", - "fav": "Cleveland Browns", - "und": "Oakland Raiders", - "sF": "20", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 2015", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Diego Chargers", - "sF": "31", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Sep 27, 2015", - "at": "@", - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "27", - "sU": "22", - "spread": "9", - "ou": null - }, - { - "date": "Sep 27, 2015", - "at": null, - "fav": "Atlanta Falcons", - "und": "Dallas Cowboys", - "sF": "39", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Sep 27, 2015", - "at": "@", - "fav": "Houston Texans", - "und": "Tampa Bay Buccaneers", - "sF": "19", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 2015", - "at": "@", - "fav": "New York Jets", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Sep 27, 2015", - "at": null, - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "35", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 2015", - "at": "@", - "fav": "New England Patriots", - "und": "Jacksonville Jaguars", - "sF": "51", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Sep 27, 2015", - "at": "@", - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "47", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 2015", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "14", - "sU": "41", - "spread": "2", - "ou": null - }, - { - "date": "Sep 27, 2015", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Chicago Bears", - "sF": "26", - "sU": "0", - "spread": "14", - "ou": null - }, - { - "date": "Sep 27, 2015", - "at": null, - "fav": "Denver Broncos", - "und": "Detroit Lions", - "sF": "24", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 2015", - "at": "@", - "fav": "Green Bay Packers", - "und": "Kansas City Chiefs", - "sF": "38", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Oct 1, 2015", - "at": null, - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 4, 2015", - "at": "N", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "14", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 4, 2015", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Houston Texans", - "sF": "48", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Oct 4, 2015", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Giants", - "sF": "10", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Oct 4, 2015", - "at": null, - "fav": "Oakland Raiders", - "und": "Chicago Bears", - "sF": "20", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 2015", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "16", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Oct 4, 2015", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Kansas City Chiefs", - "sF": "36", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 2015", - "at": null, - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "37", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 2015", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 2015", - "at": "@", - "fav": "San Diego Chargers", - "und": "Cleveland Browns", - "sF": "30", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Oct 4, 2015", - "at": "@", - "fav": "Arizona Cardinals", - "und": "St Louis Rams", - "sF": "22", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 4, 2015", - "at": "@", - "fav": "Denver Broncos", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 4, 2015", - "at": null, - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Oct 4, 2015", - "at": "@", - "fav": "New Orleans Saints", - "und": "Dallas Cowboys", - "sF": "26", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 5, 2015", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Detroit Lions", - "sF": "13", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 8, 2015", - "at": "@", - "fav": "Houston Texans", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 11, 2015", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Washington Redskins", - "sF": "25", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 2015", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "30", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Oct 11, 2015", - "at": "@", - "fav": "Green Bay Packers", - "und": "St Louis Rams", - "sF": "24", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 11, 2015", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Chicago Bears", - "sF": "17", - "sU": "18", - "spread": "9", - "ou": null - }, - { - "date": "Oct 11, 2015", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Jacksonville Jaguars", - "sF": "38", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Oct 11, 2015", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 11, 2015", - "at": null, - "fav": "Buffalo Bills", - "und": "Tennessee Titans", - "sF": "14", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 11, 2015", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New Orleans Saints", - "sF": "39", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 11, 2015", - "at": null, - "fav": "Arizona Cardinals", - "und": "Detroit Lions", - "sF": "42", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 11, 2015", - "at": null, - "fav": "New England Patriots", - "und": "Dallas Cowboys", - "sF": "30", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Oct 11, 2015", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "16", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 11, 2015", - "at": "@", - "fav": "New York Giants", - "und": "San Francisco 49ers", - "sF": "30", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Oct 12, 2015", - "at": "@", - "fav": "San Diego Chargers", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 2015", - "at": null, - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "21", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2015", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Buffalo Bills", - "sF": "34", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2015", - "at": null, - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "26", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2015", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "37", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2015", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "20", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Oct 18, 2015", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Kansas City Chiefs", - "sF": "16", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2015", - "at": "@", - "fav": "New York Jets", - "und": "Washington Redskins", - "sF": "34", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 18, 2015", - "at": "@", - "fav": "Tennessee Titans", - "und": "Miami Dolphins", - "sF": "10", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Oct 18, 2015", - "at": null, - "fav": "Arizona Cardinals", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2015", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Carolina Panthers", - "sF": "23", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Oct 18, 2015", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Diego Chargers", - "sF": "27", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Oct 18, 2015", - "at": null, - "fav": "Baltimore Ravens", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "25", - "spread": "2", - "ou": null - }, - { - "date": "Oct 18, 2015", - "at": null, - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "34", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Oct 19, 2015", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "27", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Oct 22, 2015", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 2015", - "at": "N", - "fav": "Buffalo Bills", - "und": "Jacksonville Jaguars", - "sF": "31", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Oct 25, 2015", - "at": "@", - "fav": "St Louis Rams", - "und": "Cleveland Browns", - "sF": "24", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 2015", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "28", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Oct 25, 2015", - "at": "@", - "fav": "Miami Dolphins", - "und": "Houston Texans", - "sF": "44", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Oct 25, 2015", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "30", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Oct 25, 2015", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tennessee Titans", - "sF": "10", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 25, 2015", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New Orleans Saints", - "sF": "21", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Oct 25, 2015", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 2015", - "at": "@", - "fav": "Washington Redskins", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 2015", - "at": "@", - "fav": "San Diego Chargers", - "und": "Oakland Raiders", - "sF": "29", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 2015", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 2015", - "at": "@", - "fav": "Carolina Panthers", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 2015", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Baltimore Ravens", - "sF": "26", - "sU": "18", - "spread": "8", - "ou": null - }, - { - "date": "Oct 29, 2015", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "36", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 1, 2015", - "at": "N", - "fav": "Kansas City Chiefs", - "und": "Detroit Lions", - "sF": "45", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 2015", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "23", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 1, 2015", - "at": "@", - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Nov 1, 2015", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 1, 2015", - "at": "@", - "fav": "Baltimore Ravens", - "und": "San Diego Chargers", - "sF": "29", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 2015", - "at": null, - "fav": "Arizona Cardinals", - "und": "Cleveland Browns", - "sF": "34", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 1, 2015", - "at": "@", - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "20", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 2015", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Giants", - "sF": "52", - "sU": "49", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 2015", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Nov 1, 2015", - "at": null, - "fav": "New York Jets", - "und": "Oakland Raiders", - "sF": "20", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 2015", - "at": null, - "fav": "Seattle Seahawks", - "und": "Dallas Cowboys", - "sF": "13", - "sU": "12", - "spread": "4", - "ou": null - }, - { - "date": "Nov 1, 2015", - "at": null, - "fav": "Green Bay Packers", - "und": "Denver Broncos", - "sF": "10", - "sU": "29", - "spread": "2", - "ou": null - }, - { - "date": "Nov 2, 2015", - "at": "@", - "fav": "Carolina Panthers", - "und": "Indianapolis Colts", - "sF": "29", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Nov 5, 2015", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "31", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Nov 8, 2015", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "33", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 2015", - "at": "@", - "fav": "Minnesota Vikings", - "und": "St Louis Rams", - "sF": "21", - "sU": "18", - "spread": "1", - "ou": null - }, - { - "date": "Nov 8, 2015", - "at": "@", - "fav": "New England Patriots", - "und": "Washington Redskins", - "sF": "27", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Nov 8, 2015", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tennessee Titans", - "sF": "28", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Nov 8, 2015", - "at": "@", - "fav": "New York Jets", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Nov 8, 2015", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Oakland Raiders", - "sF": "38", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Nov 8, 2015", - "at": null, - "fav": "Green Bay Packers", - "und": "Carolina Panthers", - "sF": "29", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Nov 8, 2015", - "at": null, - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "16", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 8, 2015", - "at": null, - "fav": "New York Giants", - "und": "Tampa Bay Buccaneers", - "sF": "32", - "sU": "18", - "spread": "1", - "ou": null - }, - { - "date": "Nov 8, 2015", - "at": null, - "fav": "Denver Broncos", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Nov 8, 2015", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "33", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 2015", - "at": "@", - "fav": "San Diego Chargers", - "und": "Chicago Bears", - "sF": "19", - "sU": "22", - "spread": "4", - "ou": null - }, - { - "date": "Nov 12, 2015", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "17", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Nov 15, 2015", - "at": "@", - "fav": "St Louis Rams", - "und": "Chicago Bears", - "sF": "13", - "sU": "37", - "spread": "6", - "ou": null - }, - { - "date": "Nov 15, 2015", - "at": null, - "fav": "Carolina Panthers", - "und": "Tennessee Titans", - "sF": "27", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 15, 2015", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "16", - "sU": "18", - "spread": "10", - "ou": null - }, - { - "date": "Nov 15, 2015", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "30", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Nov 15, 2015", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "22", - "spread": "5", - "ou": null - }, - { - "date": "Nov 15, 2015", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Miami Dolphins", - "sF": "19", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 15, 2015", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Dallas Cowboys", - "sF": "10", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Nov 15, 2015", - "at": null, - "fav": "New Orleans Saints", - "und": "Washington Redskins", - "sF": "14", - "sU": "47", - "spread": "1", - "ou": null - }, - { - "date": "Nov 15, 2015", - "at": "@", - "fav": "Oakland Raiders", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 2015", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "13", - "sU": "29", - "spread": "4", - "ou": null - }, - { - "date": "Nov 15, 2015", - "at": null, - "fav": "New England Patriots", - "und": "New York Giants", - "sF": "27", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Nov 15, 2015", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "32", - "sU": "39", - "spread": "3", - "ou": null - }, - { - "date": "Nov 16, 2015", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Texans", - "sF": "6", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Nov 19, 2015", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "19", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 22, 2015", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Indianapolis Colts", - "sF": "21", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 22, 2015", - "at": "@", - "fav": "Baltimore Ravens", - "und": "St Louis Rams", - "sF": "16", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 22, 2015", - "at": "@", - "fav": "Carolina Panthers", - "und": "Washington Redskins", - "sF": "44", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 2015", - "at": null, - "fav": "Denver Broncos", - "und": "Chicago Bears", - "sF": "17", - "sU": "15", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 2015", - "at": null, - "fav": "Oakland Raiders", - "und": "Detroit Lions", - "sF": "13", - "sU": "18", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 2015", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "45", - "spread": "6", - "ou": null - }, - { - "date": "Nov 22, 2015", - "at": null, - "fav": "New York Jets", - "und": "Houston Texans", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 2015", - "at": null, - "fav": "Dallas Cowboys", - "und": "Miami Dolphins", - "sF": "24", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 2015", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "33", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 2015", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "13", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 2015", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "29", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Nov 22, 2015", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 23, 2015", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "20", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 26, 2015", - "at": "@", - "fav": "Detroit Lions", - "und": "Philadelphia Eagles", - "sF": "45", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 26, 2015", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Carolina Panthers", - "sF": "14", - "sU": "33", - "spread": "1", - "ou": null - }, - { - "date": "Nov 26, 2015", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "13", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 29, 2015", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Minnesota Vikings", - "sF": "10", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 29, 2015", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "St Louis Rams", - "sF": "31", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Nov 29, 2015", - "at": "@", - "fav": "Houston Texans", - "und": "New Orleans Saints", - "sF": "24", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 2015", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tampa Bay Buccaneers", - "sF": "25", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 2015", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "38", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 29, 2015", - "at": null, - "fav": "Oakland Raiders", - "und": "Tennessee Titans", - "sF": "24", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 29, 2015", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "San Diego Chargers", - "sF": "25", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 29, 2015", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "30", - "sU": "22", - "spread": "5", - "ou": null - }, - { - "date": "Nov 29, 2015", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "14", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 29, 2015", - "at": null, - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "19", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Nov 29, 2015", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Pittsburgh Steelers", - "sF": "39", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 2015", - "at": null, - "fav": "New England Patriots", - "und": "Denver Broncos", - "sF": "24", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Nov 30, 2015", - "at": "@", - "fav": "Cleveland Browns", - "und": "Baltimore Ravens", - "sF": "27", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 2015", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "27", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 2015", - "at": null, - "fav": "Arizona Cardinals", - "und": "St Louis Rams", - "sF": "27", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Dec 6, 2015", - "at": "@", - "fav": "Buffalo Bills", - "und": "Houston Texans", - "sF": "30", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 2015", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Dec 6, 2015", - "at": null, - "fav": "Seattle Seahawks", - "und": "Minnesota Vikings", - "sF": "38", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Dec 6, 2015", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "42", - "sU": "39", - "spread": "2", - "ou": null - }, - { - "date": "Dec 6, 2015", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "37", - "sU": "3", - "spread": "9", - "ou": null - }, - { - "date": "Dec 6, 2015", - "at": "@", - "fav": "Miami Dolphins", - "und": "Baltimore Ravens", - "sF": "15", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 2015", - "at": null, - "fav": "New York Jets", - "und": "New York Giants", - "sF": "23", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Dec 6, 2015", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Dec 6, 2015", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "34", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 2015", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "17", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 2015", - "at": "@", - "fav": "New England Patriots", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "35", - "spread": "8", - "ou": null - }, - { - "date": "Dec 6, 2015", - "at": null, - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "41", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Dec 6, 2015", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Indianapolis Colts", - "sF": "45", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 7, 2015", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "16", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2015", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Dec 13, 2015", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Buffalo Bills", - "sF": "23", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 13, 2015", - "at": null, - "fav": "Seattle Seahawks", - "und": "Baltimore Ravens", - "sF": "35", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Dec 13, 2015", - "at": "@", - "fav": "Chicago Bears", - "und": "Washington Redskins", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 2015", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "33", - "spread": "2", - "ou": null - }, - { - "date": "Dec 13, 2015", - "at": "@", - "fav": "Cleveland Browns", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Dec 13, 2015", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Indianapolis Colts", - "sF": "51", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Dec 13, 2015", - "at": "@", - "fav": "New York Jets", - "und": "Tennessee Titans", - "sF": "30", - "sU": "8", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 2015", - "at": null, - "fav": "Detroit Lions", - "und": "St Louis Rams", - "sF": "14", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 2015", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "17", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 13, 2015", - "at": "@", - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 2015", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "10", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Dec 13, 2015", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "12", - "sU": "15", - "spread": "6", - "ou": null - }, - { - "date": "Dec 13, 2015", - "at": "@", - "fav": "Green Bay Packers", - "und": "Dallas Cowboys", - "sF": "28", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 13, 2015", - "at": null, - "fav": "New England Patriots", - "und": "Houston Texans", - "sF": "27", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Dec 14, 2015", - "at": null, - "fav": "New York Giants", - "und": "Miami Dolphins", - "sF": "31", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Dec 17, 2015", - "at": "@", - "fav": "St Louis Rams", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 19, 2015", - "at": null, - "fav": "New York Jets", - "und": "Dallas Cowboys", - "sF": "19", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 2015", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Baltimore Ravens", - "sF": "34", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 20, 2015", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "10", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Dec 20, 2015", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 2015", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "38", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Dec 20, 2015", - "at": "@", - "fav": "New England Patriots", - "und": "Tennessee Titans", - "sF": "33", - "sU": "16", - "spread": "14", - "ou": null - }, - { - "date": "Dec 20, 2015", - "at": null, - "fav": "Carolina Panthers", - "und": "New York Giants", - "sF": "38", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Dec 20, 2015", - "at": null, - "fav": "Buffalo Bills", - "und": "Washington Redskins", - "sF": "25", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Dec 20, 2015", - "at": null, - "fav": "Green Bay Packers", - "und": "Oakland Raiders", - "sF": "30", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 2015", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Cleveland Browns", - "sF": "30", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Dec 20, 2015", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Denver Broncos", - "sF": "34", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 20, 2015", - "at": "@", - "fav": "San Diego Chargers", - "und": "Miami Dolphins", - "sF": "30", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Dec 20, 2015", - "at": null, - "fav": "Cincinnati Bengals", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Dec 20, 2015", - "at": null, - "fav": "Arizona Cardinals", - "und": "Philadelphia Eagles", - "sF": "40", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 2015", - "at": "@", - "fav": "New Orleans Saints", - "und": "Detroit Lions", - "sF": "27", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Dec 24, 2015", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "23", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 26, 2015", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "24", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Dec 27, 2015", - "at": null, - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 27, 2015", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "17", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Dec 27, 2015", - "at": "@", - "fav": "Buffalo Bills", - "und": "Dallas Cowboys", - "sF": "16", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Dec 27, 2015", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "12", - "sU": "18", - "spread": "2", - "ou": null - }, - { - "date": "Dec 27, 2015", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "20", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 27, 2015", - "at": null, - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "34", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Dec 27, 2015", - "at": "@", - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "32", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 27, 2015", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cleveland Browns", - "sF": "17", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Dec 27, 2015", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "21", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 27, 2015", - "at": "@", - "fav": "New Orleans Saints", - "und": "Jacksonville Jaguars", - "sF": "38", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 27, 2015", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Green Bay Packers", - "sF": "38", - "sU": "8", - "spread": "4", - "ou": null - }, - { - "date": "Dec 27, 2015", - "at": "@", - "fav": "Seattle Seahawks", - "und": "St Louis Rams", - "sF": "17", - "sU": "23", - "spread": "12", - "ou": null - }, - { - "date": "Dec 27, 2015", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "49", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 28, 2015", - "at": "@", - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 2016", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "17", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Jan 3, 2016", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "17", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 2016", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "24", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Jan 3, 2016", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Baltimore Ravens", - "sF": "24", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Jan 3, 2016", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "28", - "sU": "12", - "spread": "11", - "ou": null - }, - { - "date": "Jan 3, 2016", - "at": "@", - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "30", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Jan 3, 2016", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "30", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Jan 3, 2016", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "10", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Jan 3, 2016", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "23", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 2016", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "30", - "sU": "35", - "spread": "5", - "ou": null - }, - { - "date": "Jan 3, 2016", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Seattle Seahawks", - "sF": "6", - "sU": "36", - "spread": "6", - "ou": null - }, - { - "date": "Jan 3, 2016", - "at": "@", - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "38", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Jan 3, 2016", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "27", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Jan 3, 2016", - "at": null, - "fav": "St Louis Rams", - "und": "San Francisco 49ers", - "sF": "16", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 2016", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "23", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Jan 3, 2016", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "13", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Jan 9, 2016", - "at": null, - "fav": "Kansas City Chiefs (5)", - "und": "Houston Texans (4)", - "sF": "30", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Jan 9, 2016", - "at": null, - "fav": "Pittsburgh Steelers (6)", - "und": "Cincinnati Bengals (3)", - "sF": "18", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Jan 10, 2016", - "at": null, - "fav": "Seattle Seahawks (6)", - "und": "Minnesota Vikings (3)", - "sF": "10", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Jan 10, 2016", - "at": "@", - "fav": "Washington Redskins (4)", - "und": "Green Bay Packers (5)", - "sF": "18", - "sU": "35", - "spread": "1", - "ou": null - }, - { - "date": "Jan 16, 2016", - "at": "@", - "fav": "New England Patriots (2)", - "und": "Kansas City Chiefs (5)", - "sF": "27", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Jan 16, 2016", - "at": "@", - "fav": "Arizona Cardinals (2)", - "und": "Green Bay Packers (5)", - "sF": "26", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Jan 17, 2016", - "at": "@", - "fav": "Carolina Panthers (1)", - "und": "Seattle Seahawks (6)", - "sF": "31", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Jan 17, 2016", - "at": "@", - "fav": "Denver Broncos (1)", - "und": "Pittsburgh Steelers (6)", - "sF": "23", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Jan 24, 2016", - "at": null, - "fav": "New England Patriots (2)", - "und": "Denver Broncos (1)", - "sF": "18", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Jan 24, 2016", - "at": "@", - "fav": "Carolina Panthers (1)", - "und": "Arizona Cardinals (2)", - "sF": "49", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Feb 7, 2016", - "at": "N", - "fav": "Carolina Panthers (1)", - "und": "Denver Broncos (1)", - "sF": "10", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Sep 8, 2016", - "at": null, - "fav": "Carolina Panthers", - "und": "Denver Broncos", - "sF": "20", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 2016", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Buffalo Bills", - "sF": "13", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 2016", - "at": null, - "fav": "Green Bay Packers", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 2016", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Sep 11, 2016", - "at": "@", - "fav": "Houston Texans", - "und": "Chicago Bears", - "sF": "23", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Sep 11, 2016", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "33", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Sep 11, 2016", - "at": "@", - "fav": "New Orleans Saints", - "und": "Oakland Raiders", - "sF": "34", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Sep 11, 2016", - "at": "@", - "fav": "New York Jets", - "und": "Cincinnati Bengals", - "sF": "22", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Sep 11, 2016", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Cleveland Browns", - "sF": "29", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 11, 2016", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tennessee Titans", - "sF": "25", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Sep 11, 2016", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Miami Dolphins", - "sF": "12", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Sep 11, 2016", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "19", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Sep 11, 2016", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Detroit Lions", - "sF": "35", - "sU": "39", - "spread": "2", - "ou": null - }, - { - "date": "Sep 11, 2016", - "at": "@", - "fav": "Arizona Cardinals", - "und": "New England Patriots", - "sF": "21", - "sU": "23", - "spread": "9", - "ou": null - }, - { - "date": "Sep 12, 2016", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Washington Redskins", - "sF": "38", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Sep 12, 2016", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "0", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Sep 15, 2016", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "31", - "sU": "37", - "spread": "1", - "ou": null - }, - { - "date": "Sep 18, 2016", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "25", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 18, 2016", - "at": "@", - "fav": "Detroit Lions", - "und": "Tennessee Titans", - "sF": "15", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Sep 18, 2016", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Houston Texans", - "sF": "12", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Sep 18, 2016", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "31", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Sep 18, 2016", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 2016", - "at": "@", - "fav": "Carolina Panthers", - "und": "San Francisco 49ers", - "sF": "46", - "sU": "27", - "spread": "12", - "ou": null - }, - { - "date": "Sep 18, 2016", - "at": "@", - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 2016", - "at": "@", - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "23", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 2016", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Tampa Bay Buccaneers", - "sF": "40", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 18, 2016", - "at": null, - "fav": "Seattle Seahawks", - "und": "Los Angeles Rams", - "sF": "3", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Sep 18, 2016", - "at": "@", - "fav": "Denver Broncos", - "und": "Indianapolis Colts", - "sF": "34", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 18, 2016", - "at": "@", - "fav": "Oakland Raiders", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Sep 18, 2016", - "at": "@", - "fav": "San Diego Chargers", - "und": "Jacksonville Jaguars", - "sF": "38", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 2016", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 19, 2016", - "at": "@", - "fav": "Chicago Bears", - "und": "Philadelphia Eagles", - "sF": "14", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2016", - "at": null, - "fav": "Arizona Cardinals", - "und": "Buffalo Bills", - "sF": "18", - "sU": "33", - "spread": "5", - "ou": null - }, - { - "date": "Sep 25, 2016", - "at": "@", - "fav": "Carolina Panthers", - "und": "Minnesota Vikings", - "sF": "10", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 2016", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Denver Broncos", - "sF": "17", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2016", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "34", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 2016", - "at": null, - "fav": "Baltimore Ravens", - "und": "Jacksonville Jaguars", - "sF": "19", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 25, 2016", - "at": "@", - "fav": "Miami Dolphins", - "und": "Cleveland Browns", - "sF": "30", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Sep 25, 2016", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "27", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2016", - "at": null, - "fav": "Oakland Raiders", - "und": "Tennessee Titans", - "sF": "17", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Sep 25, 2016", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "37", - "sU": "18", - "spread": "10", - "ou": null - }, - { - "date": "Sep 25, 2016", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Los Angeles Rams", - "sF": "32", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2016", - "at": "@", - "fav": "Indianapolis Colts", - "und": "San Diego Chargers", - "sF": "26", - "sU": "22", - "spread": "1", - "ou": null - }, - { - "date": "Sep 25, 2016", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Philadelphia Eagles", - "sF": "3", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2016", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "24", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2016", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "31", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 26, 2016", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "32", - "sU": "45", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 2016", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Miami Dolphins", - "sF": "22", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Oct 2, 2016", - "at": "N", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Oct 2, 2016", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2016", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Oakland Raiders", - "sF": "27", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2016", - "at": "@", - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "27", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 2, 2016", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "0", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2016", - "at": null, - "fav": "Seattle Seahawks", - "und": "New York Jets", - "sF": "27", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 2, 2016", - "at": null, - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "33", - "sU": "48", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 2016", - "at": "@", - "fav": "Washington Redskins", - "und": "Cleveland Browns", - "sF": "31", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 2, 2016", - "at": null, - "fav": "Denver Broncos", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2016", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Los Angeles Rams", - "sF": "13", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 2, 2016", - "at": "@", - "fav": "San Diego Chargers", - "und": "New Orleans Saints", - "sF": "34", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2016", - "at": null, - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 2, 2016", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "43", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 3, 2016", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "24", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2016", - "at": null, - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "33", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2016", - "at": null, - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "33", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Oct 9, 2016", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Detroit Lions", - "sF": "23", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2016", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Chicago Bears", - "sF": "29", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 9, 2016", - "at": "@", - "fav": "Miami Dolphins", - "und": "Tennessee Titans", - "sF": "17", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Oct 9, 2016", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "31", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Oct 9, 2016", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Washington Redskins", - "sF": "10", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Oct 9, 2016", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Houston Texans", - "sF": "31", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 9, 2016", - "at": "@", - "fav": "Denver Broncos", - "und": "Atlanta Falcons", - "sF": "16", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2016", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Dallas Cowboys", - "sF": "14", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 9, 2016", - "at": null, - "fav": "Buffalo Bills", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Oct 9, 2016", - "at": "@", - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "34", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2016", - "at": "@", - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "23", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 10, 2016", - "at": "@", - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "14", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 2016", - "at": null, - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "13", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 2016", - "at": "@", - "fav": "Buffalo Bills", - "und": "San Francisco 49ers", - "sF": "45", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 16, 2016", - "at": "@", - "fav": "Chicago Bears", - "und": "Jacksonville Jaguars", - "sF": "16", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 16, 2016", - "at": "@", - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 16, 2016", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Miami Dolphins", - "sF": "15", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Oct 16, 2016", - "at": "@", - "fav": "New England Patriots", - "und": "Cincinnati Bengals", - "sF": "35", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 16, 2016", - "at": "@", - "fav": "New York Giants", - "und": "Baltimore Ravens", - "sF": "27", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 2016", - "at": "@", - "fav": "Tennessee Titans", - "und": "Cleveland Browns", - "sF": "28", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Oct 16, 2016", - "at": null, - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "38", - "sU": "41", - "spread": "2", - "ou": null - }, - { - "date": "Oct 16, 2016", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "20", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 2016", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "26", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 16, 2016", - "at": "@", - "fav": "Green Bay Packers", - "und": "Dallas Cowboys", - "sF": "16", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Oct 16, 2016", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Atlanta Falcons", - "sF": "26", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 16, 2016", - "at": "@", - "fav": "Houston Texans", - "und": "Indianapolis Colts", - "sF": "26", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 2016", - "at": "@", - "fav": "Arizona Cardinals", - "und": "New York Jets", - "sF": "28", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Oct 20, 2016", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "26", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 2016", - "at": "N", - "fav": "New York Giants", - "und": "Los Angeles Rams", - "sF": "17", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 2016", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "31", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Oct 23, 2016", - "at": null, - "fav": "Washington Redskins", - "und": "Detroit Lions", - "sF": "17", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Oct 23, 2016", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Oakland Raiders", - "sF": "16", - "sU": "33", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 2016", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "25", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 2016", - "at": null, - "fav": "Minnesota Vikings", - "und": "Philadelphia Eagles", - "sF": "10", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 2016", - "at": "@", - "fav": "Tennessee Titans", - "und": "Indianapolis Colts", - "sF": "26", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Oct 23, 2016", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New Orleans Saints", - "sF": "27", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 2016", - "at": "@", - "fav": "New York Jets", - "und": "Baltimore Ravens", - "sF": "24", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 2016", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Diego Chargers", - "sF": "30", - "sU": "33", - "spread": "4", - "ou": null - }, - { - "date": "Oct 23, 2016", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Oct 23, 2016", - "at": null, - "fav": "New England Patriots", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 2016", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Seattle Seahawks", - "sF": "6", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Oct 24, 2016", - "at": "@", - "fav": "Denver Broncos", - "und": "Houston Texans", - "sF": "27", - "sU": "9", - "spread": "8", - "ou": null - }, - { - "date": "Oct 27, 2016", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "36", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2016", - "at": "N", - "fav": "Cincinnati Bengals", - "und": "Washington Redskins", - "sF": "27", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2016", - "at": "@", - "fav": "Carolina Panthers", - "und": "Arizona Cardinals", - "sF": "30", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 30, 2016", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "41", - "sU": "25", - "spread": "5", - "ou": null - }, - { - "date": "Oct 30, 2016", - "at": null, - "fav": "New York Jets", - "und": "Cleveland Browns", - "sF": "31", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 30, 2016", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Indianapolis Colts", - "sF": "30", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2016", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Oakland Raiders", - "sF": "24", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Oct 30, 2016", - "at": "@", - "fav": "Houston Texans", - "und": "Detroit Lions", - "sF": "20", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 30, 2016", - "at": null, - "fav": "Seattle Seahawks", - "und": "New Orleans Saints", - "sF": "20", - "sU": "25", - "spread": "1", - "ou": null - }, - { - "date": "Oct 30, 2016", - "at": "@", - "fav": "Denver Broncos", - "und": "San Diego Chargers", - "sF": "27", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2016", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Green Bay Packers", - "sF": "33", - "sU": "32", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2016", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "29", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Oct 31, 2016", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "10", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 3, 2016", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "43", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Nov 6, 2016", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "14", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 2016", - "at": null, - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "35", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 6, 2016", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Jacksonville Jaguars", - "sF": "19", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 6, 2016", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "27", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 2016", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "16", - "sU": "22", - "spread": "4", - "ou": null - }, - { - "date": "Nov 6, 2016", - "at": "@", - "fav": "New York Giants", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 2016", - "at": null, - "fav": "Carolina Panthers", - "und": "Los Angeles Rams", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 2016", - "at": null, - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "41", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Nov 6, 2016", - "at": "@", - "fav": "Green Bay Packers", - "und": "Indianapolis Colts", - "sF": "26", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Nov 6, 2016", - "at": "@", - "fav": "San Diego Chargers", - "und": "Tennessee Titans", - "sF": "43", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 2016", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "30", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 7, 2016", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Buffalo Bills", - "sF": "31", - "sU": "25", - "spread": "5", - "ou": null - }, - { - "date": "Nov 10, 2016", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "28", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 2016", - "at": "@", - "fav": "Carolina Panthers", - "und": "Kansas City Chiefs", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 2016", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 2016", - "at": "@", - "fav": "New Orleans Saints", - "und": "Denver Broncos", - "sF": "23", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 2016", - "at": null, - "fav": "Los Angeles Rams", - "und": "New York Jets", - "sF": "9", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Nov 13, 2016", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "15", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 2016", - "at": null, - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "36", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 2016", - "at": null, - "fav": "Green Bay Packers", - "und": "Tennessee Titans", - "sF": "25", - "sU": "47", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 2016", - "at": "@", - "fav": "Washington Redskins", - "und": "Minnesota Vikings", - "sF": "26", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 2016", - "at": "@", - "fav": "San Diego Chargers", - "und": "Miami Dolphins", - "sF": "24", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 13, 2016", - "at": "@", - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Nov 13, 2016", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Dallas Cowboys", - "sF": "30", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 2016", - "at": "@", - "fav": "New England Patriots", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Nov 14, 2016", - "at": null, - "fav": "Cincinnati Bengals", - "und": "New York Giants", - "sF": "20", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 17, 2016", - "at": "@", - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 2016", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Buffalo Bills", - "sF": "12", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Nov 20, 2016", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "24", - "sU": "9", - "spread": "8", - "ou": null - }, - { - "date": "Nov 20, 2016", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Baltimore Ravens", - "sF": "27", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 20, 2016", - "at": "@", - "fav": "Detroit Lions", - "und": "Jacksonville Jaguars", - "sF": "26", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Nov 20, 2016", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 2016", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Nov 20, 2016", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Arizona Cardinals", - "sF": "30", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 20, 2016", - "at": "@", - "fav": "New York Giants", - "und": "Chicago Bears", - "sF": "22", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 20, 2016", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Miami Dolphins", - "sF": "10", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Nov 20, 2016", - "at": null, - "fav": "New England Patriots", - "und": "San Francisco 49ers", - "sF": "30", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 20, 2016", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Philadelphia Eagles", - "sF": "26", - "sU": "15", - "spread": "6", - "ou": null - }, - { - "date": "Nov 20, 2016", - "at": "@", - "fav": "Washington Redskins", - "und": "Green Bay Packers", - "sF": "42", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 2016", - "at": "N", - "fav": "Oakland Raiders", - "und": "Houston Texans", - "sF": "27", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 24, 2016", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "16", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Nov 24, 2016", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "31", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Nov 24, 2016", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Indianapolis Colts", - "sF": "28", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Nov 27, 2016", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Arizona Cardinals", - "sF": "38", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Nov 27, 2016", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "19", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2016", - "at": "@", - "fav": "Buffalo Bills", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Nov 27, 2016", - "at": null, - "fav": "Tennessee Titans", - "und": "Chicago Bears", - "sF": "27", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 27, 2016", - "at": null, - "fav": "New York Giants", - "und": "Cleveland Browns", - "sF": "27", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 27, 2016", - "at": null, - "fav": "San Diego Chargers", - "und": "Houston Texans", - "sF": "21", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 27, 2016", - "at": "@", - "fav": "Miami Dolphins", - "und": "San Francisco 49ers", - "sF": "31", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 27, 2016", - "at": "@", - "fav": "New Orleans Saints", - "und": "Los Angeles Rams", - "sF": "49", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Nov 27, 2016", - "at": null, - "fav": "Seattle Seahawks", - "und": "Tampa Bay Buccaneers", - "sF": "5", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Nov 27, 2016", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "22", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 27, 2016", - "at": "@", - "fav": "Oakland Raiders", - "und": "Carolina Panthers", - "sF": "35", - "sU": "32", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2016", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 2016", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Green Bay Packers", - "sF": "13", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Dec 1, 2016", - "at": null, - "fav": "Dallas Cowboys", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2016", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "29", - "spread": "5", - "ou": null - }, - { - "date": "Dec 4, 2016", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Miami Dolphins", - "sF": "38", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2016", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Philadelphia Eagles", - "sF": "32", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 4, 2016", - "at": "@", - "fav": "Green Bay Packers", - "und": "Houston Texans", - "sF": "21", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 4, 2016", - "at": null, - "fav": "Denver Broncos", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2016", - "at": "@", - "fav": "New England Patriots", - "und": "Los Angeles Rams", - "sF": "26", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Dec 4, 2016", - "at": "@", - "fav": "New Orleans Saints", - "und": "Detroit Lions", - "sF": "13", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Dec 4, 2016", - "at": "@", - "fav": "Oakland Raiders", - "und": "Buffalo Bills", - "sF": "38", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2016", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Washington Redskins", - "sF": "31", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 4, 2016", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Giants", - "sF": "24", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 4, 2016", - "at": "@", - "fav": "San Diego Chargers", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2016", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Carolina Panthers", - "sF": "40", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Dec 5, 2016", - "at": "@", - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "10", - "sU": "41", - "spread": "1", - "ou": null - }, - { - "date": "Dec 8, 2016", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "21", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2016", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Buffalo Bills", - "sF": "27", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 11, 2016", - "at": "@", - "fav": "Carolina Panthers", - "und": "San Diego Chargers", - "sF": "28", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Dec 11, 2016", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "23", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 11, 2016", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "20", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 11, 2016", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "17", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Dec 11, 2016", - "at": null, - "fav": "Minnesota Vikings", - "und": "Jacksonville Jaguars", - "sF": "25", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2016", - "at": null, - "fav": "Arizona Cardinals", - "und": "Miami Dolphins", - "sF": "23", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Dec 11, 2016", - "at": null, - "fav": "Washington Redskins", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Dec 11, 2016", - "at": "@", - "fav": "Tennessee Titans", - "und": "Denver Broncos", - "sF": "13", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Dec 11, 2016", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Jets", - "sF": "17", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2016", - "at": null, - "fav": "Seattle Seahawks", - "und": "Green Bay Packers", - "sF": "10", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2016", - "at": null, - "fav": "Atlanta Falcons", - "und": "Los Angeles Rams", - "sF": "42", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Dec 11, 2016", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "16", - "sU": "11", - "spread": "2", - "ou": null - }, - { - "date": "Dec 11, 2016", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "7", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 2016", - "at": "@", - "fav": "New England Patriots", - "und": "Baltimore Ravens", - "sF": "30", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Dec 15, 2016", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "3", - "spread": "15", - "ou": null - }, - { - "date": "Dec 17, 2016", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "34", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 18, 2016", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Dec 18, 2016", - "at": "@", - "fav": "Buffalo Bills", - "und": "Cleveland Browns", - "sF": "33", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Dec 18, 2016", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "30", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Dec 18, 2016", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 2016", - "at": "@", - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "21", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 2016", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Tennessee Titans", - "sF": "17", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Dec 18, 2016", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Indianapolis Colts", - "sF": "6", - "sU": "34", - "spread": "5", - "ou": null - }, - { - "date": "Dec 18, 2016", - "at": "@", - "fav": "New York Giants", - "und": "Detroit Lions", - "sF": "17", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Dec 18, 2016", - "at": "@", - "fav": "Arizona Cardinals", - "und": "New Orleans Saints", - "sF": "41", - "sU": "48", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 2016", - "at": "@", - "fav": "Atlanta Falcons", - "und": "San Francisco 49ers", - "sF": "41", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Dec 18, 2016", - "at": null, - "fav": "New England Patriots", - "und": "Denver Broncos", - "sF": "16", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 2016", - "at": null, - "fav": "Oakland Raiders", - "und": "San Diego Chargers", - "sF": "19", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Dec 18, 2016", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Tampa Bay Buccaneers", - "sF": "26", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 19, 2016", - "at": "@", - "fav": "Washington Redskins", - "und": "Carolina Panthers", - "sF": "15", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Dec 22, 2016", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "24", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Dec 24, 2016", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "31", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Dec 24, 2016", - "at": null, - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "33", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2016", - "at": null, - "fav": "Washington Redskins", - "und": "Chicago Bears", - "sF": "41", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2016", - "at": null, - "fav": "San Diego Chargers", - "und": "Cleveland Browns", - "sF": "17", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Dec 24, 2016", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "38", - "sU": "25", - "spread": "6", - "ou": null - }, - { - "date": "Dec 24, 2016", - "at": null, - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "38", - "spread": "4", - "ou": null - }, - { - "date": "Dec 24, 2016", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "41", - "sU": "3", - "spread": "17", - "ou": null - }, - { - "date": "Dec 24, 2016", - "at": "@", - "fav": "Oakland Raiders", - "und": "Indianapolis Colts", - "sF": "33", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2016", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "22", - "spread": "6", - "ou": null - }, - { - "date": "Dec 24, 2016", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2016", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "34", - "spread": "9", - "ou": null - }, - { - "date": "Dec 24, 2016", - "at": "@", - "fav": "Houston Texans", - "und": "Cincinnati Bengals", - "sF": "12", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 25, 2016", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "31", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Dec 25, 2016", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "33", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 2016", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "42", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Jan 1, 2017", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Jan 1, 2017", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Jan 1, 2017", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "35", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Jan 1, 2017", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "38", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Jan 1, 2017", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "10", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 2017", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Jan 1, 2017", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 2017", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "17", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 2017", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 2017", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "38", - "sU": "32", - "spread": "7", - "ou": null - }, - { - "date": "Jan 1, 2017", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "24", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Jan 1, 2017", - "at": null, - "fav": "Arizona Cardinals", - "und": "Los Angeles Rams", - "sF": "44", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Jan 1, 2017", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Diego Chargers", - "sF": "37", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Jan 1, 2017", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "25", - "sU": "23", - "spread": "11", - "ou": null - }, - { - "date": "Jan 1, 2017", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "10", - "sU": "19", - "spread": "9", - "ou": null - }, - { - "date": "Jan 1, 2017", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "31", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Jan 7, 2017", - "at": "@", - "fav": "Houston Texans (4)", - "und": "Oakland Raiders (5)", - "sF": "27", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Jan 7, 2017", - "at": "@", - "fav": "Seattle Seahawks (3)", - "und": "Detroit Lions (6)", - "sF": "26", - "sU": "6", - "spread": "8", - "ou": null - }, - { - "date": "Jan 8, 2017", - "at": "@", - "fav": "Pittsburgh Steelers (3)", - "und": "Miami Dolphins (6)", - "sF": "30", - "sU": "12", - "spread": "11", - "ou": null - }, - { - "date": "Jan 8, 2017", - "at": "@", - "fav": "Green Bay Packers (4)", - "und": "New York Giants (5)", - "sF": "38", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Jan 14, 2017", - "at": "@", - "fav": "Atlanta Falcons (2)", - "und": "Seattle Seahawks (3)", - "sF": "36", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Jan 14, 2017", - "at": "@", - "fav": "New England Patriots (1)", - "und": "Houston Texans (4)", - "sF": "34", - "sU": "16", - "spread": "16", - "ou": null - }, - { - "date": "Jan 15, 2017", - "at": "@", - "fav": "Dallas Cowboys (1)", - "und": "Green Bay Packers (4)", - "sF": "31", - "sU": "34", - "spread": "5", - "ou": null - }, - { - "date": "Jan 15, 2017", - "at": "@", - "fav": "Kansas City Chiefs (2)", - "und": "Pittsburgh Steelers (3)", - "sF": "16", - "sU": "18", - "spread": "2", - "ou": null - }, - { - "date": "Jan 22, 2017", - "at": "@", - "fav": "Atlanta Falcons (2)", - "und": "Green Bay Packers (4)", - "sF": "44", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Jan 22, 2017", - "at": "@", - "fav": "New England Patriots (1)", - "und": "Pittsburgh Steelers (3)", - "sF": "36", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Feb 5, 2017", - "at": "N", - "fav": "New England Patriots (1)", - "und": "Atlanta Falcons (2)", - "sF": "34", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Sep 7, 2017", - "at": "@", - "fav": "New England Patriots", - "und": "Kansas City Chiefs", - "sF": "27", - "sU": "42", - "spread": "8", - "ou": null - }, - { - "date": "Sep 10, 2017", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "21", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Sep 10, 2017", - "at": null, - "fav": "Atlanta Falcons", - "und": "Chicago Bears", - "sF": "23", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 10, 2017", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Baltimore Ravens", - "sF": "0", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 10, 2017", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "21", - "sU": "18", - "spread": "10", - "ou": null - }, - { - "date": "Sep 10, 2017", - "at": null, - "fav": "Arizona Cardinals", - "und": "Detroit Lions", - "sF": "23", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Sep 10, 2017", - "at": "@", - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "7", - "sU": "29", - "spread": "5", - "ou": null - }, - { - "date": "Sep 10, 2017", - "at": "@", - "fav": "Tennessee Titans", - "und": "Oakland Raiders", - "sF": "16", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Sep 10, 2017", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "30", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 10, 2017", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Indianapolis Colts", - "sF": "46", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 2017", - "at": "@", - "fav": "Green Bay Packers", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Sep 10, 2017", - "at": null, - "fav": "Carolina Panthers", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Sep 10, 2017", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "19", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 11, 2017", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "29", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 2017", - "at": "@", - "fav": "Denver Broncos", - "und": "Los Angeles Chargers", - "sF": "24", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 14, 2017", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Texans", - "sF": "9", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Sep 17, 2017", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "24", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 17, 2017", - "at": "@", - "fav": "Carolina Panthers", - "und": "Buffalo Bills", - "sF": "9", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 17, 2017", - "at": null, - "fav": "Arizona Cardinals", - "und": "Indianapolis Colts", - "sF": "16", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Sep 17, 2017", - "at": null, - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "37", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Sep 17, 2017", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 2017", - "at": null, - "fav": "New England Patriots", - "und": "New Orleans Saints", - "sF": "36", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 17, 2017", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Minnesota Vikings", - "sF": "26", - "sU": "9", - "spread": "8", - "ou": null - }, - { - "date": "Sep 17, 2017", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "29", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Sep 17, 2017", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Miami Dolphins", - "sF": "17", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 2017", - "at": "@", - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "45", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Sep 17, 2017", - "at": null, - "fav": "Dallas Cowboys", - "und": "Denver Broncos", - "sF": "17", - "sU": "42", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 2017", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Washington Redskins", - "sF": "20", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 2017", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "12", - "sU": "9", - "spread": "13", - "ou": null - }, - { - "date": "Sep 17, 2017", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Green Bay Packers", - "sF": "34", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 2017", - "at": "@", - "fav": "New York Giants", - "und": "Detroit Lions", - "sF": "10", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 21, 2017", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "41", - "sU": "39", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 2017", - "at": null, - "fav": "Denver Broncos", - "und": "Buffalo Bills", - "sF": "16", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 2017", - "at": "@", - "fav": "Carolina Panthers", - "und": "New Orleans Saints", - "sF": "13", - "sU": "34", - "spread": "5", - "ou": null - }, - { - "date": "Sep 24, 2017", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Chicago Bears", - "sF": "17", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 2017", - "at": null, - "fav": "Atlanta Falcons", - "und": "Detroit Lions", - "sF": "30", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 2017", - "at": null, - "fav": "Cleveland Browns", - "und": "Indianapolis Colts", - "sF": "28", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Sep 24, 2017", - "at": "@", - "fav": "New England Patriots", - "und": "Houston Texans", - "sF": "36", - "sU": "33", - "spread": "13", - "ou": null - }, - { - "date": "Sep 24, 2017", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "6", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 24, 2017", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "27", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Sep 24, 2017", - "at": "@", - "fav": "Tennessee Titans", - "und": "Seattle Seahawks", - "sF": "33", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Sep 24, 2017", - "at": "@", - "fav": "Green Bay Packers", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 2017", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Los Angeles Chargers", - "sF": "24", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 2017", - "at": null, - "fav": "Oakland Raiders", - "und": "Washington Redskins", - "sF": "10", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 2017", - "at": null, - "fav": "Baltimore Ravens", - "und": "Jacksonville Jaguars", - "sF": "7", - "sU": "44", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2017", - "at": null, - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "28", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 2017", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "35", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Oct 1, 2017", - "at": "N", - "fav": "New Orleans Saints", - "und": "Miami Dolphins", - "sF": "20", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Oct 1, 2017", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Buffalo Bills", - "sF": "17", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Oct 1, 2017", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "26", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 2017", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "31", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 2017", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "35", - "spread": "5", - "ou": null - }, - { - "date": "Oct 1, 2017", - "at": null, - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "14", - "sU": "57", - "spread": "2", - "ou": null - }, - { - "date": "Oct 1, 2017", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "7", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 1, 2017", - "at": "@", - "fav": "New England Patriots", - "und": "Carolina Panthers", - "sF": "30", - "sU": "33", - "spread": "9", - "ou": null - }, - { - "date": "Oct 1, 2017", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "New York Jets", - "sF": "20", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 1, 2017", - "at": "@", - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "18", - "sU": "15", - "spread": "6", - "ou": null - }, - { - "date": "Oct 1, 2017", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Philadelphia Eagles", - "sF": "24", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Oct 1, 2017", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New York Giants", - "sF": "25", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 1, 2017", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "16", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 2017", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Indianapolis Colts", - "sF": "46", - "sU": "18", - "spread": "12", - "ou": null - }, - { - "date": "Oct 2, 2017", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Washington Redskins", - "sF": "29", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 5, 2017", - "at": null, - "fav": "New England Patriots", - "und": "Tampa Bay Buccaneers", - "sF": "19", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 2017", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Buffalo Bills", - "sF": "20", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 2017", - "at": null, - "fav": "New York Jets", - "und": "Cleveland Browns", - "sF": "17", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 8, 2017", - "at": "@", - "fav": "Detroit Lions", - "und": "Carolina Panthers", - "sF": "24", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 8, 2017", - "at": "@", - "fav": "Indianapolis Colts", - "und": "San Francisco 49ers", - "sF": "26", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 8, 2017", - "at": "@", - "fav": "New York Giants", - "und": "Los Angeles Chargers", - "sF": "22", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 2017", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "34", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Oct 8, 2017", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "9", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Oct 8, 2017", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Seattle Seahawks", - "sF": "10", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Oct 8, 2017", - "at": "@", - "fav": "Oakland Raiders", - "und": "Baltimore Ravens", - "sF": "17", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 2017", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "31", - "sU": "35", - "spread": "2", - "ou": null - }, - { - "date": "Oct 8, 2017", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Houston Texans", - "sF": "42", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Oct 9, 2017", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 12, 2017", - "at": "@", - "fav": "Carolina Panthers", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 2017", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Miami Dolphins", - "sF": "17", - "sU": "20", - "spread": "14", - "ou": null - }, - { - "date": "Oct 15, 2017", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Chicago Bears", - "sF": "24", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Oct 15, 2017", - "at": "@", - "fav": "Houston Texans", - "und": "Cleveland Browns", - "sF": "33", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 15, 2017", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "10", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 2017", - "at": "@", - "fav": "New Orleans Saints", - "und": "Detroit Lions", - "sF": "52", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Oct 15, 2017", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "24", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Oct 15, 2017", - "at": "@", - "fav": "Washington Redskins", - "und": "San Francisco 49ers", - "sF": "26", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Oct 15, 2017", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Arizona Cardinals", - "sF": "33", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Oct 15, 2017", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Los Angeles Rams", - "sF": "17", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 15, 2017", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 2017", - "at": "@", - "fav": "Oakland Raiders", - "und": "Los Angeles Chargers", - "sF": "16", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 2017", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Giants", - "sF": "10", - "sU": "23", - "spread": "13", - "ou": null - }, - { - "date": "Oct 16, 2017", - "at": "@", - "fav": "Tennessee Titans", - "und": "Indianapolis Colts", - "sF": "36", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Oct 19, 2017", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "30", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 2017", - "at": "@", - "fav": "Buffalo Bills", - "und": "Tampa Bay Buccaneers", - "sF": "30", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 2017", - "at": null, - "fav": "Carolina Panthers", - "und": "Chicago Bears", - "sF": "3", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 22, 2017", - "at": null, - "fav": "Tennessee Titans", - "und": "Cleveland Browns", - "sF": "12", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Oct 22, 2017", - "at": null, - "fav": "New Orleans Saints", - "und": "Green Bay Packers", - "sF": "26", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 2017", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Indianapolis Colts", - "sF": "27", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 2017", - "at": "N", - "fav": "Los Angeles Rams", - "und": "Arizona Cardinals", - "sF": "33", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 2017", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "31", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 2017", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Baltimore Ravens", - "sF": "24", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Oct 22, 2017", - "at": null, - "fav": "Dallas Cowboys", - "und": "San Francisco 49ers", - "sF": "40", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 2017", - "at": null, - "fav": "Denver Broncos", - "und": "Los Angeles Chargers", - "sF": "0", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Oct 22, 2017", - "at": null, - "fav": "Seattle Seahawks", - "und": "New York Giants", - "sF": "24", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Oct 22, 2017", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "29", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Oct 22, 2017", - "at": "@", - "fav": "New England Patriots", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 2017", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "34", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Oct 26, 2017", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Miami Dolphins", - "sF": "40", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 2017", - "at": "N", - "fav": "Minnesota Vikings", - "und": "Cleveland Browns", - "sF": "33", - "sU": "16", - "spread": "11", - "ou": null - }, - { - "date": "Oct 29, 2017", - "at": "@", - "fav": "Buffalo Bills", - "und": "Oakland Raiders", - "sF": "34", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Oct 29, 2017", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "23", - "spread": "11", - "ou": null - }, - { - "date": "Oct 29, 2017", - "at": "@", - "fav": "New England Patriots", - "und": "Los Angeles Chargers", - "sF": "21", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 2017", - "at": "@", - "fav": "New Orleans Saints", - "und": "Chicago Bears", - "sF": "20", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Oct 29, 2017", - "at": null, - "fav": "Atlanta Falcons", - "und": "New York Jets", - "sF": "25", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 2017", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "San Francisco 49ers", - "sF": "33", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Oct 29, 2017", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "3", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 29, 2017", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Houston Texans", - "sF": "41", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 2017", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "33", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 2017", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Detroit Lions", - "sF": "20", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2017", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "29", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Nov 2, 2017", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "21", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 2017", - "at": null, - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 2017", - "at": "@", - "fav": "Houston Texans", - "und": "Indianapolis Colts", - "sF": "14", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 5, 2017", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 5, 2017", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "30", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 5, 2017", - "at": null, - "fav": "Los Angeles Rams", - "und": "New York Giants", - "sF": "51", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 5, 2017", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Denver Broncos", - "sF": "51", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 5, 2017", - "at": "@", - "fav": "Tennessee Titans", - "und": "Baltimore Ravens", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 2017", - "at": null, - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 5, 2017", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Washington Redskins", - "sF": "14", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 5, 2017", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 5, 2017", - "at": null, - "fav": "Oakland Raiders", - "und": "Miami Dolphins", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 2017", - "at": null, - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "30", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 9, 2017", - "at": null, - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "22", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Nov 12, 2017", - "at": null, - "fav": "New Orleans Saints", - "und": "Buffalo Bills", - "sF": "47", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 12, 2017", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "16", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Nov 12, 2017", - "at": "@", - "fav": "Detroit Lions", - "und": "Cleveland Browns", - "sF": "38", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Nov 12, 2017", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 12, 2017", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Los Angeles Chargers", - "sF": "20", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 12, 2017", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New York Jets", - "sF": "15", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Nov 12, 2017", - "at": "@", - "fav": "Tennessee Titans", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 12, 2017", - "at": null, - "fav": "Minnesota Vikings", - "und": "Washington Redskins", - "sF": "38", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Nov 12, 2017", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Houston Texans", - "sF": "33", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Nov 12, 2017", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 2017", - "at": null, - "fav": "New York Giants", - "und": "San Francisco 49ers", - "sF": "21", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 2017", - "at": null, - "fav": "New England Patriots", - "und": "Denver Broncos", - "sF": "41", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 13, 2017", - "at": "@", - "fav": "Carolina Panthers", - "und": "Miami Dolphins", - "sF": "45", - "sU": "21", - "spread": "8", - "ou": null - }, - { - "date": "Nov 16, 2017", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Tennessee Titans", - "sF": "40", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Nov 19, 2017", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 2017", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Cleveland Browns", - "sF": "19", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 19, 2017", - "at": null, - "fav": "Baltimore Ravens", - "und": "Green Bay Packers", - "sF": "23", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Nov 19, 2017", - "at": "@", - "fav": "Houston Texans", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 19, 2017", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Miami Dolphins", - "sF": "30", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 19, 2017", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Nov 19, 2017", - "at": "@", - "fav": "New Orleans Saints", - "und": "Washington Redskins", - "sF": "34", - "sU": "31", - "spread": "9", - "ou": null - }, - { - "date": "Nov 19, 2017", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New York Giants", - "sF": "9", - "sU": "12", - "spread": "10", - "ou": null - }, - { - "date": "Nov 19, 2017", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Buffalo Bills", - "sF": "54", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 19, 2017", - "at": "@", - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 19, 2017", - "at": "N", - "fav": "New England Patriots", - "und": "Oakland Raiders", - "sF": "33", - "sU": "8", - "spread": "7", - "ou": null - }, - { - "date": "Nov 19, 2017", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "37", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Nov 20, 2017", - "at": null, - "fav": "Atlanta Falcons", - "und": "Seattle Seahawks", - "sF": "34", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Nov 23, 2017", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "30", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 23, 2017", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Dallas Cowboys", - "sF": "28", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Nov 23, 2017", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "20", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 26, 2017", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "34", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Nov 26, 2017", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "30", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 26, 2017", - "at": null, - "fav": "Tennessee Titans", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 2017", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "10", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Nov 26, 2017", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "35", - "sU": "17", - "spread": "17", - "ou": null - }, - { - "date": "Nov 26, 2017", - "at": null, - "fav": "Carolina Panthers", - "und": "New York Jets", - "sF": "35", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Nov 26, 2017", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "31", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Nov 26, 2017", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 26, 2017", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Nov 26, 2017", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "26", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 26, 2017", - "at": "@", - "fav": "Oakland Raiders", - "und": "Denver Broncos", - "sF": "21", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 2017", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Green Bay Packers", - "sF": "31", - "sU": "28", - "spread": "14", - "ou": null - }, - { - "date": "Nov 27, 2017", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Houston Texans", - "sF": "23", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 30, 2017", - "at": null, - "fav": "Washington Redskins", - "und": "Dallas Cowboys", - "sF": "14", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Dec 3, 2017", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Minnesota Vikings", - "sF": "9", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 3, 2017", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Detroit Lions", - "sF": "44", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Dec 3, 2017", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "23", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Dec 3, 2017", - "at": "@", - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "15", - "spread": "2", - "ou": null - }, - { - "date": "Dec 3, 2017", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "26", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 2017", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Indianapolis Colts", - "sF": "30", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 3, 2017", - "at": null, - "fav": "Denver Broncos", - "und": "Miami Dolphins", - "sF": "9", - "sU": "35", - "spread": "1", - "ou": null - }, - { - "date": "Dec 3, 2017", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "31", - "sU": "38", - "spread": "4", - "ou": null - }, - { - "date": "Dec 3, 2017", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "24", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 3, 2017", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Cleveland Browns", - "sF": "19", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Dec 3, 2017", - "at": null, - "fav": "Los Angeles Rams", - "und": "Arizona Cardinals", - "sF": "32", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Dec 3, 2017", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "31", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Dec 3, 2017", - "at": "@", - "fav": "Oakland Raiders", - "und": "New York Giants", - "sF": "24", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Dec 3, 2017", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Seattle Seahawks", - "sF": "10", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2017", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Dec 7, 2017", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 2017", - "at": "@", - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "13", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2017", - "at": null, - "fav": "Minnesota Vikings", - "und": "Carolina Panthers", - "sF": "24", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 2017", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Chicago Bears", - "sF": "7", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Dec 10, 2017", - "at": null, - "fav": "Green Bay Packers", - "und": "Cleveland Browns", - "sF": "27", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 2017", - "at": "@", - "fav": "Houston Texans", - "und": "San Francisco 49ers", - "sF": "16", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Dec 10, 2017", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "26", - "sU": "15", - "spread": "4", - "ou": null - }, - { - "date": "Dec 10, 2017", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "30", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 10, 2017", - "at": null, - "fav": "Tennessee Titans", - "und": "Arizona Cardinals", - "sF": "7", - "sU": "12", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 2017", - "at": null, - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "0", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Dec 10, 2017", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Washington Redskins", - "sF": "30", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 10, 2017", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Seattle Seahawks", - "sF": "30", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2017", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Philadelphia Eagles", - "sF": "35", - "sU": "43", - "spread": "1", - "ou": null - }, - { - "date": "Dec 10, 2017", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "39", - "sU": "38", - "spread": "6", - "ou": null - }, - { - "date": "Dec 11, 2017", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "20", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Dec 14, 2017", - "at": null, - "fav": "Denver Broncos", - "und": "Indianapolis Colts", - "sF": "25", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2017", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "20", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 16, 2017", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Chargers", - "sF": "30", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 17, 2017", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "24", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 2017", - "at": "@", - "fav": "Carolina Panthers", - "und": "Green Bay Packers", - "sF": "31", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 2017", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "27", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 2017", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "45", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Dec 17, 2017", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Dec 17, 2017", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Jets", - "sF": "31", - "sU": "19", - "spread": "16", - "ou": null - }, - { - "date": "Dec 17, 2017", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "34", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Dec 17, 2017", - "at": "@", - "fav": "Washington Redskins", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "15", - "spread": "4", - "ou": null - }, - { - "date": "Dec 17, 2017", - "at": null, - "fav": "Los Angeles Rams", - "und": "Seattle Seahawks", - "sF": "42", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Dec 17, 2017", - "at": null, - "fav": "New England Patriots", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 17, 2017", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Tennessee Titans", - "sF": "25", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 17, 2017", - "at": null, - "fav": "Dallas Cowboys", - "und": "Oakland Raiders", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 2017", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 23, 2017", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Indianapolis Colts", - "sF": "23", - "sU": "16", - "spread": "13", - "ou": null - }, - { - "date": "Dec 23, 2017", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "16", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Dec 24, 2017", - "at": "@", - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "22", - "sU": "19", - "spread": "10", - "ou": null - }, - { - "date": "Dec 24, 2017", - "at": "@", - "fav": "Chicago Bears", - "und": "Cleveland Browns", - "sF": "20", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Dec 24, 2017", - "at": null, - "fav": "Detroit Lions", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2017", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Miami Dolphins", - "sF": "29", - "sU": "13", - "spread": "11", - "ou": null - }, - { - "date": "Dec 24, 2017", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "37", - "sU": "16", - "spread": "11", - "ou": null - }, - { - "date": "Dec 24, 2017", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Dec 24, 2017", - "at": null, - "fav": "Los Angeles Chargers", - "und": "New York Jets", - "sF": "14", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 24, 2017", - "at": null, - "fav": "Los Angeles Rams", - "und": "Tennessee Titans", - "sF": "27", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Dec 24, 2017", - "at": "@", - "fav": "Washington Redskins", - "und": "Denver Broncos", - "sF": "27", - "sU": "11", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2017", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "San Francisco 49ers", - "sF": "33", - "sU": "44", - "spread": "4", - "ou": null - }, - { - "date": "Dec 24, 2017", - "at": "@", - "fav": "Arizona Cardinals", - "und": "New York Giants", - "sF": "23", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2017", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Seattle Seahawks", - "sF": "12", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Dec 25, 2017", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Texans", - "sF": "34", - "sU": "6", - "spread": "8", - "ou": null - }, - { - "date": "Dec 25, 2017", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Oakland Raiders", - "sF": "19", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 31, 2017", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "35", - "sU": "11", - "spread": "7", - "ou": null - }, - { - "date": "Dec 31, 2017", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "22", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Dec 31, 2017", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "23", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Dec 31, 2017", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "26", - "sU": "6", - "spread": "17", - "ou": null - }, - { - "date": "Dec 31, 2017", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "10", - "sU": "18", - "spread": "4", - "ou": null - }, - { - "date": "Dec 31, 2017", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "6", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 31, 2017", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "28", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Dec 31, 2017", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "22", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 31, 2017", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "31", - "spread": "8", - "ou": null - }, - { - "date": "Dec 31, 2017", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 31, 2017", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Oakland Raiders", - "sF": "30", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 31, 2017", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "34", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 31, 2017", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "22", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Dec 31, 2017", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "26", - "spread": "8", - "ou": null - }, - { - "date": "Dec 31, 2017", - "at": null, - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Dec 31, 2017", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "15", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Jan 6, 2018", - "at": "@", - "fav": "Kansas City Chiefs (4)", - "und": "Tennessee Titans (5)", - "sF": "21", - "sU": "22", - "spread": "8", - "ou": null - }, - { - "date": "Jan 6, 2018", - "at": "@", - "fav": "Los Angeles Rams (3)", - "und": "Atlanta Falcons (6)", - "sF": "13", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Jan 7, 2018", - "at": "@", - "fav": "Jacksonville Jaguars (3)", - "und": "Buffalo Bills (6)", - "sF": "10", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Jan 7, 2018", - "at": "@", - "fav": "New Orleans Saints (4)", - "und": "Carolina Panthers (5)", - "sF": "31", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Jan 13, 2018", - "at": null, - "fav": "Atlanta Falcons (6)", - "und": "Philadelphia Eagles (1)", - "sF": "10", - "sU": "15", - "spread": "2", - "ou": null - }, - { - "date": "Jan 13, 2018", - "at": "@", - "fav": "New England Patriots (1)", - "und": "Tennessee Titans (5)", - "sF": "35", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Jan 14, 2018", - "at": "@", - "fav": "Pittsburgh Steelers (2)", - "und": "Jacksonville Jaguars (3)", - "sF": "42", - "sU": "45", - "spread": "7", - "ou": null - }, - { - "date": "Jan 14, 2018", - "at": "@", - "fav": "Minnesota Vikings (2)", - "und": "New Orleans Saints (4)", - "sF": "29", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Jan 21, 2018", - "at": "@", - "fav": "New England Patriots (1)", - "und": "Jacksonville Jaguars (3)", - "sF": "24", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Jan 21, 2018", - "at": null, - "fav": "Minnesota Vikings (2)", - "und": "Philadelphia Eagles (1)", - "sF": "7", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Feb 4, 2018", - "at": "N", - "fav": "New England Patriots (1)", - "und": "Philadelphia Eagles (1)", - "sF": "33", - "sU": "41", - "spread": "4", - "ou": null - }, - { - "date": "Sep 6, 2018", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "18", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Sep 9, 2018", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Buffalo Bills", - "sF": "47", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Sep 9, 2018", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "21", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2018", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Indianapolis Colts", - "sF": "34", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Sep 9, 2018", - "at": null, - "fav": "Tennessee Titans", - "und": "Miami Dolphins", - "sF": "20", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Sep 9, 2018", - "at": "@", - "fav": "Minnesota Vikings", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Sep 9, 2018", - "at": "@", - "fav": "New England Patriots", - "und": "Houston Texans", - "sF": "27", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 9, 2018", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "40", - "sU": "48", - "spread": "10", - "ou": null - }, - { - "date": "Sep 9, 2018", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "New York Giants", - "sF": "20", - "sU": "15", - "spread": "2", - "ou": null - }, - { - "date": "Sep 9, 2018", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Kansas City Chiefs", - "sF": "28", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2018", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Washington Redskins", - "sF": "6", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 9, 2018", - "at": "@", - "fav": "Carolina Panthers", - "und": "Dallas Cowboys", - "sF": "16", - "sU": "8", - "spread": "2", - "ou": null - }, - { - "date": "Sep 9, 2018", - "at": "@", - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2018", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "24", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Sep 10, 2018", - "at": "@", - "fav": "Detroit Lions", - "und": "New York Jets", - "sF": "17", - "sU": "48", - "spread": "7", - "ou": null - }, - { - "date": "Sep 10, 2018", - "at": null, - "fav": "Los Angeles Rams", - "und": "Oakland Raiders", - "sF": "33", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Sep 13, 2018", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Baltimore Ravens", - "sF": "34", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Sep 16, 2018", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "31", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Sep 16, 2018", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Buffalo Bills", - "sF": "31", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Sep 16, 2018", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "29", - "sU": "29", - "spread": "2", - "ou": null - }, - { - "date": "Sep 16, 2018", - "at": "@", - "fav": "New Orleans Saints", - "und": "Cleveland Browns", - "sF": "21", - "sU": "18", - "spread": "10", - "ou": null - }, - { - "date": "Sep 16, 2018", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "12", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 2018", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Kansas City Chiefs", - "sF": "37", - "sU": "42", - "spread": "4", - "ou": null - }, - { - "date": "Sep 16, 2018", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Tampa Bay Buccaneers", - "sF": "21", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 2018", - "at": null, - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 16, 2018", - "at": "@", - "fav": "Washington Redskins", - "und": "Indianapolis Colts", - "sF": "9", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Sep 16, 2018", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Arizona Cardinals", - "sF": "34", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Sep 16, 2018", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "30", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Sep 16, 2018", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "20", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Sep 16, 2018", - "at": null, - "fav": "New England Patriots", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Sep 16, 2018", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "20", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 2018", - "at": "@", - "fav": "Chicago Bears", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 20, 2018", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Jets", - "sF": "21", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2018", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "37", - "sU": "43", - "spread": "1", - "ou": null - }, - { - "date": "Sep 23, 2018", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Denver Broncos", - "sF": "27", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Sep 23, 2018", - "at": "@", - "fav": "Carolina Panthers", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Sep 23, 2018", - "at": "@", - "fav": "Houston Texans", - "und": "New York Giants", - "sF": "22", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Sep 23, 2018", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "6", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Sep 23, 2018", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "San Francisco 49ers", - "sF": "38", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Sep 23, 2018", - "at": "@", - "fav": "Miami Dolphins", - "und": "Oakland Raiders", - "sF": "28", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2018", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Buffalo Bills", - "sF": "6", - "sU": "27", - "spread": "16", - "ou": null - }, - { - "date": "Sep 23, 2018", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Sep 23, 2018", - "at": null, - "fav": "Green Bay Packers", - "und": "Washington Redskins", - "sF": "17", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Sep 23, 2018", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Los Angeles Chargers", - "sF": "35", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Sep 23, 2018", - "at": null, - "fav": "Chicago Bears", - "und": "Arizona Cardinals", - "sF": "16", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Sep 23, 2018", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Sep 23, 2018", - "at": null, - "fav": "New England Patriots", - "und": "Detroit Lions", - "sF": "10", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 2018", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Sep 27, 2018", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Minnesota Vikings", - "sF": "38", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Sep 30, 2018", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Cincinnati Bengals", - "sF": "36", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 2018", - "at": "@", - "fav": "Chicago Bears", - "und": "Tampa Bay Buccaneers", - "sF": "48", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 2018", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "26", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 2018", - "at": "@", - "fav": "Green Bay Packers", - "und": "Buffalo Bills", - "sF": "22", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Sep 30, 2018", - "at": null, - "fav": "Houston Texans", - "und": "Indianapolis Colts", - "sF": "37", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Sep 30, 2018", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "New York Jets", - "sF": "31", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Sep 30, 2018", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "38", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Sep 30, 2018", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Tennessee Titans", - "sF": "23", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 2018", - "at": null, - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 2018", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cleveland Browns", - "sF": "45", - "sU": "42", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 2018", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "San Francisco 49ers", - "sF": "29", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Sep 30, 2018", - "at": null, - "fav": "New Orleans Saints", - "und": "New York Giants", - "sF": "33", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 2018", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "14", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 2018", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "27", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 2018", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "38", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Oct 7, 2018", - "at": null, - "fav": "Tennessee Titans", - "und": "Buffalo Bills", - "sF": "12", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 2018", - "at": "@", - "fav": "Carolina Panthers", - "und": "New York Giants", - "sF": "33", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Oct 7, 2018", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Miami Dolphins", - "sF": "27", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 7, 2018", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "9", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 2018", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "31", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 7, 2018", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Jacksonville Jaguars", - "sF": "30", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 2018", - "at": "@", - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "34", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Oct 7, 2018", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Atlanta Falcons", - "sF": "41", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 2018", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Oakland Raiders", - "sF": "26", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Oct 7, 2018", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 2018", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "18", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 2018", - "at": null, - "fav": "Los Angeles Rams", - "und": "Seattle Seahawks", - "sF": "33", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Oct 7, 2018", - "at": "@", - "fav": "Houston Texans", - "und": "Dallas Cowboys", - "sF": "19", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 2018", - "at": "@", - "fav": "New Orleans Saints", - "und": "Washington Redskins", - "sF": "43", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Oct 11, 2018", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "34", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 14, 2018", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "34", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 2018", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Oct 14, 2018", - "at": "@", - "fav": "Cleveland Browns", - "und": "Los Angeles Chargers", - "sF": "14", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Oct 14, 2018", - "at": "@", - "fav": "Houston Texans", - "und": "Buffalo Bills", - "sF": "20", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Oct 14, 2018", - "at": null, - "fav": "Chicago Bears", - "und": "Miami Dolphins", - "sF": "28", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Oct 14, 2018", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 14, 2018", - "at": "@", - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "42", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Oct 14, 2018", - "at": "N", - "fav": "Seattle Seahawks", - "und": "Oakland Raiders", - "sF": "27", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 2018", - "at": null, - "fav": "Carolina Panthers", - "und": "Washington Redskins", - "sF": "17", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 14, 2018", - "at": null, - "fav": "Los Angeles Rams", - "und": "Denver Broncos", - "sF": "23", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 14, 2018", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Dallas Cowboys", - "sF": "7", - "sU": "40", - "spread": "3", - "ou": null - }, - { - "date": "Oct 14, 2018", - "at": null, - "fav": "Baltimore Ravens", - "und": "Tennessee Titans", - "sF": "21", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Oct 14, 2018", - "at": "@", - "fav": "New England Patriots", - "und": "Kansas City Chiefs", - "sF": "43", - "sU": "40", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 2018", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "33", - "sU": "30", - "spread": "9", - "ou": null - }, - { - "date": "Oct 18, 2018", - "at": null, - "fav": "Denver Broncos", - "und": "Arizona Cardinals", - "sF": "45", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 21, 2018", - "at": "N", - "fav": "Los Angeles Chargers", - "und": "Tennessee Titans", - "sF": "20", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Oct 21, 2018", - "at": null, - "fav": "New England Patriots", - "und": "Chicago Bears", - "sF": "38", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Oct 21, 2018", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Buffalo Bills", - "sF": "37", - "sU": "5", - "spread": "7", - "ou": null - }, - { - "date": "Oct 21, 2018", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "7", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 2018", - "at": null, - "fav": "Detroit Lions", - "und": "Miami Dolphins", - "sF": "32", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 2018", - "at": null, - "fav": "Minnesota Vikings", - "und": "New York Jets", - "sF": "37", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 2018", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Carolina Panthers", - "sF": "17", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Oct 21, 2018", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Cleveland Browns", - "sF": "26", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 2018", - "at": "@", - "fav": "Baltimore Ravens", - "und": "New Orleans Saints", - "sF": "23", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 21, 2018", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "39", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Oct 21, 2018", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "17", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Oct 21, 2018", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cincinnati Bengals", - "sF": "45", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 22, 2018", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New York Giants", - "sF": "23", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 25, 2018", - "at": "@", - "fav": "Houston Texans", - "und": "Miami Dolphins", - "sF": "42", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Oct 28, 2018", - "at": null, - "fav": "Baltimore Ravens", - "und": "Carolina Panthers", - "sF": "21", - "sU": "36", - "spread": "2", - "ou": null - }, - { - "date": "Oct 28, 2018", - "at": "@", - "fav": "Chicago Bears", - "und": "New York Jets", - "sF": "24", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Oct 28, 2018", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Tampa Bay Buccaneers", - "sF": "37", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 2018", - "at": "@", - "fav": "Detroit Lions", - "und": "Seattle Seahawks", - "sF": "14", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 2018", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "30", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Oct 28, 2018", - "at": null, - "fav": "Washington Redskins", - "und": "New York Giants", - "sF": "20", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 28, 2018", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "33", - "sU": "18", - "spread": "8", - "ou": null - }, - { - "date": "Oct 28, 2018", - "at": null, - "fav": "Indianapolis Colts", - "und": "Oakland Raiders", - "sF": "42", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 28, 2018", - "at": null, - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "15", - "sU": "18", - "spread": "2", - "ou": null - }, - { - "date": "Oct 28, 2018", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "29", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Oct 28, 2018", - "at": null, - "fav": "New Orleans Saints", - "und": "Minnesota Vikings", - "sF": "30", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 28, 2018", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 2018", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "25", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Nov 1, 2018", - "at": null, - "fav": "Oakland Raiders", - "und": "San Francisco 49ers", - "sF": "3", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Nov 4, 2018", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Nov 4, 2018", - "at": null, - "fav": "Chicago Bears", - "und": "Buffalo Bills", - "sF": "41", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Nov 4, 2018", - "at": "@", - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "42", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Nov 4, 2018", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Cleveland Browns", - "sF": "37", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 4, 2018", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "13", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 2018", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "24", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Nov 4, 2018", - "at": "@", - "fav": "Washington Redskins", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Nov 4, 2018", - "at": "@", - "fav": "Denver Broncos", - "und": "Houston Texans", - "sF": "17", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Nov 4, 2018", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Los Angeles Chargers", - "sF": "17", - "sU": "25", - "spread": "1", - "ou": null - }, - { - "date": "Nov 4, 2018", - "at": null, - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "35", - "sU": "45", - "spread": "1", - "ou": null - }, - { - "date": "Nov 4, 2018", - "at": "@", - "fav": "New England Patriots", - "und": "Green Bay Packers", - "sF": "31", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 5, 2018", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Tennessee Titans", - "sF": "14", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Nov 8, 2018", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Carolina Panthers", - "sF": "52", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 2018", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "34", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Nov 11, 2018", - "at": null, - "fav": "New Orleans Saints", - "und": "Cincinnati Bengals", - "sF": "51", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 11, 2018", - "at": null, - "fav": "Atlanta Falcons", - "und": "Cleveland Browns", - "sF": "16", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Nov 11, 2018", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "29", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 2018", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Arizona Cardinals", - "sF": "26", - "sU": "14", - "spread": "16", - "ou": null - }, - { - "date": "Nov 11, 2018", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "10", - "sU": "41", - "spread": "7", - "ou": null - }, - { - "date": "Nov 11, 2018", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Washington Redskins", - "sF": "3", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 2018", - "at": null, - "fav": "New England Patriots", - "und": "Tennessee Titans", - "sF": "10", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Nov 11, 2018", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Oakland Raiders", - "sF": "20", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Nov 11, 2018", - "at": "@", - "fav": "Green Bay Packers", - "und": "Miami Dolphins", - "sF": "31", - "sU": "12", - "spread": "11", - "ou": null - }, - { - "date": "Nov 11, 2018", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Seattle Seahawks", - "sF": "36", - "sU": "31", - "spread": "10", - "ou": null - }, - { - "date": "Nov 11, 2018", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Nov 12, 2018", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "23", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 2018", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Green Bay Packers", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 2018", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Dallas Cowboys", - "sF": "19", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 2018", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Nov 18, 2018", - "at": null, - "fav": "Carolina Panthers", - "und": "Detroit Lions", - "sF": "19", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 18, 2018", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "38", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Nov 18, 2018", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Nov 18, 2018", - "at": "@", - "fav": "New York Giants", - "und": "Tampa Bay Buccaneers", - "sF": "38", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 2018", - "at": null, - "fav": "Houston Texans", - "und": "Washington Redskins", - "sF": "23", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 18, 2018", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Oakland Raiders", - "sF": "21", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Nov 18, 2018", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Denver Broncos", - "sF": "22", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 18, 2018", - "at": "@", - "fav": "New Orleans Saints", - "und": "Philadelphia Eagles", - "sF": "48", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 18, 2018", - "at": "@", - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "25", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 19, 2018", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Kansas City Chiefs", - "sF": "54", - "sU": "51", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 2018", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "23", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 2018", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "31", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 2018", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Nov 25, 2018", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Oakland Raiders", - "sF": "34", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Nov 25, 2018", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Buffalo Bills", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 2018", - "at": "@", - "fav": "Carolina Panthers", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 2018", - "at": null, - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "35", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 25, 2018", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "27", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Nov 25, 2018", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "25", - "sU": "22", - "spread": "4", - "ou": null - }, - { - "date": "Nov 25, 2018", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "9", - "spread": "1", - "ou": null - }, - { - "date": "Nov 25, 2018", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Arizona Cardinals", - "sF": "45", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Nov 25, 2018", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Denver Broncos", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 2018", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Miami Dolphins", - "sF": "27", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Nov 25, 2018", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 2018", - "at": "@", - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "34", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 2018", - "at": null, - "fav": "New Orleans Saints", - "und": "Dallas Cowboys", - "sF": "10", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Dec 2, 2018", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Baltimore Ravens", - "sF": "16", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Dec 2, 2018", - "at": null, - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 2, 2018", - "at": null, - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "30", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Dec 2, 2018", - "at": "@", - "fav": "Green Bay Packers", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Dec 2, 2018", - "at": "@", - "fav": "Houston Texans", - "und": "Cleveland Browns", - "sF": "29", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Dec 2, 2018", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "0", - "sU": "6", - "spread": "4", - "ou": null - }, - { - "date": "Dec 2, 2018", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "21", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 2018", - "at": null, - "fav": "Chicago Bears", - "und": "New York Giants", - "sF": "27", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Dec 2, 2018", - "at": null, - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 2018", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "40", - "sU": "33", - "spread": "14", - "ou": null - }, - { - "date": "Dec 2, 2018", - "at": "@", - "fav": "Tennessee Titans", - "und": "New York Jets", - "sF": "26", - "sU": "22", - "spread": "10", - "ou": null - }, - { - "date": "Dec 2, 2018", - "at": "@", - "fav": "New England Patriots", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 2018", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "43", - "sU": "16", - "spread": "10", - "ou": null - }, - { - "date": "Dec 2, 2018", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Los Angeles Chargers", - "sF": "30", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 2018", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "28", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Dec 6, 2018", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "30", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Dec 9, 2018", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "23", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Dec 9, 2018", - "at": null, - "fav": "Carolina Panthers", - "und": "Cleveland Browns", - "sF": "20", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Dec 9, 2018", - "at": "@", - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Dec 9, 2018", - "at": "@", - "fav": "Houston Texans", - "und": "Indianapolis Colts", - "sF": "21", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 9, 2018", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Baltimore Ravens", - "sF": "27", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Dec 9, 2018", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "33", - "sU": "34", - "spread": "9", - "ou": null - }, - { - "date": "Dec 9, 2018", - "at": null, - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "28", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 9, 2018", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "40", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 2018", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "21", - "spread": "17", - "ou": null - }, - { - "date": "Dec 9, 2018", - "at": null, - "fav": "Denver Broncos", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 2018", - "at": null, - "fav": "Detroit Lions", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Dec 9, 2018", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "29", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 9, 2018", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Oakland Raiders", - "sF": "21", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Dec 9, 2018", - "at": null, - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "6", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2018", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 2018", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Chargers", - "sF": "28", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 2018", - "at": null, - "fav": "Houston Texans", - "und": "New York Jets", - "sF": "29", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 2018", - "at": "@", - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "16", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 16, 2018", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Arizona Cardinals", - "sF": "40", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 16, 2018", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "12", - "spread": "8", - "ou": null - }, - { - "date": "Dec 16, 2018", - "at": "@", - "fav": "Buffalo Bills", - "und": "Detroit Lions", - "sF": "14", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Dec 16, 2018", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "24", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Dec 16, 2018", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Oakland Raiders", - "sF": "30", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2018", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Dallas Cowboys", - "sF": "23", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2018", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Washington Redskins", - "sF": "13", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Dec 16, 2018", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Miami Dolphins", - "sF": "41", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 16, 2018", - "at": null, - "fav": "Tennessee Titans", - "und": "New York Giants", - "sF": "17", - "sU": "0", - "spread": "2", - "ou": null - }, - { - "date": "Dec 16, 2018", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "23", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2018", - "at": null, - "fav": "New England Patriots", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 16, 2018", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "30", - "spread": "13", - "ou": null - }, - { - "date": "Dec 17, 2018", - "at": null, - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "12", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Dec 22, 2018", - "at": "@", - "fav": "Tennessee Titans", - "und": "Washington Redskins", - "sF": "25", - "sU": "16", - "spread": "11", - "ou": null - }, - { - "date": "Dec 22, 2018", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Baltimore Ravens", - "sF": "10", - "sU": "22", - "spread": "4", - "ou": null - }, - { - "date": "Dec 23, 2018", - "at": null, - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "24", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 2018", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "18", - "spread": "10", - "ou": null - }, - { - "date": "Dec 23, 2018", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 23, 2018", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "27", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Dec 23, 2018", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New York Giants", - "sF": "28", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Dec 23, 2018", - "at": "@", - "fav": "Miami Dolphins", - "und": "Jacksonville Jaguars", - "sF": "7", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 2018", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "24", - "sU": "12", - "spread": "13", - "ou": null - }, - { - "date": "Dec 23, 2018", - "at": null, - "fav": "Green Bay Packers", - "und": "New York Jets", - "sF": "44", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 2018", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Houston Texans", - "sF": "32", - "sU": "30", - "spread": "1", - "ou": null - }, - { - "date": "Dec 23, 2018", - "at": null, - "fav": "Los Angeles Rams", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "9", - "spread": "14", - "ou": null - }, - { - "date": "Dec 23, 2018", - "at": null, - "fav": "Chicago Bears", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "9", - "spread": "4", - "ou": null - }, - { - "date": "Dec 23, 2018", - "at": "@", - "fav": "New Orleans Saints", - "und": "Pittsburgh Steelers", - "sF": "31", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Dec 23, 2018", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Dec 24, 2018", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "14", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 30, 2018", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "42", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Dec 30, 2018", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "0", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Dec 30, 2018", - "at": "@", - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Dec 30, 2018", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "38", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Dec 30, 2018", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "14", - "sU": "33", - "spread": "8", - "ou": null - }, - { - "date": "Dec 30, 2018", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "35", - "sU": "36", - "spread": "7", - "ou": null - }, - { - "date": "Dec 30, 2018", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "34", - "sU": "32", - "spread": "2", - "ou": null - }, - { - "date": "Dec 30, 2018", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "26", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 30, 2018", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Denver Broncos", - "sF": "23", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Dec 30, 2018", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "35", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Dec 30, 2018", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "48", - "sU": "32", - "spread": "10", - "ou": null - }, - { - "date": "Dec 30, 2018", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "10", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Dec 30, 2018", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "16", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Dec 30, 2018", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Dec 30, 2018", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "24", - "sU": "0", - "spread": "6", - "ou": null - }, - { - "date": "Dec 30, 2018", - "at": null, - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "33", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Jan 5, 2019", - "at": "@", - "fav": "Houston Texans (3)", - "und": "Indianapolis Colts (6)", - "sF": "7", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Jan 5, 2019", - "at": "@", - "fav": "Dallas Cowboys (4)", - "und": "Seattle Seahawks (5)", - "sF": "24", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Jan 6, 2019", - "at": "@", - "fav": "Baltimore Ravens (4)", - "und": "Los Angeles Chargers (5)", - "sF": "17", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Jan 6, 2019", - "at": "@", - "fav": "Chicago Bears (3)", - "und": "Philadelphia Eagles (6)", - "sF": "15", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Jan 12, 2019", - "at": "@", - "fav": "Kansas City Chiefs (1)", - "und": "Indianapolis Colts (6)", - "sF": "31", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Jan 12, 2019", - "at": "@", - "fav": "Los Angeles Rams (2)", - "und": "Dallas Cowboys (4)", - "sF": "30", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Jan 13, 2019", - "at": "@", - "fav": "New England Patriots (2)", - "und": "Los Angeles Chargers (5)", - "sF": "41", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Jan 13, 2019", - "at": "@", - "fav": "New Orleans Saints (1)", - "und": "Philadelphia Eagles (6)", - "sF": "20", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Jan 20, 2019", - "at": "@", - "fav": "New Orleans Saints (1)", - "und": "Los Angeles Rams (2)", - "sF": "23", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Jan 20, 2019", - "at": "@", - "fav": "Kansas City Chiefs (1)", - "und": "New England Patriots (2)", - "sF": "31", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Feb 3, 2019", - "at": "N", - "fav": "New England Patriots (2)", - "und": "Los Angeles Rams (2)", - "sF": "13", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Sep 5, 2019", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "3", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 2019", - "at": null, - "fav": "Los Angeles Rams", - "und": "Carolina Panthers", - "sF": "30", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Sep 8, 2019", - "at": "@", - "fav": "Cleveland Browns", - "und": "Tennessee Titans", - "sF": "13", - "sU": "43", - "spread": "5", - "ou": null - }, - { - "date": "Sep 8, 2019", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Jacksonville Jaguars", - "sF": "40", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 2019", - "at": null, - "fav": "Baltimore Ravens", - "und": "Miami Dolphins", - "sF": "59", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 8, 2019", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "28", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 2019", - "at": "@", - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "16", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 8, 2019", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "32", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Sep 8, 2019", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Indianapolis Colts", - "sF": "30", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Sep 8, 2019", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Sep 8, 2019", - "at": null, - "fav": "Detroit Lions", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Sep 8, 2019", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "35", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 8, 2019", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Sep 8, 2019", - "at": "@", - "fav": "New England Patriots", - "und": "Pittsburgh Steelers", - "sF": "33", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Sep 9, 2019", - "at": "@", - "fav": "New Orleans Saints", - "und": "Houston Texans", - "sF": "30", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Sep 9, 2019", - "at": null, - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "16", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2019", - "at": "@", - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "14", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 15, 2019", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Arizona Cardinals", - "sF": "23", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Sep 15, 2019", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "41", - "spread": "1", - "ou": null - }, - { - "date": "Sep 15, 2019", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Detroit Lions", - "sF": "10", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Sep 15, 2019", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 2019", - "at": "@", - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "13", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Sep 15, 2019", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "43", - "sU": "0", - "spread": "18", - "ou": null - }, - { - "date": "Sep 15, 2019", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Giants", - "sF": "28", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Sep 15, 2019", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Seattle Seahawks", - "sF": "26", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Sep 15, 2019", - "at": "@", - "fav": "Tennessee Titans", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 2019", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "31", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Sep 15, 2019", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "28", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 15, 2019", - "at": null, - "fav": "Chicago Bears", - "und": "Denver Broncos", - "sF": "16", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 2019", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "27", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Sep 15, 2019", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Sep 16, 2019", - "at": null, - "fav": "Cleveland Browns", - "und": "New York Jets", - "sF": "23", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 19, 2019", - "at": null, - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "7", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Sep 22, 2019", - "at": "@", - "fav": "Buffalo Bills", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Sep 22, 2019", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Miami Dolphins", - "sF": "31", - "sU": "6", - "spread": "22", - "ou": null - }, - { - "date": "Sep 22, 2019", - "at": "@", - "fav": "Green Bay Packers", - "und": "Denver Broncos", - "sF": "27", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Sep 22, 2019", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Sep 22, 2019", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Baltimore Ravens", - "sF": "33", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Sep 22, 2019", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Oakland Raiders", - "sF": "34", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Sep 22, 2019", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "30", - "sU": "14", - "spread": "20", - "ou": null - }, - { - "date": "Sep 22, 2019", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Detroit Lions", - "sF": "24", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Sep 22, 2019", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Carolina Panthers", - "sF": "20", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Sep 22, 2019", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New York Giants", - "sF": "31", - "sU": "32", - "spread": "5", - "ou": null - }, - { - "date": "Sep 22, 2019", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Houston Texans", - "sF": "20", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 2019", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 22, 2019", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New Orleans Saints", - "sF": "27", - "sU": "33", - "spread": "5", - "ou": null - }, - { - "date": "Sep 22, 2019", - "at": null, - "fav": "Los Angeles Rams", - "und": "Cleveland Browns", - "sF": "20", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Sep 23, 2019", - "at": null, - "fav": "Chicago Bears", - "und": "Washington Redskins", - "sF": "31", - "sU": "15", - "spread": "5", - "ou": null - }, - { - "date": "Sep 26, 2019", - "at": "@", - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 2019", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tennessee Titans", - "sF": "10", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 2019", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "25", - "sU": "40", - "spread": "7", - "ou": null - }, - { - "date": "Sep 29, 2019", - "at": null, - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "16", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 29, 2019", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Detroit Lions", - "sF": "34", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Sep 29, 2019", - "at": "@", - "fav": "Houston Texans", - "und": "Carolina Panthers", - "sF": "10", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Sep 29, 2019", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Oakland Raiders", - "sF": "24", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Sep 29, 2019", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Miami Dolphins", - "sF": "30", - "sU": "10", - "spread": "15", - "ou": null - }, - { - "date": "Sep 29, 2019", - "at": "@", - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "24", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 2019", - "at": null, - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Sep 29, 2019", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Tampa Bay Buccaneers", - "sF": "40", - "sU": "55", - "spread": "9", - "ou": null - }, - { - "date": "Sep 29, 2019", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "6", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Sep 29, 2019", - "at": "@", - "fav": "Denver Broncos", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 2019", - "at": null, - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "10", - "sU": "12", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 2019", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 3, 2019", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "29", - "spread": "1", - "ou": null - }, - { - "date": "Oct 6, 2019", - "at": "@", - "fav": "Carolina Panthers", - "und": "Jacksonville Jaguars", - "sF": "34", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2019", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Arizona Cardinals", - "sF": "23", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2019", - "at": "@", - "fav": "Houston Texans", - "und": "Atlanta Falcons", - "sF": "53", - "sU": "32", - "spread": "4", - "ou": null - }, - { - "date": "Oct 6, 2019", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2019", - "at": null, - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "28", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Oct 6, 2019", - "at": "N", - "fav": "Chicago Bears", - "und": "Oakland Raiders", - "sF": "21", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 6, 2019", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Jets", - "sF": "31", - "sU": "6", - "spread": "14", - "ou": null - }, - { - "date": "Oct 6, 2019", - "at": null, - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "26", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2019", - "at": "@", - "fav": "Tennessee Titans", - "und": "Buffalo Bills", - "sF": "7", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2019", - "at": null, - "fav": "New England Patriots", - "und": "Washington Redskins", - "sF": "33", - "sU": "7", - "spread": "15", - "ou": null - }, - { - "date": "Oct 6, 2019", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Denver Broncos", - "sF": "13", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 6, 2019", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "24", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2019", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Indianapolis Colts", - "sF": "13", - "sU": "19", - "spread": "10", - "ou": null - }, - { - "date": "Oct 7, 2019", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Cleveland Browns", - "sF": "31", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Oct 10, 2019", - "at": "@", - "fav": "New England Patriots", - "und": "New York Giants", - "sF": "35", - "sU": "14", - "spread": "16", - "ou": null - }, - { - "date": "Oct 13, 2019", - "at": "N", - "fav": "Carolina Panthers", - "und": "Tampa Bay Buccaneers", - "sF": "37", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Oct 13, 2019", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 13, 2019", - "at": "@", - "fav": "Cleveland Browns", - "und": "Seattle Seahawks", - "sF": "28", - "sU": "32", - "spread": "1", - "ou": null - }, - { - "date": "Oct 13, 2019", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "New Orleans Saints", - "sF": "6", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Oct 13, 2019", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Texans", - "sF": "24", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 2019", - "at": null, - "fav": "Washington Redskins", - "und": "Miami Dolphins", - "sF": "17", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 2019", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 2019", - "at": null, - "fav": "Atlanta Falcons", - "und": "Arizona Cardinals", - "sF": "33", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 2019", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "7", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 2019", - "at": "@", - "fav": "Denver Broncos", - "und": "Tennessee Titans", - "sF": "16", - "sU": "0", - "spread": "1", - "ou": null - }, - { - "date": "Oct 13, 2019", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Jets", - "sF": "22", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 13, 2019", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 14, 2019", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "23", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 2019", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "30", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 2019", - "at": null, - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "37", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 2019", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "31", - "sU": "21", - "spread": "17", - "ou": null - }, - { - "date": "Oct 20, 2019", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 20, 2019", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "42", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Oct 20, 2019", - "at": "@", - "fav": "Green Bay Packers", - "und": "Oakland Raiders", - "sF": "42", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Oct 20, 2019", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "30", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 20, 2019", - "at": "@", - "fav": "New York Giants", - "und": "Arizona Cardinals", - "sF": "21", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 2019", - "at": null, - "fav": "San Francisco 49ers", - "und": "Washington Redskins", - "sF": "9", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Oct 20, 2019", - "at": "@", - "fav": "Tennessee Titans", - "und": "Los Angeles Chargers", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 2019", - "at": "@", - "fav": "Chicago Bears", - "und": "New Orleans Saints", - "sF": "25", - "sU": "36", - "spread": "4", - "ou": null - }, - { - "date": "Oct 20, 2019", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Baltimore Ravens", - "sF": "16", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 2019", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "37", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 21, 2019", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "33", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Oct 24, 2019", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Washington Redskins", - "sF": "19", - "sU": "9", - "spread": "16", - "ou": null - }, - { - "date": "Oct 27, 2019", - "at": null, - "fav": "Seattle Seahawks", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 27, 2019", - "at": "@", - "fav": "Buffalo Bills", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Oct 27, 2019", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Chargers", - "sF": "16", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 2019", - "at": "@", - "fav": "Detroit Lions", - "und": "New York Giants", - "sF": "31", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Oct 27, 2019", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Denver Broncos", - "sF": "15", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Oct 27, 2019", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "New York Jets", - "sF": "29", - "sU": "15", - "spread": "7", - "ou": null - }, - { - "date": "Oct 27, 2019", - "at": "N", - "fav": "Los Angeles Rams", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Oct 27, 2019", - "at": "@", - "fav": "New Orleans Saints", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "9", - "spread": "12", - "ou": null - }, - { - "date": "Oct 27, 2019", - "at": "@", - "fav": "Tennessee Titans", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 2019", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Carolina Panthers", - "sF": "51", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Oct 27, 2019", - "at": "@", - "fav": "Houston Texans", - "und": "Oakland Raiders", - "sF": "27", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Oct 27, 2019", - "at": "@", - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "27", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Oct 27, 2019", - "at": null, - "fav": "Green Bay Packers", - "und": "Kansas City Chiefs", - "sF": "31", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Oct 28, 2019", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Miami Dolphins", - "sF": "27", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Oct 31, 2019", - "at": null, - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "28", - "sU": "25", - "spread": "10", - "ou": null - }, - { - "date": "Nov 3, 2019", - "at": "N", - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "3", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Nov 3, 2019", - "at": "@", - "fav": "Buffalo Bills", - "und": "Washington Redskins", - "sF": "24", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Nov 3, 2019", - "at": "@", - "fav": "Carolina Panthers", - "und": "Tennessee Titans", - "sF": "30", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 2019", - "at": null, - "fav": "Minnesota Vikings", - "und": "Kansas City Chiefs", - "sF": "23", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Nov 3, 2019", - "at": null, - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "18", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 2019", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "22", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Nov 3, 2019", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Indianapolis Colts", - "sF": "26", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Nov 3, 2019", - "at": "@", - "fav": "Oakland Raiders", - "und": "Detroit Lions", - "sF": "31", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 3, 2019", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Tampa Bay Buccaneers", - "sF": "40", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Nov 3, 2019", - "at": null, - "fav": "Cleveland Browns", - "und": "Denver Broncos", - "sF": "19", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Nov 3, 2019", - "at": null, - "fav": "Green Bay Packers", - "und": "Los Angeles Chargers", - "sF": "11", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Nov 3, 2019", - "at": null, - "fav": "New England Patriots", - "und": "Baltimore Ravens", - "sF": "20", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Nov 4, 2019", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "37", - "sU": "18", - "spread": "6", - "ou": null - }, - { - "date": "Nov 7, 2019", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Oakland Raiders", - "sF": "24", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Nov 10, 2019", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "20", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 10, 2019", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "49", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Nov 10, 2019", - "at": "@", - "fav": "Cleveland Browns", - "und": "Buffalo Bills", - "sF": "19", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 2019", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "9", - "sU": "26", - "spread": "14", - "ou": null - }, - { - "date": "Nov 10, 2019", - "at": null, - "fav": "New York Giants", - "und": "New York Jets", - "sF": "27", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 2019", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Arizona Cardinals", - "sF": "30", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Nov 10, 2019", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Tennessee Titans", - "sF": "32", - "sU": "35", - "spread": "5", - "ou": null - }, - { - "date": "Nov 10, 2019", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Miami Dolphins", - "sF": "12", - "sU": "16", - "spread": "11", - "ou": null - }, - { - "date": "Nov 10, 2019", - "at": "@", - "fav": "Green Bay Packers", - "und": "Carolina Panthers", - "sF": "24", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Nov 10, 2019", - "at": null, - "fav": "Los Angeles Rams", - "und": "Pittsburgh Steelers", - "sF": "12", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 10, 2019", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Nov 11, 2019", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Nov 14, 2019", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "21", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 2019", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Houston Texans", - "sF": "41", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 17, 2019", - "at": "@", - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "3", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 2019", - "at": null, - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "35", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Nov 17, 2019", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "33", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 17, 2019", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "37", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Nov 17, 2019", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Denver Broncos", - "sF": "27", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Nov 17, 2019", - "at": null, - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "34", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 17, 2019", - "at": "@", - "fav": "Washington Redskins", - "und": "New York Jets", - "sF": "17", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Nov 17, 2019", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "36", - "sU": "26", - "spread": "10", - "ou": null - }, - { - "date": "Nov 17, 2019", - "at": "@", - "fav": "Oakland Raiders", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Nov 17, 2019", - "at": null, - "fav": "New England Patriots", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 17, 2019", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "17", - "sU": "7", - "spread": "5", - "ou": null - }, - { - "date": "Nov 18, 2019", - "at": "N", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Chargers", - "sF": "24", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Nov 21, 2019", - "at": "@", - "fav": "Houston Texans", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 2019", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "22", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 2019", - "at": "@", - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "20", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 2019", - "at": "@", - "fav": "Chicago Bears", - "und": "New York Giants", - "sF": "19", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 24, 2019", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "16", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Nov 24, 2019", - "at": "@", - "fav": "Cleveland Browns", - "und": "Miami Dolphins", - "sF": "41", - "sU": "24", - "spread": "11", - "ou": null - }, - { - "date": "Nov 24, 2019", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "34", - "sU": "31", - "spread": "10", - "ou": null - }, - { - "date": "Nov 24, 2019", - "at": null, - "fav": "Oakland Raiders", - "und": "New York Jets", - "sF": "3", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 2019", - "at": null, - "fav": "Seattle Seahawks", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "9", - "spread": "1", - "ou": null - }, - { - "date": "Nov 24, 2019", - "at": null, - "fav": "Detroit Lions", - "und": "Washington Redskins", - "sF": "16", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 2019", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "42", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 24, 2019", - "at": "@", - "fav": "New England Patriots", - "und": "Dallas Cowboys", - "sF": "13", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Nov 24, 2019", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "37", - "sU": "8", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 2019", - "at": null, - "fav": "Baltimore Ravens", - "und": "Los Angeles Rams", - "sF": "45", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 2019", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "24", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Nov 28, 2019", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Buffalo Bills", - "sF": "15", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Nov 28, 2019", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "26", - "sU": "18", - "spread": "7", - "ou": null - }, - { - "date": "Dec 1, 2019", - "at": "@", - "fav": "Baltimore Ravens", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Dec 1, 2019", - "at": "@", - "fav": "Carolina Panthers", - "und": "Washington Redskins", - "sF": "21", - "sU": "29", - "spread": "10", - "ou": null - }, - { - "date": "Dec 1, 2019", - "at": null, - "fav": "New York Jets", - "und": "Cincinnati Bengals", - "sF": "6", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Dec 1, 2019", - "at": null, - "fav": "Tennessee Titans", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 1, 2019", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "11", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 2019", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Miami Dolphins", - "sF": "31", - "sU": "37", - "spread": "10", - "ou": null - }, - { - "date": "Dec 1, 2019", - "at": null, - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "31", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 1, 2019", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 1, 2019", - "at": null, - "fav": "Los Angeles Rams", - "und": "Arizona Cardinals", - "sF": "34", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Dec 1, 2019", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Denver Broncos", - "sF": "20", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Dec 1, 2019", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Oakland Raiders", - "sF": "40", - "sU": "9", - "spread": "11", - "ou": null - }, - { - "date": "Dec 1, 2019", - "at": null, - "fav": "New England Patriots", - "und": "Houston Texans", - "sF": "22", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 2019", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Minnesota Vikings", - "sF": "37", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Dec 5, 2019", - "at": null, - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "24", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2019", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "40", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2019", - "at": null, - "fav": "Baltimore Ravens", - "und": "Buffalo Bills", - "sF": "24", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 2019", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 2019", - "at": "@", - "fav": "Green Bay Packers", - "und": "Washington Redskins", - "sF": "20", - "sU": "15", - "spread": "13", - "ou": null - }, - { - "date": "Dec 8, 2019", - "at": "@", - "fav": "Houston Texans", - "und": "Denver Broncos", - "sF": "24", - "sU": "38", - "spread": "8", - "ou": null - }, - { - "date": "Dec 8, 2019", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "20", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Dec 8, 2019", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "46", - "sU": "48", - "spread": "1", - "ou": null - }, - { - "date": "Dec 8, 2019", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "22", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Dec 8, 2019", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Indianapolis Colts", - "sF": "38", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2019", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Jacksonville Jaguars", - "sF": "45", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2019", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Arizona Cardinals", - "sF": "23", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 8, 2019", - "at": "@", - "fav": "New England Patriots", - "und": "Kansas City Chiefs", - "sF": "16", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2019", - "at": null, - "fav": "Tennessee Titans", - "und": "Oakland Raiders", - "sF": "42", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2019", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Seattle Seahawks", - "sF": "28", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Dec 9, 2019", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "23", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 12, 2019", - "at": "@", - "fav": "Baltimore Ravens", - "und": "New York Jets", - "sF": "42", - "sU": "21", - "spread": "17", - "ou": null - }, - { - "date": "Dec 15, 2019", - "at": null, - "fav": "Seattle Seahawks", - "und": "Carolina Panthers", - "sF": "30", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Dec 15, 2019", - "at": null, - "fav": "New England Patriots", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Dec 15, 2019", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "38", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Dec 15, 2019", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "21", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Dec 15, 2019", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "23", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Dec 15, 2019", - "at": "@", - "fav": "New York Giants", - "und": "Miami Dolphins", - "sF": "36", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 2019", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "21", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 2019", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Redskins", - "sF": "37", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 2019", - "at": null, - "fav": "Cleveland Browns", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 2019", - "at": null, - "fav": "Minnesota Vikings", - "und": "Los Angeles Chargers", - "sF": "39", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Dec 15, 2019", - "at": "@", - "fav": "Oakland Raiders", - "und": "Jacksonville Jaguars", - "sF": "16", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 2019", - "at": null, - "fav": "Los Angeles Rams", - "und": "Dallas Cowboys", - "sF": "21", - "sU": "44", - "spread": "1", - "ou": null - }, - { - "date": "Dec 15, 2019", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "22", - "sU": "29", - "spread": "10", - "ou": null - }, - { - "date": "Dec 15, 2019", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Buffalo Bills", - "sF": "10", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 16, 2019", - "at": "@", - "fav": "New Orleans Saints", - "und": "Indianapolis Colts", - "sF": "34", - "sU": "7", - "spread": "8", - "ou": null - }, - { - "date": "Dec 21, 2019", - "at": null, - "fav": "Houston Texans", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 2019", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "24", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 2019", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "34", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Dec 22, 2019", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Dec 22, 2019", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "31", - "sU": "15", - "spread": "9", - "ou": null - }, - { - "date": "Dec 22, 2019", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Carolina Panthers", - "sF": "38", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Dec 22, 2019", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Miami Dolphins", - "sF": "35", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Dec 22, 2019", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "10", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 2019", - "at": null, - "fav": "New Orleans Saints", - "und": "Tennessee Titans", - "sF": "38", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 2019", - "at": null, - "fav": "New York Giants", - "und": "Washington Redskins", - "sF": "41", - "sU": "35", - "spread": "1", - "ou": null - }, - { - "date": "Dec 22, 2019", - "at": "@", - "fav": "Denver Broncos", - "und": "Detroit Lions", - "sF": "27", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 22, 2019", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Oakland Raiders", - "sF": "17", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 22, 2019", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "9", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 22, 2019", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "13", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Dec 22, 2019", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Chicago Bears", - "sF": "26", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Dec 23, 2019", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "10", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Dec 29, 2019", - "at": null, - "fav": "New York Jets", - "und": "Buffalo Bills", - "sF": "13", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Dec 29, 2019", - "at": null, - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "42", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Dec 29, 2019", - "at": null, - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "33", - "spread": "2", - "ou": null - }, - { - "date": "Dec 29, 2019", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "23", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Dec 29, 2019", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Chargers", - "sF": "31", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Dec 29, 2019", - "at": null, - "fav": "Chicago Bears", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Dec 29, 2019", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "24", - "sU": "27", - "spread": "17", - "ou": null - }, - { - "date": "Dec 29, 2019", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "22", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Dec 29, 2019", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "10", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Dec 29, 2019", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Redskins", - "sF": "47", - "sU": "16", - "spread": "12", - "ou": null - }, - { - "date": "Dec 29, 2019", - "at": "@", - "fav": "Denver Broncos", - "und": "Oakland Raiders", - "sF": "16", - "sU": "15", - "spread": "5", - "ou": null - }, - { - "date": "Dec 29, 2019", - "at": null, - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "35", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 29, 2019", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "38", - "spread": "5", - "ou": null - }, - { - "date": "Dec 29, 2019", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 29, 2019", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "34", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 29, 2019", - "at": null, - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "26", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Jan 4, 2020", - "at": "@", - "fav": "Houston Texans (4)", - "und": "Buffalo Bills (5)", - "sF": "22", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Jan 4, 2020", - "at": "@", - "fav": "New England Patriots (3)", - "und": "Tennessee Titans (6)", - "sF": "13", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Jan 5, 2020", - "at": "@", - "fav": "New Orleans Saints (3)", - "und": "Minnesota Vikings (6)", - "sF": "20", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Jan 5, 2020", - "at": "@", - "fav": "Philadelphia Eagles (4)", - "und": "Seattle Seahawks (5)", - "sF": "9", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Jan 11, 2020", - "at": "@", - "fav": "San Francisco 49ers (1)", - "und": "Minnesota Vikings (6)", - "sF": "27", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Jan 11, 2020", - "at": "@", - "fav": "Baltimore Ravens (1)", - "und": "Tennessee Titans (6)", - "sF": "12", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Jan 12, 2020", - "at": "@", - "fav": "Kansas City Chiefs (2)", - "und": "Houston Texans (4)", - "sF": "51", - "sU": "31", - "spread": "10", - "ou": null - }, - { - "date": "Jan 12, 2020", - "at": "@", - "fav": "Green Bay Packers (2)", - "und": "Seattle Seahawks (5)", - "sF": "28", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Jan 19, 2020", - "at": "@", - "fav": "Kansas City Chiefs (2)", - "und": "Tennessee Titans (6)", - "sF": "35", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Jan 19, 2020", - "at": "@", - "fav": "San Francisco 49ers (1)", - "und": "Green Bay Packers (2)", - "sF": "37", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Feb 2, 2020", - "at": "N", - "fav": "Kansas City Chiefs (2)", - "und": "San Francisco 49ers (1)", - "sF": "31", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Sep 10, 2020", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Texans", - "sF": "34", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Sep 13, 2020", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Seattle Seahawks", - "sF": "25", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Sep 13, 2020", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "38", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Sep 13, 2020", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "27", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 13, 2020", - "at": null, - "fav": "Las Vegas Raiders", - "und": "Carolina Panthers", - "sF": "34", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 13, 2020", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "23", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Sep 13, 2020", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Sep 13, 2020", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "34", - "sU": "43", - "spread": "1", - "ou": null - }, - { - "date": "Sep 13, 2020", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "21", - "sU": "11", - "spread": "7", - "ou": null - }, - { - "date": "Sep 13, 2020", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Football Team", - "sF": "17", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Sep 13, 2020", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Cincinnati Bengals", - "sF": "16", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Sep 13, 2020", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "34", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Sep 13, 2020", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Sep 13, 2020", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Dallas Cowboys", - "sF": "20", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 14, 2020", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "New York Giants", - "sF": "26", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Sep 14, 2020", - "at": null, - "fav": "Tennessee Titans", - "und": "Denver Broncos", - "sF": "16", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 2020", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "35", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Sep 20, 2020", - "at": "@", - "fav": "Chicago Bears", - "und": "New York Giants", - "sF": "17", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Sep 20, 2020", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "40", - "sU": "39", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 2020", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "42", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 2020", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "11", - "spread": "3", - "ou": null - }, - { - "date": "Sep 20, 2020", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "31", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Sep 20, 2020", - "at": null, - "fav": "San Francisco 49ers", - "und": "New York Jets", - "sF": "31", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 2020", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Los Angeles Rams", - "sF": "19", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Sep 20, 2020", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Denver Broncos", - "sF": "26", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Sep 20, 2020", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "31", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 2020", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "33", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 2020", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Washington Football Team", - "sF": "30", - "sU": "15", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 2020", - "at": null, - "fav": "Baltimore Ravens", - "und": "Houston Texans", - "sF": "33", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Sep 20, 2020", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Los Angeles Chargers", - "sF": "23", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Sep 20, 2020", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New England Patriots", - "sF": "35", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Sep 21, 2020", - "at": null, - "fav": "New Orleans Saints", - "und": "Las Vegas Raiders", - "sF": "24", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Sep 24, 2020", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Miami Dolphins", - "sF": "13", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Sep 27, 2020", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Chicago Bears", - "sF": "26", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Sep 27, 2020", - "at": "@", - "fav": "Buffalo Bills", - "und": "Los Angeles Rams", - "sF": "35", - "sU": "32", - "spread": "1", - "ou": null - }, - { - "date": "Sep 27, 2020", - "at": "@", - "fav": "Cleveland Browns", - "und": "Washington Football Team", - "sF": "34", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Sep 27, 2020", - "at": null, - "fav": "Tennessee Titans", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 2020", - "at": "@", - "fav": "New England Patriots", - "und": "Las Vegas Raiders", - "sF": "36", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Sep 27, 2020", - "at": null, - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "36", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 2020", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Cincinnati Bengals", - "sF": "23", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Sep 27, 2020", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Houston Texans", - "sF": "28", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 2020", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "36", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Sep 27, 2020", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Carolina Panthers", - "sF": "16", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 2020", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Detroit Lions", - "sF": "23", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Sep 27, 2020", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Denver Broncos", - "sF": "28", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Sep 27, 2020", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Dallas Cowboys", - "sF": "38", - "sU": "31", - "spread": "5", - "ou": null - }, - { - "date": "Sep 27, 2020", - "at": "@", - "fav": "New Orleans Saints", - "und": "Green Bay Packers", - "sF": "30", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 2020", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Kansas City Chiefs", - "sF": "20", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 2020", - "at": "@", - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "28", - "sU": "37", - "spread": "1", - "ou": null - }, - { - "date": "Oct 4, 2020", - "at": null, - "fav": "Arizona Cardinals", - "und": "Carolina Panthers", - "sF": "21", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 2020", - "at": null, - "fav": "Indianapolis Colts", - "und": "Chicago Bears", - "sF": "19", - "sU": "11", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 2020", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Jacksonville Jaguars", - "sF": "33", - "sU": "25", - "spread": "1", - "ou": null - }, - { - "date": "Oct 4, 2020", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Cleveland Browns", - "sF": "38", - "sU": "49", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 2020", - "at": null, - "fav": "New Orleans Saints", - "und": "Detroit Lions", - "sF": "35", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 2020", - "at": "@", - "fav": "Houston Texans", - "und": "Minnesota Vikings", - "sF": "23", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 2020", - "at": null, - "fav": "Seattle Seahawks", - "und": "Miami Dolphins", - "sF": "31", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 4, 2020", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Los Angeles Chargers", - "sF": "38", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Oct 4, 2020", - "at": null, - "fav": "Baltimore Ravens", - "und": "Washington Football Team", - "sF": "31", - "sU": "17", - "spread": "14", - "ou": null - }, - { - "date": "Oct 4, 2020", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New York Giants", - "sF": "17", - "sU": "9", - "spread": "13", - "ou": null - }, - { - "date": "Oct 4, 2020", - "at": null, - "fav": "Buffalo Bills", - "und": "Las Vegas Raiders", - "sF": "30", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 4, 2020", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "25", - "spread": "8", - "ou": null - }, - { - "date": "Oct 5, 2020", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New England Patriots", - "sF": "26", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Oct 5, 2020", - "at": "@", - "fav": "Green Bay Packers", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Oct 8, 2020", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "19", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 11, 2020", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "16", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 11, 2020", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "27", - "sU": "3", - "spread": "12", - "ou": null - }, - { - "date": "Oct 11, 2020", - "at": "@", - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "30", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 11, 2020", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Las Vegas Raiders", - "sF": "32", - "sU": "40", - "spread": "11", - "ou": null - }, - { - "date": "Oct 11, 2020", - "at": null, - "fav": "Arizona Cardinals", - "und": "New York Jets", - "sF": "30", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 2020", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Philadelphia Eagles", - "sF": "38", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 2020", - "at": null, - "fav": "Los Angeles Rams", - "und": "Washington Football Team", - "sF": "30", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 2020", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Miami Dolphins", - "sF": "17", - "sU": "43", - "spread": "8", - "ou": null - }, - { - "date": "Oct 11, 2020", - "at": "@", - "fav": "Cleveland Browns", - "und": "Indianapolis Colts", - "sF": "32", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 11, 2020", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "37", - "sU": "34", - "spread": "7", - "ou": null - }, - { - "date": "Oct 11, 2020", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Oct 12, 2020", - "at": "@", - "fav": "New Orleans Saints", - "und": "Los Angeles Chargers", - "sF": "30", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Oct 13, 2020", - "at": null, - "fav": "Buffalo Bills", - "und": "Tennessee Titans", - "sF": "16", - "sU": "42", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2020", - "at": "@", - "fav": "Carolina Panthers", - "und": "Chicago Bears", - "sF": "16", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 18, 2020", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Oct 18, 2020", - "at": null, - "fav": "Detroit Lions", - "und": "Jacksonville Jaguars", - "sF": "34", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2020", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "40", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2020", - "at": "@", - "fav": "New England Patriots", - "und": "Denver Broncos", - "sF": "12", - "sU": "18", - "spread": "7", - "ou": null - }, - { - "date": "Oct 18, 2020", - "at": "@", - "fav": "New York Giants", - "und": "Washington Football Team", - "sF": "20", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Oct 18, 2020", - "at": null, - "fav": "Baltimore Ravens", - "und": "Philadelphia Eagles", - "sF": "30", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Oct 18, 2020", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "38", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2020", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "42", - "sU": "36", - "spread": "4", - "ou": null - }, - { - "date": "Oct 18, 2020", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "24", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Oct 18, 2020", - "at": null, - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "10", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Oct 18, 2020", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "16", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Oct 19, 2020", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "26", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 19, 2020", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "10", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Oct 22, 2020", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "22", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Oct 25, 2020", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Detroit Lions", - "sF": "22", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 25, 2020", - "at": null, - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "37", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Oct 25, 2020", - "at": null, - "fav": "Green Bay Packers", - "und": "Houston Texans", - "sF": "35", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 25, 2020", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "27", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 25, 2020", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "18", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 25, 2020", - "at": "@", - "fav": "Tennessee Titans", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 25, 2020", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Football Team", - "sF": "3", - "sU": "25", - "spread": "1", - "ou": null - }, - { - "date": "Oct 25, 2020", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Las Vegas Raiders", - "sF": "45", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 2020", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "43", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 25, 2020", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Jacksonville Jaguars", - "sF": "39", - "sU": "29", - "spread": "8", - "ou": null - }, - { - "date": "Oct 25, 2020", - "at": "@", - "fav": "New England Patriots", - "und": "San Francisco 49ers", - "sF": "6", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Oct 25, 2020", - "at": null, - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "34", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Oct 26, 2020", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "24", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 2020", - "at": "@", - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "25", - "spread": "1", - "ou": null - }, - { - "date": "Nov 1, 2020", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Nov 1, 2020", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "24", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Nov 1, 2020", - "at": null, - "fav": "Tennessee Titans", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Nov 1, 2020", - "at": "@", - "fav": "Cleveland Browns", - "und": "Las Vegas Raiders", - "sF": "6", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Nov 1, 2020", - "at": null, - "fav": "Indianapolis Colts", - "und": "Detroit Lions", - "sF": "41", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 2020", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "22", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Nov 1, 2020", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "35", - "sU": "9", - "spread": "20", - "ou": null - }, - { - "date": "Nov 1, 2020", - "at": null, - "fav": "Los Angeles Rams", - "und": "Miami Dolphins", - "sF": "17", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 2020", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Denver Broncos", - "sF": "30", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 2020", - "at": null, - "fav": "New Orleans Saints", - "und": "Chicago Bears", - "sF": "26", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Nov 1, 2020", - "at": "@", - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "37", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 1, 2020", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "23", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Nov 2, 2020", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "New York Giants", - "sF": "25", - "sU": "23", - "spread": "13", - "ou": null - }, - { - "date": "Nov 5, 2020", - "at": null, - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "34", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 2020", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Denver Broncos", - "sF": "34", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 8, 2020", - "at": null, - "fav": "Seattle Seahawks", - "und": "Buffalo Bills", - "sF": "34", - "sU": "44", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 2020", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Baltimore Ravens", - "sF": "10", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Nov 8, 2020", - "at": null, - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "25", - "spread": "7", - "ou": null - }, - { - "date": "Nov 8, 2020", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Carolina Panthers", - "sF": "33", - "sU": "31", - "spread": "10", - "ou": null - }, - { - "date": "Nov 8, 2020", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "34", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 2020", - "at": "@", - "fav": "Tennessee Titans", - "und": "Chicago Bears", - "sF": "24", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 2020", - "at": "@", - "fav": "Washington Football Team", - "und": "New York Giants", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 8, 2020", - "at": null, - "fav": "Las Vegas Raiders", - "und": "Los Angeles Chargers", - "sF": "31", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Nov 8, 2020", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Miami Dolphins", - "sF": "31", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Nov 8, 2020", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "19", - "spread": "14", - "ou": null - }, - { - "date": "Nov 8, 2020", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "3", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 2020", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "30", - "sU": "27", - "spread": "9", - "ou": null - }, - { - "date": "Nov 12, 2020", - "at": null, - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "34", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Nov 15, 2020", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "46", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Nov 15, 2020", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Texans", - "sF": "10", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Nov 15, 2020", - "at": "@", - "fav": "Detroit Lions", - "und": "Washington Football Team", - "sF": "30", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 15, 2020", - "at": "@", - "fav": "Green Bay Packers", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "20", - "spread": "13", - "ou": null - }, - { - "date": "Nov 15, 2020", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "17", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Nov 15, 2020", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Buffalo Bills", - "sF": "32", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 2020", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "Denver Broncos", - "sF": "37", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 2020", - "at": "@", - "fav": "Miami Dolphins", - "und": "Los Angeles Chargers", - "sF": "29", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 15, 2020", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Seattle Seahawks", - "sF": "23", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 15, 2020", - "at": "@", - "fav": "New Orleans Saints", - "und": "San Francisco 49ers", - "sF": "27", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Nov 15, 2020", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "36", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 15, 2020", - "at": null, - "fav": "Baltimore Ravens", - "und": "New England Patriots", - "sF": "17", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 16, 2020", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "19", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 2020", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "28", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 2020", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Tennessee Titans", - "sF": "24", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Nov 22, 2020", - "at": null, - "fav": "Detroit Lions", - "und": "Carolina Panthers", - "sF": "0", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 2020", - "at": "@", - "fav": "Cleveland Browns", - "und": "Philadelphia Eagles", - "sF": "22", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Nov 22, 2020", - "at": null, - "fav": "New England Patriots", - "und": "Houston Texans", - "sF": "20", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 22, 2020", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "3", - "spread": "11", - "ou": null - }, - { - "date": "Nov 22, 2020", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "24", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Nov 22, 2020", - "at": "@", - "fav": "Washington Football Team", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Nov 22, 2020", - "at": null, - "fav": "Miami Dolphins", - "und": "Denver Broncos", - "sF": "13", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 22, 2020", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "New York Jets", - "sF": "34", - "sU": "28", - "spread": "10", - "ou": null - }, - { - "date": "Nov 22, 2020", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Green Bay Packers", - "sF": "34", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Nov 22, 2020", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Dallas Cowboys", - "sF": "28", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Nov 22, 2020", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Las Vegas Raiders", - "sF": "35", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Nov 23, 2020", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Nov 26, 2020", - "at": null, - "fav": "Houston Texans", - "und": "Detroit Lions", - "sF": "41", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 2020", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Football Team", - "sF": "16", - "sU": "41", - "spread": "2", - "ou": null - }, - { - "date": "Nov 29, 2020", - "at": null, - "fav": "Las Vegas Raiders", - "und": "Atlanta Falcons", - "sF": "6", - "sU": "43", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 2020", - "at": "@", - "fav": "Buffalo Bills", - "und": "Los Angeles Chargers", - "sF": "27", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Nov 29, 2020", - "at": null, - "fav": "New York Giants", - "und": "Cincinnati Bengals", - "sF": "19", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Nov 29, 2020", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "26", - "sU": "45", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 2020", - "at": null, - "fav": "Cleveland Browns", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "25", - "spread": "7", - "ou": null - }, - { - "date": "Nov 29, 2020", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Carolina Panthers", - "sF": "28", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 2020", - "at": null, - "fav": "Arizona Cardinals", - "und": "New England Patriots", - "sF": "17", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 29, 2020", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "20", - "sU": "3", - "spread": "7", - "ou": null - }, - { - "date": "Nov 29, 2020", - "at": null, - "fav": "New Orleans Saints", - "und": "Denver Broncos", - "sF": "31", - "sU": "3", - "spread": "17", - "ou": null - }, - { - "date": "Nov 29, 2020", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "20", - "sU": "23", - "spread": "5", - "ou": null - }, - { - "date": "Nov 29, 2020", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 2020", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "41", - "sU": "25", - "spread": "7", - "ou": null - }, - { - "date": "Nov 30, 2020", - "at": null, - "fav": "Seattle Seahawks", - "und": "Philadelphia Eagles", - "sF": "23", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 2020", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "19", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 6, 2020", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Dec 6, 2020", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "30", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 2020", - "at": null, - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "26", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 6, 2020", - "at": "@", - "fav": "Miami Dolphins", - "und": "Cincinnati Bengals", - "sF": "19", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Dec 6, 2020", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Dec 6, 2020", - "at": null, - "fav": "Las Vegas Raiders", - "und": "New York Jets", - "sF": "31", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Dec 6, 2020", - "at": "@", - "fav": "Tennessee Titans", - "und": "Cleveland Browns", - "sF": "35", - "sU": "41", - "spread": "4", - "ou": null - }, - { - "date": "Dec 6, 2020", - "at": null, - "fav": "Los Angeles Rams", - "und": "Arizona Cardinals", - "sF": "38", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Dec 6, 2020", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New York Giants", - "sF": "12", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Dec 6, 2020", - "at": "@", - "fav": "Green Bay Packers", - "und": "Philadelphia Eagles", - "sF": "30", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Dec 6, 2020", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "New England Patriots", - "sF": "0", - "sU": "45", - "spread": "2", - "ou": null - }, - { - "date": "Dec 6, 2020", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "22", - "sU": "16", - "spread": "13", - "ou": null - }, - { - "date": "Dec 7, 2020", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Washington Football Team", - "sF": "17", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Dec 7, 2020", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Buffalo Bills", - "sF": "24", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Dec 8, 2020", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Dallas Cowboys", - "sF": "34", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Dec 10, 2020", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New England Patriots", - "sF": "24", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Dec 13, 2020", - "at": "@", - "fav": "Carolina Panthers", - "und": "Denver Broncos", - "sF": "27", - "sU": "32", - "spread": "4", - "ou": null - }, - { - "date": "Dec 13, 2020", - "at": null, - "fav": "Houston Texans", - "und": "Chicago Bears", - "sF": "7", - "sU": "36", - "spread": "1", - "ou": null - }, - { - "date": "Dec 13, 2020", - "at": null, - "fav": "Dallas Cowboys", - "und": "Cincinnati Bengals", - "sF": "30", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 2020", - "at": null, - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "31", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 2020", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Miami Dolphins", - "sF": "33", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 2020", - "at": null, - "fav": "Arizona Cardinals", - "und": "New York Giants", - "sF": "26", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 2020", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Minnesota Vikings", - "sF": "26", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 2020", - "at": null, - "fav": "Indianapolis Colts", - "und": "Las Vegas Raiders", - "sF": "44", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 13, 2020", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New York Jets", - "sF": "40", - "sU": "3", - "spread": "16", - "ou": null - }, - { - "date": "Dec 13, 2020", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "31", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Dec 13, 2020", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 13, 2020", - "at": null, - "fav": "New Orleans Saints", - "und": "Philadelphia Eagles", - "sF": "21", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Dec 13, 2020", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Washington Football Team", - "sF": "15", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 13, 2020", - "at": "@", - "fav": "Buffalo Bills", - "und": "Pittsburgh Steelers", - "sF": "26", - "sU": "15", - "spread": "2", - "ou": null - }, - { - "date": "Dec 14, 2020", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "47", - "sU": "42", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 2020", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "Los Angeles Chargers", - "sF": "27", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 2020", - "at": null, - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "48", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Dec 19, 2020", - "at": "@", - "fav": "Green Bay Packers", - "und": "Carolina Panthers", - "sF": "24", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Dec 20, 2020", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 20, 2020", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Jacksonville Jaguars", - "sF": "40", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Dec 20, 2020", - "at": null, - "fav": "San Francisco 49ers", - "und": "Dallas Cowboys", - "sF": "33", - "sU": "41", - "spread": "4", - "ou": null - }, - { - "date": "Dec 20, 2020", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "27", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 20, 2020", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "12", - "sU": "22", - "spread": "1", - "ou": null - }, - { - "date": "Dec 20, 2020", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "27", - "sU": "33", - "spread": "2", - "ou": null - }, - { - "date": "Dec 20, 2020", - "at": "@", - "fav": "Tennessee Titans", - "und": "Detroit Lions", - "sF": "46", - "sU": "25", - "spread": "9", - "ou": null - }, - { - "date": "Dec 20, 2020", - "at": null, - "fav": "Seattle Seahawks", - "und": "Washington Football Team", - "sF": "20", - "sU": "15", - "spread": "6", - "ou": null - }, - { - "date": "Dec 20, 2020", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Philadelphia Eagles", - "sF": "33", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Dec 20, 2020", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New York Jets", - "sF": "20", - "sU": "23", - "spread": "17", - "ou": null - }, - { - "date": "Dec 20, 2020", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New Orleans Saints", - "sF": "32", - "sU": "29", - "spread": "2", - "ou": null - }, - { - "date": "Dec 20, 2020", - "at": null, - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "20", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Dec 21, 2020", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "27", - "spread": "14", - "ou": null - }, - { - "date": "Dec 25, 2020", - "at": "@", - "fav": "New Orleans Saints", - "und": "Minnesota Vikings", - "sF": "52", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Dec 26, 2020", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Detroit Lions", - "sF": "47", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Dec 26, 2020", - "at": "@", - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "12", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Dec 26, 2020", - "at": null, - "fav": "Miami Dolphins", - "und": "Las Vegas Raiders", - "sF": "26", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Dec 27, 2020", - "at": "@", - "fav": "Baltimore Ravens", - "und": "New York Giants", - "sF": "27", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Dec 27, 2020", - "at": "@", - "fav": "Houston Texans", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "37", - "spread": "7", - "ou": null - }, - { - "date": "Dec 27, 2020", - "at": null, - "fav": "Chicago Bears", - "und": "Jacksonville Jaguars", - "sF": "41", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Dec 27, 2020", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "14", - "spread": "11", - "ou": null - }, - { - "date": "Dec 27, 2020", - "at": null, - "fav": "Cleveland Browns", - "und": "New York Jets", - "sF": "16", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Dec 27, 2020", - "at": null, - "fav": "Indianapolis Colts", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Dec 27, 2020", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Denver Broncos", - "sF": "19", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Dec 27, 2020", - "at": null, - "fav": "Carolina Panthers", - "und": "Washington Football Team", - "sF": "20", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 27, 2020", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Dec 27, 2020", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "9", - "spread": "1", - "ou": null - }, - { - "date": "Dec 27, 2020", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tennessee Titans", - "sF": "40", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 28, 2020", - "at": null, - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "38", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Jan 3, 2021", - "at": null, - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "26", - "sU": "56", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 2021", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "38", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Jan 3, 2021", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "24", - "sU": "22", - "spread": "10", - "ou": null - }, - { - "date": "Jan 3, 2021", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "37", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 2021", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "28", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Jan 3, 2021", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "19", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Jan 3, 2021", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "44", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Jan 3, 2021", - "at": null, - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "33", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Jan 3, 2021", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "35", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Jan 3, 2021", - "at": null, - "fav": "Las Vegas Raiders", - "und": "Denver Broncos", - "sF": "32", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Jan 3, 2021", - "at": null, - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "41", - "sU": "38", - "spread": "7", - "ou": null - }, - { - "date": "Jan 3, 2021", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "14", - "spread": "15", - "ou": null - }, - { - "date": "Jan 3, 2021", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Kansas City Chiefs", - "sF": "38", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Jan 3, 2021", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Arizona Cardinals", - "sF": "18", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Jan 3, 2021", - "at": null, - "fav": "Seattle Seahawks", - "und": "San Francisco 49ers", - "sF": "26", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Jan 3, 2021", - "at": null, - "fav": "Washington Football Team", - "und": "Philadelphia Eagles", - "sF": "20", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Jan 9, 2021", - "at": "@", - "fav": "Buffalo Bills (2)", - "und": "Indianapolis Colts (7)", - "sF": "27", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Jan 9, 2021", - "at": "@", - "fav": "Seattle Seahawks (3)", - "und": "Los Angeles Rams (6)", - "sF": "20", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Jan 9, 2021", - "at": null, - "fav": "Tampa Bay Buccaneers (5)", - "und": "Washington Football Team (4)", - "sF": "31", - "sU": "23", - "spread": "10", - "ou": null - }, - { - "date": "Jan 10, 2021", - "at": null, - "fav": "Baltimore Ravens (5)", - "und": "Tennessee Titans (4)", - "sF": "20", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Jan 10, 2021", - "at": "@", - "fav": "New Orleans Saints (2)", - "und": "Chicago Bears (7)", - "sF": "21", - "sU": "9", - "spread": "11", - "ou": null - }, - { - "date": "Jan 10, 2021", - "at": "@", - "fav": "Pittsburgh Steelers (3)", - "und": "Cleveland Browns (6)", - "sF": "37", - "sU": "48", - "spread": "5", - "ou": null - }, - { - "date": "Jan 16, 2021", - "at": "@", - "fav": "Green Bay Packers (1)", - "und": "Los Angeles Rams (6)", - "sF": "32", - "sU": "18", - "spread": "7", - "ou": null - }, - { - "date": "Jan 16, 2021", - "at": "@", - "fav": "Buffalo Bills (2)", - "und": "Baltimore Ravens (5)", - "sF": "17", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Jan 17, 2021", - "at": "@", - "fav": "Kansas City Chiefs (1)", - "und": "Cleveland Browns (6)", - "sF": "22", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Jan 17, 2021", - "at": "@", - "fav": "New Orleans Saints (2)", - "und": "Tampa Bay Buccaneers (5)", - "sF": "20", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Jan 24, 2021", - "at": "@", - "fav": "Green Bay Packers (1)", - "und": "Tampa Bay Buccaneers (5)", - "sF": "26", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Jan 24, 2021", - "at": "@", - "fav": "Kansas City Chiefs (1)", - "und": "Buffalo Bills (2)", - "sF": "38", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Feb 7, 2021", - "at": "N", - "fav": "Kansas City Chiefs (1)", - "und": "Tampa Bay Buccaneers (5)", - "sF": "9", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Sep 9, 2021", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "29", - "spread": "8", - "ou": null - }, - { - "date": "Sep 12, 2021", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Philadelphia Eagles", - "sF": "6", - "sU": "32", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2021", - "at": "@", - "fav": "Buffalo Bills", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Sep 12, 2021", - "at": "@", - "fav": "Carolina Panthers", - "und": "New York Jets", - "sF": "19", - "sU": "14", - "spread": "4", - "ou": null - }, - { - "date": "Sep 12, 2021", - "at": null, - "fav": "Minnesota Vikings", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2021", - "at": null, - "fav": "San Francisco 49ers", - "und": "Detroit Lions", - "sF": "41", - "sU": "33", - "spread": "9", - "ou": null - }, - { - "date": "Sep 12, 2021", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "21", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2021", - "at": null, - "fav": "Seattle Seahawks", - "und": "Indianapolis Colts", - "sF": "28", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2021", - "at": "@", - "fav": "Tennessee Titans", - "und": "Arizona Cardinals", - "sF": "13", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2021", - "at": "@", - "fav": "Washington Football Team", - "und": "Los Angeles Chargers", - "sF": "16", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Sep 12, 2021", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cleveland Browns", - "sF": "33", - "sU": "29", - "spread": "5", - "ou": null - }, - { - "date": "Sep 12, 2021", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "16", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2021", - "at": "N", - "fav": "Green Bay Packers", - "und": "New Orleans Saints", - "sF": "3", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2021", - "at": null, - "fav": "Denver Broncos", - "und": "New York Giants", - "sF": "27", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2021", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Chicago Bears", - "sF": "34", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Sep 13, 2021", - "at": null, - "fav": "Baltimore Ravens", - "und": "Las Vegas Raiders", - "sF": "27", - "sU": "33", - "spread": "4", - "ou": null - }, - { - "date": "Sep 16, 2021", - "at": "@", - "fav": "Washington Football Team", - "und": "New York Giants", - "sF": "30", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2021", - "at": null, - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "7", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2021", - "at": "@", - "fav": "Chicago Bears", - "und": "Cincinnati Bengals", - "sF": "20", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 19, 2021", - "at": "@", - "fav": "Cleveland Browns", - "und": "Houston Texans", - "sF": "31", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Sep 19, 2021", - "at": null, - "fav": "Los Angeles Rams", - "und": "Indianapolis Colts", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2021", - "at": null, - "fav": "Denver Broncos", - "und": "Jacksonville Jaguars", - "sF": "23", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Sep 19, 2021", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "35", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2021", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "25", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Sep 19, 2021", - "at": null, - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "11", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2021", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Las Vegas Raiders", - "sF": "17", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Sep 19, 2021", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Minnesota Vikings", - "sF": "34", - "sU": "33", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2021", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "48", - "sU": "25", - "spread": "12", - "ou": null - }, - { - "date": "Sep 19, 2021", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 19, 2021", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Tennessee Titans", - "sF": "30", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Sep 19, 2021", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Baltimore Ravens", - "sF": "35", - "sU": "36", - "spread": "4", - "ou": null - }, - { - "date": "Sep 20, 2021", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "35", - "sU": "17", - "spread": "11", - "ou": null - }, - { - "date": "Sep 23, 2021", - "at": null, - "fav": "Carolina Panthers", - "und": "Houston Texans", - "sF": "24", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Sep 26, 2021", - "at": "@", - "fav": "Buffalo Bills", - "und": "Washington Football Team", - "sF": "43", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Sep 26, 2021", - "at": "@", - "fav": "Cleveland Browns", - "und": "Chicago Bears", - "sF": "26", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Sep 26, 2021", - "at": null, - "fav": "Baltimore Ravens", - "und": "Detroit Lions", - "sF": "19", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Sep 26, 2021", - "at": null, - "fav": "Arizona Cardinals", - "und": "Jacksonville Jaguars", - "sF": "31", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Sep 26, 2021", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Chargers", - "sF": "24", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Sep 26, 2021", - "at": "@", - "fav": "New England Patriots", - "und": "New Orleans Saints", - "sF": "13", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 2021", - "at": "@", - "fav": "New York Giants", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 2021", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 26, 2021", - "at": "@", - "fav": "Tennessee Titans", - "und": "Indianapolis Colts", - "sF": "25", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Sep 26, 2021", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Jets", - "sF": "26", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Sep 26, 2021", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "Miami Dolphins", - "sF": "31", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Sep 26, 2021", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Sep 26, 2021", - "at": null, - "fav": "Seattle Seahawks", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Sep 26, 2021", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Green Bay Packers", - "sF": "28", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 27, 2021", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "41", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 30, 2021", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 2021", - "at": null, - "fav": "Washington Football Team", - "und": "Atlanta Falcons", - "sF": "34", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Oct 3, 2021", - "at": "@", - "fav": "Buffalo Bills", - "und": "Houston Texans", - "sF": "40", - "sU": "0", - "spread": "17", - "ou": null - }, - { - "date": "Oct 3, 2021", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "24", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 3, 2021", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Carolina Panthers", - "sF": "36", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Oct 3, 2021", - "at": "@", - "fav": "Miami Dolphins", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 3, 2021", - "at": null, - "fav": "Cleveland Browns", - "und": "Minnesota Vikings", - "sF": "14", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Oct 3, 2021", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Giants", - "sF": "21", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 2021", - "at": null, - "fav": "Tennessee Titans", - "und": "New York Jets", - "sF": "24", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Oct 3, 2021", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Philadelphia Eagles", - "sF": "42", - "sU": "30", - "spread": "7", - "ou": null - }, - { - "date": "Oct 3, 2021", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "37", - "spread": "4", - "ou": null - }, - { - "date": "Oct 3, 2021", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 3, 2021", - "at": null, - "fav": "Baltimore Ravens", - "und": "Denver Broncos", - "sF": "23", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Oct 3, 2021", - "at": "@", - "fav": "Green Bay Packers", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 3, 2021", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "New England Patriots", - "sF": "19", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Oct 4, 2021", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Las Vegas Raiders", - "sF": "28", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 7, 2021", - "at": null, - "fav": "Los Angeles Rams", - "und": "Seattle Seahawks", - "sF": "26", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 10, 2021", - "at": "N", - "fav": "Atlanta Falcons", - "und": "New York Jets", - "sF": "27", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 10, 2021", - "at": "@", - "fav": "Carolina Panthers", - "und": "Philadelphia Eagles", - "sF": "18", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 2021", - "at": null, - "fav": "Green Bay Packers", - "und": "Cincinnati Bengals", - "sF": "25", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 2021", - "at": null, - "fav": "New England Patriots", - "und": "Houston Texans", - "sF": "25", - "sU": "22", - "spread": "8", - "ou": null - }, - { - "date": "Oct 10, 2021", - "at": null, - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "37", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Oct 10, 2021", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "19", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 10, 2021", - "at": null, - "fav": "Denver Broncos", - "und": "Pittsburgh Steelers", - "sF": "19", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 10, 2021", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Miami Dolphins", - "sF": "45", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 10, 2021", - "at": null, - "fav": "New Orleans Saints", - "und": "Washington Football Team", - "sF": "33", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Oct 10, 2021", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "Chicago Bears", - "sF": "9", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Oct 10, 2021", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Cleveland Browns", - "sF": "47", - "sU": "42", - "spread": "2", - "ou": null - }, - { - "date": "Oct 10, 2021", - "at": "@", - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "17", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Oct 10, 2021", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "44", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 10, 2021", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "20", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Oct 11, 2021", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "25", - "spread": "7", - "ou": null - }, - { - "date": "Oct 14, 2021", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Philadelphia Eagles", - "sF": "28", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Oct 17, 2021", - "at": "N", - "fav": "Miami Dolphins", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 2021", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Los Angeles Chargers", - "sF": "34", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Oct 17, 2021", - "at": null, - "fav": "Minnesota Vikings", - "und": "Carolina Panthers", - "sF": "34", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 17, 2021", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "24", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Oct 17, 2021", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Detroit Lions", - "sF": "34", - "sU": "11", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 2021", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "31", - "sU": "3", - "spread": "10", - "ou": null - }, - { - "date": "Oct 17, 2021", - "at": null, - "fav": "Los Angeles Rams", - "und": "New York Giants", - "sF": "38", - "sU": "11", - "spread": "9", - "ou": null - }, - { - "date": "Oct 17, 2021", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Washington Football Team", - "sF": "31", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 17, 2021", - "at": "@", - "fav": "Cleveland Browns", - "und": "Arizona Cardinals", - "sF": "14", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 2021", - "at": "@", - "fav": "Denver Broncos", - "und": "Las Vegas Raiders", - "sF": "24", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Oct 17, 2021", - "at": null, - "fav": "Dallas Cowboys", - "und": "New England Patriots", - "sF": "35", - "sU": "29", - "spread": "3", - "ou": null - }, - { - "date": "Oct 17, 2021", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Seattle Seahawks", - "sF": "23", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Oct 18, 2021", - "at": null, - "fav": "Buffalo Bills", - "und": "Tennessee Titans", - "sF": "31", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Oct 21, 2021", - "at": "@", - "fav": "Cleveland Browns", - "und": "Denver Broncos", - "sF": "17", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Oct 24, 2021", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "41", - "spread": "6", - "ou": null - }, - { - "date": "Oct 24, 2021", - "at": "@", - "fav": "Green Bay Packers", - "und": "Washington Football Team", - "sF": "24", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Oct 24, 2021", - "at": null, - "fav": "Atlanta Falcons", - "und": "Miami Dolphins", - "sF": "30", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 24, 2021", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "54", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 24, 2021", - "at": null, - "fav": "Carolina Panthers", - "und": "New York Giants", - "sF": "3", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 2021", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Tennessee Titans", - "sF": "3", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Oct 24, 2021", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "Philadelphia Eagles", - "sF": "33", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Oct 24, 2021", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Detroit Lions", - "sF": "28", - "sU": "19", - "spread": "16", - "ou": null - }, - { - "date": "Oct 24, 2021", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Houston Texans", - "sF": "31", - "sU": "5", - "spread": "18", - "ou": null - }, - { - "date": "Oct 24, 2021", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "38", - "sU": "3", - "spread": "11", - "ou": null - }, - { - "date": "Oct 24, 2021", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Indianapolis Colts", - "sF": "18", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Oct 25, 2021", - "at": null, - "fav": "New Orleans Saints", - "und": "Seattle Seahawks", - "sF": "13", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 28, 2021", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Green Bay Packers", - "sF": "21", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 31, 2021", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "13", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 2021", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "26", - "sU": "11", - "spread": "14", - "ou": null - }, - { - "date": "Oct 31, 2021", - "at": null, - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "33", - "sU": "22", - "spread": "4", - "ou": null - }, - { - "date": "Oct 31, 2021", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "15", - "spread": "4", - "ou": null - }, - { - "date": "Oct 31, 2021", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Detroit Lions", - "sF": "44", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 2021", - "at": null, - "fav": "Los Angeles Rams", - "und": "Houston Texans", - "sF": "38", - "sU": "22", - "spread": "16", - "ou": null - }, - { - "date": "Oct 31, 2021", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "31", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 2021", - "at": null, - "fav": "Cincinnati Bengals", - "und": "New York Jets", - "sF": "31", - "sU": "34", - "spread": "11", - "ou": null - }, - { - "date": "Oct 31, 2021", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "New England Patriots", - "sF": "24", - "sU": "27", - "spread": "4", - "ou": null - }, - { - "date": "Oct 31, 2021", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Jacksonville Jaguars", - "sF": "31", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 2021", - "at": "@", - "fav": "Denver Broncos", - "und": "Washington Football Team", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 31, 2021", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "27", - "sU": "36", - "spread": "4", - "ou": null - }, - { - "date": "Oct 31, 2021", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Dallas Cowboys", - "sF": "16", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 1, 2021", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New York Giants", - "sF": "20", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 4, 2021", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New York Jets", - "sF": "45", - "sU": "30", - "spread": "10", - "ou": null - }, - { - "date": "Nov 7, 2021", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Minnesota Vikings", - "sF": "34", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Nov 7, 2021", - "at": null, - "fav": "New England Patriots", - "und": "Carolina Panthers", - "sF": "24", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 2021", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "16", - "sU": "41", - "spread": "2", - "ou": null - }, - { - "date": "Nov 7, 2021", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Denver Broncos", - "sF": "16", - "sU": "30", - "spread": "10", - "ou": null - }, - { - "date": "Nov 7, 2021", - "at": null, - "fav": "Buffalo Bills", - "und": "Jacksonville Jaguars", - "sF": "6", - "sU": "9", - "spread": "14", - "ou": null - }, - { - "date": "Nov 7, 2021", - "at": "@", - "fav": "Miami Dolphins", - "und": "Houston Texans", - "sF": "17", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Nov 7, 2021", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "25", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Nov 7, 2021", - "at": null, - "fav": "Las Vegas Raiders", - "und": "New York Giants", - "sF": "16", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 2021", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Philadelphia Eagles", - "sF": "27", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Nov 7, 2021", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Green Bay Packers", - "sF": "13", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 7, 2021", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 7, 2021", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Tennessee Titans", - "sF": "16", - "sU": "28", - "spread": "7", - "ou": null - }, - { - "date": "Nov 8, 2021", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Chicago Bears", - "sF": "29", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Nov 11, 2021", - "at": null, - "fav": "Baltimore Ravens", - "und": "Miami Dolphins", - "sF": "10", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Nov 14, 2021", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Atlanta Falcons", - "sF": "43", - "sU": "3", - "spread": "8", - "ou": null - }, - { - "date": "Nov 14, 2021", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "23", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Nov 14, 2021", - "at": "@", - "fav": "New England Patriots", - "und": "Cleveland Browns", - "sF": "45", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Nov 14, 2021", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "45", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Nov 14, 2021", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Detroit Lions", - "sF": "16", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Nov 14, 2021", - "at": "@", - "fav": "Tennessee Titans", - "und": "New Orleans Saints", - "sF": "23", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 14, 2021", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Washington Football Team", - "sF": "19", - "sU": "29", - "spread": "9", - "ou": null - }, - { - "date": "Nov 14, 2021", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Carolina Panthers", - "sF": "10", - "sU": "34", - "spread": "10", - "ou": null - }, - { - "date": "Nov 14, 2021", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Minnesota Vikings", - "sF": "20", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 14, 2021", - "at": "@", - "fav": "Denver Broncos", - "und": "Philadelphia Eagles", - "sF": "13", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Nov 14, 2021", - "at": "@", - "fav": "Green Bay Packers", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Nov 14, 2021", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Las Vegas Raiders", - "sF": "41", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 15, 2021", - "at": null, - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "10", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 18, 2021", - "at": null, - "fav": "New England Patriots", - "und": "Atlanta Falcons", - "sF": "25", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 2021", - "at": "@", - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "15", - "sU": "41", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 2021", - "at": "@", - "fav": "Carolina Panthers", - "und": "Washington Football Team", - "sF": "21", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 2021", - "at": null, - "fav": "Baltimore Ravens", - "und": "Chicago Bears", - "sF": "16", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Nov 21, 2021", - "at": "@", - "fav": "Cleveland Browns", - "und": "Detroit Lions", - "sF": "13", - "sU": "10", - "spread": "12", - "ou": null - }, - { - "date": "Nov 21, 2021", - "at": null, - "fav": "San Francisco 49ers", - "und": "Jacksonville Jaguars", - "sF": "30", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 21, 2021", - "at": null, - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Nov 21, 2021", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 21, 2021", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New Orleans Saints", - "sF": "40", - "sU": "29", - "spread": "2", - "ou": null - }, - { - "date": "Nov 21, 2021", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "13", - "sU": "22", - "spread": "10", - "ou": null - }, - { - "date": "Nov 21, 2021", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Las Vegas Raiders", - "sF": "32", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Nov 21, 2021", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Dallas Cowboys", - "sF": "19", - "sU": "9", - "spread": "2", - "ou": null - }, - { - "date": "Nov 21, 2021", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "13", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 21, 2021", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Pittsburgh Steelers", - "sF": "41", - "sU": "37", - "spread": "5", - "ou": null - }, - { - "date": "Nov 22, 2021", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New York Giants", - "sF": "30", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Nov 25, 2021", - "at": null, - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "16", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 2021", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Las Vegas Raiders", - "sF": "33", - "sU": "36", - "spread": "7", - "ou": null - }, - { - "date": "Nov 25, 2021", - "at": null, - "fav": "Buffalo Bills", - "und": "New Orleans Saints", - "sF": "31", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Nov 28, 2021", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "41", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 2021", - "at": "@", - "fav": "Houston Texans", - "und": "New York Jets", - "sF": "14", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 28, 2021", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Indianapolis Colts", - "sF": "38", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 2021", - "at": null, - "fav": "Atlanta Falcons", - "und": "Jacksonville Jaguars", - "sF": "21", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 28, 2021", - "at": null, - "fav": "Carolina Panthers", - "und": "Miami Dolphins", - "sF": "10", - "sU": "33", - "spread": "2", - "ou": null - }, - { - "date": "Nov 28, 2021", - "at": "@", - "fav": "New England Patriots", - "und": "Tennessee Titans", - "sF": "36", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 28, 2021", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "7", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 2021", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Denver Broncos", - "sF": "13", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 2021", - "at": null, - "fav": "Los Angeles Rams", - "und": "Green Bay Packers", - "sF": "28", - "sU": "36", - "spread": "2", - "ou": null - }, - { - "date": "Nov 28, 2021", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "34", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 2021", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "16", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 2, 2021", - "at": null, - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "27", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Dec 5, 2021", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Dec 5, 2021", - "at": null, - "fav": "Arizona Cardinals", - "und": "Chicago Bears", - "sF": "33", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 2021", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Los Angeles Chargers", - "sF": "22", - "sU": "41", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 2021", - "at": null, - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "27", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Dec 5, 2021", - "at": null, - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "31", - "sU": "0", - "spread": "10", - "ou": null - }, - { - "date": "Dec 5, 2021", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Giants", - "sF": "20", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Dec 5, 2021", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Jets", - "sF": "33", - "sU": "18", - "spread": "5", - "ou": null - }, - { - "date": "Dec 5, 2021", - "at": null, - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "23", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 5, 2021", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "Washington Football Team", - "sF": "15", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Dec 5, 2021", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Jacksonville Jaguars", - "sF": "37", - "sU": "7", - "spread": "13", - "ou": null - }, - { - "date": "Dec 5, 2021", - "at": null, - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "19", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Dec 5, 2021", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "22", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Dec 6, 2021", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "10", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 9, 2021", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Pittsburgh Steelers", - "sF": "36", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 2021", - "at": "@", - "fav": "Carolina Panthers", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "29", - "spread": "2", - "ou": null - }, - { - "date": "Dec 12, 2021", - "at": null, - "fav": "San Francisco 49ers", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Dec 12, 2021", - "at": "@", - "fav": "Cleveland Browns", - "und": "Baltimore Ravens", - "sF": "24", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 2021", - "at": null, - "fav": "Seattle Seahawks", - "und": "Houston Texans", - "sF": "33", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Dec 12, 2021", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Las Vegas Raiders", - "sF": "48", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Dec 12, 2021", - "at": null, - "fav": "New Orleans Saints", - "und": "New York Jets", - "sF": "30", - "sU": "9", - "spread": "5", - "ou": null - }, - { - "date": "Dec 12, 2021", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "0", - "spread": "8", - "ou": null - }, - { - "date": "Dec 12, 2021", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Football Team", - "sF": "27", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Dec 12, 2021", - "at": "@", - "fav": "Denver Broncos", - "und": "Detroit Lions", - "sF": "38", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Dec 12, 2021", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "New York Giants", - "sF": "37", - "sU": "21", - "spread": "9", - "ou": null - }, - { - "date": "Dec 12, 2021", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Buffalo Bills", - "sF": "33", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 2021", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "45", - "sU": "30", - "spread": "11", - "ou": null - }, - { - "date": "Dec 13, 2021", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Los Angeles Rams", - "sF": "23", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Dec 16, 2021", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Los Angeles Chargers", - "sF": "34", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 2021", - "at": "@", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "27", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 19, 2021", - "at": null, - "fav": "Green Bay Packers", - "und": "Baltimore Ravens", - "sF": "31", - "sU": "30", - "spread": "9", - "ou": null - }, - { - "date": "Dec 19, 2021", - "at": "@", - "fav": "Buffalo Bills", - "und": "Carolina Panthers", - "sF": "31", - "sU": "14", - "spread": "14", - "ou": null - }, - { - "date": "Dec 19, 2021", - "at": null, - "fav": "Arizona Cardinals", - "und": "Detroit Lions", - "sF": "12", - "sU": "30", - "spread": "13", - "ou": null - }, - { - "date": "Dec 19, 2021", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "16", - "sU": "30", - "spread": "6", - "ou": null - }, - { - "date": "Dec 19, 2021", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "31", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Dec 19, 2021", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "21", - "sU": "6", - "spread": "11", - "ou": null - }, - { - "date": "Dec 19, 2021", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Tennessee Titans", - "sF": "19", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 19, 2021", - "at": "@", - "fav": "Denver Broncos", - "und": "Cincinnati Bengals", - "sF": "10", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Dec 19, 2021", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Dec 19, 2021", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "0", - "sU": "9", - "spread": "11", - "ou": null - }, - { - "date": "Dec 20, 2021", - "at": "@", - "fav": "Cleveland Browns", - "und": "Las Vegas Raiders", - "sF": "14", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 20, 2021", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "17", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Dec 21, 2021", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Seattle Seahawks", - "sF": "20", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Dec 21, 2021", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Football Team", - "sF": "27", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 23, 2021", - "at": null, - "fav": "San Francisco 49ers", - "und": "Tennessee Titans", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 25, 2021", - "at": "@", - "fav": "Green Bay Packers", - "und": "Cleveland Browns", - "sF": "24", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Dec 25, 2021", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Indianapolis Colts", - "sF": "16", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Dec 26, 2021", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Detroit Lions", - "sF": "20", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Dec 26, 2021", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "32", - "sU": "6", - "spread": "9", - "ou": null - }, - { - "date": "Dec 26, 2021", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Baltimore Ravens", - "sF": "41", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Dec 26, 2021", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Houston Texans", - "sF": "29", - "sU": "41", - "spread": "11", - "ou": null - }, - { - "date": "Dec 26, 2021", - "at": null, - "fav": "Los Angeles Rams", - "und": "Minnesota Vikings", - "sF": "30", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 26, 2021", - "at": "@", - "fav": "New England Patriots", - "und": "Buffalo Bills", - "sF": "21", - "sU": "33", - "spread": "1", - "ou": null - }, - { - "date": "Dec 26, 2021", - "at": "@", - "fav": "New York Jets", - "und": "Jacksonville Jaguars", - "sF": "26", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Dec 26, 2021", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "34", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 26, 2021", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Chicago Bears", - "sF": "24", - "sU": "25", - "spread": "6", - "ou": null - }, - { - "date": "Dec 26, 2021", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Pittsburgh Steelers", - "sF": "36", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 26, 2021", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Football Team", - "sF": "56", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 27, 2021", - "at": null, - "fav": "Miami Dolphins", - "und": "New Orleans Saints", - "sF": "20", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Jan 2, 2022", - "at": "@", - "fav": "Buffalo Bills", - "und": "Atlanta Falcons", - "sF": "29", - "sU": "15", - "spread": "14", - "ou": null - }, - { - "date": "Jan 2, 2022", - "at": "@", - "fav": "Chicago Bears", - "und": "New York Giants", - "sF": "29", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Jan 2, 2022", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Jan 2, 2022", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "22", - "sU": "25", - "spread": "6", - "ou": null - }, - { - "date": "Jan 2, 2022", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Las Vegas Raiders", - "sF": "20", - "sU": "23", - "spread": "8", - "ou": null - }, - { - "date": "Jan 2, 2022", - "at": "@", - "fav": "New England Patriots", - "und": "Jacksonville Jaguars", - "sF": "50", - "sU": "10", - "spread": "16", - "ou": null - }, - { - "date": "Jan 2, 2022", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "18", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Jan 2, 2022", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "New York Jets", - "sF": "28", - "sU": "24", - "spread": "13", - "ou": null - }, - { - "date": "Jan 2, 2022", - "at": "@", - "fav": "Tennessee Titans", - "und": "Miami Dolphins", - "sF": "34", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Jan 2, 2022", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Football Team", - "sF": "20", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Jan 2, 2022", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Denver Broncos", - "sF": "34", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Jan 2, 2022", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Houston Texans", - "sF": "23", - "sU": "7", - "spread": "12", - "ou": null - }, - { - "date": "Jan 2, 2022", - "at": null, - "fav": "Los Angeles Rams", - "und": "Baltimore Ravens", - "sF": "20", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Jan 2, 2022", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Detroit Lions", - "sF": "51", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Jan 2, 2022", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "37", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Jan 3, 2022", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "26", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Jan 8, 2022", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "28", - "sU": "24", - "spread": "11", - "ou": null - }, - { - "date": "Jan 8, 2022", - "at": null, - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "51", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Jan 9, 2022", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Jan 9, 2022", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Jan 9, 2022", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "27", - "sU": "10", - "spread": "16", - "ou": null - }, - { - "date": "Jan 9, 2022", - "at": "@", - "fav": "Cleveland Browns", - "und": "Cincinnati Bengals", - "sF": "21", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Jan 9, 2022", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "30", - "sU": "37", - "spread": "3", - "ou": null - }, - { - "date": "Jan 9, 2022", - "at": null, - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "28", - "sU": "25", - "spread": "10", - "ou": null - }, - { - "date": "Jan 9, 2022", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "11", - "sU": "26", - "spread": "15", - "ou": null - }, - { - "date": "Jan 9, 2022", - "at": null, - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "24", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Jan 9, 2022", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "31", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Jan 9, 2022", - "at": null, - "fav": "Washington Football Team", - "und": "New York Giants", - "sF": "22", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Jan 9, 2022", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "41", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Jan 9, 2022", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Seattle Seahawks", - "sF": "30", - "sU": "38", - "spread": "5", - "ou": null - }, - { - "date": "Jan 9, 2022", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Las Vegas Raiders", - "sF": "32", - "sU": "35", - "spread": "3", - "ou": null - }, - { - "date": "Jan 9, 2022", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Jan 15, 2022", - "at": "@", - "fav": "Cincinnati Bengals (4)", - "und": "Las Vegas Raiders (5)", - "sF": "26", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Jan 15, 2022", - "at": "@", - "fav": "Buffalo Bills (3)", - "und": "New England Patriots (6)", - "sF": "47", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Jan 16, 2022", - "at": "@", - "fav": "Tampa Bay Buccaneers (2)", - "und": "Philadelphia Eagles (7)", - "sF": "31", - "sU": "15", - "spread": "8", - "ou": null - }, - { - "date": "Jan 16, 2022", - "at": "@", - "fav": "Dallas Cowboys (3)", - "und": "San Francisco 49ers (6)", - "sF": "17", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Jan 16, 2022", - "at": "@", - "fav": "Kansas City Chiefs (2)", - "und": "Pittsburgh Steelers (7)", - "sF": "42", - "sU": "21", - "spread": "12", - "ou": null - }, - { - "date": "Jan 17, 2022", - "at": "@", - "fav": "Los Angeles Rams (4)", - "und": "Arizona Cardinals (5)", - "sF": "34", - "sU": "11", - "spread": "3", - "ou": null - }, - { - "date": "Jan 22, 2022", - "at": "@", - "fav": "Tennessee Titans (1)", - "und": "Cincinnati Bengals (4)", - "sF": "16", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Jan 22, 2022", - "at": "@", - "fav": "Green Bay Packers (1)", - "und": "San Francisco 49ers (6)", - "sF": "10", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Jan 23, 2022", - "at": "@", - "fav": "Tampa Bay Buccaneers (2)", - "und": "Los Angeles Rams (4)", - "sF": "27", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Jan 23, 2022", - "at": "@", - "fav": "Kansas City Chiefs (2)", - "und": "Buffalo Bills (3)", - "sF": "42", - "sU": "36", - "spread": "2", - "ou": null - }, - { - "date": "Jan 30, 2022", - "at": "@", - "fav": "Kansas City Chiefs (1)", - "und": "Cincinnati Bengals (4)", - "sF": "24", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Jan 30, 2022", - "at": "@", - "fav": "Los Angeles Rams (4)", - "und": "San Francisco 49ers (6)", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Feb 13, 2022", - "at": "N", - "fav": "Los Angeles Rams (4)", - "und": "Cincinnati Bengals (4)", - "sF": "23", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 8, 2022", - "at": null, - "fav": "Buffalo Bills", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 11, 2022", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "27", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Sep 11, 2022", - "at": "@", - "fav": "Carolina Panthers", - "und": "Cleveland Browns", - "sF": "24", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Sep 11, 2022", - "at": null, - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "10", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Sep 11, 2022", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Sep 11, 2022", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Detroit Lions", - "sF": "38", - "sU": "35", - "spread": "6", - "ou": null - }, - { - "date": "Sep 11, 2022", - "at": null, - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "20", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Sep 11, 2022", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "20", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 2022", - "at": null, - "fav": "Baltimore Ravens", - "und": "New York Jets", - "sF": "24", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Sep 11, 2022", - "at": "@", - "fav": "Washington Commanders", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 2022", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Arizona Cardinals", - "sF": "44", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Sep 11, 2022", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Las Vegas Raiders", - "sF": "24", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 2022", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "23", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Sep 11, 2022", - "at": "@", - "fav": "Tennessee Titans", - "und": "New York Giants", - "sF": "20", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Sep 11, 2022", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Dallas Cowboys", - "sF": "19", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Sep 12, 2022", - "at": null, - "fav": "Denver Broncos", - "und": "Seattle Seahawks", - "sF": "16", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Sep 15, 2022", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Chargers", - "sF": "27", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Sep 18, 2022", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Miami Dolphins", - "sF": "38", - "sU": "42", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 2022", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Jets", - "sF": "30", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Sep 18, 2022", - "at": "@", - "fav": "Detroit Lions", - "und": "Washington Commanders", - "sF": "36", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Sep 18, 2022", - "at": null, - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "0", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 2022", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "20", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 18, 2022", - "at": "@", - "fav": "New York Giants", - "und": "Carolina Panthers", - "sF": "19", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Sep 18, 2022", - "at": null, - "fav": "New England Patriots", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Sep 18, 2022", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Atlanta Falcons", - "sF": "31", - "sU": "27", - "spread": "10", - "ou": null - }, - { - "date": "Sep 18, 2022", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Sep 18, 2022", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Sep 18, 2022", - "at": "@", - "fav": "Denver Broncos", - "und": "Houston Texans", - "sF": "16", - "sU": "9", - "spread": "10", - "ou": null - }, - { - "date": "Sep 18, 2022", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "Arizona Cardinals", - "sF": "23", - "sU": "29", - "spread": "5", - "ou": null - }, - { - "date": "Sep 18, 2022", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "27", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Sep 19, 2022", - "at": "@", - "fav": "Buffalo Bills", - "und": "Tennessee Titans", - "sF": "41", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Sep 19, 2022", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Minnesota Vikings", - "sF": "24", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Sep 22, 2022", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "29", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 25, 2022", - "at": null, - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "14", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Sep 25, 2022", - "at": "@", - "fav": "Chicago Bears", - "und": "Houston Texans", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2022", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 25, 2022", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "19", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 25, 2022", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "28", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 2022", - "at": null, - "fav": "Baltimore Ravens", - "und": "New England Patriots", - "sF": "37", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Sep 25, 2022", - "at": null, - "fav": "Cincinnati Bengals", - "und": "New York Jets", - "sF": "27", - "sU": "12", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 2022", - "at": null, - "fav": "Las Vegas Raiders", - "und": "Tennessee Titans", - "sF": "22", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 25, 2022", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Commanders", - "sF": "24", - "sU": "8", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 2022", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Jacksonville Jaguars", - "sF": "10", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2022", - "at": null, - "fav": "Los Angeles Rams", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2022", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Sep 25, 2022", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Green Bay Packers", - "sF": "12", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Sep 25, 2022", - "at": null, - "fav": "San Francisco 49ers", - "und": "Denver Broncos", - "sF": "10", - "sU": "11", - "spread": "1", - "ou": null - }, - { - "date": "Sep 26, 2022", - "at": "@", - "fav": "New York Giants", - "und": "Dallas Cowboys", - "sF": "16", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Sep 29, 2022", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Miami Dolphins", - "sF": "27", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2022", - "at": null, - "fav": "Cleveland Browns", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 2, 2022", - "at": null, - "fav": "Buffalo Bills", - "und": "Baltimore Ravens", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2022", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Commanders", - "sF": "25", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2022", - "at": "@", - "fav": "Detroit Lions", - "und": "Seattle Seahawks", - "sF": "45", - "sU": "48", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2022", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Houston Texans", - "sF": "34", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Oct 2, 2022", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2022", - "at": "N", - "fav": "Minnesota Vikings", - "und": "New Orleans Saints", - "sF": "28", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2022", - "at": "@", - "fav": "New York Giants", - "und": "Chicago Bears", - "sF": "20", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2022", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Jacksonville Jaguars", - "sF": "29", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Oct 2, 2022", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Jets", - "sF": "20", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 2, 2022", - "at": "@", - "fav": "Carolina Panthers", - "und": "Arizona Cardinals", - "sF": "16", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Oct 2, 2022", - "at": "@", - "fav": "Green Bay Packers", - "und": "New England Patriots", - "sF": "27", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Oct 2, 2022", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "Denver Broncos", - "sF": "32", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 2, 2022", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Kansas City Chiefs", - "sF": "31", - "sU": "41", - "spread": "1", - "ou": null - }, - { - "date": "Oct 3, 2022", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "9", - "spread": "1", - "ou": null - }, - { - "date": "Oct 6, 2022", - "at": "@", - "fav": "Denver Broncos", - "und": "Indianapolis Colts", - "sF": "9", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2022", - "at": "N", - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "22", - "sU": "27", - "spread": "8", - "ou": null - }, - { - "date": "Oct 9, 2022", - "at": "@", - "fav": "Buffalo Bills", - "und": "Pittsburgh Steelers", - "sF": "38", - "sU": "3", - "spread": "14", - "ou": null - }, - { - "date": "Oct 9, 2022", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Cleveland Browns", - "sF": "30", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Oct 9, 2022", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "6", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Oct 9, 2022", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "29", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Oct 9, 2022", - "at": "@", - "fav": "New England Patriots", - "und": "Detroit Lions", - "sF": "29", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2022", - "at": "@", - "fav": "New Orleans Saints", - "und": "Seattle Seahawks", - "sF": "39", - "sU": "32", - "spread": "5", - "ou": null - }, - { - "date": "Oct 9, 2022", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "17", - "sU": "40", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2022", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "15", - "spread": "10", - "ou": null - }, - { - "date": "Oct 9, 2022", - "at": null, - "fav": "Tennessee Titans", - "und": "Washington Commanders", - "sF": "21", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 9, 2022", - "at": null, - "fav": "San Francisco 49ers", - "und": "Carolina Panthers", - "sF": "37", - "sU": "15", - "spread": "6", - "ou": null - }, - { - "date": "Oct 9, 2022", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 9, 2022", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Dallas Cowboys", - "sF": "10", - "sU": "22", - "spread": "5", - "ou": null - }, - { - "date": "Oct 9, 2022", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "19", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 10, 2022", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Las Vegas Raiders", - "sF": "30", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Oct 13, 2022", - "at": null, - "fav": "Washington Commanders", - "und": "Chicago Bears", - "sF": "12", - "sU": "7", - "spread": "1", - "ou": null - }, - { - "date": "Oct 16, 2022", - "at": null, - "fav": "San Francisco 49ers", - "und": "Atlanta Falcons", - "sF": "14", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Oct 16, 2022", - "at": "@", - "fav": "Cleveland Browns", - "und": "New England Patriots", - "sF": "15", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Oct 16, 2022", - "at": "@", - "fav": "Green Bay Packers", - "und": "New York Jets", - "sF": "10", - "sU": "27", - "spread": "7", - "ou": null - }, - { - "date": "Oct 16, 2022", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "34", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 16, 2022", - "at": null, - "fav": "Minnesota Vikings", - "und": "Miami Dolphins", - "sF": "24", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 2022", - "at": null, - "fav": "Cincinnati Bengals", - "und": "New Orleans Saints", - "sF": "30", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Oct 16, 2022", - "at": null, - "fav": "Baltimore Ravens", - "und": "New York Giants", - "sF": "20", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Oct 16, 2022", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Pittsburgh Steelers", - "sF": "18", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Oct 16, 2022", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Carolina Panthers", - "sF": "24", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Oct 16, 2022", - "at": null, - "fav": "Arizona Cardinals", - "und": "Seattle Seahawks", - "sF": "9", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Oct 16, 2022", - "at": null, - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "24", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 16, 2022", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "26", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 17, 2022", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Denver Broncos", - "sF": "19", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Oct 20, 2022", - "at": "@", - "fav": "Arizona Cardinals", - "und": "New Orleans Saints", - "sF": "42", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 2022", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "23", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 23, 2022", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "3", - "sU": "21", - "spread": "13", - "ou": null - }, - { - "date": "Oct 23, 2022", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Atlanta Falcons", - "sF": "35", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Oct 23, 2022", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "24", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Oct 23, 2022", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "New York Giants", - "sF": "17", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 2022", - "at": "@", - "fav": "Tennessee Titans", - "und": "Indianapolis Colts", - "sF": "19", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 23, 2022", - "at": null, - "fav": "Green Bay Packers", - "und": "Washington Commanders", - "sF": "21", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Oct 23, 2022", - "at": null, - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "16", - "sU": "9", - "spread": "1", - "ou": null - }, - { - "date": "Oct 23, 2022", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "Houston Texans", - "sF": "38", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Oct 23, 2022", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Seattle Seahawks", - "sF": "23", - "sU": "37", - "spread": "4", - "ou": null - }, - { - "date": "Oct 23, 2022", - "at": null, - "fav": "Kansas City Chiefs", - "und": "San Francisco 49ers", - "sF": "44", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 23, 2022", - "at": "@", - "fav": "Miami Dolphins", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Oct 24, 2022", - "at": "@", - "fav": "New England Patriots", - "und": "Chicago Bears", - "sF": "14", - "sU": "33", - "spread": "8", - "ou": null - }, - { - "date": "Oct 27, 2022", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Baltimore Ravens", - "sF": "22", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 30, 2022", - "at": "N", - "fav": "Jacksonville Jaguars", - "und": "Denver Broncos", - "sF": "17", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Oct 30, 2022", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "37", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Oct 30, 2022", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Chicago Bears", - "sF": "49", - "sU": "29", - "spread": "10", - "ou": null - }, - { - "date": "Oct 30, 2022", - "at": null, - "fav": "Miami Dolphins", - "und": "Detroit Lions", - "sF": "31", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2022", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Arizona Cardinals", - "sF": "34", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2022", - "at": null, - "fav": "Las Vegas Raiders", - "und": "New Orleans Saints", - "sF": "0", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Oct 30, 2022", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "22", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 30, 2022", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "35", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Oct 30, 2022", - "at": null, - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2022", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New York Giants", - "sF": "27", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2022", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Washington Commanders", - "sF": "16", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 30, 2022", - "at": "@", - "fav": "Los Angeles Rams", - "und": "San Francisco 49ers", - "sF": "14", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Oct 30, 2022", - "at": "@", - "fav": "Buffalo Bills", - "und": "Green Bay Packers", - "sF": "27", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Oct 31, 2022", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "13", - "sU": "32", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 2022", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Houston Texans", - "sF": "29", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Nov 6, 2022", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 2022", - "at": null, - "fav": "Miami Dolphins", - "und": "Chicago Bears", - "sF": "35", - "sU": "32", - "spread": "4", - "ou": null - }, - { - "date": "Nov 6, 2022", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Carolina Panthers", - "sF": "42", - "sU": "21", - "spread": "7", - "ou": null - }, - { - "date": "Nov 6, 2022", - "at": null, - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "9", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 2022", - "at": null, - "fav": "Las Vegas Raiders", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 6, 2022", - "at": "@", - "fav": "New England Patriots", - "und": "Indianapolis Colts", - "sF": "26", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Nov 6, 2022", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "17", - "sU": "20", - "spread": "11", - "ou": null - }, - { - "date": "Nov 6, 2022", - "at": null, - "fav": "Minnesota Vikings", - "und": "Washington Commanders", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 2022", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Nov 6, 2022", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Los Angeles Rams", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 6, 2022", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Tennessee Titans", - "sF": "20", - "sU": "17", - "spread": "12", - "ou": null - }, - { - "date": "Nov 7, 2022", - "at": null, - "fav": "Baltimore Ravens", - "und": "New Orleans Saints", - "sF": "27", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Nov 10, 2022", - "at": null, - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "15", - "sU": "25", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 2022", - "at": "N", - "fav": "Tampa Bay Buccaneers", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 2022", - "at": "@", - "fav": "Buffalo Bills", - "und": "Minnesota Vikings", - "sF": "30", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Nov 13, 2022", - "at": "@", - "fav": "Chicago Bears", - "und": "Detroit Lions", - "sF": "30", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 2022", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Nov 13, 2022", - "at": "@", - "fav": "Miami Dolphins", - "und": "Cleveland Browns", - "sF": "39", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 13, 2022", - "at": "@", - "fav": "New York Giants", - "und": "Houston Texans", - "sF": "24", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Nov 13, 2022", - "at": null, - "fav": "New Orleans Saints", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Nov 13, 2022", - "at": "@", - "fav": "Tennessee Titans", - "und": "Denver Broncos", - "sF": "17", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 2022", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "25", - "spread": "4", - "ou": null - }, - { - "date": "Nov 13, 2022", - "at": null, - "fav": "Dallas Cowboys", - "und": "Green Bay Packers", - "sF": "28", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Nov 13, 2022", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Arizona Cardinals", - "sF": "17", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 13, 2022", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Chargers", - "sF": "22", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Nov 14, 2022", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Commanders", - "sF": "21", - "sU": "32", - "spread": "10", - "ou": null - }, - { - "date": "Nov 17, 2022", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tennessee Titans", - "sF": "17", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 2022", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Chicago Bears", - "sF": "27", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 20, 2022", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Carolina Panthers", - "sF": "13", - "sU": "3", - "spread": "13", - "ou": null - }, - { - "date": "Nov 20, 2022", - "at": "N", - "fav": "Buffalo Bills", - "und": "Cleveland Browns", - "sF": "31", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 20, 2022", - "at": null, - "fav": "Washington Commanders", - "und": "Houston Texans", - "sF": "23", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 2022", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Nov 20, 2022", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "10", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 2022", - "at": "@", - "fav": "New Orleans Saints", - "und": "Los Angeles Rams", - "sF": "27", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 20, 2022", - "at": "@", - "fav": "New York Giants", - "und": "Detroit Lions", - "sF": "18", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 2022", - "at": "@", - "fav": "Denver Broncos", - "und": "Las Vegas Raiders", - "sF": "16", - "sU": "22", - "spread": "2", - "ou": null - }, - { - "date": "Nov 20, 2022", - "at": null, - "fav": "Dallas Cowboys", - "und": "Minnesota Vikings", - "sF": "40", - "sU": "3", - "spread": "1", - "ou": null - }, - { - "date": "Nov 20, 2022", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "37", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Nov 20, 2022", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Los Angeles Chargers", - "sF": "30", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Nov 21, 2022", - "at": "N", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "38", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Nov 24, 2022", - "at": null, - "fav": "Buffalo Bills", - "und": "Detroit Lions", - "sF": "28", - "sU": "25", - "spread": "9", - "ou": null - }, - { - "date": "Nov 24, 2022", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "28", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Nov 24, 2022", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New England Patriots", - "sF": "33", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Nov 27, 2022", - "at": null, - "fav": "Denver Broncos", - "und": "Carolina Panthers", - "sF": "10", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Nov 27, 2022", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Cleveland Browns", - "sF": "17", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2022", - "at": null, - "fav": "Baltimore Ravens", - "und": "Jacksonville Jaguars", - "sF": "27", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2022", - "at": "@", - "fav": "Miami Dolphins", - "und": "Houston Texans", - "sF": "30", - "sU": "15", - "spread": "14", - "ou": null - }, - { - "date": "Nov 27, 2022", - "at": "@", - "fav": "New York Jets", - "und": "Chicago Bears", - "sF": "31", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 27, 2022", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Tennessee Titans", - "sF": "20", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Nov 27, 2022", - "at": "@", - "fav": "Washington Commanders", - "und": "Atlanta Falcons", - "sF": "19", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Nov 27, 2022", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Arizona Cardinals", - "sF": "25", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Nov 27, 2022", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Las Vegas Raiders", - "sF": "34", - "sU": "40", - "spread": "4", - "ou": null - }, - { - "date": "Nov 27, 2022", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Rams", - "sF": "26", - "sU": "10", - "spread": "15", - "ou": null - }, - { - "date": "Nov 27, 2022", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New Orleans Saints", - "sF": "13", - "sU": "0", - "spread": "9", - "ou": null - }, - { - "date": "Nov 27, 2022", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Green Bay Packers", - "sF": "40", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Nov 28, 2022", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 1, 2022", - "at": null, - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "24", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2022", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Dec 4, 2022", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Denver Broncos", - "sF": "10", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Dec 4, 2022", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "28", - "sU": "19", - "spread": "4", - "ou": null - }, - { - "date": "Dec 4, 2022", - "at": "@", - "fav": "Detroit Lions", - "und": "Jacksonville Jaguars", - "sF": "40", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Dec 4, 2022", - "at": null, - "fav": "Cleveland Browns", - "und": "Houston Texans", - "sF": "27", - "sU": "14", - "spread": "8", - "ou": null - }, - { - "date": "Dec 4, 2022", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New York Jets", - "sF": "27", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Dec 4, 2022", - "at": null, - "fav": "Washington Commanders", - "und": "New York Giants", - "sF": "20", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Dec 4, 2022", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Tennessee Titans", - "sF": "35", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Dec 4, 2022", - "at": null, - "fav": "Seattle Seahawks", - "und": "Los Angeles Rams", - "sF": "27", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Dec 4, 2022", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Miami Dolphins", - "sF": "33", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 4, 2022", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Cincinnati Bengals", - "sF": "24", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 4, 2022", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "Los Angeles Chargers", - "sF": "27", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Dec 4, 2022", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Indianapolis Colts", - "sF": "54", - "sU": "19", - "spread": "10", - "ou": null - }, - { - "date": "Dec 5, 2022", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "17", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2022", - "at": null, - "fav": "Las Vegas Raiders", - "und": "Los Angeles Rams", - "sF": "16", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 11, 2022", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "20", - "sU": "12", - "spread": "10", - "ou": null - }, - { - "date": "Dec 11, 2022", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "23", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Dec 11, 2022", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Houston Texans", - "sF": "27", - "sU": "23", - "spread": "17", - "ou": null - }, - { - "date": "Dec 11, 2022", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "34", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 11, 2022", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "48", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Dec 11, 2022", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "14", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Dec 11, 2022", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "22", - "sU": "36", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2022", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "34", - "sU": "28", - "spread": "8", - "ou": null - }, - { - "date": "Dec 11, 2022", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "35", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2022", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Carolina Panthers", - "sF": "24", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Dec 11, 2022", - "at": null, - "fav": "Miami Dolphins", - "und": "Los Angeles Chargers", - "sF": "17", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 12, 2022", - "at": null, - "fav": "New England Patriots", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 15, 2022", - "at": null, - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 2022", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Indianapolis Colts", - "sF": "39", - "sU": "36", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 2022", - "at": "@", - "fav": "Cleveland Browns", - "und": "Baltimore Ravens", - "sF": "13", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 2022", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "32", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Dec 18, 2022", - "at": "@", - "fav": "Carolina Panthers", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 18, 2022", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Chicago Bears", - "sF": "25", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Dec 18, 2022", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Houston Texans", - "sF": "30", - "sU": "24", - "spread": "14", - "ou": null - }, - { - "date": "Dec 18, 2022", - "at": null, - "fav": "Dallas Cowboys", - "und": "Jacksonville Jaguars", - "sF": "34", - "sU": "40", - "spread": "4", - "ou": null - }, - { - "date": "Dec 18, 2022", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "18", - "spread": "4", - "ou": null - }, - { - "date": "Dec 18, 2022", - "at": "@", - "fav": "New York Jets", - "und": "Detroit Lions", - "sF": "17", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 18, 2022", - "at": "@", - "fav": "Denver Broncos", - "und": "Arizona Cardinals", - "sF": "24", - "sU": "15", - "spread": "1", - "ou": null - }, - { - "date": "Dec 18, 2022", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "New England Patriots", - "sF": "30", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Dec 18, 2022", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Tennessee Titans", - "sF": "17", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 2022", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Tampa Bay Buccaneers", - "sF": "34", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Dec 18, 2022", - "at": "@", - "fav": "Washington Commanders", - "und": "New York Giants", - "sF": "12", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Dec 19, 2022", - "at": "@", - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Dec 22, 2022", - "at": "@", - "fav": "New York Jets", - "und": "Jacksonville Jaguars", - "sF": "3", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Dec 24, 2022", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Dec 24, 2022", - "at": null, - "fav": "Detroit Lions", - "und": "Carolina Panthers", - "sF": "23", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Dec 24, 2022", - "at": null, - "fav": "Buffalo Bills", - "und": "Chicago Bears", - "sF": "35", - "sU": "13", - "spread": "8", - "ou": null - }, - { - "date": "Dec 24, 2022", - "at": "@", - "fav": "Cleveland Browns", - "und": "New Orleans Saints", - "sF": "10", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2022", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Seattle Seahawks", - "sF": "24", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Dec 24, 2022", - "at": "@", - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "27", - "sU": "24", - "spread": "4", - "ou": null - }, - { - "date": "Dec 24, 2022", - "at": null, - "fav": "Cincinnati Bengals", - "und": "New England Patriots", - "sF": "22", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2022", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Las Vegas Raiders", - "sF": "13", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Dec 24, 2022", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "14", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2022", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Washington Commanders", - "sF": "37", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 24, 2022", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "40", - "sU": "34", - "spread": "4", - "ou": null - }, - { - "date": "Dec 25, 2022", - "at": "@", - "fav": "Miami Dolphins", - "und": "Green Bay Packers", - "sF": "20", - "sU": "26", - "spread": "3", - "ou": null - }, - { - "date": "Dec 25, 2022", - "at": null, - "fav": "Denver Broncos", - "und": "Los Angeles Rams", - "sF": "14", - "sU": "51", - "spread": "3", - "ou": null - }, - { - "date": "Dec 25, 2022", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Arizona Cardinals", - "sF": "19", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Dec 26, 2022", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Dec 29, 2022", - "at": null, - "fav": "Dallas Cowboys", - "und": "Tennessee Titans", - "sF": "27", - "sU": "13", - "spread": "12", - "ou": null - }, - { - "date": "Jan 1, 2023", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Jan 1, 2023", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "41", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Jan 1, 2023", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "31", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 2023", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "27", - "sU": "24", - "spread": "12", - "ou": null - }, - { - "date": "Jan 1, 2023", - "at": "@", - "fav": "New England Patriots", - "und": "Miami Dolphins", - "sF": "23", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Jan 1, 2023", - "at": "@", - "fav": "New York Giants", - "und": "Indianapolis Colts", - "sF": "38", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Jan 1, 2023", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New Orleans Saints", - "sF": "10", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Jan 1, 2023", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "30", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 2023", - "at": "@", - "fav": "Washington Commanders", - "und": "Cleveland Browns", - "sF": "10", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Jan 1, 2023", - "at": null, - "fav": "San Francisco 49ers", - "und": "Las Vegas Raiders", - "sF": "37", - "sU": "34", - "spread": "9", - "ou": null - }, - { - "date": "Jan 1, 2023", - "at": null, - "fav": "New York Jets", - "und": "Seattle Seahawks", - "sF": "6", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Jan 1, 2023", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "41", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Jan 1, 2023", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Los Angeles Rams", - "sF": "31", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Jan 1, 2023", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Jan 7, 2023", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Las Vegas Raiders", - "sF": "31", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Jan 7, 2023", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "20", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Jan 8, 2023", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "30", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Jan 8, 2023", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "35", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Jan 8, 2023", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "29", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Jan 8, 2023", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Baltimore Ravens", - "sF": "27", - "sU": "16", - "spread": "9", - "ou": null - }, - { - "date": "Jan 8, 2023", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Houston Texans", - "sF": "31", - "sU": "32", - "spread": "2", - "ou": null - }, - { - "date": "Jan 8, 2023", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "11", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Jan 8, 2023", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "7", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Jan 8, 2023", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "28", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Jan 8, 2023", - "at": "@", - "fav": "Denver Broncos", - "und": "Los Angeles Chargers", - "sF": "31", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Jan 8, 2023", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "22", - "sU": "16", - "spread": "16", - "ou": null - }, - { - "date": "Jan 8, 2023", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "38", - "sU": "13", - "spread": "14", - "ou": null - }, - { - "date": "Jan 8, 2023", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Los Angeles Rams", - "sF": "19", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Jan 8, 2023", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Commanders", - "sF": "6", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Jan 8, 2023", - "at": "@", - "fav": "Green Bay Packers", - "und": "Detroit Lions", - "sF": "16", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Jan 14, 2023", - "at": "@", - "fav": "San Francisco 49ers (2)", - "und": "Seattle Seahawks (7)", - "sF": "41", - "sU": "23", - "spread": "9", - "ou": null - }, - { - "date": "Jan 14, 2023", - "at": null, - "fav": "Los Angeles Chargers (5)", - "und": "Jacksonville Jaguars (4)", - "sF": "30", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Jan 15, 2023", - "at": "@", - "fav": "Buffalo Bills (2)", - "und": "Miami Dolphins (7)", - "sF": "34", - "sU": "31", - "spread": "13", - "ou": null - }, - { - "date": "Jan 15, 2023", - "at": "@", - "fav": "Minnesota Vikings (3)", - "und": "New York Giants (6)", - "sF": "24", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Jan 15, 2023", - "at": "@", - "fav": "Cincinnati Bengals (3)", - "und": "Baltimore Ravens (6)", - "sF": "24", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Jan 16, 2023", - "at": null, - "fav": "Dallas Cowboys (5)", - "und": "Tampa Bay Buccaneers (4)", - "sF": "31", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Jan 21, 2023", - "at": "@", - "fav": "Kansas City Chiefs (1)", - "und": "Jacksonville Jaguars (4)", - "sF": "27", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Jan 21, 2023", - "at": "@", - "fav": "Philadelphia Eagles (1)", - "und": "New York Giants (6)", - "sF": "38", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Jan 22, 2023", - "at": "@", - "fav": "Buffalo Bills (2)", - "und": "Cincinnati Bengals (3)", - "sF": "10", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Jan 22, 2023", - "at": "@", - "fav": "San Francisco 49ers (2)", - "und": "Dallas Cowboys (5)", - "sF": "19", - "sU": "12", - "spread": "4", - "ou": null - }, - { - "date": "Jan 29, 2023", - "at": "@", - "fav": "Philadelphia Eagles (1)", - "und": "San Francisco 49ers (2)", - "sF": "31", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Jan 29, 2023", - "at": "@", - "fav": "Kansas City Chiefs (1)", - "und": "Cincinnati Bengals (3)", - "sF": "23", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Feb 12, 2023", - "at": "@", - "fav": "Philadelphia Eagles (1)", - "und": "Kansas City Chiefs (1)", - "sF": "35", - "sU": "38", - "spread": "1", - "ou": null - }, - { - "date": "Sep 7, 2023", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Detroit Lions", - "sF": "20", - "sU": "21", - "spread": "4", - "ou": null - }, - { - "date": "Sep 10, 2023", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "24", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 2023", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Houston Texans", - "sF": "25", - "sU": "9", - "spread": "9", - "ou": null - }, - { - "date": "Sep 10, 2023", - "at": "@", - "fav": "Chicago Bears", - "und": "Green Bay Packers", - "sF": "20", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Sep 10, 2023", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "3", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Sep 10, 2023", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 2023", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 10, 2023", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tennessee Titans", - "sF": "16", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Sep 10, 2023", - "at": null, - "fav": "San Francisco 49ers", - "und": "Pittsburgh Steelers", - "sF": "30", - "sU": "7", - "spread": "2", - "ou": null - }, - { - "date": "Sep 10, 2023", - "at": "@", - "fav": "Washington Commanders", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "16", - "spread": "6", - "ou": null - }, - { - "date": "Sep 10, 2023", - "at": "@", - "fav": "Denver Broncos", - "und": "Las Vegas Raiders", - "sF": "16", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 10, 2023", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Miami Dolphins", - "sF": "34", - "sU": "36", - "spread": "2", - "ou": null - }, - { - "date": "Sep 10, 2023", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New England Patriots", - "sF": "25", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 10, 2023", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Los Angeles Rams", - "sF": "13", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Sep 10, 2023", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "40", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Sep 11, 2023", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "16", - "sU": "22", - "spread": "1", - "ou": null - }, - { - "date": "Sep 14, 2023", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Minnesota Vikings", - "sF": "34", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Sep 17, 2023", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Green Bay Packers", - "sF": "25", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 2023", - "at": "@", - "fav": "Buffalo Bills", - "und": "Las Vegas Raiders", - "sF": "38", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Sep 17, 2023", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Baltimore Ravens", - "sF": "24", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 2023", - "at": "@", - "fav": "Detroit Lions", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "37", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 2023", - "at": "@", - "fav": "Houston Texans", - "und": "Indianapolis Colts", - "sF": "20", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Sep 17, 2023", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Jacksonville Jaguars", - "sF": "17", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Sep 17, 2023", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Chicago Bears", - "sF": "27", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 2023", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Tennessee Titans", - "sF": "24", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Sep 17, 2023", - "at": null, - "fav": "New York Giants", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 2023", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Sep 17, 2023", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Jets", - "sF": "30", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Sep 17, 2023", - "at": "@", - "fav": "Denver Broncos", - "und": "Washington Commanders", - "sF": "33", - "sU": "35", - "spread": "4", - "ou": null - }, - { - "date": "Sep 17, 2023", - "at": null, - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "24", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Sep 18, 2023", - "at": null, - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 18, 2023", - "at": null, - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "22", - "sU": "26", - "spread": "2", - "ou": null - }, - { - "date": "Sep 21, 2023", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Giants", - "sF": "30", - "sU": "12", - "spread": "10", - "ou": null - }, - { - "date": "Sep 24, 2023", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Indianapolis Colts", - "sF": "19", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Sep 24, 2023", - "at": "@", - "fav": "Cleveland Browns", - "und": "Tennessee Titans", - "sF": "27", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 2023", - "at": "@", - "fav": "Detroit Lions", - "und": "Atlanta Falcons", - "sF": "20", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Sep 24, 2023", - "at": "@", - "fav": "Green Bay Packers", - "und": "New Orleans Saints", - "sF": "18", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Sep 24, 2023", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "17", - "sU": "37", - "spread": "9", - "ou": null - }, - { - "date": "Sep 24, 2023", - "at": "@", - "fav": "Miami Dolphins", - "und": "Denver Broncos", - "sF": "70", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 24, 2023", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Los Angeles Chargers", - "sF": "24", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Sep 24, 2023", - "at": null, - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "15", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 24, 2023", - "at": null, - "fav": "Buffalo Bills", - "und": "Washington Commanders", - "sF": "37", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Sep 24, 2023", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Carolina Panthers", - "sF": "37", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Sep 24, 2023", - "at": null, - "fav": "Dallas Cowboys", - "und": "Arizona Cardinals", - "sF": "16", - "sU": "28", - "spread": "11", - "ou": null - }, - { - "date": "Sep 24, 2023", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Chicago Bears", - "sF": "41", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Sep 24, 2023", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "Pittsburgh Steelers", - "sF": "18", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Sep 25, 2023", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Tampa Bay Buccaneers", - "sF": "25", - "sU": "11", - "spread": "6", - "ou": null - }, - { - "date": "Sep 25, 2023", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Los Angeles Rams", - "sF": "19", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Sep 28, 2023", - "at": null, - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "34", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 1, 2023", - "at": "N", - "fav": "Jacksonville Jaguars", - "und": "Atlanta Falcons", - "sF": "23", - "sU": "7", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 2023", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "48", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 1, 2023", - "at": null, - "fav": "Minnesota Vikings", - "und": "Carolina Panthers", - "sF": "21", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Oct 1, 2023", - "at": null, - "fav": "Denver Broncos", - "und": "Chicago Bears", - "sF": "31", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 2023", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "28", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Oct 1, 2023", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Houston Texans", - "sF": "6", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Oct 1, 2023", - "at": null, - "fav": "Los Angeles Rams", - "und": "Indianapolis Colts", - "sF": "29", - "sU": "23", - "spread": "1", - "ou": null - }, - { - "date": "Oct 1, 2023", - "at": "@", - "fav": "New Orleans Saints", - "und": "Tampa Bay Buccaneers", - "sF": "9", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Oct 1, 2023", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Commanders", - "sF": "34", - "sU": "31", - "spread": "9", - "ou": null - }, - { - "date": "Oct 1, 2023", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Tennessee Titans", - "sF": "3", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Oct 1, 2023", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Las Vegas Raiders", - "sF": "24", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 1, 2023", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New England Patriots", - "sF": "38", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Oct 1, 2023", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "35", - "sU": "16", - "spread": "16", - "ou": null - }, - { - "date": "Oct 1, 2023", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New York Jets", - "sF": "23", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Oct 2, 2023", - "at": null, - "fav": "Seattle Seahawks", - "und": "New York Giants", - "sF": "24", - "sU": "3", - "spread": "2", - "ou": null - }, - { - "date": "Oct 5, 2023", - "at": "@", - "fav": "Washington Commanders", - "und": "Chicago Bears", - "sF": "20", - "sU": "40", - "spread": "6", - "ou": null - }, - { - "date": "Oct 8, 2023", - "at": "N", - "fav": "Buffalo Bills", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "25", - "spread": "5", - "ou": null - }, - { - "date": "Oct 8, 2023", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Houston Texans", - "sF": "21", - "sU": "19", - "spread": "2", - "ou": null - }, - { - "date": "Oct 8, 2023", - "at": "@", - "fav": "Detroit Lions", - "und": "Carolina Panthers", - "sF": "42", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Oct 8, 2023", - "at": null, - "fav": "Tennessee Titans", - "und": "Indianapolis Colts", - "sF": "16", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Oct 8, 2023", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Giants", - "sF": "31", - "sU": "16", - "spread": "13", - "ou": null - }, - { - "date": "Oct 8, 2023", - "at": "@", - "fav": "New England Patriots", - "und": "New Orleans Saints", - "sF": "0", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Oct 8, 2023", - "at": null, - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Oct 8, 2023", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Arizona Cardinals", - "sF": "34", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 2023", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Los Angeles Rams", - "sF": "23", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 2023", - "at": "@", - "fav": "Denver Broncos", - "und": "New York Jets", - "sF": "21", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Oct 8, 2023", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Oct 8, 2023", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Dallas Cowboys", - "sF": "42", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 9, 2023", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "Green Bay Packers", - "sF": "17", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Oct 12, 2023", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "19", - "sU": "8", - "spread": "10", - "ou": null - }, - { - "date": "Oct 15, 2023", - "at": "N", - "fav": "Baltimore Ravens", - "und": "Tennessee Titans", - "sF": "24", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Oct 15, 2023", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Washington Commanders", - "sF": "16", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Oct 15, 2023", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "19", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 2023", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 2023", - "at": null, - "fav": "San Francisco 49ers", - "und": "Cleveland Browns", - "sF": "17", - "sU": "19", - "spread": "9", - "ou": null - }, - { - "date": "Oct 15, 2023", - "at": null, - "fav": "New Orleans Saints", - "und": "Houston Texans", - "sF": "13", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 15, 2023", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Indianapolis Colts", - "sF": "37", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 15, 2023", - "at": "@", - "fav": "Miami Dolphins", - "und": "Carolina Panthers", - "sF": "42", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Oct 15, 2023", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "New England Patriots", - "sF": "21", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 15, 2023", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Arizona Cardinals", - "sF": "26", - "sU": "9", - "spread": "7", - "ou": null - }, - { - "date": "Oct 15, 2023", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Jets", - "sF": "14", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 15, 2023", - "at": null, - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Oct 15, 2023", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Giants", - "sF": "14", - "sU": "9", - "spread": "15", - "ou": null - }, - { - "date": "Oct 16, 2023", - "at": null, - "fav": "Dallas Cowboys", - "und": "Los Angeles Chargers", - "sF": "20", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 19, 2023", - "at": "@", - "fav": "New Orleans Saints", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Oct 22, 2023", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Detroit Lions", - "sF": "38", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 2023", - "at": null, - "fav": "Las Vegas Raiders", - "und": "Chicago Bears", - "sF": "12", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Oct 22, 2023", - "at": null, - "fav": "Cleveland Browns", - "und": "Indianapolis Colts", - "sF": "39", - "sU": "38", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 2023", - "at": null, - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "25", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Oct 22, 2023", - "at": null, - "fav": "Washington Commanders", - "und": "New York Giants", - "sF": "7", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 2023", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Atlanta Falcons", - "sF": "13", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 2023", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Pittsburgh Steelers", - "sF": "17", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 22, 2023", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Oct 22, 2023", - "at": "@", - "fav": "Denver Broncos", - "und": "Green Bay Packers", - "sF": "19", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 22, 2023", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Chargers", - "sF": "31", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Oct 22, 2023", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Miami Dolphins", - "sF": "31", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Oct 23, 2023", - "at": null, - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Oct 26, 2023", - "at": "@", - "fav": "Buffalo Bills", - "und": "Tampa Bay Buccaneers", - "sF": "24", - "sU": "18", - "spread": "10", - "ou": null - }, - { - "date": "Oct 29, 2023", - "at": null, - "fav": "Houston Texans", - "und": "Carolina Panthers", - "sF": "13", - "sU": "15", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 2023", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Los Angeles Rams", - "sF": "43", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 2023", - "at": null, - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "24", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Oct 29, 2023", - "at": null, - "fav": "New Orleans Saints", - "und": "Indianapolis Colts", - "sF": "38", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Oct 29, 2023", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "31", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Oct 29, 2023", - "at": null, - "fav": "New York Jets", - "und": "New York Giants", - "sF": "13", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 29, 2023", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Pittsburgh Steelers", - "sF": "20", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 29, 2023", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tennessee Titans", - "sF": "23", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 29, 2023", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Commanders", - "sF": "38", - "sU": "31", - "spread": "6", - "ou": null - }, - { - "date": "Oct 29, 2023", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Cleveland Browns", - "sF": "24", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 29, 2023", - "at": null, - "fav": "Baltimore Ravens", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Oct 29, 2023", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "9", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 29, 2023", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Cincinnati Bengals", - "sF": "17", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Oct 29, 2023", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Chicago Bears", - "sF": "30", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Oct 30, 2023", - "at": "@", - "fav": "Detroit Lions", - "und": "Las Vegas Raiders", - "sF": "26", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 2, 2023", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Tennessee Titans", - "sF": "20", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 2023", - "at": "N", - "fav": "Kansas City Chiefs", - "und": "Miami Dolphins", - "sF": "21", - "sU": "14", - "spread": "1", - "ou": null - }, - { - "date": "Nov 5, 2023", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Minnesota Vikings", - "sF": "28", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 2023", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Seattle Seahawks", - "sF": "37", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Nov 5, 2023", - "at": "@", - "fav": "Cleveland Browns", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "0", - "spread": "13", - "ou": null - }, - { - "date": "Nov 5, 2023", - "at": "@", - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 2023", - "at": "@", - "fav": "Houston Texans", - "und": "Tampa Bay Buccaneers", - "sF": "39", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Nov 5, 2023", - "at": "@", - "fav": "New England Patriots", - "und": "Washington Commanders", - "sF": "17", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 5, 2023", - "at": "@", - "fav": "New Orleans Saints", - "und": "Chicago Bears", - "sF": "24", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 5, 2023", - "at": null, - "fav": "Indianapolis Colts", - "und": "Carolina Panthers", - "sF": "27", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Nov 5, 2023", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "New York Giants", - "sF": "30", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Nov 5, 2023", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "28", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 5, 2023", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Buffalo Bills", - "sF": "24", - "sU": "18", - "spread": "1", - "ou": null - }, - { - "date": "Nov 6, 2023", - "at": null, - "fav": "Los Angeles Chargers", - "und": "New York Jets", - "sF": "27", - "sU": "6", - "spread": "3", - "ou": null - }, - { - "date": "Nov 9, 2023", - "at": "@", - "fav": "Chicago Bears", - "und": "Carolina Panthers", - "sF": "16", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 2023", - "at": "N", - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "10", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Nov 12, 2023", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "31", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Nov 12, 2023", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Houston Texans", - "sF": "27", - "sU": "30", - "spread": "5", - "ou": null - }, - { - "date": "Nov 12, 2023", - "at": null, - "fav": "San Francisco 49ers", - "und": "Jacksonville Jaguars", - "sF": "34", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 2023", - "at": null, - "fav": "New Orleans Saints", - "und": "Minnesota Vikings", - "sF": "19", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Nov 12, 2023", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Green Bay Packers", - "sF": "23", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Nov 12, 2023", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Tennessee Titans", - "sF": "20", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Nov 12, 2023", - "at": null, - "fav": "Atlanta Falcons", - "und": "Arizona Cardinals", - "sF": "23", - "sU": "25", - "spread": "2", - "ou": null - }, - { - "date": "Nov 12, 2023", - "at": null, - "fav": "Detroit Lions", - "und": "Los Angeles Chargers", - "sF": "41", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Nov 12, 2023", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "49", - "sU": "17", - "spread": "17", - "ou": null - }, - { - "date": "Nov 12, 2023", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Washington Commanders", - "sF": "29", - "sU": "26", - "spread": "5", - "ou": null - }, - { - "date": "Nov 12, 2023", - "at": null, - "fav": "New York Jets", - "und": "Las Vegas Raiders", - "sF": "12", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Nov 13, 2023", - "at": "@", - "fav": "Buffalo Bills", - "und": "Denver Broncos", - "sF": "22", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 16, 2023", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 2023", - "at": null, - "fav": "Dallas Cowboys", - "und": "Carolina Panthers", - "sF": "33", - "sU": "10", - "spread": "11", - "ou": null - }, - { - "date": "Nov 19, 2023", - "at": "@", - "fav": "Cleveland Browns", - "und": "Pittsburgh Steelers", - "sF": "13", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Nov 19, 2023", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "31", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Nov 19, 2023", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Green Bay Packers", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 19, 2023", - "at": "@", - "fav": "Houston Texans", - "und": "Arizona Cardinals", - "sF": "21", - "sU": "16", - "spread": "5", - "ou": null - }, - { - "date": "Nov 19, 2023", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "34", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Nov 19, 2023", - "at": "@", - "fav": "Miami Dolphins", - "und": "Las Vegas Raiders", - "sF": "20", - "sU": "13", - "spread": "13", - "ou": null - }, - { - "date": "Nov 19, 2023", - "at": "@", - "fav": "Washington Commanders", - "und": "New York Giants", - "sF": "19", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Nov 19, 2023", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Nov 19, 2023", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "32", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Nov 19, 2023", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Nov 19, 2023", - "at": "@", - "fav": "Denver Broncos", - "und": "Minnesota Vikings", - "sF": "21", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 20, 2023", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 23, 2023", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "22", - "sU": "29", - "spread": "8", - "ou": null - }, - { - "date": "Nov 23, 2023", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Washington Commanders", - "sF": "45", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Nov 23, 2023", - "at": null, - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "13", - "spread": "7", - "ou": null - }, - { - "date": "Nov 24, 2023", - "at": null, - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "34", - "sU": "13", - "spread": "9", - "ou": null - }, - { - "date": "Nov 26, 2023", - "at": null, - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "15", - "sU": "24", - "spread": "1", - "ou": null - }, - { - "date": "Nov 26, 2023", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cincinnati Bengals", - "sF": "16", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 26, 2023", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Houston Texans", - "sF": "24", - "sU": "21", - "spread": "1", - "ou": null - }, - { - "date": "Nov 26, 2023", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tampa Bay Buccaneers", - "sF": "27", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 26, 2023", - "at": null, - "fav": "New England Patriots", - "und": "New York Giants", - "sF": "7", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Nov 26, 2023", - "at": "@", - "fav": "Tennessee Titans", - "und": "Carolina Panthers", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 26, 2023", - "at": null, - "fav": "Los Angeles Rams", - "und": "Arizona Cardinals", - "sF": "37", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 26, 2023", - "at": "@", - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "29", - "sU": "12", - "spread": "1", - "ou": null - }, - { - "date": "Nov 26, 2023", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Las Vegas Raiders", - "sF": "31", - "sU": "17", - "spread": "9", - "ou": null - }, - { - "date": "Nov 26, 2023", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Buffalo Bills", - "sF": "37", - "sU": "34", - "spread": "2", - "ou": null - }, - { - "date": "Nov 26, 2023", - "at": null, - "fav": "Baltimore Ravens", - "und": "Los Angeles Chargers", - "sF": "20", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Nov 27, 2023", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "10", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Nov 30, 2023", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Seattle Seahawks", - "sF": "41", - "sU": "35", - "spread": "9", - "ou": null - }, - { - "date": "Dec 3, 2023", - "at": "@", - "fav": "Houston Texans", - "und": "Denver Broncos", - "sF": "22", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 2023", - "at": null, - "fav": "Los Angeles Chargers", - "und": "New England Patriots", - "sF": "6", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Dec 3, 2023", - "at": null, - "fav": "Detroit Lions", - "und": "New Orleans Saints", - "sF": "33", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Dec 3, 2023", - "at": null, - "fav": "Atlanta Falcons", - "und": "New York Jets", - "sF": "13", - "sU": "8", - "spread": "2", - "ou": null - }, - { - "date": "Dec 3, 2023", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Arizona Cardinals", - "sF": "10", - "sU": "24", - "spread": "6", - "ou": null - }, - { - "date": "Dec 3, 2023", - "at": null, - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "31", - "sU": "28", - "spread": "1", - "ou": null - }, - { - "date": "Dec 3, 2023", - "at": null, - "fav": "Miami Dolphins", - "und": "Washington Commanders", - "sF": "45", - "sU": "15", - "spread": "8", - "ou": null - }, - { - "date": "Dec 3, 2023", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "21", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 2023", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Cleveland Browns", - "sF": "36", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 2023", - "at": null, - "fav": "San Francisco 49ers", - "und": "Philadelphia Eagles", - "sF": "42", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 3, 2023", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Green Bay Packers", - "sF": "19", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Dec 4, 2023", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Cincinnati Bengals", - "sF": "31", - "sU": "34", - "spread": "10", - "ou": null - }, - { - "date": "Dec 7, 2023", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New England Patriots", - "sF": "18", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Dec 10, 2023", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "25", - "sU": "29", - "spread": "1", - "ou": null - }, - { - "date": "Dec 10, 2023", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Los Angeles Rams", - "sF": "37", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Dec 10, 2023", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "13", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2023", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Indianapolis Colts", - "sF": "34", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2023", - "at": "@", - "fav": "Cleveland Browns", - "und": "Jacksonville Jaguars", - "sF": "31", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 10, 2023", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "28", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Dec 10, 2023", - "at": null, - "fav": "Houston Texans", - "und": "New York Jets", - "sF": "6", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2023", - "at": null, - "fav": "Minnesota Vikings", - "und": "Las Vegas Raiders", - "sF": "3", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2023", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "28", - "sU": "16", - "spread": "14", - "ou": null - }, - { - "date": "Dec 10, 2023", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Buffalo Bills", - "sF": "17", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 10, 2023", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Denver Broncos", - "sF": "7", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 10, 2023", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Philadelphia Eagles", - "sF": "33", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 11, 2023", - "at": "@", - "fav": "Miami Dolphins", - "und": "Tennessee Titans", - "sF": "27", - "sU": "28", - "spread": "13", - "ou": null - }, - { - "date": "Dec 11, 2023", - "at": null, - "fav": "Green Bay Packers", - "und": "New York Giants", - "sF": "22", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Dec 14, 2023", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "Los Angeles Chargers", - "sF": "63", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2023", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Minnesota Vikings", - "sF": "27", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2023", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Pittsburgh Steelers", - "sF": "30", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 16, 2023", - "at": "@", - "fav": "Detroit Lions", - "und": "Denver Broncos", - "sF": "42", - "sU": "17", - "spread": "5", - "ou": null - }, - { - "date": "Dec 17, 2023", - "at": null, - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "7", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 2023", - "at": "@", - "fav": "Cleveland Browns", - "und": "Chicago Bears", - "sF": "20", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 17, 2023", - "at": "@", - "fav": "Green Bay Packers", - "und": "Tampa Bay Buccaneers", - "sF": "20", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 2023", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "30", - "sU": "0", - "spread": "7", - "ou": null - }, - { - "date": "Dec 17, 2023", - "at": null, - "fav": "Kansas City Chiefs", - "und": "New England Patriots", - "sF": "27", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Dec 17, 2023", - "at": "@", - "fav": "New Orleans Saints", - "und": "New York Giants", - "sF": "24", - "sU": "6", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 2023", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "16", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 17, 2023", - "at": null, - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "45", - "sU": "29", - "spread": "12", - "ou": null - }, - { - "date": "Dec 17, 2023", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Washington Commanders", - "sF": "28", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Dec 17, 2023", - "at": "@", - "fav": "Buffalo Bills", - "und": "Dallas Cowboys", - "sF": "31", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Dec 17, 2023", - "at": null, - "fav": "Baltimore Ravens", - "und": "Jacksonville Jaguars", - "sF": "23", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Dec 18, 2023", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Dec 21, 2023", - "at": "@", - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "30", - "sU": "22", - "spread": "4", - "ou": null - }, - { - "date": "Dec 23, 2023", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "11", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Dec 23, 2023", - "at": null, - "fav": "Buffalo Bills", - "und": "Los Angeles Chargers", - "sF": "24", - "sU": "22", - "spread": "12", - "ou": null - }, - { - "date": "Dec 24, 2023", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Indianapolis Colts", - "sF": "29", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Dec 24, 2023", - "at": null, - "fav": "Green Bay Packers", - "und": "Carolina Panthers", - "sF": "33", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2023", - "at": null, - "fav": "Cleveland Browns", - "und": "Houston Texans", - "sF": "36", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2023", - "at": null, - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "30", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 24, 2023", - "at": "@", - "fav": "New York Jets", - "und": "Washington Commanders", - "sF": "30", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2023", - "at": null, - "fav": "Seattle Seahawks", - "und": "Tennessee Titans", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Dec 24, 2023", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Tampa Bay Buccaneers", - "sF": "12", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Dec 24, 2023", - "at": "@", - "fav": "Chicago Bears", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "16", - "spread": "4", - "ou": null - }, - { - "date": "Dec 24, 2023", - "at": "@", - "fav": "Miami Dolphins", - "und": "Dallas Cowboys", - "sF": "22", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Dec 24, 2023", - "at": "@", - "fav": "Denver Broncos", - "und": "New England Patriots", - "sF": "23", - "sU": "26", - "spread": "7", - "ou": null - }, - { - "date": "Dec 25, 2023", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Las Vegas Raiders", - "sF": "14", - "sU": "20", - "spread": "10", - "ou": null - }, - { - "date": "Dec 25, 2023", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "33", - "sU": "25", - "spread": "14", - "ou": null - }, - { - "date": "Dec 25, 2023", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Baltimore Ravens", - "sF": "19", - "sU": "33", - "spread": "6", - "ou": null - }, - { - "date": "Dec 28, 2023", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Jets", - "sF": "37", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Dec 30, 2023", - "at": "@", - "fav": "Dallas Cowboys", - "und": "Detroit Lions", - "sF": "20", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Dec 31, 2023", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Miami Dolphins", - "sF": "56", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 31, 2023", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "27", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Dec 31, 2023", - "at": "@", - "fav": "Chicago Bears", - "und": "Atlanta Falcons", - "sF": "37", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Dec 31, 2023", - "at": "@", - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "26", - "sU": "3", - "spread": "5", - "ou": null - }, - { - "date": "Dec 31, 2023", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Las Vegas Raiders", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 31, 2023", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Carolina Panthers", - "sF": "26", - "sU": "0", - "spread": "3", - "ou": null - }, - { - "date": "Dec 31, 2023", - "at": null, - "fav": "Los Angeles Rams", - "und": "New York Giants", - "sF": "26", - "sU": "25", - "spread": "6", - "ou": null - }, - { - "date": "Dec 31, 2023", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Arizona Cardinals", - "sF": "31", - "sU": "35", - "spread": "12", - "ou": null - }, - { - "date": "Dec 31, 2023", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "13", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Dec 31, 2023", - "at": null, - "fav": "San Francisco 49ers", - "und": "Washington Commanders", - "sF": "27", - "sU": "10", - "spread": "14", - "ou": null - }, - { - "date": "Dec 31, 2023", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Pittsburgh Steelers", - "sF": "23", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Dec 31, 2023", - "at": "@", - "fav": "Denver Broncos", - "und": "Los Angeles Chargers", - "sF": "16", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Dec 31, 2023", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cincinnati Bengals", - "sF": "25", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 31, 2023", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "10", - "sU": "33", - "spread": "1", - "ou": null - }, - { - "date": "Jan 6, 2024", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Baltimore Ravens", - "sF": "17", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Jan 6, 2024", - "at": null, - "fav": "Houston Texans", - "und": "Indianapolis Colts", - "sF": "23", - "sU": "19", - "spread": "1", - "ou": null - }, - { - "date": "Jan 7, 2024", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "9", - "sU": "0", - "spread": "4", - "ou": null - }, - { - "date": "Jan 7, 2024", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "31", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Jan 7, 2024", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "30", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Jan 7, 2024", - "at": "@", - "fav": "New England Patriots", - "und": "New York Jets", - "sF": "3", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Jan 7, 2024", - "at": "@", - "fav": "New Orleans Saints", - "und": "Atlanta Falcons", - "sF": "48", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Jan 7, 2024", - "at": null, - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "20", - "sU": "28", - "spread": "3", - "ou": null - }, - { - "date": "Jan 7, 2024", - "at": null, - "fav": "Seattle Seahawks", - "und": "Arizona Cardinals", - "sF": "21", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Jan 7, 2024", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "17", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Jan 7, 2024", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "Denver Broncos", - "sF": "27", - "sU": "14", - "spread": "3", - "ou": null - }, - { - "date": "Jan 7, 2024", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Kansas City Chiefs", - "sF": "12", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Jan 7, 2024", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "10", - "sU": "27", - "spread": "5", - "ou": null - }, - { - "date": "Jan 7, 2024", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "21", - "spread": "5", - "ou": null - }, - { - "date": "Jan 7, 2024", - "at": null, - "fav": "Dallas Cowboys", - "und": "Washington Commanders", - "sF": "38", - "sU": "10", - "spread": "13", - "ou": null - }, - { - "date": "Jan 7, 2024", - "at": null, - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "21", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Jan 13, 2024", - "at": null, - "fav": "Cleveland Browns (5)", - "und": "Houston Texans (4)", - "sF": "14", - "sU": "45", - "spread": "2", - "ou": null - }, - { - "date": "Jan 13, 2024", - "at": "@", - "fav": "Kansas City Chiefs (3)", - "und": "Miami Dolphins (6)", - "sF": "26", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Jan 14, 2024", - "at": "@", - "fav": "Dallas Cowboys (2)", - "und": "Green Bay Packers (7)", - "sF": "32", - "sU": "48", - "spread": "7", - "ou": null - }, - { - "date": "Jan 14, 2024", - "at": "@", - "fav": "Detroit Lions (3)", - "und": "Los Angeles Rams (6)", - "sF": "24", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Jan 15, 2024", - "at": "@", - "fav": "Buffalo Bills (2)", - "und": "Pittsburgh Steelers (7)", - "sF": "31", - "sU": "17", - "spread": "10", - "ou": null - }, - { - "date": "Jan 15, 2024", - "at": null, - "fav": "Philadelphia Eagles (5)", - "und": "Tampa Bay Buccaneers (4)", - "sF": "9", - "sU": "32", - "spread": "2", - "ou": null - }, - { - "date": "Jan 20, 2024", - "at": "@", - "fav": "Baltimore Ravens (1)", - "und": "Houston Texans (4)", - "sF": "34", - "sU": "10", - "spread": "10", - "ou": null - }, - { - "date": "Jan 20, 2024", - "at": "@", - "fav": "San Francisco 49ers (1)", - "und": "Green Bay Packers (7)", - "sF": "24", - "sU": "21", - "spread": "10", - "ou": null - }, - { - "date": "Jan 21, 2024", - "at": "@", - "fav": "Detroit Lions (3)", - "und": "Tampa Bay Buccaneers (4)", - "sF": "31", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Jan 21, 2024", - "at": "@", - "fav": "Buffalo Bills (2)", - "und": "Kansas City Chiefs (3)", - "sF": "24", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Jan 28, 2024", - "at": "@", - "fav": "Baltimore Ravens (1)", - "und": "Kansas City Chiefs (3)", - "sF": "10", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Jan 28, 2024", - "at": "@", - "fav": "San Francisco 49ers (1)", - "und": "Detroit Lions (3)", - "sF": "34", - "sU": "31", - "spread": "7", - "ou": null - }, - { - "date": "Feb 11, 2024", - "at": "N", - "fav": "San Francisco 49ers (1)", - "und": "Kansas City Chiefs (3)", - "sF": "22", - "sU": "25", - "spread": "2", - "ou": null - }, - { - "date": "Sep 5, 2024", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Baltimore Ravens", - "sF": "27", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 6, 2024", - "at": "N", - "fav": "Philadelphia Eagles", - "und": "Green Bay Packers", - "sF": "34", - "sU": "29", - "spread": "1", - "ou": null - }, - { - "date": "Sep 8, 2024", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Pittsburgh Steelers", - "sF": "10", - "sU": "18", - "spread": "4", - "ou": null - }, - { - "date": "Sep 8, 2024", - "at": "@", - "fav": "Buffalo Bills", - "und": "Arizona Cardinals", - "sF": "34", - "sU": "28", - "spread": "6", - "ou": null - }, - { - "date": "Sep 8, 2024", - "at": "@", - "fav": "Chicago Bears", - "und": "Tennessee Titans", - "sF": "24", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Sep 8, 2024", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "New England Patriots", - "sF": "10", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Sep 8, 2024", - "at": null, - "fav": "Houston Texans", - "und": "Indianapolis Colts", - "sF": "29", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 2024", - "at": "@", - "fav": "Miami Dolphins", - "und": "Jacksonville Jaguars", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 2024", - "at": "@", - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "47", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 2024", - "at": null, - "fav": "Minnesota Vikings", - "und": "New York Giants", - "sF": "28", - "sU": "6", - "spread": "1", - "ou": null - }, - { - "date": "Sep 8, 2024", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Las Vegas Raiders", - "sF": "22", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Sep 8, 2024", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Denver Broncos", - "sF": "26", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Sep 8, 2024", - "at": "@", - "fav": "Cleveland Browns", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "33", - "spread": "2", - "ou": null - }, - { - "date": "Sep 8, 2024", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Washington Commanders", - "sF": "37", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Sep 8, 2024", - "at": "@", - "fav": "Detroit Lions", - "und": "Los Angeles Rams", - "sF": "26", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 9, 2024", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New York Jets", - "sF": "32", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Sep 12, 2024", - "at": "@", - "fav": "Miami Dolphins", - "und": "Buffalo Bills", - "sF": "10", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Sep 15, 2024", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Las Vegas Raiders", - "sF": "23", - "sU": "26", - "spread": "8", - "ou": null - }, - { - "date": "Sep 15, 2024", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Carolina Panthers", - "sF": "26", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Sep 15, 2024", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New Orleans Saints", - "sF": "19", - "sU": "44", - "spread": "6", - "ou": null - }, - { - "date": "Sep 15, 2024", - "at": "@", - "fav": "Detroit Lions", - "und": "Tampa Bay Buccaneers", - "sF": "16", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Sep 15, 2024", - "at": null, - "fav": "Indianapolis Colts", - "und": "Green Bay Packers", - "sF": "10", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Sep 15, 2024", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Cleveland Browns", - "sF": "13", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 2024", - "at": null, - "fav": "San Francisco 49ers", - "und": "Minnesota Vikings", - "sF": "17", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Sep 15, 2024", - "at": null, - "fav": "Seattle Seahawks", - "und": "New England Patriots", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 2024", - "at": null, - "fav": "New York Jets", - "und": "Tennessee Titans", - "sF": "24", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 15, 2024", - "at": "@", - "fav": "Washington Commanders", - "und": "New York Giants", - "sF": "21", - "sU": "18", - "spread": "1", - "ou": null - }, - { - "date": "Sep 15, 2024", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Los Angeles Rams", - "sF": "41", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Sep 15, 2024", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Denver Broncos", - "sF": "13", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Sep 15, 2024", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Cincinnati Bengals", - "sF": "26", - "sU": "25", - "spread": "6", - "ou": null - }, - { - "date": "Sep 15, 2024", - "at": "@", - "fav": "Houston Texans", - "und": "Chicago Bears", - "sF": "19", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Sep 16, 2024", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Atlanta Falcons", - "sF": "21", - "sU": "22", - "spread": "5", - "ou": null - }, - { - "date": "Sep 19, 2024", - "at": "@", - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "24", - "sU": "3", - "spread": "6", - "ou": null - }, - { - "date": "Sep 22, 2024", - "at": "@", - "fav": "Cleveland Browns", - "und": "New York Giants", - "sF": "15", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Sep 22, 2024", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Chicago Bears", - "sF": "21", - "sU": "16", - "spread": "2", - "ou": null - }, - { - "date": "Sep 22, 2024", - "at": null, - "fav": "Houston Texans", - "und": "Minnesota Vikings", - "sF": "7", - "sU": "34", - "spread": "1", - "ou": null - }, - { - "date": "Sep 22, 2024", - "at": "@", - "fav": "New Orleans Saints", - "und": "Philadelphia Eagles", - "sF": "12", - "sU": "15", - "spread": "2", - "ou": null - }, - { - "date": "Sep 22, 2024", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Los Angeles Chargers", - "sF": "20", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 22, 2024", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Denver Broncos", - "sF": "7", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Sep 22, 2024", - "at": "@", - "fav": "Tennessee Titans", - "und": "Green Bay Packers", - "sF": "14", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 2024", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "Carolina Panthers", - "sF": "22", - "sU": "36", - "spread": "5", - "ou": null - }, - { - "date": "Sep 22, 2024", - "at": "@", - "fav": "Seattle Seahawks", - "und": "Miami Dolphins", - "sF": "24", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Sep 22, 2024", - "at": null, - "fav": "Detroit Lions", - "und": "Arizona Cardinals", - "sF": "20", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Sep 22, 2024", - "at": null, - "fav": "Baltimore Ravens", - "und": "Dallas Cowboys", - "sF": "28", - "sU": "25", - "spread": "1", - "ou": null - }, - { - "date": "Sep 22, 2024", - "at": null, - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Sep 22, 2024", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Atlanta Falcons", - "sF": "22", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Sep 23, 2024", - "at": "@", - "fav": "Buffalo Bills", - "und": "Jacksonville Jaguars", - "sF": "47", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Sep 23, 2024", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Washington Commanders", - "sF": "33", - "sU": "38", - "spread": "7", - "ou": null - }, - { - "date": "Sep 26, 2024", - "at": null, - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "20", - "sU": "15", - "spread": "5", - "ou": null - }, - { - "date": "Sep 29, 2024", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "26", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 2024", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Carolina Panthers", - "sF": "34", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Sep 29, 2024", - "at": "@", - "fav": "Chicago Bears", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 2024", - "at": "@", - "fav": "Green Bay Packers", - "und": "Minnesota Vikings", - "sF": "29", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 2024", - "at": "@", - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "24", - "sU": "20", - "spread": "5", - "ou": null - }, - { - "date": "Sep 29, 2024", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 2024", - "at": "@", - "fav": "New York Jets", - "und": "Denver Broncos", - "sF": "9", - "sU": "10", - "spread": "8", - "ou": null - }, - { - "date": "Sep 29, 2024", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Tampa Bay Buccaneers", - "sF": "16", - "sU": "33", - "spread": "1", - "ou": null - }, - { - "date": "Sep 29, 2024", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Washington Commanders", - "sF": "14", - "sU": "42", - "spread": "3", - "ou": null - }, - { - "date": "Sep 29, 2024", - "at": "@", - "fav": "San Francisco 49ers", - "und": "New England Patriots", - "sF": "30", - "sU": "13", - "spread": "10", - "ou": null - }, - { - "date": "Sep 29, 2024", - "at": null, - "fav": "Cleveland Browns", - "und": "Las Vegas Raiders", - "sF": "16", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Sep 29, 2024", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Los Angeles Chargers", - "sF": "17", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Sep 29, 2024", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Buffalo Bills", - "sF": "35", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 2024", - "at": "@", - "fav": "Miami Dolphins", - "und": "Tennessee Titans", - "sF": "12", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Sep 30, 2024", - "at": "@", - "fav": "Detroit Lions", - "und": "Seattle Seahawks", - "sF": "42", - "sU": "29", - "spread": "4", - "ou": null - }, - { - "date": "Oct 3, 2024", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "36", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Oct 6, 2024", - "at": "N", - "fav": "Minnesota Vikings", - "und": "New York Jets", - "sF": "23", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Oct 6, 2024", - "at": "@", - "fav": "Chicago Bears", - "und": "Carolina Panthers", - "sF": "36", - "sU": "10", - "spread": "4", - "ou": null - }, - { - "date": "Oct 6, 2024", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "41", - "sU": "38", - "spread": "2", - "ou": null - }, - { - "date": "Oct 6, 2024", - "at": "@", - "fav": "Houston Texans", - "und": "Buffalo Bills", - "sF": "23", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Oct 6, 2024", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Indianapolis Colts", - "sF": "37", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2024", - "at": null, - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "15", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 6, 2024", - "at": "@", - "fav": "Washington Commanders", - "und": "Cleveland Browns", - "sF": "34", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2024", - "at": "@", - "fav": "Denver Broncos", - "und": "Las Vegas Raiders", - "sF": "34", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2024", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Arizona Cardinals", - "sF": "23", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Oct 6, 2024", - "at": null, - "fav": "Green Bay Packers", - "und": "Los Angeles Rams", - "sF": "24", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Oct 6, 2024", - "at": "@", - "fav": "Seattle Seahawks", - "und": "New York Giants", - "sF": "20", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Oct 6, 2024", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Dallas Cowboys", - "sF": "17", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 7, 2024", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "New Orleans Saints", - "sF": "26", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Oct 10, 2024", - "at": null, - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "36", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 2024", - "at": "N", - "fav": "Jacksonville Jaguars", - "und": "Chicago Bears", - "sF": "16", - "sU": "35", - "spread": "1", - "ou": null - }, - { - "date": "Oct 13, 2024", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Washington Commanders", - "sF": "30", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Oct 13, 2024", - "at": "@", - "fav": "Green Bay Packers", - "und": "Arizona Cardinals", - "sF": "34", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Oct 13, 2024", - "at": null, - "fav": "Houston Texans", - "und": "New England Patriots", - "sF": "41", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 2024", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "51", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 2024", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Cleveland Browns", - "sF": "20", - "sU": "16", - "spread": "8", - "ou": null - }, - { - "date": "Oct 13, 2024", - "at": "@", - "fav": "Tennessee Titans", - "und": "Indianapolis Colts", - "sF": "17", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Oct 13, 2024", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Denver Broncos", - "sF": "23", - "sU": "16", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 2024", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Las Vegas Raiders", - "sF": "32", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 2024", - "at": null, - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "38", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Oct 13, 2024", - "at": null, - "fav": "Detroit Lions", - "und": "Dallas Cowboys", - "sF": "47", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Oct 13, 2024", - "at": null, - "fav": "Cincinnati Bengals", - "und": "New York Giants", - "sF": "17", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Oct 14, 2024", - "at": null, - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "23", - "sU": "20", - "spread": "1", - "ou": null - }, - { - "date": "Oct 17, 2024", - "at": null, - "fav": "Denver Broncos", - "und": "New Orleans Saints", - "sF": "33", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Oct 20, 2024", - "at": "N", - "fav": "Jacksonville Jaguars", - "und": "New England Patriots", - "sF": "32", - "sU": "16", - "spread": "7", - "ou": null - }, - { - "date": "Oct 20, 2024", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Seattle Seahawks", - "sF": "14", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 2024", - "at": "@", - "fav": "Buffalo Bills", - "und": "Tennessee Titans", - "sF": "34", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Oct 20, 2024", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "21", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Oct 20, 2024", - "at": "@", - "fav": "Green Bay Packers", - "und": "Houston Texans", - "sF": "24", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 2024", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Miami Dolphins", - "sF": "16", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 2024", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Detroit Lions", - "sF": "29", - "sU": "31", - "spread": "1", - "ou": null - }, - { - "date": "Oct 20, 2024", - "at": null, - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "28", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Oct 20, 2024", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Las Vegas Raiders", - "sF": "20", - "sU": "15", - "spread": "7", - "ou": null - }, - { - "date": "Oct 20, 2024", - "at": "@", - "fav": "Washington Commanders", - "und": "Carolina Panthers", - "sF": "40", - "sU": "7", - "spread": "10", - "ou": null - }, - { - "date": "Oct 20, 2024", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Kansas City Chiefs", - "sF": "18", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Oct 20, 2024", - "at": null, - "fav": "New York Jets", - "und": "Pittsburgh Steelers", - "sF": "15", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Oct 21, 2024", - "at": null, - "fav": "Baltimore Ravens", - "und": "Tampa Bay Buccaneers", - "sF": "41", - "sU": "31", - "spread": "4", - "ou": null - }, - { - "date": "Oct 21, 2024", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Arizona Cardinals", - "sF": "15", - "sU": "17", - "spread": "1", - "ou": null - }, - { - "date": "Oct 24, 2024", - "at": null, - "fav": "Minnesota Vikings", - "und": "Los Angeles Rams", - "sF": "20", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 2024", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Philadelphia Eagles", - "sF": "17", - "sU": "37", - "spread": "2", - "ou": null - }, - { - "date": "Oct 27, 2024", - "at": null, - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "24", - "sU": "29", - "spread": "7", - "ou": null - }, - { - "date": "Oct 27, 2024", - "at": "@", - "fav": "Detroit Lions", - "und": "Tennessee Titans", - "sF": "52", - "sU": "14", - "spread": "12", - "ou": null - }, - { - "date": "Oct 27, 2024", - "at": "@", - "fav": "Houston Texans", - "und": "Indianapolis Colts", - "sF": "23", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Oct 27, 2024", - "at": null, - "fav": "Green Bay Packers", - "und": "Jacksonville Jaguars", - "sF": "30", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 2024", - "at": "@", - "fav": "Miami Dolphins", - "und": "Arizona Cardinals", - "sF": "27", - "sU": "28", - "spread": "5", - "ou": null - }, - { - "date": "Oct 27, 2024", - "at": null, - "fav": "New York Jets", - "und": "New England Patriots", - "sF": "22", - "sU": "25", - "spread": "7", - "ou": null - }, - { - "date": "Oct 27, 2024", - "at": null, - "fav": "Atlanta Falcons", - "und": "Tampa Bay Buccaneers", - "sF": "31", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Oct 27, 2024", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "New Orleans Saints", - "sF": "26", - "sU": "8", - "spread": "7", - "ou": null - }, - { - "date": "Oct 27, 2024", - "at": null, - "fav": "Buffalo Bills", - "und": "Seattle Seahawks", - "sF": "31", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Oct 27, 2024", - "at": "@", - "fav": "Denver Broncos", - "und": "Carolina Panthers", - "sF": "28", - "sU": "14", - "spread": "13", - "ou": null - }, - { - "date": "Oct 27, 2024", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Las Vegas Raiders", - "sF": "27", - "sU": "20", - "spread": "8", - "ou": null - }, - { - "date": "Oct 27, 2024", - "at": "@", - "fav": "Washington Commanders", - "und": "Chicago Bears", - "sF": "18", - "sU": "15", - "spread": "1", - "ou": null - }, - { - "date": "Oct 27, 2024", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Dallas Cowboys", - "sF": "30", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Oct 28, 2024", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "New York Giants", - "sF": "26", - "sU": "18", - "spread": "6", - "ou": null - }, - { - "date": "Oct 31, 2024", - "at": "@", - "fav": "New York Jets", - "und": "Houston Texans", - "sF": "21", - "sU": "13", - "spread": "2", - "ou": null - }, - { - "date": "Nov 3, 2024", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "21", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 2024", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Denver Broncos", - "sF": "41", - "sU": "10", - "spread": "9", - "ou": null - }, - { - "date": "Nov 3, 2024", - "at": "@", - "fav": "Buffalo Bills", - "und": "Miami Dolphins", - "sF": "30", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Nov 3, 2024", - "at": null, - "fav": "New Orleans Saints", - "und": "Carolina Panthers", - "sF": "22", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 3, 2024", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Las Vegas Raiders", - "sF": "41", - "sU": "24", - "spread": "7", - "ou": null - }, - { - "date": "Nov 3, 2024", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Cleveland Browns", - "sF": "27", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Nov 3, 2024", - "at": null, - "fav": "Washington Commanders", - "und": "New York Giants", - "sF": "27", - "sU": "22", - "spread": "4", - "ou": null - }, - { - "date": "Nov 3, 2024", - "at": "@", - "fav": "Tennessee Titans", - "und": "New England Patriots", - "sF": "20", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 3, 2024", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Chicago Bears", - "sF": "29", - "sU": "9", - "spread": "1", - "ou": null - }, - { - "date": "Nov 3, 2024", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Jacksonville Jaguars", - "sF": "28", - "sU": "23", - "spread": "7", - "ou": null - }, - { - "date": "Nov 3, 2024", - "at": null, - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "24", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Nov 3, 2024", - "at": null, - "fav": "Los Angeles Rams", - "und": "Seattle Seahawks", - "sF": "26", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Nov 3, 2024", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Indianapolis Colts", - "sF": "21", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 4, 2024", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Tampa Bay Buccaneers", - "sF": "30", - "sU": "24", - "spread": "9", - "ou": null - }, - { - "date": "Nov 7, 2024", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cincinnati Bengals", - "sF": "35", - "sU": "34", - "spread": "6", - "ou": null - }, - { - "date": "Nov 10, 2024", - "at": "N", - "fav": "New York Giants", - "und": "Carolina Panthers", - "sF": "17", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 10, 2024", - "at": "@", - "fav": "Chicago Bears", - "und": "New England Patriots", - "sF": "3", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Nov 10, 2024", - "at": null, - "fav": "Buffalo Bills", - "und": "Indianapolis Colts", - "sF": "30", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 10, 2024", - "at": null, - "fav": "Minnesota Vikings", - "und": "Jacksonville Jaguars", - "sF": "12", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Nov 10, 2024", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Denver Broncos", - "sF": "16", - "sU": "14", - "spread": "7", - "ou": null - }, - { - "date": "Nov 10, 2024", - "at": null, - "fav": "Atlanta Falcons", - "und": "New Orleans Saints", - "sF": "17", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 10, 2024", - "at": null, - "fav": "San Francisco 49ers", - "und": "Tampa Bay Buccaneers", - "sF": "23", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 10, 2024", - "at": "@", - "fav": "Washington Commanders", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "28", - "spread": "2", - "ou": null - }, - { - "date": "Nov 10, 2024", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Tennessee Titans", - "sF": "27", - "sU": "17", - "spread": "8", - "ou": null - }, - { - "date": "Nov 10, 2024", - "at": null, - "fav": "New York Jets", - "und": "Arizona Cardinals", - "sF": "6", - "sU": "31", - "spread": "2", - "ou": null - }, - { - "date": "Nov 10, 2024", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "34", - "sU": "6", - "spread": "7", - "ou": null - }, - { - "date": "Nov 10, 2024", - "at": null, - "fav": "Detroit Lions", - "und": "Houston Texans", - "sF": "26", - "sU": "23", - "spread": "4", - "ou": null - }, - { - "date": "Nov 11, 2024", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Miami Dolphins", - "sF": "15", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Nov 14, 2024", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Washington Commanders", - "sF": "26", - "sU": "18", - "spread": "4", - "ou": null - }, - { - "date": "Nov 17, 2024", - "at": null, - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "20", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 2024", - "at": "@", - "fav": "Detroit Lions", - "und": "Jacksonville Jaguars", - "sF": "52", - "sU": "6", - "spread": "13", - "ou": null - }, - { - "date": "Nov 17, 2024", - "at": "@", - "fav": "Miami Dolphins", - "und": "Las Vegas Raiders", - "sF": "34", - "sU": "19", - "spread": "8", - "ou": null - }, - { - "date": "Nov 17, 2024", - "at": null, - "fav": "Los Angeles Rams", - "und": "New England Patriots", - "sF": "28", - "sU": "22", - "spread": "4", - "ou": null - }, - { - "date": "Nov 17, 2024", - "at": null, - "fav": "Cleveland Browns", - "und": "New Orleans Saints", - "sF": "14", - "sU": "35", - "spread": "1", - "ou": null - }, - { - "date": "Nov 17, 2024", - "at": "@", - "fav": "New York Jets", - "und": "Indianapolis Colts", - "sF": "27", - "sU": "28", - "spread": "4", - "ou": null - }, - { - "date": "Nov 17, 2024", - "at": null, - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "16", - "sU": "18", - "spread": "3", - "ou": null - }, - { - "date": "Nov 17, 2024", - "at": null, - "fav": "Minnesota Vikings", - "und": "Tennessee Titans", - "sF": "23", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 2024", - "at": "@", - "fav": "Denver Broncos", - "und": "Atlanta Falcons", - "sF": "38", - "sU": "6", - "spread": "2", - "ou": null - }, - { - "date": "Nov 17, 2024", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Seattle Seahawks", - "sF": "17", - "sU": "20", - "spread": "6", - "ou": null - }, - { - "date": "Nov 17, 2024", - "at": "@", - "fav": "Buffalo Bills", - "und": "Kansas City Chiefs", - "sF": "30", - "sU": "21", - "spread": "2", - "ou": null - }, - { - "date": "Nov 17, 2024", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Cincinnati Bengals", - "sF": "34", - "sU": "27", - "spread": "1", - "ou": null - }, - { - "date": "Nov 18, 2024", - "at": null, - "fav": "Houston Texans", - "und": "Dallas Cowboys", - "sF": "34", - "sU": "10", - "spread": "7", - "ou": null - }, - { - "date": "Nov 21, 2024", - "at": null, - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "19", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 2024", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Carolina Panthers", - "sF": "30", - "sU": "27", - "spread": "11", - "ou": null - }, - { - "date": "Nov 24, 2024", - "at": null, - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "30", - "sU": "27", - "spread": "3", - "ou": null - }, - { - "date": "Nov 24, 2024", - "at": "@", - "fav": "Houston Texans", - "und": "Tennessee Titans", - "sF": "27", - "sU": "32", - "spread": "8", - "ou": null - }, - { - "date": "Nov 24, 2024", - "at": null, - "fav": "Detroit Lions", - "und": "Indianapolis Colts", - "sF": "24", - "sU": "6", - "spread": "8", - "ou": null - }, - { - "date": "Nov 24, 2024", - "at": "@", - "fav": "Miami Dolphins", - "und": "New England Patriots", - "sF": "34", - "sU": "15", - "spread": "7", - "ou": null - }, - { - "date": "Nov 24, 2024", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "New York Giants", - "sF": "30", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Nov 24, 2024", - "at": "@", - "fav": "Washington Commanders", - "und": "Dallas Cowboys", - "sF": "26", - "sU": "34", - "spread": "10", - "ou": null - }, - { - "date": "Nov 24, 2024", - "at": null, - "fav": "Denver Broncos", - "und": "Las Vegas Raiders", - "sF": "29", - "sU": "19", - "spread": "5", - "ou": null - }, - { - "date": "Nov 24, 2024", - "at": "@", - "fav": "Green Bay Packers", - "und": "San Francisco 49ers", - "sF": "38", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Nov 24, 2024", - "at": null, - "fav": "Arizona Cardinals", - "und": "Seattle Seahawks", - "sF": "6", - "sU": "16", - "spread": "1", - "ou": null - }, - { - "date": "Nov 24, 2024", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Los Angeles Rams", - "sF": "37", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Nov 25, 2024", - "at": null, - "fav": "Baltimore Ravens", - "und": "Los Angeles Chargers", - "sF": "30", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Nov 28, 2024", - "at": "@", - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "23", - "sU": "20", - "spread": "9", - "ou": null - }, - { - "date": "Nov 28, 2024", - "at": "@", - "fav": "Dallas Cowboys", - "und": "New York Giants", - "sF": "27", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Nov 28, 2024", - "at": "@", - "fav": "Green Bay Packers", - "und": "Miami Dolphins", - "sF": "30", - "sU": "17", - "spread": "3", - "ou": null - }, - { - "date": "Nov 29, 2024", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Las Vegas Raiders", - "sF": "19", - "sU": "17", - "spread": "13", - "ou": null - }, - { - "date": "Dec 1, 2024", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Atlanta Falcons", - "sF": "17", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 1, 2024", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "38", - "sU": "44", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 2024", - "at": null, - "fav": "Houston Texans", - "und": "Jacksonville Jaguars", - "sF": "23", - "sU": "20", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 2024", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Arizona Cardinals", - "sF": "23", - "sU": "22", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 2024", - "at": null, - "fav": "Indianapolis Colts", - "und": "New England Patriots", - "sF": "25", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 1, 2024", - "at": "@", - "fav": "New York Jets", - "und": "Seattle Seahawks", - "sF": "21", - "sU": "26", - "spread": "1", - "ou": null - }, - { - "date": "Dec 1, 2024", - "at": "@", - "fav": "Washington Commanders", - "und": "Tennessee Titans", - "sF": "42", - "sU": "19", - "spread": "6", - "ou": null - }, - { - "date": "Dec 1, 2024", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "26", - "sU": "23", - "spread": "6", - "ou": null - }, - { - "date": "Dec 1, 2024", - "at": null, - "fav": "Los Angeles Rams", - "und": "New Orleans Saints", - "sF": "21", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 1, 2024", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Philadelphia Eagles", - "sF": "19", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 1, 2024", - "at": "@", - "fav": "Buffalo Bills", - "und": "San Francisco 49ers", - "sF": "35", - "sU": "10", - "spread": "6", - "ou": null - }, - { - "date": "Dec 2, 2024", - "at": "@", - "fav": "Denver Broncos", - "und": "Cleveland Browns", - "sF": "41", - "sU": "32", - "spread": "6", - "ou": null - }, - { - "date": "Dec 5, 2024", - "at": "@", - "fav": "Detroit Lions", - "und": "Green Bay Packers", - "sF": "34", - "sU": "31", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2024", - "at": "@", - "fav": "Miami Dolphins", - "und": "New York Jets", - "sF": "32", - "sU": "26", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 2024", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Atlanta Falcons", - "sF": "42", - "sU": "21", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 2024", - "at": "@", - "fav": "New York Giants", - "und": "New Orleans Saints", - "sF": "11", - "sU": "14", - "spread": "5", - "ou": null - }, - { - "date": "Dec 8, 2024", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Carolina Panthers", - "sF": "22", - "sU": "16", - "spread": "13", - "ou": null - }, - { - "date": "Dec 8, 2024", - "at": "@", - "fav": "Pittsburgh Steelers", - "und": "Cleveland Browns", - "sF": "27", - "sU": "14", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 2024", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Las Vegas Raiders", - "sF": "28", - "sU": "13", - "spread": "6", - "ou": null - }, - { - "date": "Dec 8, 2024", - "at": "@", - "fav": "Tennessee Titans", - "und": "Jacksonville Jaguars", - "sF": "6", - "sU": "10", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2024", - "at": "@", - "fav": "Arizona Cardinals", - "und": "Seattle Seahawks", - "sF": "18", - "sU": "30", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2024", - "at": null, - "fav": "Buffalo Bills", - "und": "Los Angeles Rams", - "sF": "42", - "sU": "44", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2024", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Chicago Bears", - "sF": "38", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 8, 2024", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Los Angeles Chargers", - "sF": "19", - "sU": "17", - "spread": "4", - "ou": null - }, - { - "date": "Dec 9, 2024", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Dallas Cowboys", - "sF": "27", - "sU": "20", - "spread": "4", - "ou": null - }, - { - "date": "Dec 12, 2024", - "at": "@", - "fav": "San Francisco 49ers", - "und": "Los Angeles Rams", - "sF": "6", - "sU": "12", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 2024", - "at": "@", - "fav": "Carolina Panthers", - "und": "Dallas Cowboys", - "sF": "14", - "sU": "30", - "spread": "2", - "ou": null - }, - { - "date": "Dec 15, 2024", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Cleveland Browns", - "sF": "21", - "sU": "7", - "spread": "4", - "ou": null - }, - { - "date": "Dec 15, 2024", - "at": "@", - "fav": "Houston Texans", - "und": "Miami Dolphins", - "sF": "20", - "sU": "12", - "spread": "2", - "ou": null - }, - { - "date": "Dec 15, 2024", - "at": null, - "fav": "New York Jets", - "und": "Jacksonville Jaguars", - "sF": "32", - "sU": "25", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 2024", - "at": null, - "fav": "Washington Commanders", - "und": "New Orleans Saints", - "sF": "20", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Dec 15, 2024", - "at": null, - "fav": "Baltimore Ravens", - "und": "New York Giants", - "sF": "35", - "sU": "14", - "spread": "16", - "ou": null - }, - { - "date": "Dec 15, 2024", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Tennessee Titans", - "sF": "37", - "sU": "27", - "spread": "6", - "ou": null - }, - { - "date": "Dec 15, 2024", - "at": "@", - "fav": "Arizona Cardinals", - "und": "New England Patriots", - "sF": "30", - "sU": "17", - "spread": "6", - "ou": null - }, - { - "date": "Dec 15, 2024", - "at": "@", - "fav": "Denver Broncos", - "und": "Indianapolis Colts", - "sF": "31", - "sU": "13", - "spread": "4", - "ou": null - }, - { - "date": "Dec 15, 2024", - "at": "@", - "fav": "Detroit Lions", - "und": "Buffalo Bills", - "sF": "42", - "sU": "48", - "spread": "2", - "ou": null - }, - { - "date": "Dec 15, 2024", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Tampa Bay Buccaneers", - "sF": "17", - "sU": "40", - "spread": "3", - "ou": null - }, - { - "date": "Dec 15, 2024", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Pittsburgh Steelers", - "sF": "27", - "sU": "13", - "spread": "5", - "ou": null - }, - { - "date": "Dec 15, 2024", - "at": null, - "fav": "Green Bay Packers", - "und": "Seattle Seahawks", - "sF": "30", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Dec 16, 2024", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Chicago Bears", - "sF": "30", - "sU": "12", - "spread": "7", - "ou": null - }, - { - "date": "Dec 16, 2024", - "at": null, - "fav": "Atlanta Falcons", - "und": "Las Vegas Raiders", - "sF": "15", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Dec 19, 2024", - "at": "@", - "fav": "Los Angeles Chargers", - "und": "Denver Broncos", - "sF": "34", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Dec 21, 2024", - "at": "@", - "fav": "Kansas City Chiefs", - "und": "Houston Texans", - "sF": "27", - "sU": "19", - "spread": "3", - "ou": null - }, - { - "date": "Dec 21, 2024", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Pittsburgh Steelers", - "sF": "34", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 22, 2024", - "at": "@", - "fav": "Atlanta Falcons", - "und": "New York Giants", - "sF": "34", - "sU": "7", - "spread": "9", - "ou": null - }, - { - "date": "Dec 22, 2024", - "at": "@", - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "24", - "sU": "21", - "spread": "14", - "ou": null - }, - { - "date": "Dec 22, 2024", - "at": null, - "fav": "Arizona Cardinals", - "und": "Carolina Panthers", - "sF": "30", - "sU": "36", - "spread": "5", - "ou": null - }, - { - "date": "Dec 22, 2024", - "at": null, - "fav": "Detroit Lions", - "und": "Chicago Bears", - "sF": "34", - "sU": "17", - "spread": "7", - "ou": null - }, - { - "date": "Dec 22, 2024", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Cleveland Browns", - "sF": "24", - "sU": "6", - "spread": "10", - "ou": null - }, - { - "date": "Dec 22, 2024", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Tennessee Titans", - "sF": "38", - "sU": "30", - "spread": "4", - "ou": null - }, - { - "date": "Dec 22, 2024", - "at": null, - "fav": "Los Angeles Rams", - "und": "New York Jets", - "sF": "19", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Dec 22, 2024", - "at": null, - "fav": "Philadelphia Eagles", - "und": "Washington Commanders", - "sF": "33", - "sU": "36", - "spread": "4", - "ou": null - }, - { - "date": "Dec 22, 2024", - "at": null, - "fav": "Minnesota Vikings", - "und": "Seattle Seahawks", - "sF": "27", - "sU": "24", - "spread": "2", - "ou": null - }, - { - "date": "Dec 22, 2024", - "at": "@", - "fav": "Las Vegas Raiders", - "und": "Jacksonville Jaguars", - "sF": "19", - "sU": "14", - "spread": "2", - "ou": null - }, - { - "date": "Dec 22, 2024", - "at": null, - "fav": "San Francisco 49ers", - "und": "Miami Dolphins", - "sF": "17", - "sU": "29", - "spread": "1", - "ou": null - }, - { - "date": "Dec 22, 2024", - "at": null, - "fav": "Tampa Bay Buccaneers", - "und": "Dallas Cowboys", - "sF": "24", - "sU": "26", - "spread": "4", - "ou": null - }, - { - "date": "Dec 23, 2024", - "at": "@", - "fav": "Green Bay Packers", - "und": "New Orleans Saints", - "sF": "34", - "sU": "0", - "spread": "14", - "ou": null - }, - { - "date": "Dec 25, 2024", - "at": null, - "fav": "Kansas City Chiefs", - "und": "Pittsburgh Steelers", - "sF": "29", - "sU": "10", - "spread": "2", - "ou": null - }, - { - "date": "Dec 25, 2024", - "at": null, - "fav": "Baltimore Ravens", - "und": "Houston Texans", - "sF": "31", - "sU": "2", - "spread": "6", - "ou": null - }, - { - "date": "Dec 26, 2024", - "at": null, - "fav": "Seattle Seahawks", - "und": "Chicago Bears", - "sF": "6", - "sU": "3", - "spread": "4", - "ou": null - }, - { - "date": "Dec 28, 2024", - "at": null, - "fav": "Los Angeles Chargers", - "und": "New England Patriots", - "sF": "40", - "sU": "7", - "spread": "6", - "ou": null - }, - { - "date": "Dec 28, 2024", - "at": "@", - "fav": "Cincinnati Bengals", - "und": "Denver Broncos", - "sF": "30", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 28, 2024", - "at": "@", - "fav": "Los Angeles Rams", - "und": "Arizona Cardinals", - "sF": "13", - "sU": "9", - "spread": "6", - "ou": null - }, - { - "date": "Dec 29, 2024", - "at": "@", - "fav": "Buffalo Bills", - "und": "New York Jets", - "sF": "40", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 29, 2024", - "at": "@", - "fav": "Jacksonville Jaguars", - "und": "Tennessee Titans", - "sF": "20", - "sU": "13", - "spread": "1", - "ou": null - }, - { - "date": "Dec 29, 2024", - "at": null, - "fav": "Las Vegas Raiders", - "und": "New Orleans Saints", - "sF": "25", - "sU": "10", - "spread": "1", - "ou": null - }, - { - "date": "Dec 29, 2024", - "at": null, - "fav": "Indianapolis Colts", - "und": "New York Giants", - "sF": "33", - "sU": "45", - "spread": "7", - "ou": null - }, - { - "date": "Dec 29, 2024", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "Dallas Cowboys", - "sF": "41", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Dec 29, 2024", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "Carolina Panthers", - "sF": "48", - "sU": "14", - "spread": "10", - "ou": null - }, - { - "date": "Dec 29, 2024", - "at": null, - "fav": "Miami Dolphins", - "und": "Cleveland Browns", - "sF": "20", - "sU": "3", - "spread": "3", - "ou": null - }, - { - "date": "Dec 29, 2024", - "at": "@", - "fav": "Minnesota Vikings", - "und": "Green Bay Packers", - "sF": "27", - "sU": "25", - "spread": "1", - "ou": null - }, - { - "date": "Dec 29, 2024", - "at": "@", - "fav": "Washington Commanders", - "und": "Atlanta Falcons", - "sF": "30", - "sU": "24", - "spread": "3", - "ou": null - }, - { - "date": "Dec 30, 2024", - "at": null, - "fav": "Detroit Lions", - "und": "San Francisco 49ers", - "sF": "40", - "sU": "34", - "spread": "3", - "ou": null - }, - { - "date": "Jan 4, 2025", - "at": "@", - "fav": "Baltimore Ravens", - "und": "Cleveland Browns", - "sF": "35", - "sU": "10", - "spread": "19", - "ou": null - }, - { - "date": "Jan 4, 2025", - "at": null, - "fav": "Cincinnati Bengals", - "und": "Pittsburgh Steelers", - "sF": "19", - "sU": "17", - "spread": "2", - "ou": null - }, - { - "date": "Jan 5, 2025", - "at": "@", - "fav": "Atlanta Falcons", - "und": "Carolina Panthers", - "sF": "38", - "sU": "44", - "spread": "8", - "ou": null - }, - { - "date": "Jan 5, 2025", - "at": null, - "fav": "Washington Commanders", - "und": "Dallas Cowboys", - "sF": "23", - "sU": "19", - "spread": "7", - "ou": null - }, - { - "date": "Jan 5, 2025", - "at": "@", - "fav": "Green Bay Packers", - "und": "Chicago Bears", - "sF": "22", - "sU": "24", - "spread": "10", - "ou": null - }, - { - "date": "Jan 5, 2025", - "at": "@", - "fav": "Indianapolis Colts", - "und": "Jacksonville Jaguars", - "sF": "26", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Jan 5, 2025", - "at": null, - "fav": "Buffalo Bills", - "und": "New England Patriots", - "sF": "16", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Jan 5, 2025", - "at": "@", - "fav": "Philadelphia Eagles", - "und": "New York Giants", - "sF": "20", - "sU": "13", - "spread": "3", - "ou": null - }, - { - "date": "Jan 5, 2025", - "at": "@", - "fav": "Tampa Bay Buccaneers", - "und": "New Orleans Saints", - "sF": "27", - "sU": "19", - "spread": "14", - "ou": null - }, - { - "date": "Jan 5, 2025", - "at": "@", - "fav": "Tennessee Titans", - "und": "Houston Texans", - "sF": "14", - "sU": "23", - "spread": "2", - "ou": null - }, - { - "date": "Jan 5, 2025", - "at": "@", - "fav": "Arizona Cardinals", - "und": "San Francisco 49ers", - "sF": "47", - "sU": "24", - "spread": "5", - "ou": null - }, - { - "date": "Jan 5, 2025", - "at": "@", - "fav": "Denver Broncos", - "und": "Kansas City Chiefs", - "sF": "38", - "sU": "0", - "spread": "11", - "ou": null - }, - { - "date": "Jan 5, 2025", - "at": null, - "fav": "Los Angeles Chargers", - "und": "Las Vegas Raiders", - "sF": "34", - "sU": "20", - "spread": "7", - "ou": null - }, - { - "date": "Jan 5, 2025", - "at": null, - "fav": "Seattle Seahawks", - "und": "Los Angeles Rams", - "sF": "30", - "sU": "25", - "spread": "7", - "ou": null - }, - { - "date": "Jan 5, 2025", - "at": "@", - "fav": "New York Jets", - "und": "Miami Dolphins", - "sF": "32", - "sU": "20", - "spread": "2", - "ou": null - }, - { - "date": "Jan 5, 2025", - "at": "@", - "fav": "Detroit Lions", - "und": "Minnesota Vikings", - "sF": "31", - "sU": "9", - "spread": "3", - "ou": null - }, - { - "date": "Jan 11, 2025", - "at": null, - "fav": "Los Angeles Chargers (5)", - "und": "Houston Texans (4)", - "sF": "12", - "sU": "32", - "spread": "2", - "ou": null - }, - { - "date": "Jan 11, 2025", - "at": "@", - "fav": "Baltimore Ravens (3)", - "und": "Pittsburgh Steelers (6)", - "sF": "28", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Jan 12, 2025", - "at": "@", - "fav": "Buffalo Bills (2)", - "und": "Denver Broncos (7)", - "sF": "31", - "sU": "7", - "spread": "7", - "ou": null - }, - { - "date": "Jan 12, 2025", - "at": "@", - "fav": "Philadelphia Eagles (2)", - "und": "Green Bay Packers (7)", - "sF": "22", - "sU": "10", - "spread": "5", - "ou": null - }, - { - "date": "Jan 12, 2025", - "at": "@", - "fav": "Tampa Bay Buccaneers (3)", - "und": "Washington Commanders (6)", - "sF": "20", - "sU": "23", - "spread": "3", - "ou": null - }, - { - "date": "Jan 13, 2025", - "at": "N", - "fav": "Minnesota Vikings (5)", - "und": "Los Angeles Rams (4)", - "sF": "9", - "sU": "27", - "spread": "2", - "ou": null - }, - { - "date": "Jan 18, 2025", - "at": "@", - "fav": "Kansas City Chiefs (1)", - "und": "Houston Texans (4)", - "sF": "23", - "sU": "14", - "spread": "9", - "ou": null - }, - { - "date": "Jan 18, 2025", - "at": "@", - "fav": "Detroit Lions (1)", - "und": "Washington Commanders (6)", - "sF": "31", - "sU": "45", - "spread": "8", - "ou": null - }, - { - "date": "Jan 19, 2025", - "at": "@", - "fav": "Philadelphia Eagles (2)", - "und": "Los Angeles Rams (4)", - "sF": "28", - "sU": "22", - "spread": "7", - "ou": null - }, - { - "date": "Jan 19, 2025", - "at": null, - "fav": "Baltimore Ravens (3)", - "und": "Buffalo Bills (2)", - "sF": "25", - "sU": "27", - "spread": "1", - "ou": null + "spread": "3.5", + "ou": null, + "week": "1952 Playoffs" } ] \ No newline at end of file